@Generated(value="software.amazon.awssdk:codegen") public final class SendCommandRequest extends SsmRequest implements ToCopyableBuilder<SendCommandRequest.Builder,SendCommandRequest>
| Modifier and Type | Class and Description |
|---|---|
static interface |
SendCommandRequest.Builder |
| Modifier and Type | Method and Description |
|---|---|
static SendCommandRequest.Builder |
builder() |
CloudWatchOutputConfig |
cloudWatchOutputConfig()
Enables Systems Manager to send Run Command output to Amazon CloudWatch Logs.
|
String |
comment()
User-specified information about the command, such as a brief description of what the command should do.
|
String |
documentHash()
The Sha256 or Sha1 hash created by the system when the document was created.
|
DocumentHashType |
documentHashType()
Sha256 or Sha1.
|
String |
documentHashTypeAsString()
Sha256 or Sha1.
|
String |
documentName()
Required.
|
String |
documentVersion()
The SSM document version to use in the request.
|
boolean |
equals(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
List<String> |
instanceIds()
The instance IDs where the command should execute.
|
String |
maxConcurrency()
(Optional) The maximum number of instances that are allowed to execute the command at the same time.
|
String |
maxErrors()
The maximum number of errors allowed without the command failing.
|
NotificationConfig |
notificationConfig()
Configurations for sending notifications.
|
String |
outputS3BucketName()
The name of the S3 bucket where command execution responses should be stored.
|
String |
outputS3KeyPrefix()
The directory structure within the S3 bucket where the responses should be stored.
|
String |
outputS3Region()
(Deprecated) You can no longer specify this parameter.
|
Map<String,List<String>> |
parameters()
The required and optional parameters specified in the document being executed.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends SendCommandRequest.Builder> |
serializableBuilderClass() |
String |
serviceRoleArn()
The IAM role that Systems Manager uses to send notifications.
|
List<Target> |
targets()
(Optional) An array of search criteria that targets instances using a Key,Value combination that you specify.
|
Integer |
timeoutSeconds()
If this time is reached and the command has not already started executing, it will not run.
|
SendCommandRequest.Builder |
toBuilder() |
String |
toString() |
overrideConfigurationclone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic List<String> instanceIds()
The instance IDs where the command should execute. You can specify a maximum of 50 IDs. If you prefer not to list individual instance IDs, you can instead send commands to a fleet of instances using the Targets parameter, which accepts EC2 tags. For more information about how to use targets, see Sending Commands to a Fleet in the AWS Systems Manager User Guide.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
public List<Target> targets()
(Optional) An array of search criteria that targets instances using a Key,Value combination that you specify. Targets is required if you don't provide one or more instance IDs in the call. For more information about how to use targets, see Sending Commands to a Fleet in the AWS Systems Manager User Guide.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
public String documentName()
Required. The name of the Systems Manager document to execute. This can be a public document or a custom document.
public String documentVersion()
The SSM document version to use in the request. You can specify $DEFAULT, $LATEST, or a specific version number. If you execute commands by using the AWS CLI, then you must escape the first two options by using a backslash. If you specify a version number, then you don't need to use the backslash. For example:
--document-version "\$DEFAULT"
--document-version "\$LATEST"
--document-version "3"
--document-version "\$DEFAULT"
--document-version "\$LATEST"
--document-version "3"
public String documentHash()
The Sha256 or Sha1 hash created by the system when the document was created.
Sha1 hashes have been deprecated.
Sha1 hashes have been deprecated.
public DocumentHashType documentHashType()
Sha256 or Sha1.
Sha1 hashes have been deprecated.
If the service returns an enum value that is not available in the current SDK version, documentHashType
will return DocumentHashType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available
from documentHashTypeAsString().
Sha1 hashes have been deprecated.
DocumentHashTypepublic String documentHashTypeAsString()
Sha256 or Sha1.
Sha1 hashes have been deprecated.
If the service returns an enum value that is not available in the current SDK version, documentHashType
will return DocumentHashType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available
from documentHashTypeAsString().
Sha1 hashes have been deprecated.
DocumentHashTypepublic Integer timeoutSeconds()
If this time is reached and the command has not already started executing, it will not run.
public String comment()
User-specified information about the command, such as a brief description of what the command should do.
public Map<String,List<String>> parameters()
The required and optional parameters specified in the document being executed.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
public String outputS3Region()
(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Systems Manager automatically determines the Amazon S3 bucket region.
public String outputS3BucketName()
The name of the S3 bucket where command execution responses should be stored.
public String outputS3KeyPrefix()
The directory structure within the S3 bucket where the responses should be stored.
public String maxConcurrency()
(Optional) The maximum number of instances that are allowed to execute the command at the same time. You can specify a number such as 10 or a percentage such as 10%. The default value is 50. For more information about how to use MaxConcurrency, see Using Concurrency Controls in the AWS Systems Manager User Guide.
public String maxErrors()
The maximum number of errors allowed without the command failing. When the command fails one more time beyond the value of MaxErrors, the systems stops sending the command to additional targets. You can specify a number like 10 or a percentage like 10%. The default value is 0. For more information about how to use MaxErrors, see Using Error Controls in the AWS Systems Manager User Guide.
public String serviceRoleArn()
The IAM role that Systems Manager uses to send notifications.
public NotificationConfig notificationConfig()
Configurations for sending notifications.
public CloudWatchOutputConfig cloudWatchOutputConfig()
Enables Systems Manager to send Run Command output to Amazon CloudWatch Logs.
public SendCommandRequest.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<SendCommandRequest.Builder,SendCommandRequest>toBuilder in class SsmRequestpublic static SendCommandRequest.Builder builder()
public static Class<? extends SendCommandRequest.Builder> serializableBuilderClass()
public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
getValueForField in class SdkRequestCopyright © 2019. All rights reserved.