Module Values_0.AuthenticationProfileSummarySource

This API is in preview release for Amazon Connect and is subject to change. To request access to this API, contact Amazon Web Services Support. A summary of a given authentication profile.

Sourcetype nonrec t = {
  1. id : AuthenticationProfileId.t option;
    (*

    The unique identifier of the authentication profile.

    *)
  2. arn : ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the authentication profile summary.

    *)
  3. name : AuthenticationProfileName.t option;
    (*

    The name of the authentication profile summary.

    *)
  4. isDefault : Boolean.t option;
    (*

    Shows whether the authentication profile is the default authentication profile for the Amazon Connect instance. The default authentication profile applies to all agents in an Amazon Connect instance, unless overridden by another authentication profile.

    *)
  5. lastModifiedTime : Timestamp.t option;
    (*

    The timestamp when the authentication profile summary was last modified.

    *)
  6. lastModifiedRegion : RegionName.t option;
    (*

    The Amazon Web Services Region when the authentication profile summary was last modified.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?isDefault:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of AuthenticationProfileId.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