Interface CfnWorkspacesPool.TimeoutSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkspacesPool.TimeoutSettingsProperty.Jsii$Proxy
Enclosing class:
CfnWorkspacesPool

@Stability(Stable) public static interface CfnWorkspacesPool.TimeoutSettingsProperty extends software.amazon.jsii.JsiiSerializable
Describes the timeout settings for the pool.

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.*;
 TimeoutSettingsProperty timeoutSettingsProperty = TimeoutSettingsProperty.builder()
         .disconnectTimeoutInSeconds(123)
         .idleDisconnectTimeoutInSeconds(123)
         .maxUserDurationInSeconds(123)
         .build();
 

See Also: