Interface InstanceEvents.EC2InstanceStateChangeNotification.EC2InstanceStateChangeNotificationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
InstanceEvents.EC2InstanceStateChangeNotification.EC2InstanceStateChangeNotificationProps.Jsii$Proxy
Enclosing class:
InstanceEvents.EC2InstanceStateChangeNotification

@Stability(Experimental) public static interface InstanceEvents.EC2InstanceStateChangeNotification.EC2InstanceStateChangeNotificationProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for Instance aws.ec2@EC2InstanceStateChangeNotification 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.ec2.events.*;
 EC2InstanceStateChangeNotificationProps eC2InstanceStateChangeNotificationProps = EC2InstanceStateChangeNotificationProps.builder()
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .instanceId(List.of("instanceId"))
         .state(List.of("state"))
         .build();