interface RefreshScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudTrail.CfnDashboard.RefreshScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudtrail#CfnDashboard_RefreshScheduleProperty |
Java | software.amazon.awscdk.services.cloudtrail.CfnDashboard.RefreshScheduleProperty |
Python | aws_cdk.aws_cloudtrail.CfnDashboard.RefreshScheduleProperty |
TypeScript | aws-cdk-lib » aws_cloudtrail » CfnDashboard » RefreshScheduleProperty |
The schedule for a dashboard refresh.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudtrail as cloudtrail } from 'aws-cdk-lib';
const refreshScheduleProperty: cloudtrail.CfnDashboard.RefreshScheduleProperty = {
frequency: {
unit: 'unit',
value: 123,
},
status: 'status',
timeOfDay: 'timeOfDay',
};
Properties
| Name | Type | Description |
|---|---|---|
| frequency? | IResolvable | Frequency | The frequency at which you want the dashboard refreshed. |
| status? | string | Specifies whether the refresh schedule is enabled. |
| time | string | The time of day in UTC to run the schedule; |
frequency?
Type:
IResolvable | Frequency
(optional)
The frequency at which you want the dashboard refreshed.
status?
Type:
string
(optional)
Specifies whether the refresh schedule is enabled.
Set the value to ENABLED to enable the refresh schedule, or to DISABLED to turn off the refresh schedule.
timeOfDay?
Type:
string
(optional)
The time of day in UTC to run the schedule;
for hourly only refer to minutes; default is 00:00.

.NET
Go
Java
Python
TypeScript