Interface CommandFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CommandFilter.Builder,CommandFilter>,SdkBuilder<CommandFilter.Builder,CommandFilter>,SdkPojo
- Enclosing class:
- CommandFilter
public static interface CommandFilter.Builder extends SdkPojo, CopyableBuilder<CommandFilter.Builder,CommandFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommandFilter.Builderkey(String key)The name of the filter.CommandFilter.Builderkey(CommandFilterKey key)The name of the filter.CommandFilter.Buildervalue(String value)The filter value.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
key
CommandFilter.Builder key(String key)
The name of the filter.
The
ExecutionStagefilter can't be used with theListCommandInvocationsoperation, only withListCommands.- Parameters:
key- The name of the filter.The
ExecutionStagefilter can't be used with theListCommandInvocationsoperation, only withListCommands.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CommandFilterKey,CommandFilterKey
-
key
CommandFilter.Builder key(CommandFilterKey key)
The name of the filter.
The
ExecutionStagefilter can't be used with theListCommandInvocationsoperation, only withListCommands.- Parameters:
key- The name of the filter.The
ExecutionStagefilter can't be used with theListCommandInvocationsoperation, only withListCommands.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CommandFilterKey,CommandFilterKey
-
value
CommandFilter.Builder value(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.
-
- Parameters:
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:
- Returns a reference to this object so that method calls can be chained together.
-
-
-