CfnViewMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnViewMixinProps(*, actions=None, description=None, instance_arn=None, name=None, tags=None, template=None)

Bases: object

Properties for CfnViewPropsMixin.

Parameters:
  • actions (Optional[Sequence[str]]) – A list of actions possible from the view.

  • description (Optional[str]) – The description of the view.

  • instance_arn (Optional[str]) – The Amazon Resource Name (ARN) of the instance.

  • name (Optional[str]) – The name of the view.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags associated with the view resource (not specific to view version).

  • template (Any) – The view template representing the structure of the view.

See:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_connect import mixins as connect_mixins

# template: Any

cfn_view_mixin_props = connect_mixins.CfnViewMixinProps(
    actions=["actions"],
    description="description",
    instance_arn="instanceArn",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    template=template
)

Attributes

actions

A list of actions possible from the view.

See:

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

description

The description of the view.

See:

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

instance_arn

The Amazon Resource Name (ARN) of the instance.

See:

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

name

The name of the view.

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).

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.

See:

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