interface WorkspacesPoolReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.WorkSpaces.WorkspacesPoolReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsworkspaces#WorkspacesPoolReference |
Java | software.amazon.awscdk.interfaces.workspaces.WorkspacesPoolReference |
Python | aws_cdk.interfaces.aws_workspaces.WorkspacesPoolReference |
TypeScript | aws-cdk-lib » interfaces » aws_workspaces » WorkspacesPoolReference |
A reference to a WorkspacesPool resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspaces as interfaces_aws_workspaces } from 'aws-cdk-lib/interfaces';
const workspacesPoolReference: interfaces_aws_workspaces.WorkspacesPoolReference = {
poolId: 'poolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The PoolId of the WorkspacesPool resource. |
poolId
Type:
string
The PoolId of the WorkspacesPool resource.

.NET
Go
Java
Python
TypeScript