Module Values.MessageTemplateVersionSummarySource

The summary of the message template version.

Sourcetype nonrec t = {
  1. messageTemplateArn : ArnWithQualifier.t option;
    (*

    The Amazon Resource Name (ARN) of the message template.

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

    The identifier of the message template.

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

    The Amazon Resource Name (ARN) of the knowledge base.

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

    The identifier of the knowledge base.

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

    The name of the message template.

    *)
  6. channel : Channel.t option;
    (*

    The channel of the message template.

    *)
  7. channelSubtype : ChannelSubtype.t option;
    (*

    The channel subtype this message template applies to.

    *)
  8. isActive : Boolean.t option;
    (*

    Whether the version of the message template is activated.

    *)
  9. versionNumber : Version.t option;
    (*

    The version number of the message template version.

    *)
}
Sourceval make : ?messageTemplateArn:??? -> ?messageTemplateId:??? -> ?knowledgeBaseArn:??? -> ?knowledgeBaseId:??? -> ?name:??? -> ?channel:??? -> ?channelSubtype:??? -> ?isActive:??? -> ?versionNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Long of Version.t | `String of ArnWithQualifier.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