CfnViewProps
- class aws_cdk.aws_connect.CfnViewProps(*, actions, instance_arn, name, template, description=None, tags=None)
Bases:
objectProperties for defining a
CfnView.- Parameters:
actions (
Sequence[str]) – A list of actions possible from the view.instance_arn (
str) – The Amazon Resource Name (ARN) of the instance.name (
str) – The name of the view.template (
Any) – The view template representing the structure of the view.description (
Optional[str]) – The description of the view.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – 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
- 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 import aws_connect as connect # template: Any cfn_view_props = connect.CfnViewProps( actions=["actions"], instance_arn="instanceArn", name="name", template=template, # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- actions
A list of actions possible from the view.
- description
The description of the view.
- instance_arn
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.