interface CfnQuickConnectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnQuickConnectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnQuickConnectMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnQuickConnectMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnQuickConnectMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnQuickConnectMixinProps |
Properties for CfnQuickConnectPropsMixin.
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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnQuickConnectMixinProps: connect_mixins.CfnQuickConnectMixinProps = {
description: 'description',
instanceArn: 'instanceArn',
name: 'name',
quickConnectConfig: {
phoneConfig: {
phoneNumber: 'phoneNumber',
},
queueConfig: {
contactFlowArn: 'contactFlowArn',
queueArn: 'queueArn',
},
quickConnectType: 'quickConnectType',
userConfig: {
contactFlowArn: 'contactFlowArn',
userArn: 'userArn',
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the quick connect. |
| 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. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
description?
Type:
string
(optional)
The description of the quick connect.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the instance.
name?
Type:
string
(optional)
The name of the quick connect.
quickConnectConfig?
Type:
IResolvable | Quick
(optional)
Contains information about 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"} }.

.NET
Go
Java
Python
TypeScript