Interface CfnWorkspacePropsMixin.DataResidencyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspacePropsMixin.DataResidencyProperty.Jsii$Proxy
- Enclosing class:
CfnWorkspacePropsMixin
@Stability(Stable)
public static interface CfnWorkspacePropsMixin.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.cfnpropertymixins.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 forCfnWorkspacePropsMixin.DataResidencyPropertystatic final classAn implementation forCfnWorkspacePropsMixin.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
-