Interface CfnWorkspaceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspaceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:22.323Z")
@Stability(Stable)
public interface CfnWorkspaceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnWorkspacePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.*;
CfnWorkspaceMixinProps cfnWorkspaceMixinProps = CfnWorkspaceMixinProps.builder()
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.encryptionType("encryptionType")
.build())
.kmsKeyId("kmsKeyId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.workspaceDescription("workspaceDescription")
.workspaceName("workspaceName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspaceMixinPropsstatic final classAn implementation forCfnWorkspaceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe 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.default StringThe 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
IResolvableorCfnWorkspacePropsMixin.EncryptionConfigurationProperty- 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:
-
getWorkspaceName
The name of the workspace.- See Also:
-
builder
- Returns:
- a
CfnWorkspaceMixinProps.BuilderofCfnWorkspaceMixinProps
-