Class: Aws::CodeGuruReviewer::Types::S3RepositoryDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::S3RepositoryDetails
- Defined in:
- gems/aws-sdk-codegurureviewer/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-
.
1882 1883 1884 1885 1886 1887 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1882 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.
1882 1883 1884 1885 1886 1887 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1882 class S3RepositoryDetails < Struct.new( :bucket_name, :code_artifacts) SENSITIVE = [] include Aws::Structure end |