Class CfnViewMixinProps
Properties for CfnViewPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnViewMixinProps : ICfnViewMixinProps
Syntax (vb)
Public Class CfnViewMixinProps Implements ICfnViewMixinProps
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.Mixins.Preview.AWS.Connect.Mixins;
var template;
var cfnViewMixinProps = new CfnViewMixinProps {
Actions = new [] { "actions" },
Description = "description",
InstanceArn = "instanceArn",
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
Template = template
};
Synopsis
Constructors
| CfnViewMixinProps() | Properties for CfnViewPropsMixin. |
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
CfnViewMixinProps()
Properties for CfnViewPropsMixin.
public CfnViewMixinProps()
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.Mixins.Preview.AWS.Connect.Mixins;
var template;
var cfnViewMixinProps = new CfnViewMixinProps {
Actions = new [] { "actions" },
Description = "description",
InstanceArn = "instanceArn",
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
Template = template
};
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; }