Interface CfnWorkspaceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspaceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)",
date="2026-05-21T17:27:30.632Z")
@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.awsexternalanthropic.*;
CfnWorkspaceProps cfnWorkspaceProps = CfnWorkspaceProps.builder()
.name("name")
// the properties below are optional
.dataResidency(DataResidencyProperty.builder()
.allowedInferenceGeos(List.of("allowedInferenceGeos"))
.defaultInferenceGeo("defaultInferenceGeo")
.workspaceGeo("workspaceGeo")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspacePropsstatic final classAn implementation forCfnWorkspaceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnWorkspaceProps.Builderbuilder()default ObjectData residency configuration for the workspace.getName()The name of the workspace.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the workspace.- See Also:
-
getDataResidency
Data residency configuration for the workspace.WorkspaceGeo is immutable after creation.
Returns union: either
IResolvableorCfnWorkspace.DataResidencyProperty- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnWorkspaceProps.BuilderofCfnWorkspaceProps
-