Struct aws_sdk_ssm::client::fluent_builders::SendCommand [−][src]
pub struct SendCommand<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to SendCommand
.
Runs commands on one or more managed instances.
Implementations
impl<C, M, R> SendCommand<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> SendCommand<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(self) -> Result<SendCommandOutput, SdkError<SendCommandError>> where
R::Policy: SmithyRetryPolicy<SendCommandInputOperationOutputAlias, SendCommandOutput, SendCommandError, SendCommandInputOperationRetryAlias>,
pub async fn send(self) -> Result<SendCommandOutput, SdkError<SendCommandError>> where
R::Policy: SmithyRetryPolicy<SendCommandInputOperationOutputAlias, SendCommandOutput, SendCommandError, SendCommandInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
Appends an item to InstanceIds
.
To override the contents of this collection use set_instance_ids
.
The IDs of the instances where the command should run. Specifying instance IDs is most useful when you are targeting a limited number of instances, though you can specify up to 50 IDs.
To target a larger number of instances, or if you prefer not to list individual instance
IDs, we recommend using the Targets
option instead. Using Targets
,
which accepts tag key-value pairs to identify the instances to send commands to, you can a send
command to tens, hundreds, or thousands of instances 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.
The IDs of the instances where the command should run. Specifying instance IDs is most useful when you are targeting a limited number of instances, though you can specify up to 50 IDs.
To target a larger number of instances, or if you prefer not to list individual instance
IDs, we recommend using the Targets
option instead. Using Targets
,
which accepts tag key-value pairs to identify the instances to send commands to, you can a send
command to tens, hundreds, or thousands of instances 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.
Appends an item to Targets
.
To override the contents of this collection use set_targets
.
An array of search criteria that targets instances 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 instances at once. Using Targets
, which accepts tag key-value
pairs to identify instances, you can send a command to tens, hundreds, or thousands of instances
at once.
To send a command to a smaller number of instances, 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.
An array of search criteria that targets instances 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 instances at once. Using Targets
, which accepts tag key-value
pairs to identify instances, you can send a command to tens, hundreds, or thousands of instances
at once.
To send a command to a smaller number of instances, 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.
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.
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.
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"
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"
The Sha256 or Sha1 hash created by the system when the document was created.
Sha1 hashes have been deprecated.
The Sha256 or Sha1 hash created by the system when the document was created.
Sha1 hashes have been deprecated.
Sha256 or Sha1.
Sha1 hashes have been deprecated.
Sha256 or Sha1.
Sha1 hashes have been deprecated.
If this time is reached and the command hasn't already started running, it won't run.
If this time is reached and the command hasn't already started running, it won't run.
User-specified information about the command, such as a brief description of what the command should do.
User-specified information about the command, such as a brief description of what the command should do.
Adds a key-value pair to Parameters
.
To override the contents of this collection use set_parameters
.
The required and optional parameters specified in the document being run.
The required and optional parameters specified in the document being run.
(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.
(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.
The name of the S3 bucket where command execution responses should be stored.
The name of the S3 bucket where command execution responses should be stored.
The directory structure within the S3 bucket where the responses should be stored.
The directory structure within the S3 bucket where the responses should be stored.
(Optional) The maximum number of instances 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.
(Optional) The maximum number of instances 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.
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.
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.
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.
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.
Configurations for sending notifications.
Configurations for sending notifications.
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.
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.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for SendCommand<C, M, R>
impl<C, M, R> Unpin for SendCommand<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for SendCommand<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more