WorkspacesPoolReference
- class aws_cdk.interfaces.aws_workspaces.WorkspacesPoolReference(*, pool_arn, pool_id)
Bases:
objectA reference to a WorkspacesPool resource.
- Parameters:
pool_arn (
str) – The ARN of the WorkspacesPool resource.pool_id (
str) – The PoolId of the WorkspacesPool 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_workspaces as interfaces_workspaces workspaces_pool_reference = interfaces_workspaces.WorkspacesPoolReference( pool_arn="poolArn", pool_id="poolId" )
Attributes
- pool_arn
The ARN of the WorkspacesPool resource.
- pool_id
The PoolId of the WorkspacesPool resource.