Show / Hide Table of Contents

Class CfnContactFlowProps

Properties for defining a CfnContactFlow.

Inheritance
object
CfnContactFlowProps
Implements
ICfnContactFlowProps
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 CfnContactFlowProps : ICfnContactFlowProps
Syntax (vb)
Public Class CfnContactFlowProps Implements ICfnContactFlowProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflow.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 cfnContactFlowProps = new CfnContactFlowProps {
                 Content = "content",
                 InstanceArn = "instanceArn",
                 Name = "name",
                 Type = "type",

                 // the properties below are optional
                 Description = "description",
                 State = "state",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnContactFlowProps()

Properties for defining a CfnContactFlow.

Properties

Content

The content of the flow.

Description

The description of the flow.

InstanceArn

The Amazon Resource Name (ARN) of the Amazon Connect instance.

Name

The name of the flow.

State

The state of the flow.

Tags

An array of key-value pairs to apply to this resource.

Type

The type of the flow.

Constructors

CfnContactFlowProps()

Properties for defining a CfnContactFlow.

public CfnContactFlowProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflow.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 cfnContactFlowProps = new CfnContactFlowProps {
                 Content = "content",
                 InstanceArn = "instanceArn",
                 Name = "name",
                 Type = "type",

                 // the properties below are optional
                 Description = "description",
                 State = "state",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Content

The content of the flow.

public string Content { get; set; }
Property Value

string

Remarks

For more information, see Amazon Connect Flow language in the Amazon Connect Administrator Guide .

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

Description

The description of the flow.

public string? Description { get; set; }
Property Value

string

Remarks

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

InstanceArn

The Amazon Resource Name (ARN) of the Amazon Connect instance.

public string InstanceArn { get; set; }
Property Value

string

Remarks

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

Name

The name of the flow.

public string Name { get; set; }
Property Value

string

Remarks

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

State

The state of the flow.

public string? State { get; set; }
Property Value

string

Remarks

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

Tags

An array of key-value pairs to apply to this resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

For more information, see Tag .

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

Type

The type of the flow.

public string Type { get; set; }
Property Value

string

Remarks

For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .

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

Implements

ICfnContactFlowProps
Back to top Generated by DocFX