Interface ICfnQuickConnectProps
Properties for defining a CfnQuickConnect
.
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnQuickConnectProps
Syntax (vb)
Public Interface ICfnQuickConnectProps
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.AWS.Connect;
var cfnQuickConnectProps = new CfnQuickConnectProps {
InstanceArn = "instanceArn",
Name = "name",
QuickConnectConfig = new QuickConnectConfigProperty {
QuickConnectType = "quickConnectType",
// the properties below are optional
PhoneConfig = new PhoneNumberQuickConnectConfigProperty {
PhoneNumber = "phoneNumber"
},
QueueConfig = new QueueQuickConnectConfigProperty {
ContactFlowArn = "contactFlowArn",
QueueArn = "queueArn"
},
UserConfig = new UserQuickConnectConfigProperty {
ContactFlowArn = "contactFlowArn",
UserArn = "userArn"
}
},
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Description | The description of the quick connect. |
Instance |
The Amazon Resource Name (ARN) of the instance. |
Name | The name of the quick connect. |
Quick |
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.
virtual string Description { get; }
Property Value
System.
Remarks
InstanceArn
The Amazon Resource Name (ARN) of the instance.
string InstanceArn { get; }
Property Value
System.
Remarks
Name
The name of the quick connect.
string Name { get; }
Property Value
System.
Remarks
QuickConnectConfig
Contains information about the quick connect.
object QuickConnectConfig { get; }
Property Value
System.
Remarks
Tags
The tags used to organize, track, or control access for this resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn
Remarks
For example, { "Tags": {"key1":"value1", "key2":"value2"} }.