Show / Hide Table of Contents

Class CfnViewProps

Properties for defining a CfnView.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.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 template;

             var cfnViewProps = new CfnViewProps {
                 Actions = new [] { "actions" },
                 InstanceArn = "instanceArn",
                 Name = "name",
                 Template = template,

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

Synopsis

Constructors

CfnViewProps()

Properties for defining a CfnView.

Properties

Actions

A list of actions possible from the view.

Description

The description of the view.

InstanceArn

The Amazon Resource Name (ARN) of the instance.

Name

The name of the view.

Tags

The tags associated with the view resource (not specific to view version).

Template

The view template representing the structure of the view.

Constructors

CfnViewProps()

Properties for defining a CfnView.

public CfnViewProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.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 template;

             var cfnViewProps = new CfnViewProps {
                 Actions = new [] { "actions" },
                 InstanceArn = "instanceArn",
                 Name = "name",
                 Template = template,

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

Properties

Actions

A list of actions possible from the view.

public string[] Actions { get; set; }
Property Value

string[]

Remarks

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

Description

The description of the view.

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

string

Remarks

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

InstanceArn

The Amazon Resource Name (ARN) of the instance.

public string InstanceArn { get; set; }
Property Value

string

Remarks

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

Name

The name of the view.

public string Name { get; set; }
Property Value

string

Remarks

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

Tags

The tags associated with the view resource (not specific to view version).

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

ICfnTag[]

Remarks

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

Template

The view template representing the structure of the view.

public object Template { get; set; }
Property Value

object

Remarks

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

Implements

ICfnViewProps
Back to top Generated by DocFX