CfnSceneProps¶
-
class
aws_cdk.aws_iottwinmaker.
CfnSceneProps
(*, content_location, scene_id, workspace_id, capabilities=None, description=None, tags=None)¶ Bases:
object
Properties for defining a
CfnScene
.- Parameters
content_location (
str
) – The relative path that specifies the location of the content definition file.scene_id (
str
) – The scene ID.workspace_id (
str
) – The ID of the workspace.capabilities (
Optional
[Sequence
[str
]]) – A list of capabilities that the scene uses to render.description (
Optional
[str
]) – The description of this scene.tags (
Optional
[Mapping
[str
,str
]]) – The ComponentType tags.
- Link
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iottwinmaker-scene.html
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_iottwinmaker as iottwinmaker cfn_scene_props = iottwinmaker.CfnSceneProps( content_location="contentLocation", scene_id="sceneId", workspace_id="workspaceId", # the properties below are optional capabilities=["capabilities"], description="description", tags={ "tags_key": "tags" } )
Attributes
-
capabilities
¶ A list of capabilities that the scene uses to render.
- Link
- Return type
Optional
[List
[str
]]
-
content_location
¶ The relative path that specifies the location of the content definition file.
-
description
¶ The description of this scene.
-
scene_id
¶ The scene ID.
The ComponentType tags.
- Link
- Return type
Optional
[Mapping
[str
,str
]]
-
workspace_id
¶ The ID of the workspace.