aws-cdk-lib.aws_iottwinmaker.CfnSceneProps

interface CfnSceneProps

LanguageType name
.NETAmazon.CDK.AWS.IoTTwinMaker.CfnSceneProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiottwinmaker#CfnSceneProps
Javasoftware.amazon.awscdk.services.iottwinmaker.CfnSceneProps
Pythonaws_cdk.aws_iottwinmaker.CfnSceneProps
TypeScript aws-cdk-lib » aws_iottwinmaker » CfnSceneProps

Properties for defining a CfnScene.

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 cfnSceneProps: iottwinmaker.CfnSceneProps = {
  contentLocation: 'contentLocation',
  sceneId: 'sceneId',
  workspaceId: 'workspaceId',

  // the properties below are optional
  capabilities: ['capabilities'],
  description: 'description',
  sceneMetadata: {
    sceneMetadataKey: 'sceneMetadata',
  },
  tags: {
    tagsKey: 'tags',
  },
};

Properties

NameTypeDescription
contentLocationstringThe relative path that specifies the location of the content definition file.
sceneIdstringThe scene ID.
workspaceIdstringThe ID of the workspace.
capabilities?string[]A list of capabilities that the scene uses to render.
description?stringThe description of this scene.
sceneMetadata?IResolvable | { [string]: string }The scene metadata.
tags?{ [string]: string }The ComponentType tags.

contentLocation

Type: string

The relative path that specifies the location of the content definition file.


sceneId

Type: string

The scene ID.


workspaceId

Type: string

The ID of the workspace.


capabilities?

Type: string[] (optional)

A list of capabilities that the scene uses to render.


description?

Type: string (optional)

The description of this scene.


sceneMetadata?

Type: IResolvable | { [string]: string } (optional)

The scene metadata.


tags?

Type: { [string]: string } (optional)

The ComponentType tags.