Interface DescribeEventDetailsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeEventDetailsResponse.Builder,DescribeEventDetailsResponse>,HealthResponse.Builder,SdkBuilder<DescribeEventDetailsResponse.Builder,DescribeEventDetailsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeEventDetailsResponse
public static interface DescribeEventDetailsResponse.Builder extends HealthResponse.Builder, SdkPojo, CopyableBuilder<DescribeEventDetailsResponse.Builder,DescribeEventDetailsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeEventDetailsResponse.BuilderfailedSet(Collection<EventDetailsErrorItem> failedSet)Error messages for any events that could not be retrieved.DescribeEventDetailsResponse.BuilderfailedSet(Consumer<EventDetailsErrorItem.Builder>... failedSet)Error messages for any events that could not be retrieved.DescribeEventDetailsResponse.BuilderfailedSet(EventDetailsErrorItem... failedSet)Error messages for any events that could not be retrieved.DescribeEventDetailsResponse.BuildersuccessfulSet(Collection<EventDetails> successfulSet)Information about the events that could be retrieved.DescribeEventDetailsResponse.BuildersuccessfulSet(Consumer<EventDetails.Builder>... successfulSet)Information about the events that could be retrieved.DescribeEventDetailsResponse.BuildersuccessfulSet(EventDetails... successfulSet)Information about the events that could be retrieved.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.health.model.HealthResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
successfulSet
DescribeEventDetailsResponse.Builder successfulSet(Collection<EventDetails> successfulSet)
Information about the events that could be retrieved.
- Parameters:
successfulSet- Information about the events that could be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successfulSet
DescribeEventDetailsResponse.Builder successfulSet(EventDetails... successfulSet)
Information about the events that could be retrieved.
- Parameters:
successfulSet- Information about the events that could be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successfulSet
DescribeEventDetailsResponse.Builder successfulSet(Consumer<EventDetails.Builder>... successfulSet)
Information about the events that could be retrieved.
This is a convenience method that creates an instance of theEventDetails.Builderavoiding the need to create one manually viaEventDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#successfulSet(List.) - Parameters:
successfulSet- a consumer that will call methods onEventDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#successfulSet(java.util.Collection)
-
failedSet
DescribeEventDetailsResponse.Builder failedSet(Collection<EventDetailsErrorItem> failedSet)
Error messages for any events that could not be retrieved.
- Parameters:
failedSet- Error messages for any events that could not be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedSet
DescribeEventDetailsResponse.Builder failedSet(EventDetailsErrorItem... failedSet)
Error messages for any events that could not be retrieved.
- Parameters:
failedSet- Error messages for any events that could not be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedSet
DescribeEventDetailsResponse.Builder failedSet(Consumer<EventDetailsErrorItem.Builder>... failedSet)
Error messages for any events that could not be retrieved.
This is a convenience method that creates an instance of theEventDetailsErrorItem.Builderavoiding the need to create one manually viaEventDetailsErrorItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#failedSet(List.) - Parameters:
failedSet- a consumer that will call methods onEventDetailsErrorItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#failedSet(java.util.Collection)
-
-