#[non_exhaustive]pub struct ImportKeyPairOutputBuilder { /* private fields */ }Expand description
A builder for ImportKeyPairOutput.
Implementations§
source§impl ImportKeyPairOutputBuilder
impl ImportKeyPairOutputBuilder
sourcepub fn key_fingerprint(self, input: impl Into<String>) -> Self
pub fn key_fingerprint(self, input: impl Into<String>) -> Self
-
For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC 4716.
-
For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.
sourcepub fn set_key_fingerprint(self, input: Option<String>) -> Self
pub fn set_key_fingerprint(self, input: Option<String>) -> Self
-
For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC 4716.
-
For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.
sourcepub fn set_key_name(self, input: Option<String>) -> Self
pub fn set_key_name(self, input: Option<String>) -> Self
The key pair name that you provided.
sourcepub fn key_pair_id(self, input: impl Into<String>) -> Self
pub fn key_pair_id(self, input: impl Into<String>) -> Self
The ID of the resulting key pair.
sourcepub fn set_key_pair_id(self, input: Option<String>) -> Self
pub fn set_key_pair_id(self, input: Option<String>) -> Self
The ID of the resulting key pair.
Appends an item to tags.
To override the contents of this collection use set_tags.
The tags applied to the imported key pair.
The tags applied to the imported key pair.
sourcepub fn build(self) -> ImportKeyPairOutput
pub fn build(self) -> ImportKeyPairOutput
Consumes the builder and constructs a ImportKeyPairOutput.
Trait Implementations§
source§impl Clone for ImportKeyPairOutputBuilder
impl Clone for ImportKeyPairOutputBuilder
source§fn clone(&self) -> ImportKeyPairOutputBuilder
fn clone(&self) -> ImportKeyPairOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ImportKeyPairOutputBuilder
impl Debug for ImportKeyPairOutputBuilder
source§impl Default for ImportKeyPairOutputBuilder
impl Default for ImportKeyPairOutputBuilder
source§fn default() -> ImportKeyPairOutputBuilder
fn default() -> ImportKeyPairOutputBuilder
source§impl PartialEq<ImportKeyPairOutputBuilder> for ImportKeyPairOutputBuilder
impl PartialEq<ImportKeyPairOutputBuilder> for ImportKeyPairOutputBuilder
source§fn eq(&self, other: &ImportKeyPairOutputBuilder) -> bool
fn eq(&self, other: &ImportKeyPairOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.