#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct DeleteSshPublicKeyInput {
pub server_id: ::std::option::Option<::std::string::String>,
pub ssh_public_key_id: ::std::option::Option<::std::string::String>,
pub user_name: ::std::option::Option<::std::string::String>,
}
impl DeleteSshPublicKeyInput {
pub fn server_id(&self) -> ::std::option::Option<&str> {
self.server_id.as_deref()
}
pub fn ssh_public_key_id(&self) -> ::std::option::Option<&str> {
self.ssh_public_key_id.as_deref()
}
pub fn user_name(&self) -> ::std::option::Option<&str> {
self.user_name.as_deref()
}
}
impl DeleteSshPublicKeyInput {
pub fn builder() -> crate::operation::delete_ssh_public_key::builders::DeleteSshPublicKeyInputBuilder {
crate::operation::delete_ssh_public_key::builders::DeleteSshPublicKeyInputBuilder::default()
}
}
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct DeleteSshPublicKeyInputBuilder {
pub(crate) server_id: ::std::option::Option<::std::string::String>,
pub(crate) ssh_public_key_id: ::std::option::Option<::std::string::String>,
pub(crate) user_name: ::std::option::Option<::std::string::String>,
}
impl DeleteSshPublicKeyInputBuilder {
pub fn server_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.server_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_server_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.server_id = input;
self
}
pub fn get_server_id(&self) -> &::std::option::Option<::std::string::String> {
&self.server_id
}
pub fn ssh_public_key_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.ssh_public_key_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_ssh_public_key_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.ssh_public_key_id = input;
self
}
pub fn get_ssh_public_key_id(&self) -> &::std::option::Option<::std::string::String> {
&self.ssh_public_key_id
}
pub fn user_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.user_name = ::std::option::Option::Some(input.into());
self
}
pub fn set_user_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.user_name = input;
self
}
pub fn get_user_name(&self) -> &::std::option::Option<::std::string::String> {
&self.user_name
}
pub fn build(
self,
) -> ::std::result::Result<crate::operation::delete_ssh_public_key::DeleteSshPublicKeyInput, ::aws_smithy_http::operation::error::BuildError>
{
::std::result::Result::Ok(crate::operation::delete_ssh_public_key::DeleteSshPublicKeyInput {
server_id: self.server_id,
ssh_public_key_id: self.ssh_public_key_id,
user_name: self.user_name,
})
}
}