interface ScheduleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudWatch.CfnLogAlarmPropsMixin.ScheduleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudwatch#CfnLogAlarmPropsMixin_ScheduleConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudwatch.CfnLogAlarmPropsMixin.ScheduleConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudwatch.CfnLogAlarmPropsMixin.ScheduleConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudwatch » CfnLogAlarmPropsMixin » ScheduleConfigurationProperty |
The schedule configuration for the scheduled query.
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/cfn-property-mixins';
const scheduleConfigurationProperty: cloudwatch.CfnLogAlarmPropsMixin.ScheduleConfigurationProperty = {
endTimeOffset: 123,
scheduleExpression: 'scheduleExpression',
startTimeOffset: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| end | number | The number of seconds into the past to end the query window. |
| schedule | string | The expression that defines when the scheduled query runs, e.g. rate(1 minute). |
| start | number | The number of seconds into the past to start the query window. |
endTimeOffset?
Type:
number
(optional)
The number of seconds into the past to end the query window.
scheduleExpression?
Type:
string
(optional)
The expression that defines when the scheduled query runs, e.g. rate(1 minute).
startTimeOffset?
Type:
number
(optional)
The number of seconds into the past to start the query window.

.NET
Go
Java
Python
TypeScript