@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:39.768Z") @Stability(value=Stable) public interface CfnMaintenanceWindowTaskProps 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.ssm.*;
Object parameters;
Object taskParameters;
CfnMaintenanceWindowTaskProps cfnMaintenanceWindowTaskProps = CfnMaintenanceWindowTaskProps.builder()
.priority(123)
.taskArn("taskArn")
.taskType("taskType")
.windowId("windowId")
// the properties below are optional
.cutoffBehavior("cutoffBehavior")
.description("description")
.loggingInfo(LoggingInfoProperty.builder()
.region("region")
.s3Bucket("s3Bucket")
// the properties below are optional
.s3Prefix("s3Prefix")
.build())
.maxConcurrency("maxConcurrency")
.maxErrors("maxErrors")
.name("name")
.serviceRoleArn("serviceRoleArn")
.targets(List.of(TargetProperty.builder()
.key("key")
.values(List.of("values"))
.build()))
.taskInvocationParameters(TaskInvocationParametersProperty.builder()
.maintenanceWindowAutomationParameters(MaintenanceWindowAutomationParametersProperty.builder()
.documentVersion("documentVersion")
.parameters(parameters)
.build())
.maintenanceWindowLambdaParameters(MaintenanceWindowLambdaParametersProperty.builder()
.clientContext("clientContext")
.payload("payload")
.qualifier("qualifier")
.build())
.maintenanceWindowRunCommandParameters(MaintenanceWindowRunCommandParametersProperty.builder()
.cloudWatchOutputConfig(CloudWatchOutputConfigProperty.builder()
.cloudWatchLogGroupName("cloudWatchLogGroupName")
.cloudWatchOutputEnabled(false)
.build())
.comment("comment")
.documentHash("documentHash")
.documentHashType("documentHashType")
.documentVersion("documentVersion")
.notificationConfig(NotificationConfigProperty.builder()
.notificationArn("notificationArn")
// the properties below are optional
.notificationEvents(List.of("notificationEvents"))
.notificationType("notificationType")
.build())
.outputS3BucketName("outputS3BucketName")
.outputS3KeyPrefix("outputS3KeyPrefix")
.parameters(parameters)
.serviceRoleArn("serviceRoleArn")
.timeoutSeconds(123)
.build())
.maintenanceWindowStepFunctionsParameters(MaintenanceWindowStepFunctionsParametersProperty.builder()
.input("input")
.name("name")
.build())
.build())
.taskParameters(taskParameters)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMaintenanceWindowTaskProps.Builder
A builder for
CfnMaintenanceWindowTaskProps |
static class |
CfnMaintenanceWindowTaskProps.Jsii$Proxy
An implementation for
CfnMaintenanceWindowTaskProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnMaintenanceWindowTaskProps.Builder |
builder() |
default String |
getCutoffBehavior()
The specification for whether tasks should continue to run after the cutoff time specified in the maintenance windows is reached.
|
default String |
getDescription()
A description of the task.
|
default Object |
getLoggingInfo()
Information about an Amazon S3 bucket to write Run Command task-level logs to.
|
default String |
getMaxConcurrency()
The maximum number of targets this task can be run for, in parallel.
|
default String |
getMaxErrors()
The maximum number of errors allowed before this task stops being scheduled.
|
default String |
getName()
The task name.
|
Number |
getPriority()
The priority of the task in the maintenance window.
|
default String |
getServiceRoleArn()
The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) service role to use to publish Amazon Simple Notification Service (Amazon SNS) notifications for maintenance window Run Command tasks.
|
default Object |
getTargets()
The targets, either instances or window target IDs.
|
String |
getTaskArn()
The resource that the task uses during execution.
|
default Object |
getTaskInvocationParameters()
The parameters to pass to the task when it runs.
|
default Object |
getTaskParameters()
The parameters to pass to the task when it runs.
|
String |
getTaskType()
The type of task.
|
String |
getWindowId()
The ID of the maintenance window where the task is registered.
|
@Stability(value=Stable) @NotNull Number getPriority()
The lower the number, the higher the priority. Tasks that have the same priority are scheduled in parallel.
@Stability(value=Stable) @NotNull String getTaskArn()
For RUN_COMMAND and AUTOMATION task types, TaskArn is the SSM document name or Amazon Resource Name (ARN).
For LAMBDA tasks, TaskArn is the function name or ARN.
For STEP_FUNCTIONS tasks, TaskArn is the state machine ARN.
@Stability(value=Stable) @NotNull String getTaskType()
Valid values: RUN_COMMAND , AUTOMATION , LAMBDA , STEP_FUNCTIONS .
@Stability(value=Stable) @NotNull String getWindowId()
@Stability(value=Stable) @Nullable default String getCutoffBehavior()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getLoggingInfo()
LoggingInfohas been deprecated. To specify an Amazon S3 bucket to contain logs for Run Command tasks, instead use theOutputS3BucketNameandOutputS3KeyPrefixoptions in theTaskInvocationParametersstructure. For information about how Systems Manager handles these options for the supported maintenance window task types, see AWS ::SSM::MaintenanceWindowTask MaintenanceWindowRunCommandParameters .
@Stability(value=Stable) @Nullable default String getMaxConcurrency()
Although this element is listed as "Required: No", a value can be omitted only when you are registering or updating a targetless task You must provide a value in all other cases.
For maintenance window tasks without a target specified, you can't supply a value for this option. Instead, the system inserts a placeholder value of
1. This value doesn't affect the running of your task.
@Stability(value=Stable) @Nullable default String getMaxErrors()
Although this element is listed as "Required: No", a value can be omitted only when you are registering or updating a targetless task You must provide a value in all other cases.
For maintenance window tasks without a target specified, you can't supply a value for this option. Instead, the system inserts a placeholder value of
1. This value doesn't affect the running of your task.
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default String getServiceRoleArn()
@Stability(value=Stable) @Nullable default Object getTargets()
Key=InstanceIds,Values= *instanceid1* , *instanceid2* .Key=WindowTargetIds,Values= *window-target-id-1* , *window-target-id-2* .@Stability(value=Stable) @Nullable default Object getTaskInvocationParameters()
Populate only the fields that match the task type. All other fields should be empty.
When you update a maintenance window task that has options specified in
TaskInvocationParameters, you must provide again all theTaskInvocationParametersvalues that you want to retain. The values you do not specify again are removed. For example, suppose that when you registered a Run Command task, you specifiedTaskInvocationParametersvalues forComment,NotificationConfig, andOutputS3BucketName. If you update the maintenance window task and specify only a differentOutputS3BucketNamevalue, the values forCommentandNotificationConfigare removed.
@Stability(value=Stable) @Nullable default Object getTaskParameters()
TaskParametershas been deprecated. To specify parameters to pass to a task when it runs, instead use theParametersoption in theTaskInvocationParametersstructure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters .
@Stability(value=Stable) static CfnMaintenanceWindowTaskProps.Builder builder()
Copyright © 2022. All rights reserved.