Skip to main content

message_template_versions

Creates, updates, deletes or gets a message_template_version resource or lists message_template_versions in a region

Overview

Namemessage_template_versions
TypeResource
DescriptionA version for the specified customer-managed message template within the specified knowledge base.
Idaws.wisdom.message_template_versions

Fields

NameDatatypeDescription
message_template_arnstringThe unqualified Amazon Resource Name (ARN) of the message template.
message_template_version_arnstringThe unqualified Amazon Resource Name (ARN) of the message template version.
message_template_content_sha256stringThe content SHA256 of the message template.
message_template_version_numbernumberCurrent version number of the message template.
regionstringAWS region.

For more information, see AWS::Wisdom::MessageTemplateVersion.

Methods

NameAccessible byRequired Params
create_resourceINSERTMessageTemplateArn, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all message_template_versions in a region.

SELECT
region,
message_template_arn,
message_template_version_arn,
message_template_content_sha256,
message_template_version_number
FROM aws.wisdom.message_template_versions
WHERE region = 'us-east-1';

Gets all properties from an individual message_template_version.

SELECT
region,
message_template_arn,
message_template_version_arn,
message_template_content_sha256,
message_template_version_number
FROM aws.wisdom.message_template_versions
WHERE region = 'us-east-1' AND data__Identifier = '<MessageTemplateVersionArn>';

INSERT example

Use the following StackQL query and manifest file to create a new message_template_version resource, using stack-deploy.

/*+ create */
INSERT INTO aws.wisdom.message_template_versions (
MessageTemplateArn,
region
)
SELECT
'{{ MessageTemplateArn }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.wisdom.message_template_versions
WHERE data__Identifier = '<MessageTemplateVersionArn>'
AND region = 'us-east-1';

Permissions

To operate on the message_template_versions resource, the following permissions are required:

Create

wisdom:CreateMessageTemplateVersion,
wisdom:ListMessageTemplateVersions

Delete

wisdom:DeleteMessageTemplate

Update

wisdom:CreateMessageTemplateVersion

List

wisdom:ListMessageTemplateVersions

Read

wisdom:GetMessageTemplate