Class: Aws::CodeGuruReviewer::Types::ThirdPartySourceRepository
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::ThirdPartySourceRepository
- Defined in:
- gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb
Overview
When making an API call, you may pass ThirdPartySourceRepository data as a hash:
{
name: "Name", # required
connection_arn: "ConnectionArn", # required
owner: "Owner", # required
}
Information about a third-party source repository connected to CodeGuru Reviewer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection.
-
#name ⇒ String
The name of the third party source repository.
-
#owner ⇒ String
The owner of the repository.
Instance Attribute Details
#connection_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar
Connections connection. Its format is
arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id
.
For more information, see Connection
in the Amazon Web
Services CodeStar Connections API Reference.
2459 2460 2461 2462 2463 2464 2465 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 2459 class ThirdPartySourceRepository < Struct.new( :name, :connection_arn, :owner) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the third party source repository.
2459 2460 2461 2462 2463 2464 2465 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 2459 class ThirdPartySourceRepository < Struct.new( :name, :connection_arn, :owner) SENSITIVE = [] include Aws::Structure end |
#owner ⇒ String
The owner of the repository. For a GitHub, GitHub Enterprise, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, this can be the username or Amazon Web Services account ID.
2459 2460 2461 2462 2463 2464 2465 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 2459 class ThirdPartySourceRepository < Struct.new( :name, :connection_arn, :owner) SENSITIVE = [] include Aws::Structure end |