interface CfnVolumeAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WorkspacesInstances.CfnVolumeAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsworkspacesinstances#CfnVolumeAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.workspacesinstances.CfnVolumeAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_workspacesinstances.CfnVolumeAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_workspacesinstances » 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 { aws_workspacesinstances as workspacesinstances } from '@aws-cdk/cfn-property-mixins';
const cfnVolumeAssociationMixinProps: workspacesinstances.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