Interface RecoveryGroupEvents.Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChange.Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChangeProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
RecoveryGroupEvents.Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChange.Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChangeProps.Jsii$Proxy
Enclosing class:
RecoveryGroupEvents.Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChange

@Stability(Experimental) public static interface RecoveryGroupEvents.Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChange.Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for RecoveryGroup aws.route53recoveryreadiness@Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChange event.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.route53recoveryreadiness.events.*;
 Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChangeProps route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChangeProps = Route53ApplicationRecoveryControllerRecoveryGroupReadinessStatusChangeProps.builder()
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .newState(State.builder()
                 .readinessStatus(List.of("readinessStatus"))
                 .build())
         .previousState(State.builder()
                 .readinessStatus(List.of("readinessStatus"))
                 .build())
         .recoveryGroupName(List.of("recoveryGroupName"))
         .build();