Show / Hide Table of Contents

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-quickconnect.html#cfn-connect-quickconnect-description

InstanceArn

The Amazon Resource Name (ARN) of the instance.

object? InstanceArn { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-quickconnect.html#cfn-connect-quickconnect-instancearn

Type union: either string or IInstanceRef

Name

The name of the quick connect.

string? Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-quickconnect.html#cfn-connect-quickconnect-name

QuickConnectConfig

Contains information about the quick connect.

object? QuickConnectConfig { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-quickconnect.html#cfn-connect-quickconnect-quickconnectconfig

Type union: either IResolvable or CfnQuickConnectPropsMixin.IQuickConnectConfigProperty

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"} }.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-quickconnect.html#cfn-connect-quickconnect-tags

Back to top Generated by DocFX