interface Route53ApplicationRecoveryControllerReadinessCheckStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryReadiness.Events.ReadinessCheckEvents.Route53ApplicationRecoveryControllerReadinessCheckStatusChange.Route53ApplicationRecoveryControllerReadinessCheckStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoveryreadiness/events#ReadinessCheckEvents_Route53ApplicationRecoveryControllerReadinessCheckStatusChange_Route53ApplicationRecoveryControllerReadinessCheckStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.route53recoveryreadiness.events.ReadinessCheckEvents.Route53ApplicationRecoveryControllerReadinessCheckStatusChange.Route53ApplicationRecoveryControllerReadinessCheckStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_route53recoveryreadiness.events.ReadinessCheckEvents.Route53ApplicationRecoveryControllerReadinessCheckStatusChange.Route53ApplicationRecoveryControllerReadinessCheckStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_route53recoveryreadiness ยป events ยป ReadinessCheckEvents ยป Route53ApplicationRecoveryControllerReadinessCheckStatusChange ยป Route53ApplicationRecoveryControllerReadinessCheckStatusChangeProps |
Props type for ReadinessCheck aws.route53recoveryreadiness@Route53ApplicationRecoveryControllerReadinessCheckStatusChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as route53recoveryreadiness_events } from '@aws-cdk/mixins-preview/aws-route53recoveryreadiness';
const route53ApplicationRecoveryControllerReadinessCheckStatusChangeProps: route53recoveryreadiness_events.ReadinessCheckEvents.Route53ApplicationRecoveryControllerReadinessCheckStatusChange.Route53ApplicationRecoveryControllerReadinessCheckStatusChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
newState: {
readinessStatus: ['readinessStatus'],
},
previousState: {
readinessStatus: ['readinessStatus'],
},
readinessCheckName: ['readinessCheckName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| new | State | new-state property. |
| previous | State | previous-state property. |
| readiness | string[] | readiness-check-name property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
newState?
Type:
State
(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.
previousState?
Type:
State
(optional, default: Do not filter on this field)
previous-state property.
Specify an array of string values to match this event if the actual value of previous-state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
readinessCheckName?
Type:
string[]
(optional, default: Filter with the ReadinessCheck reference)
readiness-check-name property.
Specify an array of string values to match this event if the actual value of readiness-check-name 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