Module Values.AccessKeyLastUsedSource

Describes the last time an access key was used. This object does not include data in the response of a CreateBucketAccessKey action.

Sourcetype nonrec t = {
  1. lastUsedDate : IsoDate.t option;
    (*

    The date and time when the access key was most recently used. This value is null if the access key has not been used.

    *)
  2. region : String_.t option;
    (*

    The Amazon Web Services Region where this access key was most recently used. This value is N/A if the access key has not been used.

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

    The name of the Amazon Web Services service with which this access key was most recently used. This value is N/A if the access key has not been used.

    *)
}
Sourceval make : ?lastUsedDate:??? -> ?region:??? -> ?serviceName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `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