interface TriggerConfigProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.CodeDeploy.CfnDeploymentGroup.TriggerConfigProperty | 
  Java | software.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.TriggerConfigProperty | 
  Python | aws_cdk.aws_codedeploy.CfnDeploymentGroup.TriggerConfigProperty | 
  TypeScript  | @aws-cdk/aws-codedeploy » CfnDeploymentGroup » TriggerConfigProperty | 
Information about notification triggers for the deployment group.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as codedeploy from '@aws-cdk/aws-codedeploy';
const triggerConfigProperty: codedeploy.CfnDeploymentGroup.TriggerConfigProperty = {
  triggerEvents: ['triggerEvents'],
  triggerName: 'triggerName',
  triggerTargetArn: 'triggerTargetArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| trigger | string[] | The event type or types that trigger notifications. | 
| trigger | string | The name of the notification trigger. | 
| trigger | string | The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent. | 
triggerEvents?
Type:
string[]
(optional)
The event type or types that trigger notifications.
triggerName?
Type:
string
(optional)
The name of the notification trigger.
triggerTargetArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent.

 .NET
 Java
 Python
 TypeScript