pub struct CreateConfigurationSetEventDestinationRequest {
pub configuration_set_name: String,
pub event_destination: EventDestination,
}
Expand description
Represents a request to create a configuration set event destination. A configuration set event destination, which can be either Amazon CloudWatch or Amazon Kinesis Firehose, describes an AWS service in which Amazon SES publishes the email sending events associated with a configuration set. For information about using configuration sets, see the Amazon SES Developer Guide.
Fields§
§configuration_set_name: String
The name of the configuration set that the event destination should be associated with.
event_destination: EventDestination
An object that describes the AWS service that email sending event information will be published to.
Trait Implementations§
Source§impl Clone for CreateConfigurationSetEventDestinationRequest
impl Clone for CreateConfigurationSetEventDestinationRequest
Source§fn clone(&self) -> CreateConfigurationSetEventDestinationRequest
fn clone(&self) -> CreateConfigurationSetEventDestinationRequest
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 CreateConfigurationSetEventDestinationRequest
impl Default for CreateConfigurationSetEventDestinationRequest
Source§fn default() -> CreateConfigurationSetEventDestinationRequest
fn default() -> CreateConfigurationSetEventDestinationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateConfigurationSetEventDestinationRequest
impl PartialEq for CreateConfigurationSetEventDestinationRequest
Source§fn eq(&self, other: &CreateConfigurationSetEventDestinationRequest) -> bool
fn eq(&self, other: &CreateConfigurationSetEventDestinationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateConfigurationSetEventDestinationRequest
Auto Trait Implementations§
impl Freeze for CreateConfigurationSetEventDestinationRequest
impl RefUnwindSafe for CreateConfigurationSetEventDestinationRequest
impl Send for CreateConfigurationSetEventDestinationRequest
impl Sync for CreateConfigurationSetEventDestinationRequest
impl Unpin for CreateConfigurationSetEventDestinationRequest
impl UnwindSafe for CreateConfigurationSetEventDestinationRequest
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