Class: Aws::CodeDeploy::Types::GitHubLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::GitHubLocation
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass GitHubLocation data as a hash:
{
repository: "Repository",
commit_id: "CommitId",
}
Information about the location of application artifacts stored in GitHub.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#commit_id ⇒ String
The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.
-
#repository ⇒ String
The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.
Instance Attribute Details
#commit_id ⇒ String
The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.
3102 3103 3104 3105 3106 3107 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3102 class GitHubLocation < Struct.new( :repository, :commit_id) SENSITIVE = [] include Aws::Structure end |
#repository ⇒ String
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.
3102 3103 3104 3105 3106 3107 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3102 class GitHubLocation < Struct.new( :repository, :commit_id) SENSITIVE = [] include Aws::Structure end |