interface CalendarDateTime
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudWatch.CalendarDateTime |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch#CalendarDateTime |
Java | software.amazon.awscdk.services.cloudwatch.CalendarDateTime |
Python | aws_cdk.aws_cloudwatch.CalendarDateTime |
TypeScript (source) | aws-cdk-lib » aws_cloudwatch » CalendarDateTime |
Represents a calendar date and time.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudwatch as cloudwatch } from 'aws-cdk-lib';
const calendarDateTime: cloudwatch.CalendarDateTime = {
day: 123,
hour: 123,
minute: 123,
month: 123,
year: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| day | number | The day of the date. |
| hour | number | The hour of the time. |
| minute | number | The minute of the time. |
| month | number | The month of the date. |
| year | number | The year of the date. |
day
Type:
number
The day of the date.
Valid range: 1-31
hour
Type:
number
The hour of the time.
Valid range: 0-23
minute
Type:
number
The minute of the time.
Valid range: 0-59
month
Type:
number
The month of the date.
Valid range: 1-12
year
Type:
number
The year of the date.

.NET
Go
Java
Python
TypeScript (