interface DataResidencyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AWSExternalAnthropic.CfnWorkspacePropsMixin.DataResidencyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsawsexternalanthropic#CfnWorkspacePropsMixin_DataResidencyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.awsexternalanthropic.CfnWorkspacePropsMixin.DataResidencyProperty |
Python | aws_cdk.cfn_property_mixins.aws_awsexternalanthropic.CfnWorkspacePropsMixin.DataResidencyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_awsexternalanthropic » CfnWorkspacePropsMixin » DataResidencyProperty |
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 { aws_awsexternalanthropic as awsexternalanthropic } from '@aws-cdk/cfn-property-mixins';
const dataResidencyProperty: awsexternalanthropic.CfnWorkspacePropsMixin.DataResidencyProperty = {
allowedInferenceGeos: ['allowedInferenceGeos'],
defaultInferenceGeo: 'defaultInferenceGeo',
workspaceGeo: 'workspaceGeo',
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | Permitted inference geo values. |
| default | string | Default inference geo applied when requests omit the parameter. |
| workspace | string | Geographic region for workspace data storage. |
allowedInferenceGeos?
Type:
string[]
(optional)
Permitted inference geo values.
Omit to allow all geos (the service default of 'unrestricted'); otherwise list specific geos.
defaultInferenceGeo?
Type:
string
(optional)
Default inference geo applied when requests omit the parameter.
Defaults to 'global' if omitted. Must be a member of AllowedInferenceGeos unless AllowedInferenceGeos is omitted.
workspaceGeo?
Type:
string
(optional)
Geographic region for workspace data storage.
Immutable after creation. Defaults to 'us' if omitted.

.NET
Go
Java
Python
TypeScript