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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspace.WorkspacePropertiesPropertystatic final classAn implementation forCfnWorkspace.WorkspacePropertiesProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getComputeTypeNameThe compute type.For more information, see Amazon WorkSpaces Bundles . 
- 
getRootVolumeSizeGibThe size of the root volume.For important information about how to modify the size of the root and user volumes, see Modify a WorkSpace . 
- 
getRunningModeThe running mode. For more information, see Manage the WorkSpace Running Mode .The MANUALvalue is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core .
- 
getRunningModeAutoStopTimeoutInMinutesThe time after a user logs off when WorkSpaces are automatically stopped.Configured in 60-minute intervals. 
- 
getUserVolumeSizeGibThe size of the user storage.For important information about how to modify the size of the root and user volumes, see Modify a WorkSpace . 
- 
builder
 
-