Class: Aws::CodeStar::Types::CodeDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStar::Types::CodeDestination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codestar/types.rb
Overview
The repository to be created in AWS CodeStar. Valid values are AWS CodeCommit or GitHub. After AWS CodeStar provisions the new repository, the source code files provided with the project request are placed in the repository.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_commit ⇒ Types::CodeCommitCodeDestination
Information about the AWS CodeCommit repository to be created in AWS CodeStar.
-
#git_hub ⇒ Types::GitHubCodeDestination
Information about the GitHub repository to be created in AWS CodeStar.
Instance Attribute Details
#code_commit ⇒ Types::CodeCommitCodeDestination
Information about the AWS CodeCommit repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.
127 128 129 130 131 132 |
# File 'lib/aws-sdk-codestar/types.rb', line 127 class CodeDestination < Struct.new( :code_commit, :git_hub) SENSITIVE = [] include Aws::Structure end |
#git_hub ⇒ Types::GitHubCodeDestination
Information about the GitHub repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.
127 128 129 130 131 132 |
# File 'lib/aws-sdk-codestar/types.rb', line 127 class CodeDestination < Struct.new( :code_commit, :git_hub) SENSITIVE = [] include Aws::Structure end |