aws-cdk-lib.aws_iottwinmaker.CfnWorkspaceProps

interface CfnWorkspaceProps

LanguageType name
.NETAmazon.CDK.AWS.IoTTwinMaker.CfnWorkspaceProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiottwinmaker#CfnWorkspaceProps
Javasoftware.amazon.awscdk.services.iottwinmaker.CfnWorkspaceProps
Pythonaws_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

NameTypeDescription
rolestringThe ARN of the execution role associated with the workspace.
s3LocationstringThe ARN of the S3 bucket where resources associated with the workspace are stored.
workspaceIdstringThe ID of the workspace.
description?stringThe description of the workspace.
tags?{ [string]: string }Metadata that you can use to manage the workspace.

role

Type: string

The ARN of the execution role associated with the workspace.


s3Location

Type: string

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.