interface CfnVolumeAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkspacesInstances.Mixins.CfnVolumeAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesinstances/mixins#CfnVolumeAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.workspacesinstances.mixins.CfnVolumeAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_workspacesinstances.mixins.CfnVolumeAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesinstances » mixins » CfnVolumeAssociationMixinProps |
Properties for CfnVolumeAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as workspacesinstances_mixins } from '@aws-cdk/mixins-preview/aws-workspacesinstances';
const cfnVolumeAssociationMixinProps: workspacesinstances_mixins.CfnVolumeAssociationMixinProps = {
device: 'device',
disassociateMode: 'disassociateMode',
volumeId: 'volumeId',
workspaceInstanceId: 'workspaceInstanceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| device? | string | The device name for the volume attachment. |
| disassociate | string | Mode to use when disassociating the volume. |
| volume | string | ID of the volume to attach to the workspace instance. |
| workspace | string | ID of the workspace instance to associate with the volume. |
device?
Type:
string
(optional)
The device name for the volume attachment.
disassociateMode?
Type:
string
(optional)
Mode to use when disassociating the volume.
volumeId?
Type:
string
(optional)
ID of the volume to attach to the workspace instance.
workspaceInstanceId?
Type:
string
(optional)
ID of the workspace instance to associate with the volume.

.NET
Go
Java
Python
TypeScript