Class: Aws::CodeGuruReviewer::Types::Repository
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::Repository
- Defined in:
- gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb
Overview
Note:
When making an API call, you may pass Repository data as a hash:
{
code_commit: {
name: "Name", # required
},
bitbucket: {
name: "Name", # required
connection_arn: "ConnectionArn", # required
owner: "Owner", # required
},
git_hub_enterprise_server: {
name: "Name", # required
connection_arn: "ConnectionArn", # required
owner: "Owner", # required
},
}
Information about an associated AWS CodeCommit repository or an
associated repository that is managed by AWS CodeStar Connections (for
example, Bitbucket). This Repository
object is not used if your
source code is in an associated GitHub repository.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bitbucket ⇒ Types::ThirdPartySourceRepository
Information about a Bitbucket repository.
-
#code_commit ⇒ Types::CodeCommitRepository
Information about an AWS CodeCommit repository.
-
#git_hub_enterprise_server ⇒ Types::ThirdPartySourceRepository
Information about a GitHub Enterprise Server repository.
Instance Attribute Details
#bitbucket ⇒ Types::ThirdPartySourceRepository
Information about a Bitbucket repository.
1383 1384 1385 1386 1387 1388 1389 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1383 class Repository < Struct.new( :code_commit, :bitbucket, :git_hub_enterprise_server) SENSITIVE = [] include Aws::Structure end |
#code_commit ⇒ Types::CodeCommitRepository
Information about an AWS CodeCommit repository.
1383 1384 1385 1386 1387 1388 1389 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1383 class Repository < Struct.new( :code_commit, :bitbucket, :git_hub_enterprise_server) SENSITIVE = [] include Aws::Structure end |
#git_hub_enterprise_server ⇒ Types::ThirdPartySourceRepository
Information about a GitHub Enterprise Server repository.
1383 1384 1385 1386 1387 1388 1389 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1383 class Repository < Struct.new( :code_commit, :bitbucket, :git_hub_enterprise_server) SENSITIVE = [] include Aws::Structure end |