Interface ICfnQuickConnectMixinProps
Properties for CfnQuickConnectPropsMixin.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Connect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnQuickConnectMixinProps
Syntax (vb)
Public Interface ICfnQuickConnectMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-quickconnect.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Connect;
var cfnQuickConnectMixinProps = new CfnQuickConnectMixinProps {
Description = "description",
InstanceArn = "instanceArn",
Name = "name",
QuickConnectConfig = new QuickConnectConfigProperty {
PhoneConfig = new PhoneNumberQuickConnectConfigProperty {
PhoneNumber = "phoneNumber"
},
QueueConfig = new QueueQuickConnectConfigProperty {
ContactFlowArn = "contactFlowArn",
QueueArn = "queueArn"
},
QuickConnectType = "quickConnectType",
UserConfig = new UserQuickConnectConfigProperty {
ContactFlowArn = "contactFlowArn",
UserArn = "userArn"
}
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
| Description | The description of the quick connect. |
| InstanceArn | The Amazon Resource Name (ARN) of the instance. |
| Name | The name of the quick connect. |
| QuickConnectConfig | Contains information about the quick connect. |
| Tags | The tags used to organize, track, or control access for this resource. |
Properties
Description
The description of the quick connect.
string? Description { get; }
Property Value
Remarks
InstanceArn
The Amazon Resource Name (ARN) of the instance.
object? InstanceArn { get; }
Property Value
Remarks
Name
The name of the quick connect.
string? Name { get; }
Property Value
Remarks
QuickConnectConfig
Contains information about the quick connect.
object? QuickConnectConfig { get; }
Property Value
Remarks
Tags
The tags used to organize, track, or control access for this resource.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]
Remarks
For example, { "Tags": {"key1":"value1", "key2":"value2"} }.