Struct aws_sdk_ec2::output::CreateKeyPairOutput [−][src]
#[non_exhaustive]pub struct CreateKeyPairOutput {
pub key_fingerprint: Option<String>,
pub key_material: Option<String>,
pub key_name: Option<String>,
pub key_pair_id: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a key pair.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.key_fingerprint: Option<String>
The SHA-1 digest of the DER encoded private key.
key_material: Option<String>
An unencrypted PEM encoded RSA or ED25519 private key.
key_name: Option<String>
The name of the key pair.
key_pair_id: Option<String>
The ID of the key pair.
Any tags applied to the key pair.
Implementations
The SHA-1 digest of the DER encoded private key.
An unencrypted PEM encoded RSA or ED25519 private key.
The ID of the key pair.
Any tags applied to the key pair.
Creates a new builder-style object to manufacture CreateKeyPairOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateKeyPairOutput
impl Send for CreateKeyPairOutput
impl Sync for CreateKeyPairOutput
impl Unpin for CreateKeyPairOutput
impl UnwindSafe for CreateKeyPairOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more