@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:05.438Z") @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()
`AWS::DataBrew::Schedule.CronExpression`.
|
default List<String> |
getJobNames()
`AWS::DataBrew::Schedule.JobNames`.
|
String |
getName()
`AWS::DataBrew::Schedule.Name`.
|
default List<CfnTag> |
getTags()
`AWS::DataBrew::Schedule.Tags`.
|
@Stability(value=Stable) @NotNull String getCronExpression()
@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.