Class: Aws::CodeDeploy::Types::TriggerConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::TriggerConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass TriggerConfig data as a hash:
{
trigger_name: "TriggerName",
trigger_target_arn: "TriggerTargetArn",
trigger_events: ["DeploymentStart"], # accepts DeploymentStart, DeploymentSuccess, DeploymentFailure, DeploymentStop, DeploymentRollback, DeploymentReady, InstanceStart, InstanceSuccess, InstanceFailure, InstanceReady
}
Information about notification triggers for the deployment group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#trigger_events ⇒ Array<String>
The event type or types for which notifications are triggered.
-
#trigger_name ⇒ String
The name of the notification trigger.
-
#trigger_target_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent.
Instance Attribute Details
#trigger_events ⇒ Array<String>
The event type or types for which notifications are triggered.
5687 5688 5689 5690 5691 5692 5693 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5687 class TriggerConfig < Struct.new( :trigger_name, :trigger_target_arn, :trigger_events) SENSITIVE = [] include Aws::Structure end |
#trigger_name ⇒ String
The name of the notification trigger.
5687 5688 5689 5690 5691 5692 5693 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5687 class TriggerConfig < Struct.new( :trigger_name, :trigger_target_arn, :trigger_events) SENSITIVE = [] include Aws::Structure end |
#trigger_target_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent.
5687 5688 5689 5690 5691 5692 5693 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5687 class TriggerConfig < Struct.new( :trigger_name, :trigger_target_arn, :trigger_events) SENSITIVE = [] include Aws::Structure end |