#[non_exhaustive]pub struct UpdateHostKeyInput {
pub server_id: Option<String>,
pub host_key_id: Option<String>,
pub description: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.server_id: Option<String>The identifier of the server that contains the host key that you are updating.
host_key_id: Option<String>The identifier of the host key that you are updating.
description: Option<String>An updated description for the host key.
Implementations§
source§impl UpdateHostKeyInput
impl UpdateHostKeyInput
sourcepub fn server_id(&self) -> Option<&str>
pub fn server_id(&self) -> Option<&str>
The identifier of the server that contains the host key that you are updating.
sourcepub fn host_key_id(&self) -> Option<&str>
pub fn host_key_id(&self) -> Option<&str>
The identifier of the host key that you are updating.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
An updated description for the host key.
source§impl UpdateHostKeyInput
impl UpdateHostKeyInput
sourcepub fn builder() -> UpdateHostKeyInputBuilder
pub fn builder() -> UpdateHostKeyInputBuilder
Creates a new builder-style object to manufacture UpdateHostKeyInput.
Trait Implementations§
source§impl Clone for UpdateHostKeyInput
impl Clone for UpdateHostKeyInput
source§fn clone(&self) -> UpdateHostKeyInput
fn clone(&self) -> UpdateHostKeyInput
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 UpdateHostKeyInput
impl Debug for UpdateHostKeyInput
source§impl PartialEq for UpdateHostKeyInput
impl PartialEq for UpdateHostKeyInput
source§fn eq(&self, other: &UpdateHostKeyInput) -> bool
fn eq(&self, other: &UpdateHostKeyInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateHostKeyInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateHostKeyInput
impl Send for UpdateHostKeyInput
impl Sync for UpdateHostKeyInput
impl Unpin for UpdateHostKeyInput
impl UnwindSafe for UpdateHostKeyInput
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