VolumeAssociationReference
- class aws_cdk.interfaces.aws_workspacesinstances.VolumeAssociationReference(*, device, volume_id, workspace_instance_id)
Bases:
objectA reference to a VolumeAssociation resource.
- Parameters:
device (
str) – The Device of the VolumeAssociation resource.volume_id (
str) – The VolumeId of the VolumeAssociation resource.workspace_instance_id (
str) – The WorkspaceInstanceId of the VolumeAssociation resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_workspacesinstances as interfaces_workspacesinstances volume_association_reference = interfaces_workspacesinstances.VolumeAssociationReference( device="device", volume_id="volumeId", workspace_instance_id="workspaceInstanceId" )
Attributes
- device
The Device of the VolumeAssociation resource.
- volume_id
The VolumeId of the VolumeAssociation resource.
- workspace_instance_id
The WorkspaceInstanceId of the VolumeAssociation resource.