Interface CfnWorkspaceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspaceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:01.011Z")
@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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkspaceProps
static final class
An implementation forCfnWorkspaceProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnWorkspaceProps.Builder
builder()
default String
The description of the workspace.getRole()
The ARN of the execution role associated with the workspace.The ARN of the S3 bucket where resources associated with the workspace are stored.getTags()
Metadata that you can use to manage the workspace.The ID of the workspace.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRole
The ARN of the execution role associated with the workspace.- See Also:
-
getS3Location
The ARN of the S3 bucket where resources associated with the workspace are stored.- See Also:
-
getWorkspaceId
The ID of the workspace.- See Also:
-
getDescription
The description of the workspace.- See Also:
-
getTags
Metadata that you can use to manage the workspace.- See Also:
-
builder
- Returns:
- a
CfnWorkspaceProps.Builder
ofCfnWorkspaceProps
-