interface OldState
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FIS.Events.FISExperimentStateChange.OldState |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfis/events#FISExperimentStateChange_OldState |
Java | software.amazon.awscdk.mixins.preview.services.fis.events.FISExperimentStateChange.OldState |
Python | aws_cdk.mixins_preview.aws_fis.events.FISExperimentStateChange.OldState |
TypeScript | @aws-cdk/mixins-preview ยป aws_fis ยป events ยป FISExperimentStateChange ยป OldState |
Type definition for Old-state.
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 oldState: fis_events.FISExperimentStateChange.OldState = {
reason: ['reason'],
status: ['status'],
};
Properties
| Name | Type | Description |
|---|---|---|
| reason? | string[] | reason property. |
| status? | string[] | status property. |
reason?
Type:
string[]
(optional, default: Do not filter on this field)
reason property.
Specify an array of string values to match this event if the actual value of reason 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