interface CfnSceneProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IoTTwinMaker.CfnSceneProps | 
  Java | software.amazon.awscdk.services.iottwinmaker.CfnSceneProps | 
  Python | aws_cdk.aws_iottwinmaker.CfnSceneProps | 
  TypeScript  | @aws-cdk/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 * as iottwinmaker from '@aws-cdk/aws-iottwinmaker';
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
| Name | Type | Description | 
|---|---|---|
| content | string | The relative path that specifies the location of the content definition file. | 
| scene | string | The scene ID. | 
| workspace | string | The ID of the workspace. | 
| capabilities? | string[] | A list of capabilities that the scene uses to render. | 
| description? | string | The description of this scene. | 
| scene | 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.

 .NET
 Java
 Python
 TypeScript