aws-cdk-lib.aws_connect.CfnQuickConnectProps

interface CfnQuickConnectProps

LanguageType name
.NETAmazon.CDK.AWS.Connect.CfnQuickConnectProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnQuickConnectProps
Javasoftware.amazon.awscdk.services.connect.CfnQuickConnectProps
Pythonaws_cdk.aws_connect.CfnQuickConnectProps
TypeScript aws-cdk-lib » 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 { 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

NameTypeDescription
instanceArnstringThe Amazon Resource Name (ARN) of the instance.
namestringThe name of the quick connect.
quickConnectConfigIResolvable | QuickConnectConfigPropertyContains information about the quick connect.
description?stringThe description of the quick connect.
tags?CfnTag[]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 | QuickConnectConfigProperty

Contains information about the quick connect.


description?

Type: string (optional)

The description of the quick connect.


tags?

Type: CfnTag[] (optional)

The tags used to organize, track, or control access for this resource.

For example, { "tags": {"key1":"value1", "key2":"value2"} }.