Interface CfnWALWorkspaceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWALWorkspaceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:21:55.528Z")
@Stability(Stable)
public interface CfnWALWorkspaceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnWALWorkspace.
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.emr.*;
CfnWALWorkspaceProps cfnWALWorkspaceProps = CfnWALWorkspaceProps.builder()
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.walWorkspaceName("walWorkspaceName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWALWorkspacePropsstatic final classAn implementation forCfnWALWorkspaceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnWALWorkspaceProps.Builderbuilder()getTags()You can add tags when you create a new workspace.default StringThe name of the WAL workspace.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTags
You can add tags when you create a new workspace.You can add, remove, or list tags from an active workspace, but you can't update tags. Instead, remove the tag and add a new one. For more information, see see Tag your Amazon EMR WAL workspaces .
- See Also:
-
getWalWorkspaceName
The name of the WAL workspace.- See Also:
-
builder
- Returns:
- a
CfnWALWorkspaceProps.BuilderofCfnWALWorkspaceProps
-