Class CfnViewProps
Properties for defining a CfnView
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnViewProps : Object, ICfnViewProps
Syntax (vb)
Public Class CfnViewProps
Inherits Object
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
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()
public CfnViewProps()
Properties
Actions
A list of actions possible from the view.
public string[] Actions { get; set; }
Property Value
System.String[]
Remarks
Description
The description of the view.
public string Description { get; set; }
Property Value
System.String
Remarks
InstanceArn
The Amazon Resource Name (ARN) of the instance.
public string InstanceArn { get; set; }
Property Value
System.String
Remarks
Name
The name of the view.
public string Name { get; set; }
Property Value
System.String
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; }
Property Value
System.Object