Class: Aws::CodeGuruReviewer::Types::S3Repository
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::S3Repository
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurureviewer/types.rb
Overview
Information about a repository in an S3 bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The name of the S3 bucket used for associating a new S3 repository.
-
#name ⇒ String
The name of the repository in the S3 bucket.
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-`.
1861 1862 1863 1864 1865 1866 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 1861 class S3Repository < Struct.new( :name, :bucket_name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the repository in the S3 bucket.
1861 1862 1863 1864 1865 1866 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 1861 class S3Repository < Struct.new( :name, :bucket_name) SENSITIVE = [] include Aws::Structure end |