@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:45.922Z")
public interface CfnScheduleProps
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() |
java.lang.String |
getCronExpression()
The dates and times when the job is to run.
|
default java.util.List<java.lang.String> |
getJobNames()
A list of jobs to be run, according to the schedule.
|
java.lang.String |
getName()
The name of the schedule.
|
default java.util.List<CfnTag> |
getTags()
Metadata tags that have been applied to the schedule.
|
java.lang.String getCronExpression()
For more information, see Working with cron expressions for recipe jobs in the AWS Glue DataBrew Developer Guide .
java.lang.String getName()
default java.util.List<java.lang.String> getJobNames()
default java.util.List<CfnTag> getTags()
static CfnScheduleProps.Builder builder()
CfnScheduleProps.Builder
of CfnScheduleProps