Class: Aws::Amplify::Types::CreateWebhookRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::CreateWebhookRequest
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
Note:
When making an API call, you may pass CreateWebhookRequest data as a hash:
{
app_id: "AppId", # required
branch_name: "BranchName", # required
description: "Description",
}
The request structure for the create webhook 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 a branch that is part of an Amplify app.
-
#description ⇒ String
The description for a webhook.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
1053 1054 1055 1056 1057 1058 1059 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1053 class CreateWebhookRequest < Struct.new( :app_id, :branch_name, :description) SENSITIVE = [] include Aws::Structure end |
#branch_name ⇒ String
The name for a branch that is part of an Amplify app.
1053 1054 1055 1056 1057 1058 1059 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1053 class CreateWebhookRequest < Struct.new( :app_id, :branch_name, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description for a webhook.
1053 1054 1055 1056 1057 1058 1059 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1053 class CreateWebhookRequest < Struct.new( :app_id, :branch_name, :description) SENSITIVE = [] include Aws::Structure end |