Interface Destination.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Destination.Builder,Destination>,SdkBuilder<Destination.Builder,Destination>,SdkPojo
- Enclosing class:
- Destination
public static interface Destination.Builder extends SdkPojo, CopyableBuilder<Destination.Builder,Destination>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Destination.BuilderbccAddresses(String... bccAddresses)The recipients to place on the BCC: line of the message.Destination.BuilderbccAddresses(Collection<String> bccAddresses)The recipients to place on the BCC: line of the message.Destination.BuilderccAddresses(String... ccAddresses)The recipients to place on the CC: line of the message.Destination.BuilderccAddresses(Collection<String> ccAddresses)The recipients to place on the CC: line of the message.Destination.BuildertoAddresses(String... toAddresses)The recipients to place on the To: line of the message.Destination.BuildertoAddresses(Collection<String> toAddresses)The recipients to place on the To: line of the message.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
toAddresses
Destination.Builder toAddresses(Collection<String> toAddresses)
The recipients to place on the To: line of the message.
- Parameters:
toAddresses- The recipients to place on the To: line of the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toAddresses
Destination.Builder toAddresses(String... toAddresses)
The recipients to place on the To: line of the message.
- Parameters:
toAddresses- The recipients to place on the To: line of the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ccAddresses
Destination.Builder ccAddresses(Collection<String> ccAddresses)
The recipients to place on the CC: line of the message.
- Parameters:
ccAddresses- The recipients to place on the CC: line of the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ccAddresses
Destination.Builder ccAddresses(String... ccAddresses)
The recipients to place on the CC: line of the message.
- Parameters:
ccAddresses- The recipients to place on the CC: line of the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bccAddresses
Destination.Builder bccAddresses(Collection<String> bccAddresses)
The recipients to place on the BCC: line of the message.
- Parameters:
bccAddresses- The recipients to place on the BCC: line of the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bccAddresses
Destination.Builder bccAddresses(String... bccAddresses)
The recipients to place on the BCC: line of the message.
- Parameters:
bccAddresses- The recipients to place on the BCC: line of the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-