package awstimestream // 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 "github.com/aws/aws-cdk-go/awscdk" // // scheduleConfigurationProperty := &ScheduleConfigurationProperty{ // ScheduleExpression: jsii.String("scheduleExpression"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-scheduleconfiguration.html // type CfnScheduledQuery_ScheduleConfigurationProperty struct { // An expression that denotes when to trigger the scheduled query run. // // This can be a cron expression or a rate expression. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-scheduleconfiguration.html#cfn-timestream-scheduledquery-scheduleconfiguration-scheduleexpression // ScheduleExpression *string `field:"required" json:"scheduleExpression" yaml:"scheduleExpression"` }