Interface CfnScheduleProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduleProps.Jsii$Proxy
CfnSchedule.
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.scheduler.*;
Object tags;
CfnScheduleProps cfnScheduleProps = CfnScheduleProps.builder()
.flexibleTimeWindow(FlexibleTimeWindowProperty.builder()
.mode("mode")
// the properties below are optional
.maximumWindowInMinutes(123)
.build())
.scheduleExpression("scheduleExpression")
.target(TargetProperty.builder()
.arn("arn")
.roleArn("roleArn")
// the properties below are optional
.deadLetterConfig(DeadLetterConfigProperty.builder()
.arn("arn")
.build())
.ecsParameters(EcsParametersProperty.builder()
.taskDefinitionArn("taskDefinitionArn")
// the properties below are optional
.capacityProviderStrategy(List.of(CapacityProviderStrategyItemProperty.builder()
.capacityProvider("capacityProvider")
// the properties below are optional
.base(123)
.weight(123)
.build()))
.enableEcsManagedTags(false)
.enableExecuteCommand(false)
.group("group")
.launchType("launchType")
.networkConfiguration(NetworkConfigurationProperty.builder()
.awsvpcConfiguration(AwsVpcConfigurationProperty.builder()
.subnets(List.of("subnets"))
// the properties below are optional
.assignPublicIp("assignPublicIp")
.securityGroups(List.of("securityGroups"))
.build())
.build())
.placementConstraints(List.of(PlacementConstraintProperty.builder()
.expression("expression")
.type("type")
.build()))
.placementStrategy(List.of(PlacementStrategyProperty.builder()
.field("field")
.type("type")
.build()))
.platformVersion("platformVersion")
.propagateTags("propagateTags")
.referenceId("referenceId")
.tags(tags)
.taskCount(123)
.build())
.eventBridgeParameters(EventBridgeParametersProperty.builder()
.detailType("detailType")
.source("source")
.build())
.input("input")
.kinesisParameters(KinesisParametersProperty.builder()
.partitionKey("partitionKey")
.build())
.retryPolicy(RetryPolicyProperty.builder()
.maximumEventAgeInSeconds(123)
.maximumRetryAttempts(123)
.build())
.sageMakerPipelineParameters(SageMakerPipelineParametersProperty.builder()
.pipelineParameterList(List.of(SageMakerPipelineParameterProperty.builder()
.name("name")
.value("value")
.build()))
.build())
.sqsParameters(SqsParametersProperty.builder()
.messageGroupId("messageGroupId")
.build())
.build())
// the properties below are optional
.description("description")
.endDate("endDate")
.groupName("groupName")
.kmsKeyArn("kmsKeyArn")
.name("name")
.scheduleExpressionTimezone("scheduleExpressionTimezone")
.startDate("startDate")
.state("state")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSchedulePropsstatic final classAn implementation forCfnScheduleProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnScheduleProps.Builderbuilder()default StringThe description you specify for the schedule.default StringThe date, in UTC, before which the schedule can invoke its target.Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.default StringThe name of the schedule group associated with this schedule.default ObjectThe Amazon Resource Name (ARN) for the customer managed KMS key that EventBridge Scheduler will use to encrypt and decrypt your data.default StringgetName()The name of the schedule.The expression that defines when the schedule runs.default StringThe timezone in which the scheduling expression is evaluated.default StringThe date, in UTC, after which the schedule can begin invoking its target.default StringgetState()Specifies whether the schedule is enabled or disabled.The schedule's target details.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlexibleTimeWindow
Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.Returns union: either
IResolvableorCfnSchedule.FlexibleTimeWindowProperty- See Also:
-
getScheduleExpression
The expression that defines when the schedule runs. The following formats are supported.atexpression -at(yyyy-mm-ddThh:mm:ss)rateexpression -rate(value unit)cronexpression -cron(fields)
You can use
atexpressions to create one-time schedules that invoke a target once, at the time and in the time zone, that you specify. You can userateandcronexpressions to create recurring schedules. Rate-based schedules are useful when you want to invoke a target at regular intervals, such as every 15 minutes or every five days. Cron-based schedules are useful when you want to invoke a target periodically at a specific time, such as at 8:00 am (UTC+0) every 1st day of the month.A
cronexpression consists of six fields separated by white spaces:(minutes hours day_of_month month day_of_week year).A
rateexpression consists of a value as a positive integer, and a unit with the following options:minute|minutes|hour|hours|day|daysFor more information and examples, see Schedule types on EventBridge Scheduler in the EventBridge Scheduler User Guide .
- See Also:
-
getTarget
The schedule's target details.Returns union: either
IResolvableorCfnSchedule.TargetProperty- See Also:
-
getDescription
The description you specify for the schedule.- See Also:
-
getEndDate
The date, in UTC, before which the schedule can invoke its target.Depending on the schedule's recurrence expression, invocations might stop on, or before, the
EndDateyou specify. EventBridge Scheduler ignoresEndDatefor one-time schedules.- See Also:
-
getGroupName
The name of the schedule group associated with this schedule.- See Also:
-
getKmsKeyArn
The Amazon Resource Name (ARN) for the customer managed KMS key that EventBridge Scheduler will use to encrypt and decrypt your data.- See Also:
-
getName
The name of the schedule.- See Also:
-
getScheduleExpressionTimezone
The timezone in which the scheduling expression is evaluated.- See Also:
-
getStartDate
The date, in UTC, after which the schedule can begin invoking its target.Depending on the schedule's recurrence expression, invocations might occur on, or after, the
StartDateyou specify. EventBridge Scheduler ignoresStartDatefor one-time schedules.- See Also:
-
getState
Specifies whether the schedule is enabled or disabled.Allowed Values :
ENABLED|DISABLED- See Also:
-
builder
- Returns:
- a
CfnScheduleProps.BuilderofCfnScheduleProps
-