Class CfnViewProps
Properties for defining a CfnView
.
Implements
Inherited Members
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 |
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
Description
The description of the view.
public string? Description { get; set; }
Property Value
Remarks
InstanceArn
The Amazon Resource Name (ARN) of the instance.
public string InstanceArn { get; set; }
Property Value
Remarks
Name
The name of the view.
public string Name { get; set; }
Property Value
Remarks
Tags
The tags associated with the view resource (not specific to view version).
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
Template
The view template representing the structure of the view.
public object Template { get; set; }