@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.855Z") @Stability(value=Stable) public interface CfnScheduleProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.databrew.*;
CfnScheduleProps cfnScheduleProps = CfnScheduleProps.builder()
.cronExpression("cronExpression")
.name("name")
// the properties below are optional
.jobNames(List.of("jobNames"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnScheduleProps.Builder
A builder for
CfnScheduleProps |
static class |
CfnScheduleProps.Jsii$Proxy
An implementation for
CfnScheduleProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnScheduleProps.Builder |
builder() |
String |
getCronExpression()
The dates and times when the job is to run.
|
default List<String> |
getJobNames()
A list of jobs to be run, according to the schedule.
|
String |
getName()
The name of the schedule.
|
default List<CfnTag> |
getTags()
Metadata tags that have been applied to the schedule.
|
@Stability(value=Stable) @NotNull String getCronExpression()
For more information, see Working with cron expressions for recipe jobs in the AWS Glue DataBrew Developer Guide .
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default List<String> getJobNames()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnScheduleProps.Builder builder()
CfnScheduleProps.Builder of CfnSchedulePropsCopyright © 2022. All rights reserved.