Interface CalendarStateChange.CalendarStateChangeProps

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

@Stability(Experimental) public static interface CalendarStateChange.CalendarStateChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.ssm@CalendarStateChange 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.ssm.events.*;
 CalendarStateChangeProps calendarStateChangeProps = CalendarStateChangeProps.builder()
         .atTime(List.of("atTime"))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .nextTransitionTime(List.of("nextTransitionTime"))
         .state(List.of("state"))
         .build();
 
  • Method Details

    • getAtTime

      @Stability(Experimental) @Nullable default List<String> getAtTime()
      (experimental) atTime property.

      Specify an array of string values to match this event if the actual value of atTime 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

    • getEventMetadata

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

      Default: - -

    • getNextTransitionTime

      @Stability(Experimental) @Nullable default List<String> getNextTransitionTime()
      (experimental) nextTransitionTime property.

      Specify an array of string values to match this event if the actual value of nextTransitionTime 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

    • builder

      @Stability(Experimental) static CalendarStateChange.CalendarStateChangeProps.Builder builder()
      Returns:
      a CalendarStateChange.CalendarStateChangeProps.Builder of CalendarStateChange.CalendarStateChangeProps