Interface CfnWorkspace.WorkspacePropertiesProperty

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

@Stability(Stable) public static interface CfnWorkspace.WorkspacePropertiesProperty extends software.amazon.jsii.JsiiSerializable
Information about a WorkSpace.

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.*;
 WorkspacePropertiesProperty workspacePropertiesProperty = WorkspacePropertiesProperty.builder()
         .computeTypeName("computeTypeName")
         .rootVolumeSizeGib(123)
         .runningMode("runningMode")
         .runningModeAutoStopTimeoutInMinutes(123)
         .userVolumeSizeGib(123)
         .build();
 

See Also: