@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 Amazon Web Services 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()
The name of the Amazon Web Services Systems Manager document (SSM document) to run.
|
String |
documentVersion()
The SSM document version to use in the request.
|
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
boolean |
hasInstanceIds()
For responses, this returns true if the service returned a value for the InstanceIds property.
|
boolean |
hasParameters()
For responses, this returns true if the service returned a value for the Parameters property.
|
boolean |
hasTargets()
For responses, this returns true if the service returned a value for the Targets property.
|
List<String> |
instanceIds()
The IDs of the managed nodes where the command should run.
|
String |
maxConcurrency()
(Optional) The maximum number of managed nodes that are allowed to run 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 run.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends SendCommandRequest.Builder> |
serializableBuilderClass() |
String |
serviceRoleArn()
The ARN of the Identity and Access Management (IAM) service role to use to publish Amazon Simple Notification
Service (Amazon SNS) notifications for Run Command commands.
|
List<Target> |
targets()
An array of search criteria that targets managed nodes using a
Key,Value combination that you
specify. |
Integer |
timeoutSeconds()
If this time is reached and the command hasn't already started running, it won't run.
|
SendCommandRequest.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
overrideConfiguration
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
copy
public final boolean hasInstanceIds()
isEmpty()
method on the property).
This is useful because the SDK will never return a null collection or map, but you may need to differentiate
between the service returning nothing (or null) and the service returning an empty collection or map. For
requests, this returns true if a value for the property was specified in the request builder, and false if a
value was not specified.public final List<String> instanceIds()
The IDs of the managed nodes where the command should run. Specifying managed node IDs is most useful when you are targeting a limited number of managed nodes, though you can specify up to 50 IDs.
To target a larger number of managed nodes, or if you prefer not to list individual node IDs, we recommend using
the Targets
option instead. Using Targets
, which accepts tag key-value pairs to
identify the managed nodes to send commands to, you can a send command to tens, hundreds, or thousands of nodes
at once.
For more information about how to use targets, see Using targets and rate controls to send commands to a fleet in the Amazon Web Services Systems Manager User Guide.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasInstanceIds()
method.
To target a larger number of managed nodes, or if you prefer not to list individual node IDs, we
recommend using the Targets
option instead. Using Targets
, which accepts tag
key-value pairs to identify the managed nodes to send commands to, you can a send command to tens,
hundreds, or thousands of nodes at once.
For more information about how to use targets, see Using targets and rate controls to send commands to a fleet in the Amazon Web Services Systems Manager User Guide.
public final boolean hasTargets()
isEmpty()
method on the property). This is
useful because the SDK will never return a null collection or map, but you may need to differentiate between the
service returning nothing (or null) and the service returning an empty collection or map. For requests, this
returns true if a value for the property was specified in the request builder, and false if a value was not
specified.public final List<Target> targets()
An array of search criteria that targets managed nodes using a Key,Value
combination that you
specify. Specifying targets is most useful when you want to send a command to a large number of managed nodes at
once. Using Targets
, which accepts tag key-value pairs to identify managed nodes, you can send a
command to tens, hundreds, or thousands of nodes at once.
To send a command to a smaller number of managed nodes, you can use the InstanceIds
option instead.
For more information about how to use targets, see Sending commands to a fleet in the Amazon Web Services Systems Manager User Guide.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasTargets()
method.
Key,Value
combination that
you specify. Specifying targets is most useful when you want to send a command to a large number of
managed nodes at once. Using Targets
, which accepts tag key-value pairs to identify managed
nodes, you can send a command to tens, hundreds, or thousands of nodes at once.
To send a command to a smaller number of managed nodes, you can use the InstanceIds
option
instead.
For more information about how to use targets, see Sending commands to a fleet in the Amazon Web Services Systems Manager User Guide.
public final String documentName()
The name of the Amazon Web Services Systems Manager document (SSM document) to run. This can be a public document or a custom document. To run a shared document belonging to another account, specify the document Amazon Resource Name (ARN). For more information about how to use shared documents, see Using shared SSM documents in the Amazon Web Services Systems Manager User Guide.
If you specify a document name or ARN that hasn't been shared with your account, you receive an
InvalidDocument
error.
If you specify a document name or ARN that hasn't been shared with your account, you receive an
InvalidDocument
error.
public final String documentVersion()
The SSM document version to use in the request. You can specify $DEFAULT, $LATEST, or a specific version number. If you run commands by using the Command Line Interface (Amazon Web Services 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 final 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 final 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.
DocumentHashType
public final 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.
DocumentHashType
public final Integer timeoutSeconds()
If this time is reached and the command hasn't already started running, it won't run.
public final String comment()
User-specified information about the command, such as a brief description of what the command should do.
public final boolean hasParameters()
isEmpty()
method on the property). This is
useful because the SDK will never return a null collection or map, but you may need to differentiate between the
service returning nothing (or null) and the service returning an empty collection or map. For requests, this
returns true if a value for the property was specified in the request builder, and false if a value was not
specified.public final Map<String,List<String>> parameters()
The required and optional parameters specified in the document being run.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasParameters()
method.
public final String outputS3Region()
(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Systems Manager automatically determines the Amazon Web Services Region of the S3 bucket.
public final String outputS3BucketName()
The name of the S3 bucket where command execution responses should be stored.
public final String outputS3KeyPrefix()
The directory structure within the S3 bucket where the responses should be stored.
public final String maxConcurrency()
(Optional) The maximum number of managed nodes that are allowed to run 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 Amazon Web Services Systems Manager User Guide.
50
. For
more information about how to use MaxConcurrency
, see Using concurrency controls in the Amazon Web Services Systems Manager User Guide.public final 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 Amazon Web Services Systems Manager User Guide.
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 Amazon Web Services Systems Manager User Guide.public final String serviceRoleArn()
The ARN of the Identity and Access Management (IAM) service role to use to publish Amazon Simple Notification Service (Amazon SNS) notifications for Run Command commands.
public final NotificationConfig notificationConfig()
Configurations for sending notifications.
public final CloudWatchOutputConfig cloudWatchOutputConfig()
Enables Amazon Web Services Systems Manager to send Run Command output to Amazon CloudWatch Logs. Run Command is a capability of Amazon Web Services Systems Manager.
public SendCommandRequest.Builder toBuilder()
toBuilder
in interface ToCopyableBuilder<SendCommandRequest.Builder,SendCommandRequest>
toBuilder
in class SsmRequest
public static SendCommandRequest.Builder builder()
public static Class<? extends SendCommandRequest.Builder> serializableBuilderClass()
public final int hashCode()
hashCode
in class AwsRequest
public final boolean equals(Object obj)
equals
in class AwsRequest
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields
in interface SdkPojo
public final String toString()
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
getValueForField
in class SdkRequest
Copyright © 2022. All rights reserved.