CfnViewVersionMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnViewVersionMixinProps(*, version_description=None, view_arn=None, view_content_sha256=None)

Bases: object

Properties for CfnViewVersionPropsMixin.

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

  • view_arn (Optional[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

  • 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.mixins_preview.aws_connect import mixins as connect_mixins

cfn_view_version_mixin_props = connect_mixins.CfnViewVersionMixinProps(
    version_description="versionDescription",
    view_arn="viewArn",
    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