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: