Interface GetConfigurationSetEventDestinationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetConfigurationSetEventDestinationsResponse.Builder,GetConfigurationSetEventDestinationsResponse>,PinpointEmailResponse.Builder,SdkBuilder<GetConfigurationSetEventDestinationsResponse.Builder,GetConfigurationSetEventDestinationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetConfigurationSetEventDestinationsResponse
public static interface GetConfigurationSetEventDestinationsResponse.Builder extends PinpointEmailResponse.Builder, SdkPojo, CopyableBuilder<GetConfigurationSetEventDestinationsResponse.Builder,GetConfigurationSetEventDestinationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetConfigurationSetEventDestinationsResponse.BuildereventDestinations(Collection<EventDestination> eventDestinations)An array that includes all of the events destinations that have been configured for the configuration set.GetConfigurationSetEventDestinationsResponse.BuildereventDestinations(Consumer<EventDestination.Builder>... eventDestinations)An array that includes all of the events destinations that have been configured for the configuration set.GetConfigurationSetEventDestinationsResponse.BuildereventDestinations(EventDestination... eventDestinations)An array that includes all of the events destinations that have been configured for the configuration set.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.pinpointemail.model.PinpointEmailResponse.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
-
eventDestinations
GetConfigurationSetEventDestinationsResponse.Builder eventDestinations(Collection<EventDestination> eventDestinations)
An array that includes all of the events destinations that have been configured for the configuration set.
- Parameters:
eventDestinations- An array that includes all of the events destinations that have been configured for the configuration set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventDestinations
GetConfigurationSetEventDestinationsResponse.Builder eventDestinations(EventDestination... eventDestinations)
An array that includes all of the events destinations that have been configured for the configuration set.
- Parameters:
eventDestinations- An array that includes all of the events destinations that have been configured for the configuration set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventDestinations
GetConfigurationSetEventDestinationsResponse.Builder eventDestinations(Consumer<EventDestination.Builder>... eventDestinations)
An array that includes all of the events destinations that have been configured for the configuration set.
This is a convenience method that creates an instance of theEventDestination.Builderavoiding the need to create one manually viaEventDestination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#eventDestinations(List.) - Parameters:
eventDestinations- a consumer that will call methods onEventDestination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#eventDestinations(java.util.Collection)
-
-