pub struct Delivery {
pub id: String,
pub delivery_source_name: String,
pub delivery_destination_arn: String,
pub delivery_destination_type: String,
pub arn: String,
pub tags: BTreeMap<String, String>,
pub field_delimiter: Option<String>,
pub record_fields: Vec<String>,
pub s3_delivery_configuration: Option<Value>,
pub created_at: i64,
}Fields§
§id: String§delivery_source_name: String§delivery_destination_arn: String§delivery_destination_type: String§arn: String§field_delimiter: Option<String>§record_fields: Vec<String>§s3_delivery_configuration: Option<Value>§created_at: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Delivery
impl<'de> Deserialize<'de> for Delivery
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 Delivery
impl RefUnwindSafe for Delivery
impl Send for Delivery
impl Sync for Delivery
impl Unpin for Delivery
impl UnsafeUnpin for Delivery
impl UnwindSafe for Delivery
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