Class: Aws::CodeGuruReviewer::Types::S3RepositoryDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::S3RepositoryDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurureviewer/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The name of the S3 bucket used for associating a new S3 repository.
-
#code_artifacts ⇒ Types::CodeArtifacts
A ‘CodeArtifacts` object.
Instance Attribute Details
#bucket_name ⇒ String
The name of the S3 bucket used for associating a new S3 repository. It must begin with ‘codeguru-reviewer-`.
1885 1886 1887 1888 1889 1890 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 1885 class S3RepositoryDetails < Struct.new( :bucket_name, :code_artifacts) SENSITIVE = [] include Aws::Structure end |
#code_artifacts ⇒ Types::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.
1885 1886 1887 1888 1889 1890 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 1885 class S3RepositoryDetails < Struct.new( :bucket_name, :code_artifacts) SENSITIVE = [] include Aws::Structure end |