Class: Aws::CodeGuruReviewer::Types::S3BucketRepository
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::S3BucketRepository
- Defined in:
- gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb
Overview
Information about an associated repository in an S3 bucket. The associated repository contains a source code .zip file and a build artifacts .zip file that contains .jar or .class files.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ Types::S3RepositoryDetails
An
S3RepositoryDetails
object that specifies the name of an S3 bucket and aCodeArtifacts
object. -
#name ⇒ String
The name of the repository when the
ProviderType
isS3Bucket
.
Instance Attribute Details
#details ⇒ Types::S3RepositoryDetails
An S3RepositoryDetails
object that specifies the name of an S3
bucket and a CodeArtifacts
object. The CodeArtifacts
object
includes the S3 object keys for a source code .zip file and for a
build artifacts .zip file.
1838 1839 1840 1841 1842 1843 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1838 class S3BucketRepository < Struct.new( :name, :details) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the repository when the ProviderType
is S3Bucket
.
1838 1839 1840 1841 1842 1843 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1838 class S3BucketRepository < Struct.new( :name, :details) SENSITIVE = [] include Aws::Structure end |