Class: Aws::CodePipeline::Types::ListWebhookItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ListWebhookItem
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
The detail returned for each webhook after listing webhooks, such as the webhook URL, the webhook name, and the webhook ARN.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the webhook.
-
#definition ⇒ Types::WebhookDefinition
The detail returned for each webhook, such as the webhook authentication type and filter rules.
-
#error_code ⇒ String
The number code of the error.
-
#error_message ⇒ String
The text of the error message about the webhook.
-
#last_triggered ⇒ Time
The date and time a webhook was last successfully triggered, in timestamp format.
-
#tags ⇒ Array<Types::Tag>
Specifies the tags applied to the webhook.
-
#url ⇒ String
A unique URL generated by CodePipeline.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the webhook.
3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3034 class ListWebhookItem < Struct.new( :definition, :url, :error_message, :error_code, :last_triggered, :arn, :tags) SENSITIVE = [] include Aws::Structure end |
#definition ⇒ Types::WebhookDefinition
The detail returned for each webhook, such as the webhook authentication type and filter rules.
3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3034 class ListWebhookItem < Struct.new( :definition, :url, :error_message, :error_code, :last_triggered, :arn, :tags) SENSITIVE = [] include Aws::Structure end |
#error_code ⇒ String
The number code of the error.
3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3034 class ListWebhookItem < Struct.new( :definition, :url, :error_message, :error_code, :last_triggered, :arn, :tags) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
The text of the error message about the webhook.
3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3034 class ListWebhookItem < Struct.new( :definition, :url, :error_message, :error_code, :last_triggered, :arn, :tags) SENSITIVE = [] include Aws::Structure end |
#last_triggered ⇒ Time
The date and time a webhook was last successfully triggered, in timestamp format.
3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3034 class ListWebhookItem < Struct.new( :definition, :url, :error_message, :error_code, :last_triggered, :arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Specifies the tags applied to the webhook.
3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3034 class ListWebhookItem < Struct.new( :definition, :url, :error_message, :error_code, :last_triggered, :arn, :tags) SENSITIVE = [] include Aws::Structure end |
#url ⇒ String
A unique URL generated by CodePipeline. When a POST request is made to this URL, the defined pipeline is started as long as the body of the post request satisfies the defined authentication and filtering conditions. Deleting and re-creating a webhook makes the old URL invalid and generates a new one.
3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3034 class ListWebhookItem < Struct.new( :definition, :url, :error_message, :error_code, :last_triggered, :arn, :tags) SENSITIVE = [] include Aws::Structure end |