Module Values.ServiceLastAccessedSource

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

Sourcetype nonrec t = {
  1. serviceName : ServiceNameType.t option;
    (*

    The name of the service in which access was attempted.

    *)
  2. lastAuthenticated : DateType.t option;
    (*

    The date and time, in ISO 8601 date-time format, when an authenticated entity most recently attempted to access the 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.

    *)
  3. serviceNamespace : ServiceNamespaceType.t option;
    (*

    The namespace of the service in which access was attempted. To learn the service namespace of a service, see Actions, resources, and condition keys for Amazon Web Services services in the Service Authorization Reference. Choose the name of the service to view details for that service. In the first paragraph, find the service prefix. For example, (service prefix: a4b). For more information about service namespaces, see Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.

    *)
  4. lastAuthenticatedEntity : ArnType.t option;
    (*

    The ARN of the authenticated entity (user or role) that last attempted to access the 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.

    *)
  5. lastAuthenticatedRegion : StringType.t option;
    (*

    The Region from which the authenticated entity (user or role) last attempted to access the 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.

    *)
  6. totalAuthenticatedEntities : IntegerType.t option;
    (*

    The total number of authenticated principals (root user, IAM users, or IAM roles) that have attempted to access the service. This field is null if no principals attempted to access the service within the tracking period.

    *)
  7. trackedActionsLastAccessed : TrackedActionsLastAccessed.t option;
    (*

    An object that contains details about the most recent attempt to access a tracked action within the service. This field is null if there no tracked actions or if the principal did not use the tracked actions within the tracking period. This field is also null if the report was generated at the service level and not the action level. For more information, see the Granularity field in GenerateServiceLastAccessedDetails.

    *)
}
Sourceval make : ?serviceName:??? -> ?lastAuthenticated:??? -> ?serviceNamespace:??? -> ?lastAuthenticatedEntity:??? -> ?lastAuthenticatedRegion:??? -> ?totalAuthenticatedEntities:??? -> ?trackedActionsLastAccessed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegerType.t | `List of [> `Structure of (string * [> `String of StringType.t | `Timestamp of DateType.t ]) list ] list | `String of ServiceNameType.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