Interface CfnWorkspaceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspaceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)",
date="2026-05-21T17:27:49.323Z")
@Stability(Stable)
public interface CfnWorkspaceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnWorkspacePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.awsexternalanthropic.*;
CfnWorkspaceMixinProps cfnWorkspaceMixinProps = CfnWorkspaceMixinProps.builder()
.dataResidency(DataResidencyProperty.builder()
.allowedInferenceGeos(List.of("allowedInferenceGeos"))
.defaultInferenceGeo("defaultInferenceGeo")
.workspaceGeo("workspaceGeo")
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspaceMixinPropsstatic final classAn implementation forCfnWorkspaceMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataResidency
Data residency configuration for the workspace.WorkspaceGeo is immutable after creation.
Returns union: either
IResolvableorCfnWorkspacePropsMixin.DataResidencyProperty- See Also:
-
getName
The name of the workspace.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnWorkspaceMixinProps.BuilderofCfnWorkspaceMixinProps
-