Uses of Class
com.amazonaws.services.simpleemail.model.Destination
-
Packages that use Destination Package Description com.amazonaws.services.simpleemail.model -
-
Uses of Destination in com.amazonaws.services.simpleemail.model
Methods in com.amazonaws.services.simpleemail.model that return Destination Modifier and Type Method Description Destination
Destination. clone()
Destination
SendEmailRequest. getDestination()
The destination for this email, composed of To:, CC:, and BCC: fields.Destination
Destination. withBccAddresses(String... bccAddresses)
The BCC: field(s) of the message.Destination
Destination. withBccAddresses(Collection<String> bccAddresses)
The BCC: field(s) of the message.Destination
Destination. withCcAddresses(String... ccAddresses)
The CC: field(s) of the message.Destination
Destination. withCcAddresses(Collection<String> ccAddresses)
The CC: field(s) of the message.Destination
Destination. withToAddresses(String... toAddresses)
The To: field(s) of the message.Destination
Destination. withToAddresses(Collection<String> toAddresses)
The To: field(s) of the message.Methods in com.amazonaws.services.simpleemail.model with parameters of type Destination Modifier and Type Method Description void
SendEmailRequest. setDestination(Destination destination)
The destination for this email, composed of To:, CC:, and BCC: fields.SendEmailRequest
SendEmailRequest. withDestination(Destination destination)
The destination for this email, composed of To:, CC:, and BCC: fields.Constructors in com.amazonaws.services.simpleemail.model with parameters of type Destination Constructor Description SendEmailRequest(String source, Destination destination, Message message)
Constructs a new SendEmailRequest object.
-