Class: Aws::CodeStar::Types::Code
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStar::Types::Code
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codestar/types.rb
Overview
Location and destination information about the source code files provided with the project request. The source code is uploaded to the new project source repository after project creation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ Types::CodeDestination
The repository to be created in AWS CodeStar.
-
#source ⇒ Types::CodeSource
The location where the source code files provided with the project request are stored.
Instance Attribute Details
#destination ⇒ Types::CodeDestination
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.
84 85 86 87 88 89 |
# File 'lib/aws-sdk-codestar/types.rb', line 84 class Code < Struct.new( :source, :destination) SENSITIVE = [] include Aws::Structure end |
#source ⇒ Types::CodeSource
The location where the source code files provided with the project request are stored. AWS CodeStar retrieves the files during project creation.
84 85 86 87 88 89 |
# File 'lib/aws-sdk-codestar/types.rb', line 84 class Code < Struct.new( :source, :destination) SENSITIVE = [] include Aws::Structure end |