interface CfnSceneMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTTwinMaker.Mixins.CfnSceneMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiottwinmaker/mixins#CfnSceneMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iottwinmaker.mixins.CfnSceneMixinProps |
Python | aws_cdk.mixins_preview.aws_iottwinmaker.mixins.CfnSceneMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iottwinmaker » mixins » CfnSceneMixinProps |
Properties for CfnScenePropsMixin.
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 { mixins as iottwinmaker_mixins } from '@aws-cdk/mixins-preview/aws-iottwinmaker';
const cfnSceneMixinProps: iottwinmaker_mixins.CfnSceneMixinProps = {
capabilities: ['capabilities'],
contentLocation: 'contentLocation',
description: 'description',
sceneId: 'sceneId',
sceneMetadata: {
sceneMetadataKey: 'sceneMetadata',
},
tags: {
tagsKey: 'tags',
},
workspaceId: 'workspaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| capabilities? | string[] | A list of capabilities that the scene uses to render. |
| content | string | The relative path that specifies the location of the content definition file. |
| description? | string | The description of this scene. |
| scene | string | The ID of the scene. |
| scene | { [string]: string } | IResolvable | The scene metadata. |
| tags? | { [string]: string } | The ComponentType tags. |
| workspace | string | The ID of the workspace. |
capabilities?
Type:
string[]
(optional)
A list of capabilities that the scene uses to render.
contentLocation?
Type:
string
(optional)
The relative path that specifies the location of the content definition file.
description?
Type:
string
(optional)
The description of this scene.
sceneId?
Type:
string
(optional)
The ID of the scene.
sceneMetadata?
Type:
{ [string]: string } | IResolvable
(optional)
The scene metadata.
tags?
Type:
{ [string]: string }
(optional)
The ComponentType tags.
workspaceId?
Type:
string
(optional)
The ID of the workspace.

.NET
Go
Java
Python
TypeScript