#[non_exhaustive]pub struct DeleteHostKeyInputBuilder { /* private fields */ }Expand description
A builder for DeleteHostKeyInput.
Implementations§
source§impl DeleteHostKeyInputBuilder
impl DeleteHostKeyInputBuilder
sourcepub fn server_id(self, input: impl Into<String>) -> Self
pub fn server_id(self, input: impl Into<String>) -> Self
The identifier of the server that contains the host key that you are deleting.
sourcepub fn set_server_id(self, input: Option<String>) -> Self
pub fn set_server_id(self, input: Option<String>) -> Self
The identifier of the server that contains the host key that you are deleting.
sourcepub fn get_server_id(&self) -> &Option<String>
pub fn get_server_id(&self) -> &Option<String>
The identifier of the server that contains the host key that you are deleting.
sourcepub fn host_key_id(self, input: impl Into<String>) -> Self
pub fn host_key_id(self, input: impl Into<String>) -> Self
The identifier of the host key that you are deleting.
sourcepub fn set_host_key_id(self, input: Option<String>) -> Self
pub fn set_host_key_id(self, input: Option<String>) -> Self
The identifier of the host key that you are deleting.
sourcepub fn get_host_key_id(&self) -> &Option<String>
pub fn get_host_key_id(&self) -> &Option<String>
The identifier of the host key that you are deleting.
sourcepub fn build(self) -> Result<DeleteHostKeyInput, BuildError>
pub fn build(self) -> Result<DeleteHostKeyInput, BuildError>
Consumes the builder and constructs a DeleteHostKeyInput.
source§impl DeleteHostKeyInputBuilder
impl DeleteHostKeyInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteHostKeyOutput, SdkError<DeleteHostKeyError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteHostKeyOutput, SdkError<DeleteHostKeyError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteHostKeyInputBuilder
impl Clone for DeleteHostKeyInputBuilder
source§fn clone(&self) -> DeleteHostKeyInputBuilder
fn clone(&self) -> DeleteHostKeyInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DeleteHostKeyInputBuilder
impl Debug for DeleteHostKeyInputBuilder
source§impl Default for DeleteHostKeyInputBuilder
impl Default for DeleteHostKeyInputBuilder
source§fn default() -> DeleteHostKeyInputBuilder
fn default() -> DeleteHostKeyInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeleteHostKeyInputBuilder
impl PartialEq for DeleteHostKeyInputBuilder
source§fn eq(&self, other: &DeleteHostKeyInputBuilder) -> bool
fn eq(&self, other: &DeleteHostKeyInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteHostKeyInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteHostKeyInputBuilder
impl Send for DeleteHostKeyInputBuilder
impl Sync for DeleteHostKeyInputBuilder
impl Unpin for DeleteHostKeyInputBuilder
impl UnwindSafe for DeleteHostKeyInputBuilder
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