Interface CalendarStateChange.CalendarStateChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CalendarStateChange.CalendarStateChangeProps.Jsii$Proxy
- Enclosing class:
CalendarStateChange
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCalendarStateChange.CalendarStateChangePropsstatic final classAn implementation forCalendarStateChange.CalendarStateChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) atTime property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) nextTransitionTime property.getState()(experimental) state property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-