AWS Fundamentals Logo
AWS Fundamentals
AWS::Connect::QuickConnect

Connect QuickConnect

Resource Type definition for AWS::Connect::QuickConnect

Properties

5 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
InstanceArn
string
Required
Name
string
Required
QuickConnectConfig
QuickConnectConfig
Required
Description
string
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
QuickConnectArnstringThe Amazon Resource Name (ARN) for the quick connect.
QuickConnectTypestringThe type of quick connect. In the Amazon Connect console, when you create a quick connect, you are prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Connect::QuickConnect

Resources:
  MyResource:
    Type: AWS::Connect::QuickConnect
    Properties:
      Name: "my-name"
      InstanceArn: "arn:aws:service:region:account:resource"
      QuickConnectConfig: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

connect:CreateQuickConnectconnect:TagResource

read

connect:DescribeQuickConnect

delete

connect:DeleteQuickConnectconnect:UntagResource

update

connect:UpdateQuickConnectNameconnect:UpdateQuickConnectConfigconnect:TagResourceconnect:UntagResource

list

connect:ListQuickConnects

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceConnect
Properties7
Required3
TaggingSupported
Primary IDQuickConnectArn

Supported Operations

CreateReadDeleteUpdateList

External Links