interface CodeDeployDeploymentStateChangeNotificationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Events.CodeDeployDeploymentStateChangeNotification.CodeDeployDeploymentStateChangeNotificationProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodedeploy/events#CodeDeployDeploymentStateChangeNotification_CodeDeployDeploymentStateChangeNotificationProps |
Java | software.amazon.awscdk.mixins.preview.services.codedeploy.events.CodeDeployDeploymentStateChangeNotification.CodeDeployDeploymentStateChangeNotificationProps |
Python | aws_cdk.mixins_preview.aws_codedeploy.events.CodeDeployDeploymentStateChangeNotification.CodeDeployDeploymentStateChangeNotificationProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_codedeploy ยป events ยป CodeDeployDeploymentStateChangeNotification ยป CodeDeployDeploymentStateChangeNotificationProps |
Props type for aws.codedeploy@CodeDeployDeploymentStateChangeNotification event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as codedeploy_events } from '@aws-cdk/mixins-preview/aws-codedeploy';
const codeDeployDeploymentStateChangeNotificationProps: codedeploy_events.CodeDeployDeploymentStateChangeNotification.CodeDeployDeploymentStateChangeNotificationProps = {
application: ['application'],
deploymentGroup: ['deploymentGroup'],
deploymentId: ['deploymentId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
instanceGroupId: ['instanceGroupId'],
region: ['region'],
state: ['state'],
};
Properties
| Name | Type | Description |
|---|---|---|
| application? | string[] | application property. |
| deployment | string[] | deploymentGroup property. |
| deployment | string[] | deploymentId property. |
| event | AWSEvent | EventBridge event metadata. |
| instance | string[] | instanceGroupId property. |
| region? | string[] | region property. |
| state? | string[] | state property. |
application?
Type:
string[]
(optional, default: Do not filter on this field)
application property.
Specify an array of string values to match this event if the actual value of application is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
deploymentGroup?
Type:
string[]
(optional, default: Do not filter on this field)
deploymentGroup property.
Specify an array of string values to match this event if the actual value of deploymentGroup is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
deploymentId?
Type:
string[]
(optional, default: Do not filter on this field)
deploymentId property.
Specify an array of string values to match this event if the actual value of deploymentId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
instanceGroupId?
Type:
string[]
(optional, default: Do not filter on this field)
instanceGroupId property.
Specify an array of string values to match this event if the actual value of instanceGroupId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
region?
Type:
string[]
(optional, default: Do not filter on this field)
region property.
Specify an array of string values to match this event if the actual value of region is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
state?
Type:
string[]
(optional, default: Do not filter on this field)
state property.
Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript