Interface CfnWorkspaceProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.972Z") @Stability(Stable) public interface CfnWorkspaceProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnWorkspace.

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.*;
 CfnWorkspaceProps cfnWorkspaceProps = CfnWorkspaceProps.builder()
         .role("role")
         .s3Location("s3Location")
         .workspaceId("workspaceId")
         // the properties below are optional
         .description("description")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 
  • Method Details

    • getRole

      @Stability(Stable) @NotNull String getRole()
      The ARN of the execution role associated with the workspace.
    • getS3Location

      @Stability(Stable) @NotNull String getS3Location()
      The ARN of the S3 bucket where resources associated with the workspace are stored.
    • getWorkspaceId

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

      @Stability(Stable) @Nullable default String getDescription()
      The description of the workspace.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      Metadata that you can use to manage the workspace.
    • builder

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