interface WorkspaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpaces.WorkspaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspaces#WorkspaceReference |
Java | software.amazon.awscdk.services.workspaces.WorkspaceReference |
Python | aws_cdk.aws_workspaces.WorkspaceReference |
TypeScript | aws-cdk-lib » aws_workspaces » WorkspaceReference |
A reference to a Workspace 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 workspaces } from 'aws-cdk-lib';
const workspaceReference: workspaces.WorkspaceReference = {
workspaceId: 'workspaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| workspace | string | The Id of the Workspace resource. |
workspaceId
Type:
string
The Id of the Workspace resource.

.NET
Go
Java
Python
TypeScript