Show / Hide Table of Contents

Class CfnUser.AutoAcceptConfigProperty

Auto-accept configuration per channel.

Inheritance
object
CfnUser.AutoAcceptConfigProperty
Implements
CfnUser.IAutoAcceptConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUser.AutoAcceptConfigProperty : CfnUser.IAutoAcceptConfigProperty
Syntax (vb)
Public Class CfnUser.AutoAcceptConfigProperty Implements CfnUser.IAutoAcceptConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-autoacceptconfig.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 autoAcceptConfigProperty = new AutoAcceptConfigProperty {
                 AutoAccept = false,
                 Channel = "channel",

                 // the properties below are optional
                 AgentFirstCallbackAutoAccept = false
             };

Synopsis

Constructors

AutoAcceptConfigProperty()

Auto-accept configuration per channel.

Properties

AgentFirstCallbackAutoAccept

The agent first callback auto accept setting.

AutoAccept

The Auto accept setting.

Channel

The channels that agents can handle in the Contact Control Panel (CCP).

Constructors

AutoAcceptConfigProperty()

Auto-accept configuration per channel.

public AutoAcceptConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-autoacceptconfig.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 autoAcceptConfigProperty = new AutoAcceptConfigProperty {
                 AutoAccept = false,
                 Channel = "channel",

                 // the properties below are optional
                 AgentFirstCallbackAutoAccept = false
             };

Properties

AgentFirstCallbackAutoAccept

The agent first callback auto accept setting.

public object? AgentFirstCallbackAutoAccept { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-autoacceptconfig.html#cfn-connect-user-autoacceptconfig-agentfirstcallbackautoaccept

Type union: either bool or IResolvable

AutoAccept

The Auto accept setting.

public object AutoAccept { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-autoacceptconfig.html#cfn-connect-user-autoacceptconfig-autoaccept

Type union: either bool or IResolvable

Channel

The channels that agents can handle in the Contact Control Panel (CCP).

public string Channel { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-autoacceptconfig.html#cfn-connect-user-autoacceptconfig-channel

Implements

CfnUser.IAutoAcceptConfigProperty
Back to top Generated by DocFX