Module Values_1.InstanceSource

The Amazon Connect instance.

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

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) 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.

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

    The alias of 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. statusReason : InstanceStatusReason.t option;
    (*

    Relevant details why the instance was not successfully created.

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

    Whether inbound calls are enabled.

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

    Whether outbound calls are enabled.

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

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

    *)
  12. tags : Values_0.TagMap.t option;
    (*

    The tags of an instance.

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