interface CfnWorkspaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AWSExternalAnthropic.CfnWorkspaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsawsexternalanthropic#CfnWorkspaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.awsexternalanthropic.CfnWorkspaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_awsexternalanthropic.CfnWorkspaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_awsexternalanthropic » CfnWorkspaceMixinProps |
Properties for CfnWorkspacePropsMixin.
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 cfnWorkspaceMixinProps: awsexternalanthropic.CfnWorkspaceMixinProps = {
dataResidency: {
allowedInferenceGeos: ['allowedInferenceGeos'],
defaultInferenceGeo: 'defaultInferenceGeo',
workspaceGeo: 'workspaceGeo',
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | Data residency configuration for the workspace. |
| name? | string | The name of the workspace. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
dataResidency?
Type:
IResolvable | Data
(optional)
Data residency configuration for the workspace.
WorkspaceGeo is immutable after creation.
name?
Type:
string
(optional)
The name of the workspace.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript