CfnViewVersionProps

class aws_cdk.aws_connect.CfnViewVersionProps(*, view_arn, version_description=None, view_content_sha256=None)

Bases: object

Properties for defining a CfnViewVersion.

Parameters:
  • view_arn (str) – The unqualified Amazon Resource Name (ARN) of the view. For example: arn:<partition>:connect:<region>:<accountId>:instance/00000000-0000-0000-0000-000000000000/view/00000000-0000-0000-0000-000000000000

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

  • view_content_sha256 (Optional[str]) – Indicates the checksum value of the latest published view content.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-viewversion.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

cfn_view_version_props = connect.CfnViewVersionProps(
    view_arn="viewArn",

    # the properties below are optional
    version_description="versionDescription",
    view_content_sha256="viewContentSha256"
)

Attributes

version_description

The description of the view version.

See:

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

view_arn

The unqualified Amazon Resource Name (ARN) of the view.

For example:

arn:<partition>:connect:<region>:<accountId>:instance/00000000-0000-0000-0000-000000000000/view/00000000-0000-0000-0000-000000000000

See:

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

view_content_sha256

Indicates the checksum value of the latest published view content.

See:

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