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>,
}
Expand description
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>
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§
Source§impl Clone for CreateConfigurationSetRequest
impl Clone for CreateConfigurationSetRequest
Source§fn clone(&self) -> CreateConfigurationSetRequest
fn clone(&self) -> CreateConfigurationSetRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for CreateConfigurationSetRequest
impl Default for CreateConfigurationSetRequest
Source§fn default() -> CreateConfigurationSetRequest
fn default() -> CreateConfigurationSetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateConfigurationSetRequest
impl PartialEq for CreateConfigurationSetRequest
Source§fn eq(&self, other: &CreateConfigurationSetRequest) -> bool
fn eq(&self, other: &CreateConfigurationSetRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateConfigurationSetRequest
Auto Trait Implementations§
impl Freeze for CreateConfigurationSetRequest
impl RefUnwindSafe for CreateConfigurationSetRequest
impl Send for CreateConfigurationSetRequest
impl Sync for CreateConfigurationSetRequest
impl Unpin for CreateConfigurationSetRequest
impl UnwindSafe for CreateConfigurationSetRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more