VolumeAssociationReference

class aws_cdk.aws_workspacesinstances.VolumeAssociationReference(*, device, volume_id, workspace_instance_id)

Bases: object

A 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 import aws_workspacesinstances as workspacesinstances

volume_association_reference = 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.