Flow Controls Set Up and Usage

Overview

Symbee Connect Flow Controls are a set of generic tools you can use in your Amazon Connect Contact Flows to dynamically change your flow behavior without having to continuously make and test contact flow updates. For a more detailed description, see here.

This guide provides the configuration steps to enable the use of Symbee Connect Flow Controls in your AWS account and Symbee Connect instance.



Run CloudFormation

If this is the first Symbee Connect CloudFormation you have run, you will need to run the Integrations CloudFormation first. For step by step instructions and further information about CloudFormations click here.


Download and Install Flow Control Points CloudFormation

  1. Log into the Symbee Connect Administration Portal.

  2. If you have more than one Environment configured within your Company in Symbee Connect, on the top Navigation bar, ensure you select the appropriate Environment you wish to configure for Flow Control Points before downloading any CloudFormation script.

  3. Then click on the main Function menu in the top navigation bar, and click on Feature Integrations (CloudFormations) in the Company Environment Configuration section.

  4. From the Feature Integrations (AWS CloudFormations) page, scroll down and locate the Flow Controls CloudFormation and click the download link to download.

  5. You will be prompted with a Save As dialog screen.

  6. Save the FlowPointLambdaCloudFormation.yaml file locally to your PC for use in the following steps.

  7. Log Into your AWS Management Console.

  8. Make sure you are in the correct AWS region for where you want to deploy (this can be found on the top right of the Navigation bar).

  9. Click on Services at the top, and under Management and Governance, choose CloudFormation.

  10. From the CloudFormations console, select Stacks in the left-hand navigation bar, and select Create Stack (with new resources (standard)).

  11. You will be presented the Create Stack view for creating/deploying a new CloudFormation script (known as a stack):

    • Under the Prepare Template section, select Template is Ready
    • Under Specify Template, select Upload a template file
    • Under Upload a template file, click Choose File
    • In the resulting file selector, find and upload the file you saved from Step 6 above.
    • Click Next at the bottom
  12. On the next Specify stack details page

    • Give your stack an appropriate name - for example: symbee- yourenvironment -flowcontrols or similar
    • Leave the AWSLambdaBasicExecutionRoleARN parameter at its default
    • For LambdaDistroBucket, select the the same region you are deploying your CloudFormation in
    • For LambdaSourceFile - select the versions zip file from the drop-down (there should only by 1 to pick from)
    • Set the SecretsManagerRegion to the name of the same AWS region you deployed the first Symbee Connect Integration CloudFormation into - that is the Secrets Manager region where your Symbee Connect API Key was automatically created
    • Click on Next
  13. On the Configure Stack options, keep all the default, and click Next at the bottom

  14. On the Review page, scroll to the bottom, check the blue "I acknowledge that AWS CloudFormation might create IAM resources" check box, and click the Create Stack at the bottom to complete

Configuring New Flow Control Points

The following steps configure a first example Flow Control Point within your Symbee Connect instance. This is then used in the next section within your Amazon Connect Contact Flow. In addition to this example stepping through Flow Control Points, you can also use create and configure Flow Control Tables. See here for a description of Flow Control Tables.

  1. Log into the Symbee Connect Administration Portal.
  2. If you have more than one Environment configured within your Company in Symbee Connect, make sure you have the appropriate one selected. This can be found on the Navigation bar to the left of the Function menu.
  3. Select Flow Controls from the main Function menu in the top navigation bar under Contact Center Configuration.
  4. Select Flow Control Points on the left-hand navigation bar
  5. Firstly, click the green (1) Manage Authorization PIN button on the right, and set a new Authorization PIN and save the value. This value can be changed at any time in future. This value can be accessed from a Manager type Contact Flow to check against a caller’s entry to determine whether to allow the caller to update a Flow Control from a phone call.
  6. Now, on the same screen, click the Add New Flow Control Point (2 above) to create your first Flow Control Point:
    • Set the Flow Control Name to: ExampleSwitch
    • Set the Value Type to: Picklist
    • Under Predefined Values: add 2 options - ON and OFF
    • Save
    • With the new Flow Point now created, click its Update Value button to set the value to OFF
  7. Below should be the result. Create more Flow Points as needed.


Using Flow Control Points in your Amazon Connect Contact Flow

When you ran the Flow Points CloudFormation, it deployed a Lambda function in your AWS account to use in your Contact Flows. The Flow Control Lambda deployed can be used to access both Flow Control Points and Flow Control Table data from your Contact Flows.

When you followed the steps above in Configuring New Flow Control Points, an initial Flow Control Point was created that can be queried.


Register the Flow Control Lambda for use with Amazon Connect

