Interface ListOperationsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ListOperationsRequest.Builder,ListOperationsRequest>,SdkBuilder<ListOperationsRequest.Builder,ListOperationsRequest>,SdkPojo,SdkRequest.Builder,SsmSapRequest.Builder
- Enclosing class:
- ListOperationsRequest
public static interface ListOperationsRequest.Builder extends SsmSapRequest.Builder, SdkPojo, CopyableBuilder<ListOperationsRequest.Builder,ListOperationsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListOperationsRequest.BuilderapplicationId(String applicationId)The ID of the application.ListOperationsRequest.Builderfilters(Collection<Filter> filters)The filters of an operation.ListOperationsRequest.Builderfilters(Consumer<Filter.Builder>... filters)The filters of an operation.ListOperationsRequest.Builderfilters(Filter... filters)The filters of an operation.ListOperationsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return with a single call.ListOperationsRequest.BuildernextToken(String nextToken)The token for the next page of results.ListOperationsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListOperationsRequest.BuilderoverrideConfiguration(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.ssmsap.model.SsmSapRequest.Builder
build
-
-
-
-
Method Detail
-
applicationId
ListOperationsRequest.Builder applicationId(String applicationId)
The ID of the application.
- Parameters:
applicationId- The ID of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListOperationsRequest.Builder maxResults(Integer maxResults)
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If you do not specify a value for MaxResults, the request returns 50 items per page by default.
- Parameters:
maxResults- The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If you do not specify a value for MaxResults, the request returns 50 items per page by default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListOperationsRequest.Builder nextToken(String nextToken)
The token for the next page of results.
- Parameters:
nextToken- The token for the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListOperationsRequest.Builder filters(Collection<Filter> filters)
The filters of an operation.
- Parameters:
filters- The filters of an operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListOperationsRequest.Builder filters(Filter... filters)
The filters of an operation.
- Parameters:
filters- The filters of an operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListOperationsRequest.Builder filters(Consumer<Filter.Builder>... filters)
The filters of an operation.
This is a convenience method that creates an instance of theFilter.Builderavoiding the need to create one manually viaFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#filters(List.) - Parameters:
filters- a consumer that will call methods onFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection)
-
overrideConfiguration
ListOperationsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListOperationsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-