interface ScheduleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnScheduledQueryPropsMixin.ScheduleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnScheduledQueryPropsMixin_ScheduleConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnScheduledQueryPropsMixin.ScheduleConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnScheduledQueryPropsMixin.ScheduleConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » 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 { mixins as timestream_mixins } from '@aws-cdk/mixins-preview/aws-timestream';
const scheduleConfigurationProperty: timestream_mixins.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