interface CfnViewVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnViewVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnViewVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnViewVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnViewVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnViewVersionMixinProps |
Properties for CfnViewVersionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-viewversion.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';
const cfnViewVersionMixinProps: connect_mixins.CfnViewVersionMixinProps = {
versionDescription: 'versionDescription',
viewArn: 'viewArn',
viewContentSha256: 'viewContentSha256',
};
Properties
| Name | Type | Description |
|---|---|---|
| version | string | The description of the view version. |
| view | string | The unqualified Amazon Resource Name (ARN) of the view. |
| view | string | Indicates the checksum value of the latest published view content. |
versionDescription?
Type:
string
(optional)
The description of the view version.
viewArn?
Type:
string
(optional)
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
viewContentSha256?
Type:
string
(optional)
Indicates the checksum value of the latest published view content.

.NET
Go
Java
Python
TypeScript