Module Values.AccessKeySource

Describes an access key for an Amazon Lightsail bucket. Access keys grant full programmatic access to the specified bucket and its objects. You can have a maximum of two access keys per bucket. Use the CreateBucketAccessKey action to create an access key for a specific bucket. For more information about access keys, see Creating access keys for a bucket in Amazon Lightsail in the Amazon Lightsail Developer Guide. The secretAccessKey value is returned only in response to the CreateBucketAccessKey action. You can get a secret access key only when you first create an access key; you cannot get the secret access key later. If you lose the secret access key, you must create a new access key.

Sourcetype nonrec t = {
  1. accessKeyId : IAMAccessKeyId.t option;
    (*

    The ID of the access key.

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

    The secret access key used to sign requests. You should store the secret access key in a safe location. We recommend that you delete the access key if the secret access key is compromised.

    *)
  3. status : StatusType.t option;
    (*

    The status of the access key. A status of Active means that the key is valid, while Inactive means it is not.

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

    The timestamp when the access key was created.

    *)
  5. lastUsed : AccessKeyLastUsed.t option;
    (*

    An object that describes the last time the access key was used. This object does not include data in the response of a CreateBucketAccessKey action. If the access key has not been used, the region and serviceName values are N/A, and the lastUsedDate value is null.

    *)
}
Sourceval make : ?accessKeyId:??? -> ?secretAccessKey:??? -> ?status:??? -> ?createdAt:??? -> ?lastUsed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IAMAccessKeyId.t | `Structure of (string * [> `String of String_.t | `Timestamp of IsoDate.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