Module Values.TrackedActionLastAccessedSource

Contains details about the most recent attempt to access an action within the service. This data type is used as a response element in the GetServiceLastAccessedDetails operation.

Sourcetype nonrec t = {
  1. actionName : StringType.t option;
    (*

    The name of the tracked action to which access was attempted. Tracked actions are actions that report activity to IAM.

    *)
  2. lastAccessedEntity : ArnType.t option;
  3. lastAccessedTime : DateType.t option;
    (*

    The date and time, in ISO 8601 date-time format, when an authenticated entity most recently attempted to access the tracked service. Amazon Web Services does not report unauthenticated requests. This field is null if no IAM entities attempted to access the service within the tracking period.

    *)
  4. lastAccessedRegion : StringType.t option;
    (*

    The Region from which the authenticated entity (user or role) last attempted to access the tracked action. Amazon Web Services does not report unauthenticated requests. This field is null if no IAM entities attempted to access the service within the tracking period.

    *)
}
Sourceval make : ?actionName:??? -> ?lastAccessedEntity:??? -> ?lastAccessedTime:??? -> ?lastAccessedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StringType.t | `Timestamp of DateType.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