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.Builder
bccAddresses(String... bccAddresses)
An array that contains the email addresses of the "BCC" (blind carbon copy) recipients for the email.Destination.Builder
bccAddresses(Collection<String> bccAddresses)
An array that contains the email addresses of the "BCC" (blind carbon copy) recipients for the email.Destination.Builder
ccAddresses(String... ccAddresses)
An array that contains the email addresses of the "CC" (carbon copy) recipients for the email.Destination.Builder
ccAddresses(Collection<String> ccAddresses)
An array that contains the email addresses of the "CC" (carbon copy) recipients for the email.Destination.Builder
toAddresses(String... toAddresses)
An array that contains the email addresses of the "To" recipients for the email.Destination.Builder
toAddresses(Collection<String> toAddresses)
An array that contains the email addresses of the "To" recipients for the email.-
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)
An array that contains the email addresses of the "To" recipients for the email.
- Parameters:
toAddresses
- An array that contains the email addresses of the "To" recipients for the email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toAddresses
Destination.Builder toAddresses(String... toAddresses)
An array that contains the email addresses of the "To" recipients for the email.
- Parameters:
toAddresses
- An array that contains the email addresses of the "To" recipients for the email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ccAddresses
Destination.Builder ccAddresses(Collection<String> ccAddresses)
An array that contains the email addresses of the "CC" (carbon copy) recipients for the email.
- Parameters:
ccAddresses
- An array that contains the email addresses of the "CC" (carbon copy) recipients for the email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ccAddresses
Destination.Builder ccAddresses(String... ccAddresses)
An array that contains the email addresses of the "CC" (carbon copy) recipients for the email.
- Parameters:
ccAddresses
- An array that contains the email addresses of the "CC" (carbon copy) recipients for the email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bccAddresses
Destination.Builder bccAddresses(Collection<String> bccAddresses)
An array that contains the email addresses of the "BCC" (blind carbon copy) recipients for the email.
- Parameters:
bccAddresses
- An array that contains the email addresses of the "BCC" (blind carbon copy) recipients for the email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bccAddresses
Destination.Builder bccAddresses(String... bccAddresses)
An array that contains the email addresses of the "BCC" (blind carbon copy) recipients for the email.
- Parameters:
bccAddresses
- An array that contains the email addresses of the "BCC" (blind carbon copy) recipients for the email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-