Module Values.AssistantAssociationSummarySource

Summary information about the assistant association.

Sourcetype nonrec t = {
  1. assistantAssociationId : Uuid.t option;
    (*

    The identifier of the assistant association.

    *)
  2. assistantAssociationArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the assistant association.

    *)
  3. assistantId : Uuid.t option;
    (*

    The identifier of the Amazon Q in Connect assistant.

    *)
  4. assistantArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Q in Connect assistant.

    *)
  5. associationType : AssociationType.t option;
    (*

    The type of association.

    *)
  6. associationData : AssistantAssociationOutputData.t option;
    (*

    The association data.

    *)
  7. tags : Tags.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourceval make : ?assistantAssociationId:??? -> ?assistantAssociationArn:??? -> ?assistantId:??? -> ?assistantArn:??? -> ?associationType:??? -> ?associationData:??? -> ?tags:??? -> 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 Uuid.t | `Structure of (string * [> `Structure of (string * [> `String of Uuid.t ]) list ]) list ]) 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