interface CfnWorkspaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpaces.Mixins.CfnWorkspaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspaces/mixins#CfnWorkspaceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.workspaces.mixins.CfnWorkspaceMixinProps |
Python | aws_cdk.mixins_preview.aws_workspaces.mixins.CfnWorkspaceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_workspaces » mixins » CfnWorkspaceMixinProps |
Properties for CfnWorkspacePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html
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 cfnWorkspaceMixinProps: workspaces_mixins.CfnWorkspaceMixinProps = {
bundleId: 'bundleId',
directoryId: 'directoryId',
rootVolumeEncryptionEnabled: false,
tags: [{
key: 'key',
value: 'value',
}],
userName: 'userName',
userVolumeEncryptionEnabled: false,
volumeEncryptionKey: 'volumeEncryptionKey',
workspaceProperties: {
computeTypeName: 'computeTypeName',
rootVolumeSizeGib: 123,
runningMode: 'runningMode',
runningModeAutoStopTimeoutInMinutes: 123,
userVolumeSizeGib: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bundle | string | The identifier of the bundle for the WorkSpace. |
| directory | string | The identifier of the Directory Service directory for the WorkSpace. |
| root | boolean | IResolvable | Indicates whether the data stored on the root volume is encrypted. |
| tags? | Cfn[] | The tags for the WorkSpace. |
| user | string | The user name of the user for the WorkSpace. |
| user | boolean | IResolvable | Indicates whether the data stored on the user volume is encrypted. |
| volume | string | The symmetric AWS KMS key used to encrypt data stored on your WorkSpace. |
| workspace | IResolvable | Workspace | The WorkSpace properties. |
bundleId?
Type:
string
(optional)
The identifier of the bundle for the WorkSpace.
directoryId?
Type:
string
(optional)
The identifier of the Directory Service directory for the WorkSpace.
rootVolumeEncryptionEnabled?
Type:
boolean | IResolvable
(optional)
Indicates whether the data stored on the root volume is encrypted.
tags?
Type:
Cfn[]
(optional)
The tags for the WorkSpace.
userName?
Type:
string
(optional)
The user name of the user for the WorkSpace.
This user name must exist in the Directory Service directory for the WorkSpace.
userVolumeEncryptionEnabled?
Type:
boolean | IResolvable
(optional)
Indicates whether the data stored on the user volume is encrypted.
volumeEncryptionKey?
Type:
string
(optional)
The symmetric AWS KMS key used to encrypt data stored on your WorkSpace.
Amazon WorkSpaces does not support asymmetric KMS keys.
workspaceProperties?
Type:
IResolvable | Workspace
(optional)
The WorkSpace properties.

.NET
Go
Java
Python
TypeScript