Class CfnDataSource.ScheduleConfigurationProperty
The details of the schedule of the data source runs.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.ScheduleConfigurationProperty : CfnDataSource.IScheduleConfigurationProperty
Syntax (vb)
Public Class CfnDataSource.ScheduleConfigurationProperty Implements CfnDataSource.IScheduleConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataZone;
var scheduleConfigurationProperty = new ScheduleConfigurationProperty {
Schedule = "schedule",
Timezone = "timezone"
};
Synopsis
Constructors
| ScheduleConfigurationProperty() | The details of the schedule of the data source runs. |
Properties
| Schedule | The schedule of the data source runs. |
| Timezone | The timezone of the data source run. |
Constructors
ScheduleConfigurationProperty()
The details of the schedule of the data source runs.
public ScheduleConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataZone;
var scheduleConfigurationProperty = new ScheduleConfigurationProperty {
Schedule = "schedule",
Timezone = "timezone"
};
Properties
Schedule
The schedule of the data source runs.
public string? Schedule { get; set; }
Property Value
Remarks
Timezone
The timezone of the data source run.
public string? Timezone { get; set; }