Class GetCommandInvocationResponse
- All Implemented Interfaces:
SdkPojo
,ToCopyableBuilder<GetCommandInvocationResponse.Builder,
GetCommandInvocationResponse>
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
final CloudWatchOutputConfig
Amazon CloudWatch Logs information where Systems Manager sent the command output.final String
The parent command ID of the invocation plugin.final String
comment()
The comment text for the command.final String
The name of the document that was run.final String
The Systems Manager document (SSM document) version used in the request.final boolean
final boolean
equalsBySdkFields
(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final String
Duration sinceExecutionStartDateTime
.final String
The date and time the plugin finished running.final String
The date and time the plugin started running.final <T> Optional
<T> getValueForField
(String fieldName, Class<T> clazz) Used to retrieve the value of a field from any class that extendsSdkResponse
.final int
hashCode()
final String
The ID of the managed node targeted by the command.final String
The name of the plugin, or step name, for which details are reported.final Integer
The error level response code for the plugin script.static Class
<? extends GetCommandInvocationResponse.Builder> final String
The first 8,000 characters written by the plugin tostderr
.final String
The URL for the complete text written by the plugin tostderr
.final String
The first 24,000 characters written by the plugin tostdout
.final String
The URL for the complete text written by the plugin tostdout
in Amazon Simple Storage Service (Amazon S3).final CommandInvocationStatus
status()
The status of this invocation plugin.final String
The status of this invocation plugin.final String
A detailed status of the command execution for an invocation.Take this object and create a builder that contains all of the current property values of this object.final String
toString()
Returns a string representation of this object.Methods inherited from class software.amazon.awssdk.services.ssm.model.SsmResponse
responseMetadata
Methods inherited from class software.amazon.awssdk.core.SdkResponse
sdkHttpResponse
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
Method Details
-
commandId
The parent command ID of the invocation plugin.
- Returns:
- The parent command ID of the invocation plugin.
-
instanceId
The ID of the managed node targeted by the command. A managed node can be an Amazon Elastic Compute Cloud (Amazon EC2) instance, edge device, or on-premises server or VM in your hybrid environment that is configured for Amazon Web Services Systems Manager.
- Returns:
- The ID of the managed node targeted by the command. A managed node can be an Amazon Elastic Compute Cloud (Amazon EC2) instance, edge device, or on-premises server or VM in your hybrid environment that is configured for Amazon Web Services Systems Manager.
-
comment
The comment text for the command.
- Returns:
- The comment text for the command.
-
documentName
The name of the document that was run. For example,
AWS-RunShellScript
.- Returns:
- The name of the document that was run. For example,
AWS-RunShellScript
.
-
documentVersion
The Systems Manager document (SSM document) version used in the request.
- Returns:
- The Systems Manager document (SSM document) version used in the request.
-
pluginName
The name of the plugin, or step name, for which details are reported. For example,
aws:RunShellScript
is a plugin.- Returns:
- The name of the plugin, or step name, for which details are reported. For example,
aws:RunShellScript
is a plugin.
-
responseCode
The error level response code for the plugin script. If the response code is
-1
, then the command hasn't started running on the managed node, or it wasn't received by the node.- Returns:
- The error level response code for the plugin script. If the response code is
-1
, then the command hasn't started running on the managed node, or it wasn't received by the node.
-
executionStartDateTime
The date and time the plugin started running. Date and time are written in ISO 8601 format. For example, June 7, 2017 is represented as 2017-06-7. The following sample Amazon Web Services CLI command uses the
InvokedBefore
filter.aws ssm list-commands --filters key=InvokedBefore,value=2017-06-07T00:00:00Z
If the plugin hasn't started to run, the string is empty.
- Returns:
- The date and time the plugin started running. Date and time are written in ISO 8601 format. For example,
June 7, 2017 is represented as 2017-06-7. The following sample Amazon Web Services CLI command uses the
InvokedBefore
filter.aws ssm list-commands --filters key=InvokedBefore,value=2017-06-07T00:00:00Z
If the plugin hasn't started to run, the string is empty.
-
executionElapsedTime
Duration since
ExecutionStartDateTime
.- Returns:
- Duration since
ExecutionStartDateTime
.
-
executionEndDateTime
The date and time the plugin finished running. Date and time are written in ISO 8601 format. For example, June 7, 2017 is represented as 2017-06-7. The following sample Amazon Web Services CLI command uses the
InvokedAfter
filter.aws ssm list-commands --filters key=InvokedAfter,value=2017-06-07T00:00:00Z
If the plugin hasn't started to run, the string is empty.
- Returns:
- The date and time the plugin finished running. Date and time are written in ISO 8601 format. For example,
June 7, 2017 is represented as 2017-06-7. The following sample Amazon Web Services CLI command uses the
InvokedAfter
filter.aws ssm list-commands --filters key=InvokedAfter,value=2017-06-07T00:00:00Z
If the plugin hasn't started to run, the string is empty.
-
status
The status of this invocation plugin. This status can be different than
StatusDetails
.If the service returns an enum value that is not available in the current SDK version,
status
will returnCommandInvocationStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromstatusAsString()
.- Returns:
- The status of this invocation plugin. This status can be different than
StatusDetails
. - See Also:
-
statusAsString
The status of this invocation plugin. This status can be different than
StatusDetails
.If the service returns an enum value that is not available in the current SDK version,
status
will returnCommandInvocationStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromstatusAsString()
.- Returns:
- The status of this invocation plugin. This status can be different than
StatusDetails
. - See Also:
-
statusDetails
A detailed status of the command execution for an invocation.
StatusDetails
includes more information thanStatus
because it includes states resulting from error and concurrency control parameters.StatusDetails
can show different results thanStatus
. For more information about these statuses, see Understanding command statuses in the Amazon Web Services Systems Manager User Guide.StatusDetails
can be one of the following values:-
Pending: The command hasn't been sent to the managed node.
-
In Progress: The command has been sent to the managed node but hasn't reached a terminal state.
-
Delayed: The system attempted to send the command to the target, but the target wasn't available. The managed node might not be available because of network issues, because the node was stopped, or for similar reasons. The system will try to send the command again.
-
Success: The command or plugin ran successfully. This is a terminal state.
-
Delivery Timed Out: The command wasn't delivered to the managed node before the delivery timeout expired. Delivery timeouts don't count against the parent command's
MaxErrors
limit, but they do contribute to whether the parent command status is Success or Incomplete. This is a terminal state. -
Execution Timed Out: The command started to run on the managed node, but the execution wasn't complete before the timeout expired. Execution timeouts count against the
MaxErrors
limit of the parent command. This is a terminal state. -
Failed: The command wasn't run successfully on the managed node. For a plugin, this indicates that the result code wasn't zero. For a command invocation, this indicates that the result code for one or more plugins wasn't zero. Invocation failures count against the
MaxErrors
limit of the parent command. This is a terminal state. -
Cancelled: The command was terminated before it was completed. This is a terminal state.
-
Undeliverable: The command can't be delivered to the managed node. The node might not exist or might not be responding. Undeliverable invocations don't count against the parent command's
MaxErrors
limit and don't contribute to whether the parent command status is Success or Incomplete. This is a terminal state. -
Terminated: The parent command exceeded its
MaxErrors
limit and subsequent command invocations were canceled by the system. This is a terminal state.
- Returns:
- A detailed status of the command execution for an invocation.
StatusDetails
includes more information thanStatus
because it includes states resulting from error and concurrency control parameters.StatusDetails
can show different results thanStatus
. For more information about these statuses, see Understanding command statuses in the Amazon Web Services Systems Manager User Guide.StatusDetails
can be one of the following values:-
Pending: The command hasn't been sent to the managed node.
-
In Progress: The command has been sent to the managed node but hasn't reached a terminal state.
-
Delayed: The system attempted to send the command to the target, but the target wasn't available. The managed node might not be available because of network issues, because the node was stopped, or for similar reasons. The system will try to send the command again.
-
Success: The command or plugin ran successfully. This is a terminal state.
-
Delivery Timed Out: The command wasn't delivered to the managed node before the delivery timeout expired. Delivery timeouts don't count against the parent command's
MaxErrors
limit, but they do contribute to whether the parent command status is Success or Incomplete. This is a terminal state. -
Execution Timed Out: The command started to run on the managed node, but the execution wasn't complete before the timeout expired. Execution timeouts count against the
MaxErrors
limit of the parent command. This is a terminal state. -
Failed: The command wasn't run successfully on the managed node. For a plugin, this indicates that the result code wasn't zero. For a command invocation, this indicates that the result code for one or more plugins wasn't zero. Invocation failures count against the
MaxErrors
limit of the parent command. This is a terminal state. -
Cancelled: The command was terminated before it was completed. This is a terminal state.
-
Undeliverable: The command can't be delivered to the managed node. The node might not exist or might not be responding. Undeliverable invocations don't count against the parent command's
MaxErrors
limit and don't contribute to whether the parent command status is Success or Incomplete. This is a terminal state. -
Terminated: The parent command exceeded its
MaxErrors
limit and subsequent command invocations were canceled by the system. This is a terminal state.
-
-
-
standardOutputContent
The first 24,000 characters written by the plugin to
stdout
. If the command hasn't finished running, ifExecutionStatus
is neither Succeeded nor Failed, then this string is empty.- Returns:
- The first 24,000 characters written by the plugin to
stdout
. If the command hasn't finished running, ifExecutionStatus
is neither Succeeded nor Failed, then this string is empty.
-
standardOutputUrl
The URL for the complete text written by the plugin to
stdout
in Amazon Simple Storage Service (Amazon S3). If an S3 bucket wasn't specified, then this string is empty.- Returns:
- The URL for the complete text written by the plugin to
stdout
in Amazon Simple Storage Service (Amazon S3). If an S3 bucket wasn't specified, then this string is empty.
-
standardErrorContent
The first 8,000 characters written by the plugin to
stderr
. If the command hasn't finished running, then this string is empty.- Returns:
- The first 8,000 characters written by the plugin to
stderr
. If the command hasn't finished running, then this string is empty.
-
standardErrorUrl
The URL for the complete text written by the plugin to
stderr
. If the command hasn't finished running, then this string is empty.- Returns:
- The URL for the complete text written by the plugin to
stderr
. If the command hasn't finished running, then this string is empty.
-
cloudWatchOutputConfig
Amazon CloudWatch Logs information where Systems Manager sent the command output.
- Returns:
- Amazon CloudWatch Logs information where Systems Manager sent the command output.
-
toBuilder
Description copied from interface:ToCopyableBuilder
Take this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilder
in interfaceToCopyableBuilder<GetCommandInvocationResponse.Builder,
GetCommandInvocationResponse> - Specified by:
toBuilder
in classAwsResponse
- Returns:
- a builder for type T
-
builder
-
serializableBuilderClass
-
hashCode
public final int hashCode()- Overrides:
hashCode
in classAwsResponse
-
equals
- Overrides:
equals
in classAwsResponse
-
equalsBySdkFields
Description copied from interface:SdkPojo
Indicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojo
class, and is generated based on a service model.If an
SdkPojo
class does not have any inherited fields,equalsBySdkFields
andequals
are essentially the same.- Specified by:
equalsBySdkFields
in interfaceSdkPojo
- Parameters:
obj
- the object to be compared with- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
-
toString
-
getValueForField
Description copied from class:SdkResponse
Used to retrieve the value of a field from any class that extendsSdkResponse
. The field name specified should match the member name from the corresponding service-2.json model specified in the codegen-resources folder for a given service. The class specifies what class to cast the returned value to. If the returned value is also a modeled class, theSdkResponse.getValueForField(String, Class)
method will again be available.- Overrides:
getValueForField
in classSdkResponse
- Parameters:
fieldName
- The name of the member to be retrieved.clazz
- The class to cast the returned object to.- Returns:
- Optional containing the casted return value
-
sdkFields
-