Interface CfnScheduleMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduleMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.833Z")
@Stability(Stable)
public interface CfnScheduleMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSchedulePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.databrew.*;
CfnScheduleMixinProps cfnScheduleMixinProps = CfnScheduleMixinProps.builder()
.cronExpression("cronExpression")
.jobNames(List.of("jobNames"))
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScheduleMixinPropsstatic final classAn implementation forCfnScheduleMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCronExpression
The dates and times when the job is to run.For more information, see Working with cron expressions for recipe jobs in the AWS Glue DataBrew Developer Guide .
- See Also:
-
getJobNames
A list of jobs to be run, according to the schedule.- See Also:
-
getName
The name of the schedule.- See Also:
-
getTags
Metadata tags that have been applied to the schedule.- See Also:
-
builder
- Returns:
- a
CfnScheduleMixinProps.BuilderofCfnScheduleMixinProps
-