interface CfnSceneProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTTwinMaker.CfnSceneProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiottwinmaker#CfnSceneProps |
Java | software.amazon.awscdk.services.iottwinmaker.CfnSceneProps |
Python | aws_cdk.aws_iottwinmaker.CfnSceneProps |
TypeScript | aws-cdk-lib » aws_iottwinmaker » CfnSceneProps |
Properties for defining a CfnScene
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iottwinmaker-scene.html
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
Name | Type | Description |
---|---|---|
content | string | The relative path that specifies the location of the content definition file. |
scene | string | The ID of the scene. |
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 ID of the scene.
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.