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: