Struct aws_sdk_ses::operation::create_configuration_set_event_destination::CreateConfigurationSetEventDestinationInput
source · #[non_exhaustive]pub struct CreateConfigurationSetEventDestinationInput {
pub configuration_set_name: Option<String>,
pub event_destination: Option<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 Amazon Web Services 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 (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.configuration_set_name: Option<String>The name of the configuration set that the event destination should be associated with.
event_destination: Option<EventDestination>An object that describes the Amazon Web Services service that email sending event where information is published.
Implementations§
source§impl CreateConfigurationSetEventDestinationInput
impl CreateConfigurationSetEventDestinationInput
sourcepub fn configuration_set_name(&self) -> Option<&str>
pub fn configuration_set_name(&self) -> Option<&str>
The name of the configuration set that the event destination should be associated with.
sourcepub fn event_destination(&self) -> Option<&EventDestination>
pub fn event_destination(&self) -> Option<&EventDestination>
An object that describes the Amazon Web Services service that email sending event where information is published.
source§impl CreateConfigurationSetEventDestinationInput
impl CreateConfigurationSetEventDestinationInput
sourcepub fn builder() -> CreateConfigurationSetEventDestinationInputBuilder
pub fn builder() -> CreateConfigurationSetEventDestinationInputBuilder
Creates a new builder-style object to manufacture CreateConfigurationSetEventDestinationInput.
Trait Implementations§
source§impl Clone for CreateConfigurationSetEventDestinationInput
impl Clone for CreateConfigurationSetEventDestinationInput
source§fn clone(&self) -> CreateConfigurationSetEventDestinationInput
fn clone(&self) -> CreateConfigurationSetEventDestinationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for CreateConfigurationSetEventDestinationInput
impl PartialEq for CreateConfigurationSetEventDestinationInput
source§fn eq(&self, other: &CreateConfigurationSetEventDestinationInput) -> bool
fn eq(&self, other: &CreateConfigurationSetEventDestinationInput) -> bool
self and other values to be equal, and is used
by ==.