Module Values_0.CreateUseCaseRequestSource

Creates a use case for an integration association.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t;
    (*

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    *)
  2. integrationAssociationId : IntegrationAssociationId.t;
    (*

    The identifier for the integration association.

    *)
  3. useCaseType : UseCaseType.t;
    (*

    The type of use case to associate to the integration association. Each integration association can have only one of each use case type.

    *)
  4. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> instanceId:InstanceId.t -> integrationAssociationId:IntegrationAssociationId.t -> useCaseType:UseCaseType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of InstanceId.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