pub struct UpdateConfigurationSetEventDestinationRequest {
pub configuration_set_name: String,
pub event_destination: EventDestination,
}Expand description
Represents a request to update the event destination of a configuration set. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.
Fields§
§configuration_set_name: StringThe name of the configuration set that contains the event destination that you want to update.
event_destination: EventDestinationThe event destination object that you want to apply to the specified configuration set.
Trait Implementations§
Source§impl Clone for UpdateConfigurationSetEventDestinationRequest
impl Clone for UpdateConfigurationSetEventDestinationRequest
Source§fn clone(&self) -> UpdateConfigurationSetEventDestinationRequest
fn clone(&self) -> UpdateConfigurationSetEventDestinationRequest
Returns a duplicate 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 UpdateConfigurationSetEventDestinationRequest
impl Default for UpdateConfigurationSetEventDestinationRequest
Source§fn default() -> UpdateConfigurationSetEventDestinationRequest
fn default() -> UpdateConfigurationSetEventDestinationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateConfigurationSetEventDestinationRequest
impl PartialEq for UpdateConfigurationSetEventDestinationRequest
Source§fn eq(&self, other: &UpdateConfigurationSetEventDestinationRequest) -> bool
fn eq(&self, other: &UpdateConfigurationSetEventDestinationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateConfigurationSetEventDestinationRequest
Auto Trait Implementations§
impl Freeze for UpdateConfigurationSetEventDestinationRequest
impl RefUnwindSafe for UpdateConfigurationSetEventDestinationRequest
impl Send for UpdateConfigurationSetEventDestinationRequest
impl Sync for UpdateConfigurationSetEventDestinationRequest
impl Unpin for UpdateConfigurationSetEventDestinationRequest
impl UnwindSafe for UpdateConfigurationSetEventDestinationRequest
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