Interface DescribeEventsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<DescribeEventsResponse.Builder,DescribeEventsResponse>,SdkBuilder<DescribeEventsResponse.Builder,DescribeEventsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeEventsResponse
@Mutable @NotThreadSafe public static interface DescribeEventsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<DescribeEventsResponse.Builder,DescribeEventsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeEventsResponse.BuildernextToken(String nextToken)If the request doesn't return all the remaining results,NextTokenis set to a token.DescribeEventsResponse.BuilderoperationEvents(Collection<OperationEvent> operationEvents)A list of operation events that match the specified criteria.DescribeEventsResponse.BuilderoperationEvents(Consumer<OperationEvent.Builder>... operationEvents)A list of operation events that match the specified criteria.DescribeEventsResponse.BuilderoperationEvents(OperationEvent... operationEvents)A list of operation events that match the specified criteria.-
Methods inherited from interface software.amazon.awssdk.services.cloudformation.model.CloudFormationResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
operationEvents
DescribeEventsResponse.Builder operationEvents(Collection<OperationEvent> operationEvents)
A list of operation events that match the specified criteria.
- Parameters:
operationEvents- A list of operation events that match the specified criteria.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operationEvents
DescribeEventsResponse.Builder operationEvents(OperationEvent... operationEvents)
A list of operation events that match the specified criteria.
- Parameters:
operationEvents- A list of operation events that match the specified criteria.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operationEvents
DescribeEventsResponse.Builder operationEvents(Consumer<OperationEvent.Builder>... operationEvents)
A list of operation events that match the specified 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
DescribeEventsResponse.Builder nextToken(String nextToken)
If the request doesn't return all the remaining results,
NextTokenis set to a token. To retrieve the next set of results, callDescribeEventsagain and assign that token to the request object'sNextTokenparameter. If the request returns all results,NextTokenis set tonull.- Parameters:
nextToken- If the request doesn't return all the remaining results,NextTokenis set to a token. To retrieve the next set of results, callDescribeEventsagain and assign that token to the request object'sNextTokenparameter. If the request returns all results,NextTokenis set tonull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-