interface FrequencyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudTrail.Mixins.CfnDashboardPropsMixin.FrequencyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudtrail/mixins#CfnDashboardPropsMixin_FrequencyProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudtrail.mixins.CfnDashboardPropsMixin.FrequencyProperty |
Python | aws_cdk.mixins_preview.aws_cloudtrail.mixins.CfnDashboardPropsMixin.FrequencyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudtrail » mixins » CfnDashboardPropsMixin » FrequencyProperty |
Specifies the frequency for a dashboard refresh schedule.
For a custom dashboard, you can schedule a refresh for every 1, 6, 12, or 24 hours, or every day.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudtrail_mixins } from '@aws-cdk/mixins-preview/aws-cloudtrail';
const frequencyProperty: cloudtrail_mixins.CfnDashboardPropsMixin.FrequencyProperty = {
unit: 'unit',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| unit? | string | The unit to use for the refresh. |
| value? | number | The value for the refresh schedule. |
unit?
Type:
string
(optional)
The unit to use for the refresh.
For custom dashboards, the unit can be HOURS or DAYS .
For the Highlights dashboard, the Unit must be HOURS .
value?
Type:
number
(optional)
The value for the refresh schedule.
For custom dashboards, the following values are valid when the unit is HOURS : 1 , 6 , 12 , 24
For custom dashboards, the only valid value when the unit is DAYS is 1 .
For the Highlights dashboard, the Value must be 6 .

.NET
Go
Java
Python
TypeScript