aws_sdk_connectcases/operation/delete_template/
_delete_template_input.rs#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct DeleteTemplateInput {
pub domain_id: ::std::option::Option<::std::string::String>,
pub template_id: ::std::option::Option<::std::string::String>,
}
impl DeleteTemplateInput {
pub fn domain_id(&self) -> ::std::option::Option<&str> {
self.domain_id.as_deref()
}
pub fn template_id(&self) -> ::std::option::Option<&str> {
self.template_id.as_deref()
}
}
impl DeleteTemplateInput {
pub fn builder() -> crate::operation::delete_template::builders::DeleteTemplateInputBuilder {
crate::operation::delete_template::builders::DeleteTemplateInputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct DeleteTemplateInputBuilder {
pub(crate) domain_id: ::std::option::Option<::std::string::String>,
pub(crate) template_id: ::std::option::Option<::std::string::String>,
}
impl DeleteTemplateInputBuilder {
pub fn domain_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.domain_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_domain_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.domain_id = input;
self
}
pub fn get_domain_id(&self) -> &::std::option::Option<::std::string::String> {
&self.domain_id
}
pub fn template_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.template_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_template_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.template_id = input;
self
}
pub fn get_template_id(&self) -> &::std::option::Option<::std::string::String> {
&self.template_id
}
pub fn build(
self,
) -> ::std::result::Result<crate::operation::delete_template::DeleteTemplateInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::delete_template::DeleteTemplateInput {
domain_id: self.domain_id,
template_id: self.template_id,
})
}
}