Module Values.AIPromptSummarySource

The summary of the AI Prompt.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the AI Prompt.

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

    The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.

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

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

    *)
  4. aiPromptId : Uuid.t option;
    (*

    The identifier of the Amazon Q in Connect AI prompt.

    *)
  5. type_ : AIPromptType.t option;
    (*

    The type of this AI Prompt.

    *)
  6. aiPromptArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the AI Prompt.

    *)
  7. modifiedTime : Timestamp.t option;
    (*

    The time the AI Prompt was last modified.

    *)
  8. templateType : AIPromptTemplateType.t option;
    (*

    The type of the prompt template for this AI Prompt.

    *)
  9. modelId : AIPromptModelIdentifier.t option;
    (*

    The identifier of the model used for this AI Prompt. Model Ids supported are: anthropic.claude-3-haiku-20240307-v1:0.

    *)
  10. apiFormat : AIPromptAPIFormat.t option;
    (*

    The API format used for this AI Prompt.

    *)
  11. visibilityStatus : VisibilityStatus.t option;
    (*

    The visibility status of the AI Prompt.

    *)
  12. origin : Origin.t option;
    (*

    The origin of the AI Prompt. SYSTEM for a default AI Prompt created by Q in Connect or CUSTOMER for an AI Prompt created by calling AI Prompt creation APIs.

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

    The description of the AI Prompt.

    *)
  14. status : Status.t option;
    (*

    The status of the AI Prompt.

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

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

    *)
}
Sourceval make : ?name:??? -> ?assistantId:??? -> ?assistantArn:??? -> ?aiPromptId:??? -> ?type_:??? -> ?aiPromptArn:??? -> ?modifiedTime:??? -> ?templateType:??? -> ?modelId:??? -> ?apiFormat:??? -> ?visibilityStatus:??? -> ?origin:??? -> ?description:??? -> ?status:??? -> ?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 Name.t | `Timestamp of 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