interface ScheduleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnDataSourcePropsMixin.ScheduleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnDataSourcePropsMixin_ScheduleConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnDataSourcePropsMixin.ScheduleConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnDataSourcePropsMixin.ScheduleConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » 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 { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const scheduleConfigurationProperty: datazone.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