aws-cdk-lib.aws_codedeploy.CfnDeploymentGroup.TriggerConfigProperty

interface TriggerConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.CodeDeploy.CfnDeploymentGroup.TriggerConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#CfnDeploymentGroup_TriggerConfigProperty
Javasoftware.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.TriggerConfigProperty
Pythonaws_cdk.aws_codedeploy.CfnDeploymentGroup.TriggerConfigProperty
TypeScript aws-cdk-lib » 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 { aws_codedeploy as codedeploy } from 'aws-cdk-lib';
const triggerConfigProperty: codedeploy.CfnDeploymentGroup.TriggerConfigProperty = {
  triggerEvents: ['triggerEvents'],
  triggerName: 'triggerName',
  triggerTargetArn: 'triggerTargetArn',
};

Properties

NameTypeDescription
triggerEvents?string[]The event type or types that trigger notifications.
triggerName?stringThe name of the notification trigger.
triggerTargetArn?stringThe 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.