Interface DescribeDeliveryChannelStatusResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConfigResponse.Builder,CopyableBuilder<DescribeDeliveryChannelStatusResponse.Builder,DescribeDeliveryChannelStatusResponse>,SdkBuilder<DescribeDeliveryChannelStatusResponse.Builder,DescribeDeliveryChannelStatusResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeDeliveryChannelStatusResponse
public static interface DescribeDeliveryChannelStatusResponse.Builder extends ConfigResponse.Builder, SdkPojo, CopyableBuilder<DescribeDeliveryChannelStatusResponse.Builder,DescribeDeliveryChannelStatusResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDeliveryChannelStatusResponse.BuilderdeliveryChannelsStatus(Collection<DeliveryChannelStatus> deliveryChannelsStatus)A list that contains the status of a specified delivery channel.DescribeDeliveryChannelStatusResponse.BuilderdeliveryChannelsStatus(Consumer<DeliveryChannelStatus.Builder>... deliveryChannelsStatus)A list that contains the status of a specified delivery channel.DescribeDeliveryChannelStatusResponse.BuilderdeliveryChannelsStatus(DeliveryChannelStatus... deliveryChannelsStatus)A list that contains the status of a specified delivery channel.-
Methods inherited from interface software.amazon.awssdk.services.config.model.ConfigResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
deliveryChannelsStatus
DescribeDeliveryChannelStatusResponse.Builder deliveryChannelsStatus(Collection<DeliveryChannelStatus> deliveryChannelsStatus)
A list that contains the status of a specified delivery channel.
- Parameters:
deliveryChannelsStatus- A list that contains the status of a specified delivery channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deliveryChannelsStatus
DescribeDeliveryChannelStatusResponse.Builder deliveryChannelsStatus(DeliveryChannelStatus... deliveryChannelsStatus)
A list that contains the status of a specified delivery channel.
- Parameters:
deliveryChannelsStatus- A list that contains the status of a specified delivery channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deliveryChannelsStatus
DescribeDeliveryChannelStatusResponse.Builder deliveryChannelsStatus(Consumer<DeliveryChannelStatus.Builder>... deliveryChannelsStatus)
A list that contains the status of a specified delivery channel.
This is a convenience method that creates an instance of theDeliveryChannelStatus.Builderavoiding the need to create one manually viaDeliveryChannelStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#deliveryChannelsStatus(List.) - Parameters:
deliveryChannelsStatus- a consumer that will call methods onDeliveryChannelStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#deliveryChannelsStatus(java.util.Collection)
-
-