Allow your Amazon Connect Instance to use the Flow Controls Lambda:

  1. Log Into your AWS Management Console.
  2. Make sure you are in the correct AWS region for your Amazon Connect instance (top right of the Navigation bar).
  3. From the Services menu, navigate to Amazon Connect, and select the Amazon Connect instance associated with the Symbee Connect Environment you used in the above steps.
  4. From your Amazon Connect instance Summary page, use the left navigation bar and select Contact Flows configuration.


  5. Scroll down on the Contact Flows configuration page, to the section headed AWS Lambda where you configure which Lambda functions are available to Contact Flows in your Connect instance.
  6. In the Lambda Functions dropdown box, select the Symbee Connect FlowPointLambda that was installed above and click the + Add Lambda Function underneath. This allows the Flow Control lambda to be available for use in your Contact Flows:


Flow Control Lambda Inputs and Outputs

The following sections show Example usage of the Flow Control Lambda in your contact flow.

The Flow Control Lambda has a primary input Parameter named Operation indicating the type of request. The Operation parameter can be set to one of the following values:

Parameter Description
getflowpoint Retrieves the current value of a configured Flow Control
getflowpoints Retrieves the current values of multiple configured Flow Controls in a single request
setflowpoint Updates the current value of a Flow Control (for management flows)
validateflowpointauthpin Also for management flows, checks a given value against the configured Flow Control Authorization PIN
getFlowTableRow Retrieves a row from a Flow Control Table for the given key values, and returns all the table row attribute (column) values

Operation: getflowpoint

Requires one additional input parameter:

Parameter Description
FlowPointName The name of the Flow Control value to retrieve

Returns the following response attributes:

Parameter Description
IsSuccessful true indicates the Flow Control name was valid, and its result returned
false indicates either an invalid Flow Control name, or a retrieval failure
ErrorCode Only present if IsSuccessful = false. Indicates the failure status code
FlowPointName If IsSuccessful = true, the name of the Flow Control returned
FlowPointValue If IsSuccessful = true, the value of the requested Flow Control

Operation: getflowpoints

Requires one additional input parameter:

Parameter Description
FlowPointNames A pipe-delimited list of the names of the Flow Control values to retrieve.
For example: ExampleSwitch1|ExampleSwitch2|ExampleSwitch3

Returns the following response attributes:

Parameter Description
IsSuccessful true indicates the Flow Control names were valid, and results were returned
false indicates either invalid Flow Control names, or a retrieval failure
ErrorCode Only present if IsSuccessful = false. Indicates the failure status code

Additionally, if IsSuccessful = true, each requested Flow Control named in the FlowPointNames input parameter is returned as an attribute named with the Flow Control name, and its value being the currently configured Flow Control value.

For example:

ExampleSwitch1 With the value being that currently configured for ExampleSwitch1

ExampleSwitch2 With the value being that currently configured for ExampleSwitch2

ExampleSwitch3 With the value being that currently configured for ExampleSwitch3

Operation: setflowpoint

Requires two additional input parameters:

Parameter Description
FlowPointName The name of the Flow Control value to update
FlowPointValue The new value to update the Flow Control to

Returns the following response attribute:

Parameter Description
IsUpdated true indicates the Flow Control was successfully updated
false indicates the update request failed

Operation: validateflowpointauthpin

Requires one additional input parameter:

Parameter Description
FlowPointValue The value (presumably entered by the caller) to check for a match against the configured Authorization PIN value

Returns the following response attribute:

Parameter Description
IsAuthenticated true indicates a match
false indicates no match

Operation: getFlowTableRow

Requires two (and up to four) additional input parameters:

Parameter Description
FlowPointTableName The name of the Flow Control Table to retrieve row data from
FlowPointValue1 The value of the first Flow Table Key
FlowPointValue2 (Optional, required if the specified Flow Table has 2 or 3 configured keys). The value of the second Flow Table Key.
FlowPointValue3 (Optional, required if the specified Flow Table has 3 configured keys). The value of the third Flow Table Key.

Returns the following response attributes:

Parameter Description
IsSuccessful true indicates the Flow Control Table name was valid
false indicates an invalid Flow Control Table name, or a retrieval failure
RowCount Only present if IsSuccessful = true. Indicates the number of rows returned (will be 0 or 1).
Flow Table Attribute Name If IsSuccessful = true, the value of the first Flow Control Table attribute configured for the row matching the keys provided as input parameters
... Per above, the name and value of every additional Flow Control Table attribute configured for the row matching the keys is returned in the one request.



Querying a Flow Control in your Amazon Connect Contact Flow

