Interface CfnWorkspaceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspaceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:51:47.414Z")
@Stability(Stable)
public interface CfnWorkspaceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnWorkspace.
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.iotsitewise.*;
CfnWorkspaceProps cfnWorkspaceProps = CfnWorkspaceProps.builder()
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.encryptionType("encryptionType")
.build())
.workspaceName("workspaceName")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.workspaceDescription("workspaceDescription")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspacePropsstatic final classAn implementation forCfnWorkspaceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnWorkspaceProps.Builderbuilder()The encryption configuration for the workspace.default StringThe ARN of the AWS KMS key used for KMS_BASED_ENCRYPTION.getTags()An array of key-value pairs to apply to this resource.default StringA description of the workspace.The name of the workspace.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionConfiguration
The encryption configuration for the workspace.Returns union: either
IResolvableorCfnWorkspace.EncryptionConfigurationProperty- See Also:
-
getWorkspaceName
The name of the workspace.- See Also:
-
getKmsKeyId
The ARN of the AWS KMS key used for KMS_BASED_ENCRYPTION.Required when EncryptionConfiguration.EncryptionType is KMS_BASED_ENCRYPTION.
- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
getWorkspaceDescription
A description of the workspace.- See Also:
-
builder
- Returns:
- a
CfnWorkspaceProps.BuilderofCfnWorkspaceProps
-