Class: Aws::Proton::Types::RepositoryBranchInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::RepositoryBranchInput
- Defined in:
- gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb
Overview
Note:
When making an API call, you may pass RepositoryBranchInput data as a hash:
{
branch: "GitBranchName", # required
name: "RepositoryName", # required
provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
}
Detail input data for a repository branch.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#branch ⇒ String
The repository branch.
-
#name ⇒ String
The repository name.
-
#provider ⇒ String
The repository provider.
Instance Attribute Details
#branch ⇒ String
The repository branch.
4241 4242 4243 4244 4245 4246 4247 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 4241 class RepositoryBranchInput < Struct.new( :branch, :name, :provider) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The repository name.
4241 4242 4243 4244 4245 4246 4247 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 4241 class RepositoryBranchInput < Struct.new( :branch, :name, :provider) SENSITIVE = [] include Aws::Structure end |
#provider ⇒ String
The repository provider.
4241 4242 4243 4244 4245 4246 4247 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 4241 class RepositoryBranchInput < Struct.new( :branch, :name, :provider) SENSITIVE = [] include Aws::Structure end |