interface OpsWorksDeploymentStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Events.StackEvents.OpsWorksDeploymentStateChange.OpsWorksDeploymentStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopsworks/events#StackEvents_OpsWorksDeploymentStateChange_OpsWorksDeploymentStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.opsworks.events.StackEvents.OpsWorksDeploymentStateChange.OpsWorksDeploymentStateChangeProps |
Python | aws_cdk.mixins_preview.aws_opsworks.events.StackEvents.OpsWorksDeploymentStateChange.OpsWorksDeploymentStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_opsworks ยป events ยป StackEvents ยป OpsWorksDeploymentStateChange ยป OpsWorksDeploymentStateChangeProps |
Props type for Stack aws.opsworks@OpsWorksDeploymentStateChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as opsworks_events } from '@aws-cdk/mixins-preview/aws-opsworks';
const opsWorksDeploymentStateChangeProps: opsworks_events.StackEvents.OpsWorksDeploymentStateChange.OpsWorksDeploymentStateChangeProps = {
command: ['command'],
deploymentId: ['deploymentId'],
duration: ['duration'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
instanceIds: ['instanceIds'],
stackId: ['stackId'],
status: ['status'],
};
Properties
| Name | Type | Description |
|---|---|---|
| command? | string[] | command property. |
| deployment | string[] | deployment-id property. |
| duration? | string[] | duration property. |
| event | AWSEvent | EventBridge event metadata. |
| instance | string[] | instance-ids property. |
| stack | string[] | stack-id property. |
| status? | string[] | status property. |
command?
Type:
string[]
(optional, default: Do not filter on this field)
command property.
Specify an array of string values to match this event if the actual value of command 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)
deployment-id property.
Specify an array of string values to match this event if the actual value of deployment-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
duration?
Type:
string[]
(optional, default: Do not filter on this field)
duration property.
Specify an array of string values to match this event if the actual value of duration 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.
instanceIds?
Type:
string[]
(optional, default: Do not filter on this field)
instance-ids property.
Specify an array of string values to match this event if the actual value of instance-ids is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stackId?
Type:
string[]
(optional, default: Filter with the Stack reference)
stack-id property.
Specify an array of string values to match this event if the actual value of stack-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status 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