Class: Aws::DevOpsAgent::Types::Webhook
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::Webhook
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devopsagent/types.rb
Overview
Represents a complete Webhook with all its properties, and unique identifier.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#webhook_id ⇒ String
The unique identifier of the Webhook.
-
#webhook_type ⇒ String
Webhook authentication type.
-
#webhook_url ⇒ String
Webhook endpoint URL.
Instance Attribute Details
#webhook_id ⇒ String
The unique identifier of the Webhook
7337 7338 7339 7340 7341 7342 7343 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 7337 class Webhook < Struct.new( :webhook_url, :webhook_type, :webhook_id) SENSITIVE = [] include Aws::Structure end |