Interface DeleteEventDestinationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DeleteEventDestinationResponse.Builder,DeleteEventDestinationResponse>,PinpointSmsVoiceV2Response.Builder,SdkBuilder<DeleteEventDestinationResponse.Builder,DeleteEventDestinationResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DeleteEventDestinationResponse
public static interface DeleteEventDestinationResponse.Builder extends PinpointSmsVoiceV2Response.Builder, SdkPojo, CopyableBuilder<DeleteEventDestinationResponse.Builder,DeleteEventDestinationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DeleteEventDestinationResponse.BuilderconfigurationSetArn(String configurationSetArn)The Amazon Resource Name (ARN) of the configuration set.DeleteEventDestinationResponse.BuilderconfigurationSetName(String configurationSetName)The name of the configuration set the event destination was deleted from.default DeleteEventDestinationResponse.BuildereventDestination(Consumer<EventDestination.Builder> eventDestination)The event destination object that was deleted.DeleteEventDestinationResponse.BuildereventDestination(EventDestination eventDestination)The event destination object that was deleted.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.pinpointsmsvoicev2.model.PinpointSmsVoiceV2Response.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
configurationSetArn
DeleteEventDestinationResponse.Builder configurationSetArn(String configurationSetArn)
The Amazon Resource Name (ARN) of the configuration set.
- Parameters:
configurationSetArn- The Amazon Resource Name (ARN) of the configuration set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationSetName
DeleteEventDestinationResponse.Builder configurationSetName(String configurationSetName)
The name of the configuration set the event destination was deleted from.
- Parameters:
configurationSetName- The name of the configuration set the event destination was deleted from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventDestination
DeleteEventDestinationResponse.Builder eventDestination(EventDestination eventDestination)
The event destination object that was deleted.
- Parameters:
eventDestination- The event destination object that was deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventDestination
default DeleteEventDestinationResponse.Builder eventDestination(Consumer<EventDestination.Builder> eventDestination)
The event destination object that was deleted.
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 toeventDestination(EventDestination).- Parameters:
eventDestination- 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:
eventDestination(EventDestination)
-
-