Class: Aws::CodeGuruReviewer::Types::CodeCommitRepository
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::CodeCommitRepository
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurureviewer/types.rb
Overview
Note:
When making an API call, you may pass CodeCommitRepository data as a hash:
{
name: "Name", # required
}
Information about an AWS CodeCommit repository. The CodeCommit repository must be in the same AWS Region and AWS account where its CodeGuru Reviewer code reviews are configured.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the AWS CodeCommit repository.
Instance Attribute Details
#name ⇒ String
The name of the AWS CodeCommit repository. For more information, see
- repositoryName][1
-
in the *AWS CodeCommit API Reference*.
229 230 231 232 233 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 229 class CodeCommitRepository < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |