aws-cdk-lib 2.142.1__py3-none-any.whl → 2.143.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.142.1.jsii.tgz → aws-cdk-lib@2.143.1.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +12 -5
- aws_cdk/aws_backup/__init__.py +3 -3
- aws_cdk/aws_batch/__init__.py +237 -0
- aws_cdk/aws_bedrock/__init__.py +700 -16
- aws_cdk/aws_budgets/__init__.py +282 -3
- aws_cdk/aws_cloudtrail/__init__.py +12 -2
- aws_cdk/aws_codebuild/__init__.py +44 -0
- aws_cdk/aws_codepipeline/__init__.py +91 -4
- aws_cdk/aws_cognito/__init__.py +75 -0
- aws_cdk/aws_datazone/__init__.py +1743 -448
- aws_cdk/aws_dynamodb/__init__.py +60 -25
- aws_cdk/aws_ec2/__init__.py +112 -39
- aws_cdk/aws_ecs/__init__.py +3 -3
- aws_cdk/aws_ecs_patterns/__init__.py +106 -0
- aws_cdk/aws_eks/__init__.py +13 -10
- aws_cdk/aws_elasticache/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +219 -14
- aws_cdk/aws_events_targets/__init__.py +140 -3
- aws_cdk/aws_fms/__init__.py +42 -43
- aws_cdk/aws_fsx/__init__.py +3 -3
- aws_cdk/aws_identitystore/__init__.py +11 -11
- aws_cdk/aws_lambda/__init__.py +45 -0
- aws_cdk/aws_lambda_nodejs/__init__.py +16 -6
- aws_cdk/aws_lightsail/__init__.py +9 -0
- aws_cdk/aws_location/__init__.py +8 -4
- aws_cdk/aws_mediaconnect/__init__.py +1789 -39
- aws_cdk/aws_mediatailor/__init__.py +21 -1
- aws_cdk/aws_mwaa/__init__.py +82 -0
- aws_cdk/aws_neptune/__init__.py +374 -0
- aws_cdk/aws_personalize/__init__.py +9 -3
- aws_cdk/aws_pipes/__init__.py +7 -7
- aws_cdk/aws_quicksight/__init__.py +684 -156
- aws_cdk/aws_rds/__init__.py +88 -24
- aws_cdk/aws_redshift/__init__.py +0 -46
- aws_cdk/aws_route53resolver/__init__.py +23 -0
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_sagemaker/__init__.py +185 -4
- aws_cdk/aws_securityhub/__init__.py +387 -1
- aws_cdk/aws_ssm/__init__.py +14 -6
- aws_cdk/aws_sso/__init__.py +1243 -34
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/RECORD +49 -49
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/top_level.txt +0 -0
|
@@ -5092,6 +5092,37 @@ class CfnDomain(
|
|
|
5092
5092
|
execution_role="executionRole",
|
|
5093
5093
|
|
|
5094
5094
|
# the properties below are optional
|
|
5095
|
+
custom_file_system_configs=[sagemaker.CfnDomain.CustomFileSystemConfigProperty(
|
|
5096
|
+
efs_file_system_config=sagemaker.CfnDomain.EFSFileSystemConfigProperty(
|
|
5097
|
+
file_system_id="fileSystemId",
|
|
5098
|
+
|
|
5099
|
+
# the properties below are optional
|
|
5100
|
+
file_system_path="fileSystemPath"
|
|
5101
|
+
)
|
|
5102
|
+
)],
|
|
5103
|
+
custom_posix_user_config=sagemaker.CfnDomain.CustomPosixUserConfigProperty(
|
|
5104
|
+
gid=123,
|
|
5105
|
+
uid=123
|
|
5106
|
+
),
|
|
5107
|
+
jupyter_lab_app_settings=sagemaker.CfnDomain.JupyterLabAppSettingsProperty(
|
|
5108
|
+
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
5109
|
+
repository_url="repositoryUrl"
|
|
5110
|
+
)],
|
|
5111
|
+
custom_images=[sagemaker.CfnDomain.CustomImageProperty(
|
|
5112
|
+
app_image_config_name="appImageConfigName",
|
|
5113
|
+
image_name="imageName",
|
|
5114
|
+
|
|
5115
|
+
# the properties below are optional
|
|
5116
|
+
image_version_number=123
|
|
5117
|
+
)],
|
|
5118
|
+
default_resource_spec=sagemaker.CfnDomain.ResourceSpecProperty(
|
|
5119
|
+
instance_type="instanceType",
|
|
5120
|
+
lifecycle_config_arn="lifecycleConfigArn",
|
|
5121
|
+
sage_maker_image_arn="sageMakerImageArn",
|
|
5122
|
+
sage_maker_image_version_arn="sageMakerImageVersionArn"
|
|
5123
|
+
),
|
|
5124
|
+
lifecycle_config_arns=["lifecycleConfigArns"]
|
|
5125
|
+
),
|
|
5095
5126
|
jupyter_server_app_settings=sagemaker.CfnDomain.JupyterServerAppSettingsProperty(
|
|
5096
5127
|
default_resource_spec=sagemaker.CfnDomain.ResourceSpecProperty(
|
|
5097
5128
|
instance_type="instanceType",
|
|
@@ -5115,7 +5146,13 @@ class CfnDomain(
|
|
|
5115
5146
|
sage_maker_image_version_arn="sageMakerImageVersionArn"
|
|
5116
5147
|
)
|
|
5117
5148
|
),
|
|
5118
|
-
security_groups=["securityGroups"]
|
|
5149
|
+
security_groups=["securityGroups"],
|
|
5150
|
+
space_storage_settings=sagemaker.CfnDomain.DefaultSpaceStorageSettingsProperty(
|
|
5151
|
+
default_ebs_storage_settings=sagemaker.CfnDomain.DefaultEbsStorageSettingsProperty(
|
|
5152
|
+
default_ebs_volume_size_in_gb=123,
|
|
5153
|
+
maximum_ebs_volume_size_in_gb=123
|
|
5154
|
+
)
|
|
5155
|
+
)
|
|
5119
5156
|
),
|
|
5120
5157
|
domain_settings=sagemaker.CfnDomain.DomainSettingsProperty(
|
|
5121
5158
|
docker_settings=sagemaker.CfnDomain.DockerSettingsProperty(
|
|
@@ -5930,9 +5967,13 @@ class CfnDomain(
|
|
|
5930
5967
|
jsii_struct_bases=[],
|
|
5931
5968
|
name_mapping={
|
|
5932
5969
|
"execution_role": "executionRole",
|
|
5970
|
+
"custom_file_system_configs": "customFileSystemConfigs",
|
|
5971
|
+
"custom_posix_user_config": "customPosixUserConfig",
|
|
5972
|
+
"jupyter_lab_app_settings": "jupyterLabAppSettings",
|
|
5933
5973
|
"jupyter_server_app_settings": "jupyterServerAppSettings",
|
|
5934
5974
|
"kernel_gateway_app_settings": "kernelGatewayAppSettings",
|
|
5935
5975
|
"security_groups": "securityGroups",
|
|
5976
|
+
"space_storage_settings": "spaceStorageSettings",
|
|
5936
5977
|
},
|
|
5937
5978
|
)
|
|
5938
5979
|
class DefaultSpaceSettingsProperty:
|
|
@@ -5940,16 +5981,24 @@ class CfnDomain(
|
|
|
5940
5981
|
self,
|
|
5941
5982
|
*,
|
|
5942
5983
|
execution_role: builtins.str,
|
|
5984
|
+
custom_file_system_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.CustomFileSystemConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5985
|
+
custom_posix_user_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.CustomPosixUserConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5986
|
+
jupyter_lab_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.JupyterLabAppSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5943
5987
|
jupyter_server_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.JupyterServerAppSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5944
5988
|
kernel_gateway_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.KernelGatewayAppSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5945
5989
|
security_groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5990
|
+
space_storage_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.DefaultSpaceStorageSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5946
5991
|
) -> None:
|
|
5947
5992
|
'''A collection of settings that apply to spaces created in the domain.
|
|
5948
5993
|
|
|
5949
5994
|
:param execution_role: The ARN of the execution role for the space.
|
|
5995
|
+
:param custom_file_system_configs:
|
|
5996
|
+
:param custom_posix_user_config:
|
|
5997
|
+
:param jupyter_lab_app_settings: The JupyterLab app settings.
|
|
5950
5998
|
:param jupyter_server_app_settings: The JupyterServer app settings.
|
|
5951
5999
|
:param kernel_gateway_app_settings: The KernelGateway app settings.
|
|
5952
6000
|
:param security_groups: The security group IDs for the Amazon VPC that the space uses for communication.
|
|
6001
|
+
:param space_storage_settings: Default storage settings for a space.
|
|
5953
6002
|
|
|
5954
6003
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultspacesettings.html
|
|
5955
6004
|
:exampleMetadata: fixture=_generated
|
|
@@ -5964,6 +6013,37 @@ class CfnDomain(
|
|
|
5964
6013
|
execution_role="executionRole",
|
|
5965
6014
|
|
|
5966
6015
|
# the properties below are optional
|
|
6016
|
+
custom_file_system_configs=[sagemaker.CfnDomain.CustomFileSystemConfigProperty(
|
|
6017
|
+
efs_file_system_config=sagemaker.CfnDomain.EFSFileSystemConfigProperty(
|
|
6018
|
+
file_system_id="fileSystemId",
|
|
6019
|
+
|
|
6020
|
+
# the properties below are optional
|
|
6021
|
+
file_system_path="fileSystemPath"
|
|
6022
|
+
)
|
|
6023
|
+
)],
|
|
6024
|
+
custom_posix_user_config=sagemaker.CfnDomain.CustomPosixUserConfigProperty(
|
|
6025
|
+
gid=123,
|
|
6026
|
+
uid=123
|
|
6027
|
+
),
|
|
6028
|
+
jupyter_lab_app_settings=sagemaker.CfnDomain.JupyterLabAppSettingsProperty(
|
|
6029
|
+
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
6030
|
+
repository_url="repositoryUrl"
|
|
6031
|
+
)],
|
|
6032
|
+
custom_images=[sagemaker.CfnDomain.CustomImageProperty(
|
|
6033
|
+
app_image_config_name="appImageConfigName",
|
|
6034
|
+
image_name="imageName",
|
|
6035
|
+
|
|
6036
|
+
# the properties below are optional
|
|
6037
|
+
image_version_number=123
|
|
6038
|
+
)],
|
|
6039
|
+
default_resource_spec=sagemaker.CfnDomain.ResourceSpecProperty(
|
|
6040
|
+
instance_type="instanceType",
|
|
6041
|
+
lifecycle_config_arn="lifecycleConfigArn",
|
|
6042
|
+
sage_maker_image_arn="sageMakerImageArn",
|
|
6043
|
+
sage_maker_image_version_arn="sageMakerImageVersionArn"
|
|
6044
|
+
),
|
|
6045
|
+
lifecycle_config_arns=["lifecycleConfigArns"]
|
|
6046
|
+
),
|
|
5967
6047
|
jupyter_server_app_settings=sagemaker.CfnDomain.JupyterServerAppSettingsProperty(
|
|
5968
6048
|
default_resource_spec=sagemaker.CfnDomain.ResourceSpecProperty(
|
|
5969
6049
|
instance_type="instanceType",
|
|
@@ -5987,24 +6067,42 @@ class CfnDomain(
|
|
|
5987
6067
|
sage_maker_image_version_arn="sageMakerImageVersionArn"
|
|
5988
6068
|
)
|
|
5989
6069
|
),
|
|
5990
|
-
security_groups=["securityGroups"]
|
|
6070
|
+
security_groups=["securityGroups"],
|
|
6071
|
+
space_storage_settings=sagemaker.CfnDomain.DefaultSpaceStorageSettingsProperty(
|
|
6072
|
+
default_ebs_storage_settings=sagemaker.CfnDomain.DefaultEbsStorageSettingsProperty(
|
|
6073
|
+
default_ebs_volume_size_in_gb=123,
|
|
6074
|
+
maximum_ebs_volume_size_in_gb=123
|
|
6075
|
+
)
|
|
6076
|
+
)
|
|
5991
6077
|
)
|
|
5992
6078
|
'''
|
|
5993
6079
|
if __debug__:
|
|
5994
6080
|
type_hints = typing.get_type_hints(_typecheckingstub__6f9de66f7050e50e98d4b4c96b379ab71681a650698564e825f452052572214f)
|
|
5995
6081
|
check_type(argname="argument execution_role", value=execution_role, expected_type=type_hints["execution_role"])
|
|
6082
|
+
check_type(argname="argument custom_file_system_configs", value=custom_file_system_configs, expected_type=type_hints["custom_file_system_configs"])
|
|
6083
|
+
check_type(argname="argument custom_posix_user_config", value=custom_posix_user_config, expected_type=type_hints["custom_posix_user_config"])
|
|
6084
|
+
check_type(argname="argument jupyter_lab_app_settings", value=jupyter_lab_app_settings, expected_type=type_hints["jupyter_lab_app_settings"])
|
|
5996
6085
|
check_type(argname="argument jupyter_server_app_settings", value=jupyter_server_app_settings, expected_type=type_hints["jupyter_server_app_settings"])
|
|
5997
6086
|
check_type(argname="argument kernel_gateway_app_settings", value=kernel_gateway_app_settings, expected_type=type_hints["kernel_gateway_app_settings"])
|
|
5998
6087
|
check_type(argname="argument security_groups", value=security_groups, expected_type=type_hints["security_groups"])
|
|
6088
|
+
check_type(argname="argument space_storage_settings", value=space_storage_settings, expected_type=type_hints["space_storage_settings"])
|
|
5999
6089
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
6000
6090
|
"execution_role": execution_role,
|
|
6001
6091
|
}
|
|
6092
|
+
if custom_file_system_configs is not None:
|
|
6093
|
+
self._values["custom_file_system_configs"] = custom_file_system_configs
|
|
6094
|
+
if custom_posix_user_config is not None:
|
|
6095
|
+
self._values["custom_posix_user_config"] = custom_posix_user_config
|
|
6096
|
+
if jupyter_lab_app_settings is not None:
|
|
6097
|
+
self._values["jupyter_lab_app_settings"] = jupyter_lab_app_settings
|
|
6002
6098
|
if jupyter_server_app_settings is not None:
|
|
6003
6099
|
self._values["jupyter_server_app_settings"] = jupyter_server_app_settings
|
|
6004
6100
|
if kernel_gateway_app_settings is not None:
|
|
6005
6101
|
self._values["kernel_gateway_app_settings"] = kernel_gateway_app_settings
|
|
6006
6102
|
if security_groups is not None:
|
|
6007
6103
|
self._values["security_groups"] = security_groups
|
|
6104
|
+
if space_storage_settings is not None:
|
|
6105
|
+
self._values["space_storage_settings"] = space_storage_settings
|
|
6008
6106
|
|
|
6009
6107
|
@builtins.property
|
|
6010
6108
|
def execution_role(self) -> builtins.str:
|
|
@@ -6016,6 +6114,37 @@ class CfnDomain(
|
|
|
6016
6114
|
assert result is not None, "Required property 'execution_role' is missing"
|
|
6017
6115
|
return typing.cast(builtins.str, result)
|
|
6018
6116
|
|
|
6117
|
+
@builtins.property
|
|
6118
|
+
def custom_file_system_configs(
|
|
6119
|
+
self,
|
|
6120
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDomain.CustomFileSystemConfigProperty"]]]]:
|
|
6121
|
+
'''
|
|
6122
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultspacesettings.html#cfn-sagemaker-domain-defaultspacesettings-customfilesystemconfigs
|
|
6123
|
+
'''
|
|
6124
|
+
result = self._values.get("custom_file_system_configs")
|
|
6125
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDomain.CustomFileSystemConfigProperty"]]]], result)
|
|
6126
|
+
|
|
6127
|
+
@builtins.property
|
|
6128
|
+
def custom_posix_user_config(
|
|
6129
|
+
self,
|
|
6130
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.CustomPosixUserConfigProperty"]]:
|
|
6131
|
+
'''
|
|
6132
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultspacesettings.html#cfn-sagemaker-domain-defaultspacesettings-customposixuserconfig
|
|
6133
|
+
'''
|
|
6134
|
+
result = self._values.get("custom_posix_user_config")
|
|
6135
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.CustomPosixUserConfigProperty"]], result)
|
|
6136
|
+
|
|
6137
|
+
@builtins.property
|
|
6138
|
+
def jupyter_lab_app_settings(
|
|
6139
|
+
self,
|
|
6140
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.JupyterLabAppSettingsProperty"]]:
|
|
6141
|
+
'''The JupyterLab app settings.
|
|
6142
|
+
|
|
6143
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultspacesettings.html#cfn-sagemaker-domain-defaultspacesettings-jupyterlabappsettings
|
|
6144
|
+
'''
|
|
6145
|
+
result = self._values.get("jupyter_lab_app_settings")
|
|
6146
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.JupyterLabAppSettingsProperty"]], result)
|
|
6147
|
+
|
|
6019
6148
|
@builtins.property
|
|
6020
6149
|
def jupyter_server_app_settings(
|
|
6021
6150
|
self,
|
|
@@ -6047,6 +6176,17 @@ class CfnDomain(
|
|
|
6047
6176
|
result = self._values.get("security_groups")
|
|
6048
6177
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
6049
6178
|
|
|
6179
|
+
@builtins.property
|
|
6180
|
+
def space_storage_settings(
|
|
6181
|
+
self,
|
|
6182
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.DefaultSpaceStorageSettingsProperty"]]:
|
|
6183
|
+
'''Default storage settings for a space.
|
|
6184
|
+
|
|
6185
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultspacesettings.html#cfn-sagemaker-domain-defaultspacesettings-spacestoragesettings
|
|
6186
|
+
'''
|
|
6187
|
+
result = self._values.get("space_storage_settings")
|
|
6188
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.DefaultSpaceStorageSettingsProperty"]], result)
|
|
6189
|
+
|
|
6050
6190
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
6051
6191
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
6052
6192
|
|
|
@@ -7713,6 +7853,37 @@ class CfnDomainProps:
|
|
|
7713
7853
|
execution_role="executionRole",
|
|
7714
7854
|
|
|
7715
7855
|
# the properties below are optional
|
|
7856
|
+
custom_file_system_configs=[sagemaker.CfnDomain.CustomFileSystemConfigProperty(
|
|
7857
|
+
efs_file_system_config=sagemaker.CfnDomain.EFSFileSystemConfigProperty(
|
|
7858
|
+
file_system_id="fileSystemId",
|
|
7859
|
+
|
|
7860
|
+
# the properties below are optional
|
|
7861
|
+
file_system_path="fileSystemPath"
|
|
7862
|
+
)
|
|
7863
|
+
)],
|
|
7864
|
+
custom_posix_user_config=sagemaker.CfnDomain.CustomPosixUserConfigProperty(
|
|
7865
|
+
gid=123,
|
|
7866
|
+
uid=123
|
|
7867
|
+
),
|
|
7868
|
+
jupyter_lab_app_settings=sagemaker.CfnDomain.JupyterLabAppSettingsProperty(
|
|
7869
|
+
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
7870
|
+
repository_url="repositoryUrl"
|
|
7871
|
+
)],
|
|
7872
|
+
custom_images=[sagemaker.CfnDomain.CustomImageProperty(
|
|
7873
|
+
app_image_config_name="appImageConfigName",
|
|
7874
|
+
image_name="imageName",
|
|
7875
|
+
|
|
7876
|
+
# the properties below are optional
|
|
7877
|
+
image_version_number=123
|
|
7878
|
+
)],
|
|
7879
|
+
default_resource_spec=sagemaker.CfnDomain.ResourceSpecProperty(
|
|
7880
|
+
instance_type="instanceType",
|
|
7881
|
+
lifecycle_config_arn="lifecycleConfigArn",
|
|
7882
|
+
sage_maker_image_arn="sageMakerImageArn",
|
|
7883
|
+
sage_maker_image_version_arn="sageMakerImageVersionArn"
|
|
7884
|
+
),
|
|
7885
|
+
lifecycle_config_arns=["lifecycleConfigArns"]
|
|
7886
|
+
),
|
|
7716
7887
|
jupyter_server_app_settings=sagemaker.CfnDomain.JupyterServerAppSettingsProperty(
|
|
7717
7888
|
default_resource_spec=sagemaker.CfnDomain.ResourceSpecProperty(
|
|
7718
7889
|
instance_type="instanceType",
|
|
@@ -7736,7 +7907,13 @@ class CfnDomainProps:
|
|
|
7736
7907
|
sage_maker_image_version_arn="sageMakerImageVersionArn"
|
|
7737
7908
|
)
|
|
7738
7909
|
),
|
|
7739
|
-
security_groups=["securityGroups"]
|
|
7910
|
+
security_groups=["securityGroups"],
|
|
7911
|
+
space_storage_settings=sagemaker.CfnDomain.DefaultSpaceStorageSettingsProperty(
|
|
7912
|
+
default_ebs_storage_settings=sagemaker.CfnDomain.DefaultEbsStorageSettingsProperty(
|
|
7913
|
+
default_ebs_volume_size_in_gb=123,
|
|
7914
|
+
maximum_ebs_volume_size_in_gb=123
|
|
7915
|
+
)
|
|
7916
|
+
)
|
|
7740
7917
|
),
|
|
7741
7918
|
domain_settings=sagemaker.CfnDomain.DomainSettingsProperty(
|
|
7742
7919
|
docker_settings=sagemaker.CfnDomain.DockerSettingsProperty(
|
|
@@ -39611,7 +39788,7 @@ class CfnSpace(
|
|
|
39611
39788
|
metaclass=jsii.JSIIMeta,
|
|
39612
39789
|
jsii_type="aws-cdk-lib.aws_sagemaker.CfnSpace",
|
|
39613
39790
|
):
|
|
39614
|
-
'''Creates a space used for real time collaboration in a domain.
|
|
39791
|
+
'''Creates a private space or a space used for real time collaboration in a domain.
|
|
39615
39792
|
|
|
39616
39793
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-space.html
|
|
39617
39794
|
:cloudformationResource: AWS::SageMaker::Space
|
|
@@ -44935,9 +45112,13 @@ def _typecheckingstub__b52c119b99eae7bccd0ea69c20d2eb78b4e2a18d561fcfd418dff5adb
|
|
|
44935
45112
|
def _typecheckingstub__6f9de66f7050e50e98d4b4c96b379ab71681a650698564e825f452052572214f(
|
|
44936
45113
|
*,
|
|
44937
45114
|
execution_role: builtins.str,
|
|
45115
|
+
custom_file_system_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.CustomFileSystemConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
45116
|
+
custom_posix_user_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.CustomPosixUserConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
45117
|
+
jupyter_lab_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.JupyterLabAppSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
44938
45118
|
jupyter_server_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.JupyterServerAppSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
44939
45119
|
kernel_gateway_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.KernelGatewayAppSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
44940
45120
|
security_groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
45121
|
+
space_storage_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DefaultSpaceStorageSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
44941
45122
|
) -> None:
|
|
44942
45123
|
"""Type checking stubs"""
|
|
44943
45124
|
pass
|