@Stability(value=Stable)
public static interface CfnMaintenanceWindowTask.TargetProperty
extends software.amazon.jsii.JsiiSerializable
You specify instances by using Key=InstanceIds,Values=< *instanceid1* >,< *instanceid2* > . You specify window target IDs using Key=WindowTargetIds,Values=< *window-target-id-1* >,< *window-target-id-2* > for a maintenance window task in AWS Systems Manager .
Target is a property of the AWS::SSM::MaintenanceWindowTask property type.
To use
resource-groups:Nameas the key for a maintenance window target, specify the resource group as aAWS::SSM::MaintenanceWindowTargettype, and use theReffunction to specify the target forAWS::SSM::MaintenanceWindowTask. For an example, see Create a Run Command task that targets instances using a resource group name in AWS::SSM::MaintenanceWindowTask Examples .
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.*;
TargetProperty targetProperty = TargetProperty.builder()
.key("key")
.values(List.of("values"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMaintenanceWindowTask.TargetProperty.Builder
A builder for
CfnMaintenanceWindowTask.TargetProperty |
static class |
CfnMaintenanceWindowTask.TargetProperty.Jsii$Proxy
An implementation for
CfnMaintenanceWindowTask.TargetProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMaintenanceWindowTask.TargetProperty.Builder |
builder() |
String |
getKey()
User-defined criteria for sending commands that target instances that meet the criteria.
|
List<String> |
getValues()
User-defined criteria that maps to `Key` .
|
@Stability(value=Stable) @NotNull String getKey()
Key can be InstanceIds or WindowTargetIds . For more information about how to target instances within a maintenance window task, see About 'register-task-with-maintenance-window' Options and Values in the AWS Systems Manager User Guide .
@Stability(value=Stable) @NotNull List<String> getValues()
For example, if you specify InstanceIds , you can specify i-1234567890abcdef0,i-9876543210abcdef0 to run a command on two EC2 instances. For more information about how to target instances within a maintenance window task, see About 'register-task-with-maintenance-window' Options and Values in the AWS Systems Manager User Guide .
@Stability(value=Stable) static CfnMaintenanceWindowTask.TargetProperty.Builder builder()
Copyright © 2022. All rights reserved.