[][src]Struct rusoto_sesv2::CreateConfigurationSetRequest

pub struct CreateConfigurationSetRequest {
    pub configuration_set_name: String,
    pub delivery_options: Option<DeliveryOptions>,
    pub reputation_options: Option<ReputationOptions>,
    pub sending_options: Option<SendingOptions>,
    pub suppression_options: Option<SuppressionOptions>,
    pub tags: Option<Vec<Tag>>,
    pub tracking_options: Option<TrackingOptions>,
}

A request to create a configuration set.

Fields

configuration_set_name: String

The name of the configuration set.

delivery_options: Option<DeliveryOptions>

An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.

reputation_options: Option<ReputationOptions>

An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.

sending_options: Option<SendingOptions>

An object that defines whether or not Amazon SES can send email that you send using the configuration set.

suppression_options: Option<SuppressionOptions>tags: Option<Vec<Tag>>

An array of objects that define the tags (keys and values) that you want to associate with the configuration set.

tracking_options: Option<TrackingOptions>

An object that defines the open and click tracking options for emails that you send using the configuration set.

Trait Implementations

impl Clone for CreateConfigurationSetRequest[src]

impl Debug for CreateConfigurationSetRequest[src]

impl Default for CreateConfigurationSetRequest[src]

impl PartialEq<CreateConfigurationSetRequest> for CreateConfigurationSetRequest[src]

impl Serialize for CreateConfigurationSetRequest[src]

impl StructuralPartialEq for CreateConfigurationSetRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.