interface RefreshScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudTrail.CfnDashboardPropsMixin.RefreshScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudtrail#CfnDashboardPropsMixin_RefreshScheduleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudtrail.CfnDashboardPropsMixin.RefreshScheduleProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudtrail.CfnDashboardPropsMixin.RefreshScheduleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudtrail » CfnDashboardPropsMixin » 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/cfn-property-mixins';
const refreshScheduleProperty: cloudtrail.CfnDashboardPropsMixin.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