Class: Aws::CodeDeploy::Types::TriggerConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::TriggerConfig
- Defined in:
- gems/aws-sdk-codedeploy/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.
5740 5741 5742 5743 5744 5745 5746 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5740 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.
5740 5741 5742 5743 5744 5745 5746 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5740 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.
5740 5741 5742 5743 5744 5745 5746 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5740 class TriggerConfig < Struct.new( :trigger_name, :trigger_target_arn, :trigger_events) SENSITIVE = [] include Aws::Structure end |