Interface CfnWorkspacesPoolProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkspacesPoolProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:56:07.433Z") @Stability(Stable) public interface CfnWorkspacesPoolProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnWorkspacesPool.

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.workspaces.*;
 CfnWorkspacesPoolProps cfnWorkspacesPoolProps = CfnWorkspacesPoolProps.builder()
         .bundleId("bundleId")
         .capacity(CapacityProperty.builder()
                 .desiredUserSessions(123)
                 .build())
         .directoryId("directoryId")
         .poolName("poolName")
         // the properties below are optional
         .applicationSettings(ApplicationSettingsProperty.builder()
                 .status("status")
                 // the properties below are optional
                 .settingsGroup("settingsGroup")
                 .build())
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .timeoutSettings(TimeoutSettingsProperty.builder()
                 .disconnectTimeoutInSeconds(123)
                 .idleDisconnectTimeoutInSeconds(123)
                 .maxUserDurationInSeconds(123)
                 .build())
         .build();
 

See Also: