interface ScheduleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnScheduledQueryPropsMixin.ScheduleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnScheduledQueryPropsMixin_ScheduleConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnScheduledQueryPropsMixin.ScheduleConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnScheduledQueryPropsMixin.ScheduleConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » CfnScheduledQueryPropsMixin » ScheduleConfigurationProperty |
Configuration of the schedule of the query.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_timestream as timestream } from '@aws-cdk/cfn-property-mixins';
const scheduleConfigurationProperty: timestream.CfnScheduledQueryPropsMixin.ScheduleConfigurationProperty = {
scheduleExpression: 'scheduleExpression',
};
Properties
| Name | Type | Description |
|---|---|---|
| schedule | string | An expression that denotes when to trigger the scheduled query run. |
scheduleExpression?
Type:
string
(optional)
An expression that denotes when to trigger the scheduled query run.
This can be a cron expression or a rate expression.

.NET
Go
Java
Python
TypeScript