pub struct DeliveryDestination {
pub name: String,
pub arn: String,
pub output_format: Option<String>,
pub delivery_destination_configuration: BTreeMap<String, String>,
pub tags: BTreeMap<String, String>,
pub delivery_destination_policy: Option<String>,
}Fields§
§name: String§arn: String§output_format: Option<String>§delivery_destination_configuration: BTreeMap<String, String>§delivery_destination_policy: Option<String>Trait Implementations§
Source§impl Clone for DeliveryDestination
impl Clone for DeliveryDestination
Source§fn clone(&self) -> DeliveryDestination
fn clone(&self) -> DeliveryDestination
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for DeliveryDestination
impl<'de> Deserialize<'de> for DeliveryDestination
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeliveryDestination
impl RefUnwindSafe for DeliveryDestination
impl Send for DeliveryDestination
impl Sync for DeliveryDestination
impl Unpin for DeliveryDestination
impl UnsafeUnpin for DeliveryDestination
impl UnwindSafe for DeliveryDestination
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