Interface ListOperationEventsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ListOperationEventsRequest.Builder,ListOperationEventsRequest>,SdkBuilder<ListOperationEventsRequest.Builder,ListOperationEventsRequest>,SdkPojo,SdkRequest.Builder,SsmSapRequest.Builder
- Enclosing class:
- ListOperationEventsRequest
public static interface ListOperationEventsRequest.Builder extends SsmSapRequest.Builder, SdkPojo, CopyableBuilder<ListOperationEventsRequest.Builder,ListOperationEventsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListOperationEventsRequest.Builderfilters(Collection<Filter> filters)Optionally specify filters to narrow the returned operation event items.ListOperationEventsRequest.Builderfilters(Consumer<Filter.Builder>... filters)Optionally specify filters to narrow the returned operation event items.ListOperationEventsRequest.Builderfilters(Filter... filters)Optionally specify filters to narrow the returned operation event items.ListOperationEventsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return with a single call.ListOperationEventsRequest.BuildernextToken(String nextToken)The token to use to retrieve the next page of results.ListOperationEventsRequest.BuilderoperationId(String operationId)The ID of the operation.ListOperationEventsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListOperationEventsRequest.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.ssmsap.model.SsmSapRequest.Builder
build
-
-
-
-
Method Detail
-
operationId
ListOperationEventsRequest.Builder operationId(String operationId)
The ID of the operation.
- Parameters:
operationId- The ID of the operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListOperationEventsRequest.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
ListOperationEventsRequest.Builder nextToken(String nextToken)
The token to use to retrieve the next page of results. This value is null when there are no more results to return.
- Parameters:
nextToken- The token to use to retrieve the next page of results. This value is null when there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListOperationEventsRequest.Builder filters(Collection<Filter> filters)
Optionally specify filters to narrow the returned operation event items.
Valid filter names include
status,resourceID, andresourceType. The valid operator for all three filters isEquals.- Parameters:
filters- Optionally specify filters to narrow the returned operation event items.Valid filter names include
status,resourceID, andresourceType. The valid operator for all three filters isEquals.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListOperationEventsRequest.Builder filters(Filter... filters)
Optionally specify filters to narrow the returned operation event items.
Valid filter names include
status,resourceID, andresourceType. The valid operator for all three filters isEquals.- Parameters:
filters- Optionally specify filters to narrow the returned operation event items.Valid filter names include
status,resourceID, andresourceType. The valid operator for all three filters isEquals.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListOperationEventsRequest.Builder filters(Consumer<Filter.Builder>... filters)
Optionally specify filters to narrow the returned operation event items.
Valid filter names include
This is a convenience method that creates an instance of thestatus,resourceID, andresourceType. The valid operator for all three filters isEquals.Filter.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
ListOperationEventsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListOperationEventsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-