Class: Aws::CodeGuruReviewer::Types::ThirdPartySourceRepository
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::ThirdPartySourceRepository
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurureviewer/types.rb
Overview
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*.
[1]: docs.aws.amazon.com/codestar-connections/latest/APIReference/API_Connection.html
2019 2020 2021 2022 2023 2024 2025 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 2019 class ThirdPartySourceRepository < Struct.new( :name, :connection_arn, :owner) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the third party source repository.
2019 2020 2021 2022 2023 2024 2025 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 2019 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
2019 2020 2021 2022 2023 2024 2025 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 2019 class ThirdPartySourceRepository < Struct.new( :name, :connection_arn, :owner) SENSITIVE = [] include Aws::Structure end |