Interface CreateEventDestinationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateEventDestinationResponse.Builder,CreateEventDestinationResponse>,PinpointSmsVoiceV2Response.Builder,SdkBuilder<CreateEventDestinationResponse.Builder,CreateEventDestinationResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateEventDestinationResponse
public static interface CreateEventDestinationResponse.Builder extends PinpointSmsVoiceV2Response.Builder, SdkPojo, CopyableBuilder<CreateEventDestinationResponse.Builder,CreateEventDestinationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateEventDestinationResponse.BuilderconfigurationSetArn(String configurationSetArn)The ARN of the configuration set.CreateEventDestinationResponse.BuilderconfigurationSetName(String configurationSetName)The name of the configuration set.default CreateEventDestinationResponse.BuildereventDestination(Consumer<EventDestination.Builder> eventDestination)The details of the destination where events are logged.CreateEventDestinationResponse.BuildereventDestination(EventDestination eventDestination)The details of the destination where events are logged.-
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
CreateEventDestinationResponse.Builder configurationSetArn(String configurationSetArn)
The ARN of the configuration set.
- Parameters:
configurationSetArn- The ARN of the configuration set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationSetName
CreateEventDestinationResponse.Builder configurationSetName(String configurationSetName)
The name of the configuration set.
- Parameters:
configurationSetName- The name of the configuration set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventDestination
CreateEventDestinationResponse.Builder eventDestination(EventDestination eventDestination)
The details of the destination where events are logged.
- Parameters:
eventDestination- The details of the destination where events are logged.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventDestination
default CreateEventDestinationResponse.Builder eventDestination(Consumer<EventDestination.Builder> eventDestination)
The details of the destination where events are logged.
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)
-
-