Skip to main content

contact_flow_versions

Creates, updates, deletes or gets a contact_flow_version resource or lists contact_flow_versions in a region

Overview

Namecontact_flow_versions
TypeResource
DescriptionResource Type Definition for ContactFlowVersion
Idawscc.connect.contact_flow_versions

Fields

NameDatatypeDescription
contact_flow_version_arnstringThe identifier of the contact flow version (ARN).
contact_flow_idstringThe ARN of the contact flow this version is tied to.
versionintegerThe version number of this revision
descriptionstringThe description of the version.
flow_content_sha256stringIndicates the checksum value of the latest published flow content
regionstringAWS region.

For more information, see AWS::Connect::ContactFlowVersion.

Methods

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

SELECT examples

Gets all properties from an individual contact_flow_version.

SELECT
region,
contact_flow_version_arn,
contact_flow_id,
version,
description,
flow_content_sha256
FROM awscc.connect.contact_flow_versions
WHERE region = 'us-east-1' AND data__Identifier = '<ContactFlowVersionARN>';

INSERT example

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

/*+ create */
INSERT INTO awscc.connect.contact_flow_versions (
ContactFlowId,
region
)
SELECT
'{{ ContactFlowId }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.connect.contact_flow_versions
WHERE data__Identifier = '<ContactFlowVersionARN>'
AND region = 'us-east-1';

Permissions

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

Create

connect:CreateContactFlowVersion,
connect:DescribeContactFlow

Read

connect:DescribeContactFlow

Delete

connect:DeleteContactFlowVersion

List

connect:ListContactFlowVersions

Update

connect:DescribeContactFlow