interface CalendarStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSM.Events.CalendarStateChange.CalendarStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssm/events#CalendarStateChange_CalendarStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.ssm.events.CalendarStateChange.CalendarStateChangeProps |
Python | aws_cdk.mixins_preview.aws_ssm.events.CalendarStateChange.CalendarStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_ssm ยป events ยป CalendarStateChange ยป CalendarStateChangeProps |
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 { events as ssm_events } from '@aws-cdk/mixins-preview/aws-ssm';
const calendarStateChangeProps: ssm_events.CalendarStateChange.CalendarStateChangeProps = {
atTime: ['atTime'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
nextTransitionTime: ['nextTransitionTime'],
state: ['state'],
};
Properties
| Name | Type | Description |
|---|---|---|
| at | string[] | atTime property. |
| event | AWSEvent | EventBridge event metadata. |
| next | string[] | nextTransitionTime property. |
| state? | string[] | state property. |
atTime?
Type:
string[]
(optional, default: Do not filter on this field)
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.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
nextTransitionTime?
Type:
string[]
(optional, default: Do not filter on this field)
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.
state?
Type:
string[]
(optional, default: Do not filter on this field)
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.

.NET
Go
Java
Python
TypeScript