Java com.amazonaws.services.simpleemail.model Destination fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.simpleemail.model Destination fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.simpleemail.model Destination.

The text is from its open source code.

Constructor

Destination()
Default constructor for Destination object.
Destination(java.util.List toAddresses)
Constructs a new Destination object.

Method

java.util.ListgetBccAddresses()

The recipients to place on the BCC: line of the message.

java.util.ListgetCcAddresses()

The recipients to place on the CC: line of the message.

java.util.ListgetToAddresses()

The recipients to place on the To: line of the message.

voidsetBccAddresses(java.util.Collection bccAddresses)

The recipients to place on the BCC: line of the message.

voidsetCcAddresses(java.util.Collection ccAddresses)

The recipients to place on the CC: line of the message.

voidsetToAddresses(java.util.Collection toAddresses)

The recipients to place on the To: line of the message.

DestinationwithBccAddresses(String... bccAddresses)

The recipients to place on the BCC: line of the message.

DestinationwithBccAddresses(java.util.Collection bccAddresses)

The recipients to place on the BCC: line of the message.

DestinationwithCcAddresses(String... ccAddresses)

The recipients to place on the CC: line of the message.

DestinationwithCcAddresses(java.util.Collection ccAddresses)

The recipients to place on the CC: line of the message.

DestinationwithToAddresses(String... toAddresses)

The recipients to place on the To: line of the message.

DestinationwithToAddresses(java.util.Collection toAddresses)

The recipients to place on the To: line of the message.