interface SceneReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTTwinMaker.SceneReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiottwinmaker#SceneReference |
Java | software.amazon.awscdk.services.iottwinmaker.SceneReference |
Python | aws_cdk.aws_iottwinmaker.SceneReference |
TypeScript | aws-cdk-lib » aws_iottwinmaker » SceneReference |
A reference to a Scene resource.
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 sceneReference: iottwinmaker.SceneReference = {
sceneArn: 'sceneArn',
sceneId: 'sceneId',
workspaceId: 'workspaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| scene | string | The ARN of the Scene resource. |
| scene | string | The SceneId of the Scene resource. |
| workspace | string | The WorkspaceId of the Scene resource. |
sceneArn
Type:
string
The ARN of the Scene resource.
sceneId
Type:
string
The SceneId of the Scene resource.
workspaceId
Type:
string
The WorkspaceId of the Scene resource.

.NET
Go
Java
Python
TypeScript