Interface CfnWorkspace.DataResidencyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspace.DataResidencyProperty.Jsii$Proxy
- Enclosing class:
CfnWorkspace
@Stability(Stable)
public static interface CfnWorkspace.DataResidencyProperty
extends software.amazon.jsii.JsiiSerializable
Data residency configuration for the workspace.
WorkspaceGeo is immutable after creation.
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.*;
DataResidencyProperty dataResidencyProperty = DataResidencyProperty.builder()
.allowedInferenceGeos(List.of("allowedInferenceGeos"))
.defaultInferenceGeo("defaultInferenceGeo")
.workspaceGeo("workspaceGeo")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspace.DataResidencyPropertystatic final classAn implementation forCfnWorkspace.DataResidencyProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowedInferenceGeos
Permitted inference geo values.Omit to allow all geos (the service default of 'unrestricted'); otherwise list specific geos.
- See Also:
-
getDefaultInferenceGeo
Default inference geo applied when requests omit the parameter.Defaults to 'global' if omitted. Must be a member of AllowedInferenceGeos unless AllowedInferenceGeos is omitted.
- See Also:
-
getWorkspaceGeo
Geographic region for workspace data storage.Immutable after creation. Defaults to 'us' if omitted.
- See Also:
-
builder
-