create_contact_flow

Connect.Client.create_contact_flow(**kwargs)

Creates a flow for the specified Amazon Connect instance.

You can also create and update flows using the Amazon Connect Flow language.

See also: AWS API Documentation

Request Syntax

response = client.create_contact_flow(
    InstanceId='string',
    Name='string',
    Type='CONTACT_FLOW'|'CUSTOMER_QUEUE'|'CUSTOMER_HOLD'|'CUSTOMER_WHISPER'|'AGENT_HOLD'|'AGENT_WHISPER'|'OUTBOUND_WHISPER'|'AGENT_TRANSFER'|'QUEUE_TRANSFER',
    Description='string',
    Content='string',
    Tags={
        'string': 'string'
    }
)
Parameters
  • InstanceId (string) --

    [REQUIRED]

    The identifier of the Amazon Connect instance.

  • Name (string) --

    [REQUIRED]

    The name of the flow.

  • Type (string) --

    [REQUIRED]

    The type of the flow. For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .

  • Description (string) -- The description of the flow.
  • Content (string) --

    [REQUIRED]

    The content of the flow.

  • Tags (dict) --

    The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.

    • (string) --
      • (string) --
Return type

dict

Returns

Response Syntax

{
    'ContactFlowId': 'string',
    'ContactFlowArn': 'string'
}

Response Structure

  • (dict) --

    • ContactFlowId (string) --

      The identifier of the flow.

    • ContactFlowArn (string) --

      The Amazon Resource Name (ARN) of the flow.

Exceptions

  • Connect.Client.exceptions.InvalidRequestException
  • Connect.Client.exceptions.InvalidContactFlowException
  • Connect.Client.exceptions.InvalidParameterException
  • Connect.Client.exceptions.DuplicateResourceException
  • Connect.Client.exceptions.LimitExceededException
  • Connect.Client.exceptions.ResourceNotFoundException
  • Connect.Client.exceptions.ThrottlingException
  • Connect.Client.exceptions.InternalServiceException