interface CfnQuickConnectProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Connect.CfnQuickConnectProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnQuickConnectProps | 
|  Java | software.amazon.awscdk.services.connect.CfnQuickConnectProps | 
|  Python | aws_cdk.aws_connect.CfnQuickConnectProps | 
|  TypeScript | aws-cdk-lib»aws_connect»CfnQuickConnectProps | 
Properties for defining a CfnQuickConnect.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-quickconnect.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const cfnQuickConnectProps: connect.CfnQuickConnectProps = {
  instanceArn: 'instanceArn',
  name: 'name',
  quickConnectConfig: {
    quickConnectType: 'quickConnectType',
    // the properties below are optional
    phoneConfig: {
      phoneNumber: 'phoneNumber',
    },
    queueConfig: {
      contactFlowArn: 'contactFlowArn',
      queueArn: 'queueArn',
    },
    userConfig: {
      contactFlowArn: 'contactFlowArn',
      userArn: 'userArn',
    },
  },
  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| instance | string | The Amazon Resource Name (ARN) of the instance. | 
| name | string | The name of the quick connect. | 
| quick | IResolvable | Quick | Contains information about the quick connect. | 
| description? | string | The description of the quick connect. | 
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. | 
instanceArn
Type:
string
The Amazon Resource Name (ARN) of the instance.
name
Type:
string
The name of the quick connect.
quickConnectConfig
Type:
IResolvable | Quick
Contains information about the quick connect.
description?
Type:
string
(optional)
The description of the quick connect.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
