DeploymentGroupTriggerConfiguration constructor

const DeploymentGroupTriggerConfiguration({
  1. required Input<List<String>> triggerEvents,
  2. required Input<String> triggerName,
  3. required Input<String> triggerTargetArn,
})

Creates a new DeploymentGroupTriggerConfiguration. triggerEvents The event type or types for which notifications are triggered. Some values that are supported: DeploymentStart, DeploymentSuccess, DeploymentFailure, DeploymentStop, DeploymentRollback, InstanceStart, InstanceSuccess, InstanceFailure. See the CodeDeploy documentation for all possible values. triggerName The name of the notification trigger. triggerTargetArn The ARN of the SNS topic through which notifications are sent.

Implementation

const DeploymentGroupTriggerConfiguration({
  required this.triggerEvents,
  required this.triggerName,
  required this.triggerTargetArn,
});