Interface ListOperationEventsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListOperationEventsResponse.Builder,ListOperationEventsResponse>,SdkBuilder<ListOperationEventsResponse.Builder,ListOperationEventsResponse>,SdkPojo,SdkResponse.Builder,SsmSapResponse.Builder
- Enclosing class:
- ListOperationEventsResponse
public static interface ListOperationEventsResponse.Builder extends SsmSapResponse.Builder, SdkPojo, CopyableBuilder<ListOperationEventsResponse.Builder,ListOperationEventsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListOperationEventsResponse.BuildernextToken(String nextToken)The token to use to retrieve the next page of results.ListOperationEventsResponse.BuilderoperationEvents(Collection<OperationEvent> operationEvents)A returned list of operation events that meet the filter criteria.ListOperationEventsResponse.BuilderoperationEvents(Consumer<OperationEvent.Builder>... operationEvents)A returned list of operation events that meet the filter criteria.ListOperationEventsResponse.BuilderoperationEvents(OperationEvent... operationEvents)A returned list of operation events that meet the filter criteria.-
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.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ssmsap.model.SsmSapResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
operationEvents
ListOperationEventsResponse.Builder operationEvents(Collection<OperationEvent> operationEvents)
A returned list of operation events that meet the filter criteria.
- Parameters:
operationEvents- A returned list of operation events that meet the filter criteria.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operationEvents
ListOperationEventsResponse.Builder operationEvents(OperationEvent... operationEvents)
A returned list of operation events that meet the filter criteria.
- Parameters:
operationEvents- A returned list of operation events that meet the filter criteria.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operationEvents
ListOperationEventsResponse.Builder operationEvents(Consumer<OperationEvent.Builder>... operationEvents)
A returned list of operation events that meet the filter criteria.
This is a convenience method that creates an instance of theOperationEvent.Builderavoiding the need to create one manually viaOperationEvent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#operationEvents(List.) - Parameters:
operationEvents- a consumer that will call methods onOperationEvent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#operationEvents(java.util.Collection)
-
nextToken
ListOperationEventsResponse.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.
-
-