#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct Delivery {
pub id: ::std::option::Option<::std::string::String>,
pub arn: ::std::option::Option<::std::string::String>,
pub delivery_source_name: ::std::option::Option<::std::string::String>,
pub delivery_destination_arn: ::std::option::Option<::std::string::String>,
pub delivery_destination_type: ::std::option::Option<crate::types::DeliveryDestinationType>,
pub tags: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
}
impl Delivery {
pub fn id(&self) -> ::std::option::Option<&str> {
self.id.as_deref()
}
pub fn arn(&self) -> ::std::option::Option<&str> {
self.arn.as_deref()
}
pub fn delivery_source_name(&self) -> ::std::option::Option<&str> {
self.delivery_source_name.as_deref()
}
pub fn delivery_destination_arn(&self) -> ::std::option::Option<&str> {
self.delivery_destination_arn.as_deref()
}
pub fn delivery_destination_type(&self) -> ::std::option::Option<&crate::types::DeliveryDestinationType> {
self.delivery_destination_type.as_ref()
}
pub fn tags(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
self.tags.as_ref()
}
}
impl Delivery {
pub fn builder() -> crate::types::builders::DeliveryBuilder {
crate::types::builders::DeliveryBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct DeliveryBuilder {
pub(crate) id: ::std::option::Option<::std::string::String>,
pub(crate) arn: ::std::option::Option<::std::string::String>,
pub(crate) delivery_source_name: ::std::option::Option<::std::string::String>,
pub(crate) delivery_destination_arn: ::std::option::Option<::std::string::String>,
pub(crate) delivery_destination_type: ::std::option::Option<crate::types::DeliveryDestinationType>,
pub(crate) tags: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
}
impl DeliveryBuilder {
pub fn id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.id = ::std::option::Option::Some(input.into());
self
}
pub fn set_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.id = input;
self
}
pub fn get_id(&self) -> &::std::option::Option<::std::string::String> {
&self.id
}
pub fn arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.arn = ::std::option::Option::Some(input.into());
self
}
pub fn set_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.arn = input;
self
}
pub fn get_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.arn
}
pub fn delivery_source_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.delivery_source_name = ::std::option::Option::Some(input.into());
self
}
pub fn set_delivery_source_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.delivery_source_name = input;
self
}
pub fn get_delivery_source_name(&self) -> &::std::option::Option<::std::string::String> {
&self.delivery_source_name
}
pub fn delivery_destination_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.delivery_destination_arn = ::std::option::Option::Some(input.into());
self
}
pub fn set_delivery_destination_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.delivery_destination_arn = input;
self
}
pub fn get_delivery_destination_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.delivery_destination_arn
}
pub fn delivery_destination_type(mut self, input: crate::types::DeliveryDestinationType) -> Self {
self.delivery_destination_type = ::std::option::Option::Some(input);
self
}
pub fn set_delivery_destination_type(mut self, input: ::std::option::Option<crate::types::DeliveryDestinationType>) -> Self {
self.delivery_destination_type = input;
self
}
pub fn get_delivery_destination_type(&self) -> &::std::option::Option<crate::types::DeliveryDestinationType> {
&self.delivery_destination_type
}
pub fn tags(mut self, k: impl ::std::convert::Into<::std::string::String>, v: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut hash_map = self.tags.unwrap_or_default();
hash_map.insert(k.into(), v.into());
self.tags = ::std::option::Option::Some(hash_map);
self
}
pub fn set_tags(mut self, input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>) -> Self {
self.tags = input;
self
}
pub fn get_tags(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
&self.tags
}
pub fn build(self) -> crate::types::Delivery {
crate::types::Delivery {
id: self.id,
arn: self.arn,
delivery_source_name: self.delivery_source_name,
delivery_destination_arn: self.delivery_destination_arn,
delivery_destination_type: self.delivery_destination_type,
tags: self.tags,
}
}
}