Interface CellEvents.Route53ApplicationRecoveryControllerCellReadinessStatusChange.Route53ApplicationRecoveryControllerCellReadinessStatusChangeProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CellEvents.Route53ApplicationRecoveryControllerCellReadinessStatusChange.Route53ApplicationRecoveryControllerCellReadinessStatusChangeProps.Jsii$Proxy
Enclosing class:
CellEvents.Route53ApplicationRecoveryControllerCellReadinessStatusChange

@Stability(Experimental) public static interface CellEvents.Route53ApplicationRecoveryControllerCellReadinessStatusChange.Route53ApplicationRecoveryControllerCellReadinessStatusChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for Cell aws.route53recoveryreadiness@Route53ApplicationRecoveryControllerCellReadinessStatusChange 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.*;
 Route53ApplicationRecoveryControllerCellReadinessStatusChangeProps route53ApplicationRecoveryControllerCellReadinessStatusChangeProps = Route53ApplicationRecoveryControllerCellReadinessStatusChangeProps.builder()
         .cellName(List.of("cellName"))
         .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())
         .build();