Module Values.KeyPairSource

Describes an SSH key pair.

Sourcetype nonrec t = {
  1. name : ResourceName.t option;
    (*

    The friendly name of the SSH key pair.

    *)
  2. arn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the key pair (arn:aws:lightsail:us-east-2:123456789101:KeyPair/05859e3d-331d-48ba-9034-12345EXAMPLE).

    *)
  3. supportCode : String_.t option;
    (*

    The support code. Include this code in your email to support when you have questions about an instance or another resource in Lightsail. This code enables our support team to look up your Lightsail information more easily.

    *)
  4. createdAt : IsoDate.t option;
    (*

    The timestamp when the key pair was created (1479816991.349).

    *)
  5. location : ResourceLocation.t option;
    (*

    The region name and Availability Zone where the key pair was created.

    *)
  6. resourceType : ResourceType.t option;
    (*

    The resource type (usually KeyPair).

    *)
  7. tags : TagList.t option;
    (*

    The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.

    *)
  8. fingerprint : Base64.t option;
    (*

    The RSA fingerprint of the key pair.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?supportCode:??? -> ?createdAt:??? -> ?location:??? -> ?resourceType:??? -> ?tags:??? -> ?fingerprint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ResourceName.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of IsoDate.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