CfnWorkspaceProps

class aws_cdk.aws_awsexternalanthropic.CfnWorkspaceProps(*, name, data_residency=None, tags=None)

Bases: object

Properties for defining a CfnWorkspace.

Parameters:
  • name (str) – The name of the workspace.

  • data_residency (Union[IResolvable, DataResidencyProperty, Dict[str, Any], None]) – Data residency configuration for the workspace. WorkspaceGeo is immutable after creation.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-awsexternalanthropic-workspace.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_awsexternalanthropic as awsexternalanthropic

cfn_workspace_props = awsexternalanthropic.CfnWorkspaceProps(
    name="name",

    # the properties below are optional
    data_residency=awsexternalanthropic.CfnWorkspace.DataResidencyProperty(
        allowed_inference_geos=["allowedInferenceGeos"],
        default_inference_geo="defaultInferenceGeo",
        workspace_geo="workspaceGeo"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

data_residency

Data residency configuration for the workspace.

WorkspaceGeo is immutable after creation.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-awsexternalanthropic-workspace.html#cfn-awsexternalanthropic-workspace-dataresidency

name

The name of the workspace.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-awsexternalanthropic-workspace.html#cfn-awsexternalanthropic-workspace-name

tags

An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-awsexternalanthropic-workspace.html#cfn-awsexternalanthropic-workspace-tags