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

.NET
Go
Java
Python
TypeScript