Module Values.AssistantSummarySource

Summary information about the assistant.

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

    The identifier of the Amazon Q in Connect assistant.

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

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

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

    The name of the assistant.

    *)
  4. type_ : AssistantType.t option;
    (*

    The type of the assistant.

    *)
  5. status : AssistantStatus.t option;
    (*

    The status of the assistant.

    *)
  6. description : Description.t option;
    (*

    The description of the assistant.

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

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

    *)
  8. serverSideEncryptionConfiguration : ServerSideEncryptionConfiguration.t option;
    (*

    The configuration information for the customer managed key used for encryption. This KMS key must have a policy that allows kms:CreateGrant, kms:DescribeKey, kms:Decrypt, and kms:GenerateDataKey* permissions to the IAM identity using the key to invoke Amazon Q in Connect. To use Amazon Q in Connect with chat, the key policy must also allow kms:Decrypt, kms:GenerateDataKey*, and kms:DescribeKey permissions to the connect.amazonaws.com service principal. For more information about setting up a customer managed key for Amazon Q in Connect, see Enable Amazon Q in Connect for your instance.

    *)
  9. integrationConfiguration : AssistantIntegrationConfiguration.t option;
    (*

    The configuration information for the Amazon Q in Connect assistant integration.

    *)
  10. capabilityConfiguration : AssistantCapabilityConfiguration.t option;
    (*

    The configuration information for the Amazon Q in Connect assistant capability.

    *)
  11. aiAgentConfiguration : AIAgentConfigurationMap.t option;
    (*

    The configuration of the AI Agents (mapped by AI Agent Type to AI Agent version) that is set on the Amazon Q in Connect Assistant.

    *)
  12. orchestratorConfigurationList : OrchestratorConfigurationList.t option;
    (*

    The list of orchestrator configurations for the assistant.

    *)
}
Sourceval make : ?assistantId:??? -> ?assistantArn:??? -> ?name:??? -> ?type_:??? -> ?status:??? -> ?description:??? -> ?tags:??? -> ?serverSideEncryptionConfiguration:??? -> ?integrationConfiguration:??? -> ?capabilityConfiguration:??? -> ?aiAgentConfiguration:??? -> ?orchestratorConfigurationList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of UuidOrArnOrEitherWithQualifier.t ]) list ] list | `Map of ([> `Enum of string | `String of TagKey.t ] * [> `String of TagValue.t | `Structure of (string * [> `String of UuidWithQualifier.t ]) list ]) list | `String of Uuid.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) 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