Module Values.UpdateMessageTemplateMetadataRequestSource

Updates the Amazon Q in Connect message template metadata. Note that any modification to the message template’s name, description and grouping configuration will applied to the message template pointed by the $LATEST qualifier and all available versions. Partial update is supported. If any field is not supplied, it will remain unchanged for the message template.

Sourcetype nonrec t = {
  1. knowledgeBaseId : UuidOrArn.t;
    (*

    The identifier of the knowledge base. Can be either the ID or the ARN. URLs cannot contain the ARN.

    *)
  2. messageTemplateId : UuidOrArnOrEitherWithQualifier.t;
    (*

    The identifier of the message template. Can be either the ID or the ARN. It cannot contain any qualifier.

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

    The name of the message template.

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

    The description of the message template.

    *)
  5. groupingConfiguration : GroupingConfiguration.t option;
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?groupingConfiguration:??? -> knowledgeBaseId:UuidOrArn.t -> messageTemplateId:UuidOrArnOrEitherWithQualifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UuidOrArn.t | `Structure of (string * [> `List of [> `String of GroupingValue.t ] list | `String of GroupingCriteria.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