CfnSceneMixinProps
- class aws_cdk.mixins_preview.aws_iottwinmaker.mixins.CfnSceneMixinProps(*, capabilities=None, content_location=None, description=None, scene_id=None, scene_metadata=None, tags=None, workspace_id=None)
Bases:
objectProperties for CfnScenePropsMixin.
- Parameters:
capabilities (
Optional[Sequence[str]]) – A list of capabilities that the scene uses to render.content_location (
Optional[str]) – The relative path that specifies the location of the content definition file.description (
Optional[str]) – The description of this scene.scene_id (
Optional[str]) – The ID of the scene.scene_metadata (
Union[Mapping[str,str],IResolvable,None]) – The scene metadata.tags (
Optional[Mapping[str,str]]) – The ComponentType tags.workspace_id (
Optional[str]) – The ID of the workspace.
- See:
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. from aws_cdk.mixins_preview.aws_iottwinmaker import mixins as iottwinmaker_mixins cfn_scene_mixin_props = iottwinmaker_mixins.CfnSceneMixinProps( capabilities=["capabilities"], content_location="contentLocation", description="description", scene_id="sceneId", scene_metadata={ "scene_metadata_key": "sceneMetadata" }, tags={ "tags_key": "tags" }, workspace_id="workspaceId" )
Attributes
- capabilities
A list of capabilities that the scene uses to render.
- content_location
The relative path that specifies the location of the content definition file.
- description
The description of this scene.
- scene_id
The ID of the scene.
- scene_metadata
The scene metadata.
- tags
The ComponentType tags.
- workspace_id
The ID of the workspace.