interface CfnQuickConnectProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Connect.CfnQuickConnectProps | 
|  Java | software.amazon.awscdk.services.connect.CfnQuickConnectProps | 
|  Python | aws_cdk.aws_connect.CfnQuickConnectProps | 
|  TypeScript | @aws-cdk/aws-connect»CfnQuickConnectProps | 
Properties for defining a CfnQuickConnect.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as connect from '@aws-cdk/aws-connect';
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"} }.
