interface VolumeAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.WorkspacesInstances.VolumeAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsworkspacesinstances#VolumeAssociationReference |
Java | software.amazon.awscdk.interfaces.workspacesinstances.VolumeAssociationReference |
Python | aws_cdk.interfaces.aws_workspacesinstances.VolumeAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_workspacesinstances » VolumeAssociationReference |
A reference to a VolumeAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspacesinstances as interfaces_workspacesinstances } from 'aws-cdk-lib/interfaces';
const volumeAssociationReference: interfaces_workspacesinstances.VolumeAssociationReference = {
device: 'device',
volumeId: 'volumeId',
workspaceInstanceId: 'workspaceInstanceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| device | string | The Device of the VolumeAssociation resource. |
| volume | string | The VolumeId of the VolumeAssociation resource. |
| workspace | string | The WorkspaceInstanceId of the VolumeAssociation resource. |
device
Type:
string
The Device of the VolumeAssociation resource.
volumeId
Type:
string
The VolumeId of the VolumeAssociation resource.
workspaceInstanceId
Type:
string
The WorkspaceInstanceId of the VolumeAssociation resource.

.NET
Go
Java
Python
TypeScript