Class CommandFilter
- java.lang.Object
-
- software.amazon.awssdk.services.ssm.model.CommandFilter
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<CommandFilter.Builder,CommandFilter>
@Generated("software.amazon.awssdk:codegen") public final class CommandFilter extends Object implements SdkPojo, Serializable, ToCopyableBuilder<CommandFilter.Builder,CommandFilter>
Describes a command filter.
A managed node ID can't be specified when a command status is
Pendingbecause the command hasn't run on the node yet.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceCommandFilter.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CommandFilter.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()CommandFilterKeykey()The name of the filter.StringkeyAsString()The name of the filter.List<SdkField<?>>sdkFields()static Class<? extends CommandFilter.Builder>serializableBuilderClass()CommandFilter.BuildertoBuilder()StringtoString()Returns a string representation of this object.Stringvalue()The filter value.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
key
public final CommandFilterKey key()
The name of the filter.
The
ExecutionStagefilter can't be used with theListCommandInvocationsoperation, only withListCommands.If the service returns an enum value that is not available in the current SDK version,
keywill returnCommandFilterKey.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromkeyAsString().- Returns:
- The name of the filter.
The
ExecutionStagefilter can't be used with theListCommandInvocationsoperation, only withListCommands. - See Also:
CommandFilterKey
-
keyAsString
public final String keyAsString()
The name of the filter.
The
ExecutionStagefilter can't be used with theListCommandInvocationsoperation, only withListCommands.If the service returns an enum value that is not available in the current SDK version,
keywill returnCommandFilterKey.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromkeyAsString().- Returns:
- The name of the filter.
The
ExecutionStagefilter can't be used with theListCommandInvocationsoperation, only withListCommands. - See Also:
CommandFilterKey
-
value
public final String value()
The filter value. Valid values for each filter key are as follows:
-
InvokedAfter: Specify a timestamp to limit your results. For example, specify
2024-07-07T00:00:00Zto see a list of command executions occurring July 7, 2021, and later. -
InvokedBefore: Specify a timestamp to limit your results. For example, specify
2024-07-07T00:00:00Zto see a list of command executions from before July 7, 2021. -
Status: Specify a valid command status to see a list of all command executions with that status. The status choices depend on the API you call.
The status values you can specify for
ListCommandsare:-
Pending -
InProgress -
Success -
Cancelled -
Failed -
TimedOut(this includes both Delivery and Execution time outs) -
AccessDenied -
DeliveryTimedOut -
ExecutionTimedOut -
Incomplete -
NoInstancesInTag -
LimitExceeded
The status values you can specify for
ListCommandInvocationsare:-
Pending -
InProgress -
Delayed -
Success -
Cancelled -
Failed -
TimedOut(this includes both Delivery and Execution time outs) -
AccessDenied -
DeliveryTimedOut -
ExecutionTimedOut -
Undeliverable -
InvalidPlatform -
Terminated
-
-
DocumentName: Specify name of the Amazon Web Services Systems Manager document (SSM document) for which you want to see command execution results. For example, specify
AWS-RunPatchBaselineto see command executions that used this SSM document to perform security patching operations on managed nodes. -
ExecutionStage: Specify one of the following values (
ListCommandsoperations only):-
Executing: Returns a list of command executions that are currently still running. -
Complete: Returns a list of command executions that have already completed.
-
- Returns:
- The filter value. Valid values for each filter key are as follows:
-
InvokedAfter: Specify a timestamp to limit your results. For example, specify
2024-07-07T00:00:00Zto see a list of command executions occurring July 7, 2021, and later. -
InvokedBefore: Specify a timestamp to limit your results. For example, specify
2024-07-07T00:00:00Zto see a list of command executions from before July 7, 2021. -
Status: Specify a valid command status to see a list of all command executions with that status. The status choices depend on the API you call.
The status values you can specify for
ListCommandsare:-
Pending -
InProgress -
Success -
Cancelled -
Failed -
TimedOut(this includes both Delivery and Execution time outs) -
AccessDenied -
DeliveryTimedOut -
ExecutionTimedOut -
Incomplete -
NoInstancesInTag -
LimitExceeded
The status values you can specify for
ListCommandInvocationsare:-
Pending -
InProgress -
Delayed -
Success -
Cancelled -
Failed -
TimedOut(this includes both Delivery and Execution time outs) -
AccessDenied -
DeliveryTimedOut -
ExecutionTimedOut -
Undeliverable -
InvalidPlatform -
Terminated
-
-
DocumentName: Specify name of the Amazon Web Services Systems Manager document (SSM document) for which you want to see command execution results. For example, specify
AWS-RunPatchBaselineto see command executions that used this SSM document to perform security patching operations on managed nodes. -
ExecutionStage: Specify one of the following values (
ListCommandsoperations only):-
Executing: Returns a list of command executions that are currently still running. -
Complete: Returns a list of command executions that have already completed.
-
-
-
-
toBuilder
public CommandFilter.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<CommandFilter.Builder,CommandFilter>
-
builder
public static CommandFilter.Builder builder()
-
serializableBuilderClass
public static Class<? extends CommandFilter.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-