Interface EC2FastLaunchStateChangeNotification.EC2FastLaunchStateChangeNotificationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EC2FastLaunchStateChangeNotification.EC2FastLaunchStateChangeNotificationProps.Jsii$Proxy
Enclosing class:
EC2FastLaunchStateChangeNotification

@Stability(Experimental) public static interface EC2FastLaunchStateChangeNotification.EC2FastLaunchStateChangeNotificationProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.ec2@EC2FastLaunchStateChangeNotification 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.*;
 EC2FastLaunchStateChangeNotificationProps eC2FastLaunchStateChangeNotificationProps = EC2FastLaunchStateChangeNotificationProps.builder()
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .imageId(List.of("imageId"))
         .resourceType(List.of("resourceType"))
         .state(List.of("state"))
         .stateTransitionReason(List.of("stateTransitionReason"))
         .build();
 
  • Method Details

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getImageId

      @Stability(Experimental) @Nullable default List<String> getImageId()
      (experimental) imageId property.

      Specify an array of string values to match this event if the actual value of imageId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getResourceType

      @Stability(Experimental) @Nullable default List<String> getResourceType()
      (experimental) resourceType property.

      Specify an array of string values to match this event if the actual value of resourceType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getState

      @Stability(Experimental) @Nullable default List<String> getState()
      (experimental) state property.

      Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getStateTransitionReason

      @Stability(Experimental) @Nullable default List<String> getStateTransitionReason()
      (experimental) stateTransitionReason property.

      Specify an array of string values to match this event if the actual value of stateTransitionReason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      Returns:
      a EC2FastLaunchStateChangeNotification.EC2FastLaunchStateChangeNotificationProps.Builder of EC2FastLaunchStateChangeNotification.EC2FastLaunchStateChangeNotificationProps