Module Values_1.InstanceSummarySource

Information about the instance.

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

    The identifier of the instance.

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

    The Amazon Resource Name (ARN) of the instance.

    *)
  3. identityManagementType : Values_0.DirectoryType.t option;
    (*

    The identity management type of the instance.

    *)
  4. instanceAlias : Values_0.DirectoryAlias.t option;
    (*

    The alias of the instance.

    *)
  5. createdTime : Values_0.Timestamp.t option;
    (*

    When the instance was created.

    *)
  6. serviceRole : Values_0.ARN.t option;
    (*

    The service role of the instance.

    *)
  7. instanceStatus : InstanceStatus.t option;
    (*

    The state of the instance.

    *)
  8. inboundCallsEnabled : Values_0.InboundCallsEnabled.t option;
    (*

    Whether inbound calls are enabled.

    *)
  9. outboundCallsEnabled : Values_0.OutboundCallsEnabled.t option;
    (*

    Whether outbound calls are enabled.

    *)
  10. instanceAccessUrl : Url.t option;
    (*

    This URL allows contact center users to access the Amazon Connect admin website.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?identityManagementType:??? -> ?instanceAlias:??? -> ?createdTime:??? -> ?serviceRole:??? -> ?instanceStatus:??? -> ?inboundCallsEnabled:??? -> ?outboundCallsEnabled:??? -> ?instanceAccessUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.InboundCallsEnabled.t | `Enum of string | `String of Values_0.InstanceId.t | `Timestamp of Values_0.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