interface WorkspacePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpaces.Mixins.CfnWorkspacePropsMixin.WorkspacePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspaces/mixins#CfnWorkspacePropsMixin_WorkspacePropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspaces.mixins.CfnWorkspacePropsMixin.WorkspacePropertiesProperty |
Python | aws_cdk.mixins_preview.aws_workspaces.mixins.CfnWorkspacePropsMixin.WorkspacePropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspaces » mixins » CfnWorkspacePropsMixin » WorkspacePropertiesProperty |
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 { mixins as workspaces_mixins } from '@aws-cdk/mixins-preview/aws-workspaces';
const workspacePropertiesProperty: workspaces_mixins.CfnWorkspacePropsMixin.WorkspacePropertiesProperty = {
computeTypeName: 'computeTypeName',
rootVolumeSizeGib: 123,
runningMode: 'runningMode',
runningModeAutoStopTimeoutInMinutes: 123,
userVolumeSizeGib: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| compute | string | The compute type. |
| root | number | The size of the root volume. |
| running | string | The running mode. |
| running | number | The time after a user logs off when WorkSpaces are automatically stopped. |
| user | number | The size of the user storage. |
computeTypeName?
Type:
string
(optional)
The compute type.
For more information, see Amazon WorkSpaces Bundles .
rootVolumeSizeGib?
Type:
number
(optional)
The size of the root volume.
For important information about how to modify the size of the root and user volumes, see Modify a WorkSpace .
runningMode?
Type:
string
(optional)
The running mode.
For more information, see Manage the WorkSpace Running Mode .
runningModeAutoStopTimeoutInMinutes?
Type:
number
(optional)
The time after a user logs off when WorkSpaces are automatically stopped.
Configured in 60-minute intervals.
userVolumeSizeGib?
Type:
number
(optional)
The size of the user storage.
For important information about how to modify the size of the root and user volumes, see Modify a WorkSpace .

.NET
Go
Java
Python
TypeScript