Class: Aws::CodeStar::Types::CodeDestination

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codestar/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

Instance Attribute Details

#code_commitTypes::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 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 127

class CodeDestination < Struct.new(
  :code_commit,
  :git_hub)
  SENSITIVE = []
  include Aws::Structure
end

#git_hubTypes::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 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 127

class CodeDestination < Struct.new(
  :code_commit,
  :git_hub)
  SENSITIVE = []
  include Aws::Structure
end