Interface CfnViewVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnViewVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:16.943Z")
@Stability(Stable)
public interface CfnViewVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnViewVersion
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.connect.*; CfnViewVersionProps cfnViewVersionProps = CfnViewVersionProps.builder() .viewArn("viewArn") // the properties below are optional .versionDescription("versionDescription") .viewContentSha256("viewContentSha256") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnViewVersionProps
static final class
An implementation forCfnViewVersionProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnViewVersionProps.Builder
builder()
default String
The description of the view version.The unqualified Amazon Resource Name (ARN) of the view.default String
Indicates the checksum value of the latest published view content.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getViewArn
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 Also:
-
getVersionDescription
The description of the view version.- See Also:
-
getViewContentSha256
Indicates the checksum value of the latest published view content.- See Also:
-
builder
- Returns:
- a
CfnViewVersionProps.Builder
ofCfnViewVersionProps
-