interface CfnWorkspaceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTTwinMaker.CfnWorkspaceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiottwinmaker#CfnWorkspaceProps |
Java | software.amazon.awscdk.services.iottwinmaker.CfnWorkspaceProps |
Python | aws_cdk.aws_iottwinmaker.CfnWorkspaceProps |
TypeScript | aws-cdk-lib » aws_iottwinmaker » CfnWorkspaceProps |
Properties for defining a CfnWorkspace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iottwinmaker as iottwinmaker } from 'aws-cdk-lib';
const cfnWorkspaceProps: iottwinmaker.CfnWorkspaceProps = {
role: 'role',
s3Location: 's3Location',
workspaceId: 'workspaceId',
// the properties below are optional
description: 'description',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | IRole | The ARN of the execution role associated with the workspace. |
| s3 | string | IBucket | The ARN of the S3 bucket where resources associated with the workspace are stored. |
| workspace | string | The ID of the workspace. |
| description? | string | The description of the workspace. |
| tags? | { [string]: string } | Metadata that you can use to manage the workspace. |
role
Type:
string | IRole
The ARN of the execution role associated with the workspace.
s3Location
Type:
string | IBucket
The ARN of the S3 bucket where resources associated with the workspace are stored.
workspaceId
Type:
string
The ID of the workspace.
description?
Type:
string
(optional)
The description of the workspace.
tags?
Type:
{ [string]: string }
(optional)
Metadata that you can use to manage the workspace.

.NET
Go
Java
Python
TypeScript