Interface ListCommandsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ListCommandsRequest.Builder,ListCommandsRequest>
,SdkBuilder<ListCommandsRequest.Builder,ListCommandsRequest>
,SdkPojo
,SdkRequest.Builder
,SsmRequest.Builder
- Enclosing class:
- ListCommandsRequest
public static interface ListCommandsRequest.Builder extends SsmRequest.Builder, SdkPojo, CopyableBuilder<ListCommandsRequest.Builder,ListCommandsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCommandsRequest.Builder
commandId(String commandId)
(Optional) If provided, lists only the specified command.ListCommandsRequest.Builder
filters(Collection<CommandFilter> filters)
(Optional) One or more filters.ListCommandsRequest.Builder
filters(Consumer<CommandFilter.Builder>... filters)
(Optional) One or more filters.ListCommandsRequest.Builder
filters(CommandFilter... filters)
(Optional) One or more filters.ListCommandsRequest.Builder
instanceId(String instanceId)
(Optional) Lists commands issued against this managed node ID.ListCommandsRequest.Builder
maxResults(Integer maxResults)
(Optional) The maximum number of items to return for this call.ListCommandsRequest.Builder
nextToken(String nextToken)
(Optional) The token for the next set of items to return.ListCommandsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListCommandsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmRequest.Builder
build
-
-
-
-
Method Detail
-
commandId
ListCommandsRequest.Builder commandId(String commandId)
(Optional) If provided, lists only the specified command.
- Parameters:
commandId
- (Optional) If provided, lists only the specified command.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
instanceId
ListCommandsRequest.Builder instanceId(String instanceId)
(Optional) Lists commands issued against this managed node ID.
You can't specify a managed node ID in the same command that you specify
Status
=Pending
. This is because the command hasn't reached the managed node yet.- Parameters:
instanceId
- (Optional) Lists commands issued against this managed node ID.You can't specify a managed node ID in the same command that you specify
Status
=Pending
. This is because the command hasn't reached the managed node yet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListCommandsRequest.Builder maxResults(Integer maxResults)
(Optional) The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
- Parameters:
maxResults
- (Optional) The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListCommandsRequest.Builder nextToken(String nextToken)
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
- Parameters:
nextToken
- (Optional) The token for the next set of items to return. (You received this token from a previous call.)- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListCommandsRequest.Builder filters(Collection<CommandFilter> filters)
(Optional) One or more filters. Use a filter to return a more specific list of results.
- Parameters:
filters
- (Optional) One or more filters. Use a filter to return a more specific list of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListCommandsRequest.Builder filters(CommandFilter... filters)
(Optional) One or more filters. Use a filter to return a more specific list of results.
- Parameters:
filters
- (Optional) One or more filters. Use a filter to return a more specific list of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListCommandsRequest.Builder filters(Consumer<CommandFilter.Builder>... filters)
(Optional) One or more filters. Use a filter to return a more specific list of results.
This is a convenience method that creates an instance of theCommandFilter.Builder
avoiding the need to create one manually viaCommandFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#filters(List
.) - Parameters:
filters
- a consumer that will call methods onCommandFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection
)
-
overrideConfiguration
ListCommandsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListCommandsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-