Class: Aws::CodeStar::Types::GitHubCodeDestination

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codestar/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[:token]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

Description for the GitHub repository to be created in AWS CodeStar. This description displays in GitHub after the repository is created.

Returns:

  • (String)


573
574
575
576
577
578
579
580
581
582
583
# File 'lib/aws-sdk-codestar/types.rb', line 573

class GitHubCodeDestination < Struct.new(
  :name,
  :description,
  :type,
  :owner,
  :private_repository,
  :issues_enabled,
  :token)
  SENSITIVE = [:token]
  include Aws::Structure
end

#issues_enabledBoolean

Whether to enable issues for the GitHub repository.

Returns:

  • (Boolean)


573
574
575
576
577
578
579
580
581
582
583
# File 'lib/aws-sdk-codestar/types.rb', line 573

class GitHubCodeDestination < Struct.new(
  :name,
  :description,
  :type,
  :owner,
  :private_repository,
  :issues_enabled,
  :token)
  SENSITIVE = [:token]
  include Aws::Structure
end

#nameString

Name of the GitHub repository to be created in AWS CodeStar.

Returns:

  • (String)


573
574
575
576
577
578
579
580
581
582
583
# File 'lib/aws-sdk-codestar/types.rb', line 573

class GitHubCodeDestination < Struct.new(
  :name,
  :description,
  :type,
  :owner,
  :private_repository,
  :issues_enabled,
  :token)
  SENSITIVE = [:token]
  include Aws::Structure
end

#ownerString

The GitHub username for the owner of the GitHub repository to be created in AWS CodeStar. If this repository should be owned by a GitHub organization, provide its name.

Returns:

  • (String)


573
574
575
576
577
578
579
580
581
582
583
# File 'lib/aws-sdk-codestar/types.rb', line 573

class GitHubCodeDestination < Struct.new(
  :name,
  :description,
  :type,
  :owner,
  :private_repository,
  :issues_enabled,
  :token)
  SENSITIVE = [:token]
  include Aws::Structure
end

#private_repositoryBoolean

Whether the GitHub repository is to be a private repository.

Returns:

  • (Boolean)


573
574
575
576
577
578
579
580
581
582
583
# File 'lib/aws-sdk-codestar/types.rb', line 573

class GitHubCodeDestination < Struct.new(
  :name,
  :description,
  :type,
  :owner,
  :private_repository,
  :issues_enabled,
  :token)
  SENSITIVE = [:token]
  include Aws::Structure
end

#tokenString

The GitHub user’s personal access token for the GitHub repository.

Returns:

  • (String)


573
574
575
576
577
578
579
580
581
582
583
# File 'lib/aws-sdk-codestar/types.rb', line 573

class GitHubCodeDestination < Struct.new(
  :name,
  :description,
  :type,
  :owner,
  :private_repository,
  :issues_enabled,
  :token)
  SENSITIVE = [:token]
  include Aws::Structure
end

#typeString

The type of GitHub repository to be created in AWS CodeStar. Valid values are User or Organization.

Returns:

  • (String)


573
574
575
576
577
578
579
580
581
582
583
# File 'lib/aws-sdk-codestar/types.rb', line 573

class GitHubCodeDestination < Struct.new(
  :name,
  :description,
  :type,
  :owner,
  :private_repository,
  :issues_enabled,
  :token)
  SENSITIVE = [:token]
  include Aws::Structure
end