Class: Aws::Amplify::Types::DeleteBranchRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::DeleteBranchRequest
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
Note:
When making an API call, you may pass DeleteBranchRequest data as a hash:
{
app_id: "AppId", # required
branch_name: "BranchName", # required
}
The request structure for the delete branch request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique ID for an Amplify app.
-
#branch_name ⇒ String
The name for the branch.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
1234 1235 1236 1237 1238 1239 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1234 class DeleteBranchRequest < Struct.new( :app_id, :branch_name) SENSITIVE = [] include Aws::Structure end |
#branch_name ⇒ String
The name for the branch.
1234 1235 1236 1237 1238 1239 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1234 class DeleteBranchRequest < Struct.new( :app_id, :branch_name) SENSITIVE = [] include Aws::Structure end |