amazonka-codeguru-reviewer-2.0: Amazon CodeGuru Reviewer SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

Description

 
Synopsis

Documentation

data S3RepositoryDetails Source #

Specifies the name of an S3 bucket and a CodeArtifacts object that contains the S3 object keys for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

See: newS3RepositoryDetails smart constructor.

Constructors

S3RepositoryDetails' 

Fields

  • bucketName :: Maybe Text

    The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

  • codeArtifacts :: Maybe CodeArtifacts

    A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

Instances

Instances details
FromJSON S3RepositoryDetails Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

ToJSON S3RepositoryDetails Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

Generic S3RepositoryDetails Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

Associated Types

type Rep S3RepositoryDetails :: Type -> Type #

Read S3RepositoryDetails Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

Show S3RepositoryDetails Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

NFData S3RepositoryDetails Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

Methods

rnf :: S3RepositoryDetails -> () #

Eq S3RepositoryDetails Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

Hashable S3RepositoryDetails Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

type Rep S3RepositoryDetails Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails

type Rep S3RepositoryDetails = D1 ('MetaData "S3RepositoryDetails" "Amazonka.CodeGuruReviewer.Types.S3RepositoryDetails" "amazonka-codeguru-reviewer-2.0-5PMDLaQhmT9HEhVpSUty9z" 'False) (C1 ('MetaCons "S3RepositoryDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "bucketName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "codeArtifacts") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CodeArtifacts))))

newS3RepositoryDetails :: S3RepositoryDetails Source #

Create a value of S3RepositoryDetails with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:bucketName:S3RepositoryDetails', s3RepositoryDetails_bucketName - The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

$sel:codeArtifacts:S3RepositoryDetails', s3RepositoryDetails_codeArtifacts - A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

s3RepositoryDetails_bucketName :: Lens' S3RepositoryDetails (Maybe Text) Source #

The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

s3RepositoryDetails_codeArtifacts :: Lens' S3RepositoryDetails (Maybe CodeArtifacts) Source #

A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.