Interface CfnSceneProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSceneProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:32.788Z")
@Stability(Stable)
public interface CfnSceneProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnScene
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iottwinmaker.*; CfnSceneProps cfnSceneProps = CfnSceneProps.builder() .contentLocation("contentLocation") .sceneId("sceneId") .workspaceId("workspaceId") // the properties below are optional .capabilities(List.of("capabilities")) .description("description") .sceneMetadata(Map.of( "sceneMetadataKey", "sceneMetadata")) .tags(Map.of( "tagsKey", "tags")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSceneProps
static final class
An implementation forCfnSceneProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSceneProps.Builder
builder()
A list of capabilities that the scene uses to render.The relative path that specifies the location of the content definition file.default String
The description of this scene.The ID of the scene.default Object
The scene metadata.getTags()
The ComponentType tags.The ID of the workspace.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContentLocation
The relative path that specifies the location of the content definition file.- See Also:
-
getSceneId
The ID of the scene.- See Also:
-
getWorkspaceId
The ID of the workspace.- See Also:
-
getCapabilities
A list of capabilities that the scene uses to render.- See Also:
-
getDescription
The description of this scene.- See Also:
-
getSceneMetadata
The scene metadata.- See Also:
-
getTags
The ComponentType tags.- See Also:
-
builder
- Returns:
- a
CfnSceneProps.Builder
ofCfnSceneProps
-