Interface SMSChannelRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SMSChannelRequest.Builder,SMSChannelRequest>,SdkBuilder<SMSChannelRequest.Builder,SMSChannelRequest>,SdkPojo
- Enclosing class:
- SMSChannelRequest
public static interface SMSChannelRequest.Builder extends SdkPojo, CopyableBuilder<SMSChannelRequest.Builder,SMSChannelRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SMSChannelRequest.Builderenabled(Boolean enabled)Specifies whether to enable the SMS channel for the application.SMSChannelRequest.BuildersenderId(String senderId)The identity that you want to display on recipients' devices when they receive messages from the SMS channel.SMSChannelRequest.BuildershortCode(String shortCode)The registered short code that you want to use when you send messages through the SMS channel.-
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
-
-
-
-
Method Detail
-
enabled
SMSChannelRequest.Builder enabled(Boolean enabled)
Specifies whether to enable the SMS channel for the application.
- Parameters:
enabled- Specifies whether to enable the SMS channel for the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
senderId
SMSChannelRequest.Builder senderId(String senderId)
The identity that you want to display on recipients' devices when they receive messages from the SMS channel.
- Parameters:
senderId- The identity that you want to display on recipients' devices when they receive messages from the SMS channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
shortCode
SMSChannelRequest.Builder shortCode(String shortCode)
The registered short code that you want to use when you send messages through the SMS channel.
- Parameters:
shortCode- The registered short code that you want to use when you send messages through the SMS channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-