The below shows an example Contact Flow usage that queries a Flow Control Point, and branches based on the current value retrieved. Similarly, the Contact Flow also looks like below if requesting a Flow Control Table row:



  1. Drag an Invoke AWS Lambda Function node onto your flow from the Integrate section of the left-hand Contact Flow actions palettes:



  2. Configure the details of the Invoke AWS Lambda Function node as follows:

    • In the Function ARN drop-down, select the Flow Control Lambda deployed in this step, and enabled for use in your flow when you completed Register the Flow Control Lambda

    • Add a Function Input Parameter, setting Use Text with a Destination Key of Operation and a Value of getflowpoint

    • Add a second Input Parameter, setting Use Text with a Destination Key of FlowPointName and a value of the name of your configured Flow Control that you want to retrieve the current value of

    • Set the Timeout to 8 seconds (conservative – the majority of requests will complete sub-second)



  3. Drag a Check Contact Attributes node onto your flow from the Set section of the left-hand Contact Flow actions palette, and wire it into the flow after the Invoke AWS Lambda node created above.


  4. In the Check Contact Attributes node settings:

    • Set Type to External (i.e. you want to check an attribute returned from the last Lambda function).
    • Set Attribute to check, to FlowPointValue.
    • Under the conditions to check, populate conditions appropriate to the values you are using in your configured Flow Control.


  5. Then finally wire up Check Contact Attributes output points to take the appropriate paths in you Contact Flow.

Depending on the type of value you are loading into your Flow Control (e.g. possibly a string of message text to play with Amazon Polly), you might replace steps 3 and 4 above instead with things like:



Updating Flow Control values in a Manager Contact Flow

The Flow Control Lambda also provides the validateflowpointauthpin and setflowpoint (see Flow Control Lambda Inputs and Outputs for details) to allow you to build a separate administration type Contact Flow to allow a Manager or Supervisor to call into a different Phone Number than your customers, and select options to result in a change to Flow Control values.

In summary, to set this up, you would usually Claim a new Phone Number within your Amazon Connect Instance that is not published to customers, and only known internally to Managers and Supervisors. Then point this phone number to a separate dedicated Contact Flow. This separate Manager Contact Flow allows the caller to enter the Flow Control Authorization PIN, checks it using validateflowpointauthpin, offers menus for the caller to select appropriate changes, and then uses setflowpoint to update the appropriate Flow Control value accordingly.

An example Manager type Contact Flow is show below:



  1. Create a new Contact Flow and build it out as required, similar (as appropriate) to the flow depicted above.
  2. Optional: Claim a new Phone Number within Amazon Connect and set it to route calls to your new flow.
  3. At the beginning of the flow (see nodes within red box above) use the Store Customer Input node (from the Interact section of the left-hand actions palette) to prompt and collect an Authorization code from the caller
  4. Then use an Invoke AWS Lambda Function node (from the Integrate section of actions palette) and use the Flow Control Lambda again:

    • Add a Function Input Parameter, setting Use Text with a Destination Key of Operation and a Value of validateflowpointauthpin.
    • Add a second Input Parameter:

      • set Use Attribute with a Destination Key of FlowPointValue
      • set Type to System
      • set Attribute to Stored customer input (the caller input value received from Step 3 above)
    • Set the Timeout to 8 seconds (conservative – the majority of requests will complete sub-second)


  5. After the validateflowpointauthpin Invoke Lambda function node above, use the Check Contact Attributes node (from the Branch section of the left-hand actions palette) to verify whether the customers input PIN matched the configured Flow Control Authorization PIN:

    • Set the Attribute Type to check to External (meaning an output value from a Lambda)
    • Set the Attribute to check to IsAuthenticated
    • Add a condition, testing if IsAuthenticated has a value Equals true


  6. After you have authorized the caller, use Get Customer Input nodes (from the Interact section of the left-hand actions palette) to offer appropriate options to update flow control values.

    Based on the caller response, branch to flows that perform appropriate setflowpoint Flow Control Lambda calls (see next step) to update Flow Controls to the new values.

  7. For each flow control you want to update, use an Invoke AWS Lambda Function node to call the Flow Control Lambda again:

    • Add a Function Input Parameter, setting Use Text with a Destination Key of Operation and a Value of setflowpoint.
    • Add a second Input Parameter, setting Use Text with a Destination Key of FlowPointName and a value of the name of your configured flow control that you want to update.
    • Add a third Input Parameter
      • always set the Destination Key of FlowPointValue.
      • what type (Use Text, or Use Attribute) will depend on what type of value you plan on holding in your Flow Control. For example, if it is an OFF/ON type value, select Use Text and hard-code the new value based on the flow path you are in as a result of the caller input (see example below).
    • Set the Timeout to 8 seconds (conservative – the majority of requests will complete sub-second).


  8. After each setflowpoint Invoke Lambda function node, use the Check Contact Attributes node again to verify whether the update was successful:

    • Set the Attribute Type to check to External (meaning an output value from a Lambda)
    • Set the Attribute to check to IsUpdated
    • Add a condition, testing if IsUpdated has a value Equals true