Interface CfnDashboard.IFrequencyProperty
Specifies the frequency for a dashboard refresh schedule.
Namespace: Amazon.CDK.AWS.CloudTrail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFrequencyProperty
Syntax (vb)
Public Interface IFrequencyProperty
Remarks
For a custom dashboard, you can schedule a refresh for every 1, 6, 12, or 24 hours, or every day.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudTrail;
var frequencyProperty = new FrequencyProperty {
Unit = "unit",
Value = 123
};
Synopsis
Properties
Unit | The unit to use for the refresh. |
Value | The value for the refresh schedule. |
Properties
Unit
The unit to use for the refresh.
string Unit { get; }
Property Value
System.
Remarks
For custom dashboards, the unit can be HOURS
or DAYS
.
For the Highlights dashboard, the Unit
must be HOURS
.
Value
The value for the refresh schedule.
double Value { get; }
Property Value
System.
Remarks
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
.