Module Values_2.KeyPairInfoSource

Describes a key pair.

Sourcetype nonrec t = {
  1. keyPairId : Values_0.String_.t option;
    (*

    The ID of the key pair.

    *)
  2. keyType : Values_1.KeyType.t option;
    (*

    The type of key pair.

    *)
  3. tags : Values_0.TagList.t option;
    (*

    Any tags applied to the key pair.

    *)
  4. publicKey : Values_0.String_.t option;
    (*

    The public key material.

    *)
  5. createTime : Values_0.MillisecondDateTime.t option;
    (*

    If you used Amazon EC2 to create the key pair, this is the date and time when the key was created, in ISO 8601 date-time format, in the UTC time zone. If you imported an existing key pair to Amazon EC2, this is the date and time the key was imported, in ISO 8601 date-time format, in the UTC time zone.

    *)
  6. keyName : Values_0.String_.t option;
    (*

    The name of the key pair.

    *)
  7. keyFingerprint : Values_0.String_.t option;
    (*

    If you used CreateKeyPair to create the key pair: For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key. 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. If you used ImportKeyPair to provide Amazon Web Services the public key: For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC4716. 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.

    *)
}
Sourceval make : ?keyPairId:??? -> ?keyType:??? -> ?tags:??? -> ?publicKey:??? -> ?createTime:??? -> ?keyName:??? -> ?keyFingerprint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.String_.t | `Timestamp of Values_0.MillisecondDateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t