interface ScheduleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnDataSourcePropsMixin.ScheduleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnDataSourcePropsMixin_ScheduleConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnDataSourcePropsMixin.ScheduleConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnDataSourcePropsMixin.ScheduleConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnDataSourcePropsMixin » ScheduleConfigurationProperty |
The details of the schedule of the data source runs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const scheduleConfigurationProperty: datazone_mixins.CfnDataSourcePropsMixin.ScheduleConfigurationProperty = {
schedule: 'schedule',
timezone: 'timezone',
};
Properties
| Name | Type | Description |
|---|---|---|
| schedule? | string | The schedule of the data source runs. |
| timezone? | string | The timezone of the data source run. |
schedule?
Type:
string
(optional)
The schedule of the data source runs.
timezone?
Type:
string
(optional)
The timezone of the data source run.

.NET
Go
Java
Python
TypeScript