interface FISExperimentStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FIS.Events.FISExperimentStateChange.FISExperimentStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfis/events#FISExperimentStateChange_FISExperimentStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.fis.events.FISExperimentStateChange.FISExperimentStateChangeProps |
Python | aws_cdk.mixins_preview.aws_fis.events.FISExperimentStateChange.FISExperimentStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_fis ยป events ยป FISExperimentStateChange ยป FISExperimentStateChangeProps |
Props type for aws.fis@FISExperimentStateChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as fis_events } from '@aws-cdk/mixins-preview/aws-fis';
const fISExperimentStateChangeProps: fis_events.FISExperimentStateChange.FISExperimentStateChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
experimentId: ['experimentId'],
newState: {
reason: ['reason'],
status: ['status'],
},
oldState: {
reason: ['reason'],
status: ['status'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| experiment | string[] | experiment-id property. |
| new | New | new-state property. |
| old | Old | old-state property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
experimentId?
Type:
string[]
(optional, default: Do not filter on this field)
experiment-id property.
Specify an array of string values to match this event if the actual value of experiment-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
newState?
Type:
New
(optional, default: Do not filter on this field)
new-state property.
Specify an array of string values to match this event if the actual value of new-state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
oldState?
Type:
Old
(optional, default: Do not filter on this field)
old-state property.
Specify an array of string values to match this event if the actual value of old-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