pub struct PutConfigurationSetDeliveryOptionsRequest {
pub configuration_set_name: String,
pub delivery_options: Option<DeliveryOptions>,
}Expand description
A request to modify the delivery options for a configuration set.
Fields§
§configuration_set_name: StringThe name of the configuration set that you want to specify the delivery options for.
delivery_options: Option<DeliveryOptions>Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).
Trait Implementations§
Source§impl Clone for PutConfigurationSetDeliveryOptionsRequest
impl Clone for PutConfigurationSetDeliveryOptionsRequest
Source§fn clone(&self) -> PutConfigurationSetDeliveryOptionsRequest
fn clone(&self) -> PutConfigurationSetDeliveryOptionsRequest
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 PutConfigurationSetDeliveryOptionsRequest
impl Default for PutConfigurationSetDeliveryOptionsRequest
Source§fn default() -> PutConfigurationSetDeliveryOptionsRequest
fn default() -> PutConfigurationSetDeliveryOptionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutConfigurationSetDeliveryOptionsRequest
impl PartialEq for PutConfigurationSetDeliveryOptionsRequest
Source§fn eq(&self, other: &PutConfigurationSetDeliveryOptionsRequest) -> bool
fn eq(&self, other: &PutConfigurationSetDeliveryOptionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PutConfigurationSetDeliveryOptionsRequest
Auto Trait Implementations§
impl Freeze for PutConfigurationSetDeliveryOptionsRequest
impl RefUnwindSafe for PutConfigurationSetDeliveryOptionsRequest
impl Send for PutConfigurationSetDeliveryOptionsRequest
impl Sync for PutConfigurationSetDeliveryOptionsRequest
impl Unpin for PutConfigurationSetDeliveryOptionsRequest
impl UnwindSafe for PutConfigurationSetDeliveryOptionsRequest
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