interface CfnViewMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnViewMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnViewMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnViewMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnViewMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnViewMixinProps |
Properties for CfnViewPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
declare const template: any;
const cfnViewMixinProps: connect_mixins.CfnViewMixinProps = {
actions: ['actions'],
description: 'description',
instanceArn: 'instanceArn',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
template: template,
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | string[] | A list of actions possible from the view. |
| description? | string | The description of the view. |
| instance | string | The Amazon Resource Name (ARN) of the instance. |
| name? | string | The name of the view. |
| tags? | Cfn[] | The tags associated with the view resource (not specific to view version). |
| template? | any | The view template representing the structure of the view. |
actions?
Type:
string[]
(optional)
A list of actions possible from the view.
description?
Type:
string
(optional)
The description of the view.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the instance.
name?
Type:
string
(optional)
The name of the view.
tags?
Type:
Cfn[]
(optional)
The tags associated with the view resource (not specific to view version).
template?
Type:
any
(optional)
The view template representing the structure of the view.

.NET
Go
Java
Python
TypeScript