Module Values.UnusedIamUserAccessKeyDetailsSource

Contains information about an unused access finding for an IAM user access key. IAM Access Analyzer charges for unused access analysis based on the number of IAM roles and users analyzed per month. For more details on pricing, see IAM Access Analyzer pricing.

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

    The ID of the access key for which the unused access finding was generated.

    *)
  2. lastAccessed : Timestamp.t option;
    (*

    The time at which the access key was last accessed.

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