Interface DescribeSenderIdsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeSenderIdsResponse.Builder,DescribeSenderIdsResponse>,PinpointSmsVoiceV2Response.Builder,SdkBuilder<DescribeSenderIdsResponse.Builder,DescribeSenderIdsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeSenderIdsResponse
public static interface DescribeSenderIdsResponse.Builder extends PinpointSmsVoiceV2Response.Builder, SdkPojo, CopyableBuilder<DescribeSenderIdsResponse.Builder,DescribeSenderIdsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeSenderIdsResponse.BuildernextToken(String nextToken)The token to be used for the next set of paginated results.DescribeSenderIdsResponse.BuildersenderIds(Collection<SenderIdInformation> senderIds)An array of SernderIdInformation objects that contain the details for the requested SenderIds.DescribeSenderIdsResponse.BuildersenderIds(Consumer<SenderIdInformation.Builder>... senderIds)An array of SernderIdInformation objects that contain the details for the requested SenderIds.DescribeSenderIdsResponse.BuildersenderIds(SenderIdInformation... senderIds)An array of SernderIdInformation objects that contain the details for the requested SenderIds.-
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
-
senderIds
DescribeSenderIdsResponse.Builder senderIds(Collection<SenderIdInformation> senderIds)
An array of SernderIdInformation objects that contain the details for the requested SenderIds.
- Parameters:
senderIds- An array of SernderIdInformation objects that contain the details for the requested SenderIds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
senderIds
DescribeSenderIdsResponse.Builder senderIds(SenderIdInformation... senderIds)
An array of SernderIdInformation objects that contain the details for the requested SenderIds.
- Parameters:
senderIds- An array of SernderIdInformation objects that contain the details for the requested SenderIds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
senderIds
DescribeSenderIdsResponse.Builder senderIds(Consumer<SenderIdInformation.Builder>... senderIds)
An array of SernderIdInformation objects that contain the details for the requested SenderIds.
This is a convenience method that creates an instance of theSenderIdInformation.Builderavoiding the need to create one manually viaSenderIdInformation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#senderIds(List.) - Parameters:
senderIds- a consumer that will call methods onSenderIdInformation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#senderIds(java.util.Collection)
-
nextToken
DescribeSenderIdsResponse.Builder nextToken(String nextToken)
The token to be used for the next set of paginated results. If this field is empty then there are no more results.
- Parameters:
nextToken- The token to be used for the next set of paginated results. If this field is empty then there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-