Class: Aws::CodeDeploy::Types::GitHubLocation

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb

Overview

Information about the location of application artifacts stored in GitHub.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#commit_idString

The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.

Returns:

  • (String)


2570
2571
2572
2573
2574
2575
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2570

class GitHubLocation < Struct.new(
  :repository,
  :commit_id)
  SENSITIVE = []
  include Aws::Structure
end

#repositoryString

The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.

Specified as account/repository.

Returns:

  • (String)


2570
2571
2572
2573
2574
2575
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2570

class GitHubLocation < Struct.new(
  :repository,
  :commit_id)
  SENSITIVE = []
  include Aws::Structure
end