Interface CfnSceneProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSceneProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.969Z") @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();
 
  • Method Details

    • getContentLocation

      @Stability(Stable) @NotNull String getContentLocation()
      The relative path that specifies the location of the content definition file.
    • getSceneId

      @Stability(Stable) @NotNull String getSceneId()
      The scene ID.
    • getWorkspaceId

      @Stability(Stable) @NotNull String getWorkspaceId()
      The ID of the workspace.
    • getCapabilities

      @Stability(Stable) @Nullable default List<String> getCapabilities()
      A list of capabilities that the scene uses to render.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of this scene.
    • getSceneMetadata

      @Stability(Stable) @Nullable default Object getSceneMetadata()
      The scene metadata.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      The ComponentType tags.
    • builder

      @Stability(Stable) static CfnSceneProps.Builder builder()
      Returns:
      a CfnSceneProps.Builder of CfnSceneProps