#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct DisassociateServiceInput {
pub agent_space_id: ::std::option::Option<::std::string::String>,
pub association_id: ::std::option::Option<::std::string::String>,
}
impl DisassociateServiceInput {
pub fn agent_space_id(&self) -> ::std::option::Option<&str> {
self.agent_space_id.as_deref()
}
pub fn association_id(&self) -> ::std::option::Option<&str> {
self.association_id.as_deref()
}
}
impl DisassociateServiceInput {
pub fn builder() -> crate::operation::disassociate_service::builders::DisassociateServiceInputBuilder {
crate::operation::disassociate_service::builders::DisassociateServiceInputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct DisassociateServiceInputBuilder {
pub(crate) agent_space_id: ::std::option::Option<::std::string::String>,
pub(crate) association_id: ::std::option::Option<::std::string::String>,
}
impl DisassociateServiceInputBuilder {
pub fn agent_space_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.agent_space_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_agent_space_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.agent_space_id = input;
self
}
pub fn get_agent_space_id(&self) -> &::std::option::Option<::std::string::String> {
&self.agent_space_id
}
pub fn association_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.association_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_association_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.association_id = input;
self
}
pub fn get_association_id(&self) -> &::std::option::Option<::std::string::String> {
&self.association_id
}
pub fn build(
self,
) -> ::std::result::Result<crate::operation::disassociate_service::DisassociateServiceInput, ::aws_smithy_types::error::operation::BuildError>
{
::std::result::Result::Ok(crate::operation::disassociate_service::DisassociateServiceInput {
agent_space_id: self.agent_space_id,
association_id: self.association_id,
})
}
}