Class: Aws::CodePipeline::Types::PutWebhookInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::PutWebhookInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tags ⇒ Array<Types::Tag>
The tags for the webhook.
-
#webhook ⇒ Types::WebhookDefinition
The detail provided in an input file to create the webhook, such as the webhook name, the pipeline name, and the action name.
Instance Attribute Details
#tags ⇒ Array<Types::Tag>
The tags for the webhook.
4098 4099 4100 4101 4102 4103 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 4098 class PutWebhookInput < Struct.new( :webhook, :tags) SENSITIVE = [] include Aws::Structure end |
#webhook ⇒ Types::WebhookDefinition
The detail provided in an input file to create the webhook, such as the webhook name, the pipeline name, and the action name. Give the webhook a unique name that helps you identify it. You might name the webhook after the pipeline and action it targets so that you can easily recognize what it’s used for later.
4098 4099 4100 4101 4102 4103 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 4098 class PutWebhookInput < Struct.new( :webhook, :tags) SENSITIVE = [] include Aws::Structure end |