Interface ContactChannelAddress.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ContactChannelAddress.Builder,ContactChannelAddress>,SdkBuilder<ContactChannelAddress.Builder,ContactChannelAddress>,SdkPojo
- Enclosing class:
- ContactChannelAddress
public static interface ContactChannelAddress.Builder extends SdkPojo, CopyableBuilder<ContactChannelAddress.Builder,ContactChannelAddress>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContactChannelAddress.BuildersimpleAddress(String simpleAddress)The format is dependent on the type of the contact 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
-
simpleAddress
ContactChannelAddress.Builder simpleAddress(String simpleAddress)
The format is dependent on the type of the contact channel. The following are the expected formats:
-
SMS - '+' followed by the country code and phone number
-
VOICE - '+' followed by the country code and phone number
-
EMAIL - any standard email format
- Parameters:
simpleAddress- The format is dependent on the type of the contact channel. The following are the expected formats:-
SMS - '+' followed by the country code and phone number
-
VOICE - '+' followed by the country code and phone number
-
EMAIL - any standard email format
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-