aws-cdk-lib 2.195.0__py3-none-any.whl → 2.196.0__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/__init__.py +433 -20
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.195.0.jsii.tgz → aws-cdk-lib@2.196.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amazonmq/__init__.py +2 -2
- aws_cdk/aws_apigateway/__init__.py +148 -69
- aws_cdk/aws_apigatewayv2/__init__.py +155 -24
- aws_cdk/aws_appconfig/__init__.py +24 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
- aws_cdk/aws_appmesh/__init__.py +42 -0
- aws_cdk/aws_appsync/__init__.py +92 -20
- aws_cdk/aws_autoscaling/__init__.py +24 -0
- aws_cdk/aws_backup/__init__.py +53 -14
- aws_cdk/aws_batch/__init__.py +72 -0
- aws_cdk/aws_bedrock/__init__.py +620 -14
- aws_cdk/aws_budgets/__init__.py +569 -0
- aws_cdk/aws_certificatemanager/__init__.py +21 -0
- aws_cdk/aws_chatbot/__init__.py +6 -0
- aws_cdk/aws_cloudfront/__init__.py +87 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
- aws_cdk/aws_cloudtrail/__init__.py +6 -0
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
- aws_cdk/aws_codebuild/__init__.py +48 -0
- aws_cdk/aws_codecommit/__init__.py +6 -0
- aws_cdk/aws_codedeploy/__init__.py +63 -0
- aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
- aws_cdk/aws_codepipeline/__init__.py +6 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
- aws_cdk/aws_codestarnotifications/__init__.py +6 -0
- aws_cdk/aws_cognito/__init__.py +91 -12
- aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
- aws_cdk/aws_config/__init__.py +36 -0
- aws_cdk/aws_datazone/__init__.py +557 -14
- aws_cdk/aws_docdb/__init__.py +27 -3
- aws_cdk/aws_dsql/__init__.py +21 -13
- aws_cdk/aws_dynamodb/__init__.py +20 -8
- aws_cdk/aws_ec2/__init__.py +282 -21
- aws_cdk/aws_ecr/__init__.py +6 -0
- aws_cdk/aws_ecr_assets/__init__.py +6 -0
- aws_cdk/aws_ecs/__init__.py +112 -19
- aws_cdk/aws_ecs_patterns/__init__.py +58 -0
- aws_cdk/aws_efs/__init__.py +12 -0
- aws_cdk/aws_eks/__init__.py +42 -0
- aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
- aws_cdk/aws_elasticsearch/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +36 -0
- aws_cdk/aws_events_targets/__init__.py +10 -10
- aws_cdk/aws_fsx/__init__.py +6 -0
- aws_cdk/aws_globalaccelerator/__init__.py +18 -0
- aws_cdk/aws_iam/__init__.py +66 -0
- aws_cdk/aws_imagebuilder/__init__.py +21 -16
- aws_cdk/aws_inspector/__init__.py +6 -0
- aws_cdk/aws_kinesis/__init__.py +19 -1
- aws_cdk/aws_kinesisanalytics/__init__.py +9 -11
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +9 -11
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_kms/__init__.py +16 -4
- aws_cdk/aws_lambda/__init__.py +76 -6
- aws_cdk/aws_lambda_nodejs/__init__.py +6 -0
- aws_cdk/aws_logs/__init__.py +155 -12
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +22 -22
- aws_cdk/aws_rds/__init__.py +306 -30
- aws_cdk/aws_redshiftserverless/__init__.py +7 -7
- aws_cdk/aws_route53/__init__.py +723 -25
- aws_cdk/aws_s3/__init__.py +37 -10
- aws_cdk/aws_s3_deployment/__init__.py +6 -0
- aws_cdk/aws_sagemaker/__init__.py +199 -4
- aws_cdk/aws_scheduler/__init__.py +12 -0
- aws_cdk/aws_secretsmanager/__init__.py +24 -0
- aws_cdk/aws_servicecatalog/__init__.py +24 -0
- aws_cdk/aws_servicediscovery/__init__.py +48 -0
- aws_cdk/aws_ses/__init__.py +133 -33
- aws_cdk/aws_signer/__init__.py +6 -0
- aws_cdk/aws_sns/__init__.py +18 -0
- aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
- aws_cdk/aws_sqs/__init__.py +12 -0
- aws_cdk/aws_ssm/__init__.py +12 -0
- aws_cdk/aws_ssmcontacts/__init__.py +53 -2
- aws_cdk/aws_ssmguiconnect/__init__.py +7 -7
- aws_cdk/aws_stepfunctions/__init__.py +153 -7
- aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
- aws_cdk/aws_synthetics/__init__.py +32 -0
- aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
- aws_cdk/aws_vpclattice/__init__.py +3 -1
- aws_cdk/aws_wisdom/__init__.py +6 -4
- aws_cdk/custom_resources/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +33 -0
- aws_cdk/lambda_layer_awscli/__init__.py +6 -0
- aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
- aws_cdk/pipelines/__init__.py +10 -10
- aws_cdk/triggers/__init__.py +6 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/METADATA +83 -5
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/RECORD +100 -100
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/top_level.txt +0 -0
|
@@ -6144,6 +6144,7 @@ class CfnDomain(
|
|
|
6144
6144
|
execution_role="executionRole",
|
|
6145
6145
|
|
|
6146
6146
|
# the properties below are optional
|
|
6147
|
+
auto_mount_home_efs="autoMountHomeEfs",
|
|
6147
6148
|
code_editor_app_settings=sagemaker.CfnDomain.CodeEditorAppSettingsProperty(
|
|
6148
6149
|
app_lifecycle_management=sagemaker.CfnDomain.AppLifecycleManagementProperty(
|
|
6149
6150
|
idle_settings=sagemaker.CfnDomain.IdleSettingsProperty(
|
|
@@ -6153,6 +6154,7 @@ class CfnDomain(
|
|
|
6153
6154
|
min_idle_timeout_in_minutes=123
|
|
6154
6155
|
)
|
|
6155
6156
|
),
|
|
6157
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
6156
6158
|
custom_images=[sagemaker.CfnDomain.CustomImageProperty(
|
|
6157
6159
|
app_image_config_name="appImageConfigName",
|
|
6158
6160
|
image_name="imageName",
|
|
@@ -6196,6 +6198,7 @@ class CfnDomain(
|
|
|
6196
6198
|
min_idle_timeout_in_minutes=123
|
|
6197
6199
|
)
|
|
6198
6200
|
),
|
|
6201
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
6199
6202
|
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
6200
6203
|
repository_url="repositoryUrl"
|
|
6201
6204
|
)],
|
|
@@ -6273,7 +6276,12 @@ class CfnDomain(
|
|
|
6273
6276
|
studio_web_portal="studioWebPortal",
|
|
6274
6277
|
studio_web_portal_settings=sagemaker.CfnDomain.StudioWebPortalSettingsProperty(
|
|
6275
6278
|
hidden_app_types=["hiddenAppTypes"],
|
|
6276
|
-
|
|
6279
|
+
hidden_instance_types=["hiddenInstanceTypes"],
|
|
6280
|
+
hidden_ml_tools=["hiddenMlTools"],
|
|
6281
|
+
hidden_sage_maker_image_version_aliases=[sagemaker.CfnDomain.HiddenSageMakerImageProperty(
|
|
6282
|
+
sage_maker_image_name="sageMakerImageName",
|
|
6283
|
+
version_aliases=["versionAliases"]
|
|
6284
|
+
)]
|
|
6277
6285
|
)
|
|
6278
6286
|
),
|
|
6279
6287
|
domain_name="domainName",
|
|
@@ -6314,6 +6322,7 @@ class CfnDomain(
|
|
|
6314
6322
|
min_idle_timeout_in_minutes=123
|
|
6315
6323
|
)
|
|
6316
6324
|
),
|
|
6325
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
6317
6326
|
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
6318
6327
|
repository_url="repositoryUrl"
|
|
6319
6328
|
)],
|
|
@@ -6800,6 +6809,7 @@ class CfnDomain(
|
|
|
6800
6809
|
jsii_struct_bases=[],
|
|
6801
6810
|
name_mapping={
|
|
6802
6811
|
"app_lifecycle_management": "appLifecycleManagement",
|
|
6812
|
+
"built_in_lifecycle_config_arn": "builtInLifecycleConfigArn",
|
|
6803
6813
|
"custom_images": "customImages",
|
|
6804
6814
|
"default_resource_spec": "defaultResourceSpec",
|
|
6805
6815
|
"lifecycle_config_arns": "lifecycleConfigArns",
|
|
@@ -6810,6 +6820,7 @@ class CfnDomain(
|
|
|
6810
6820
|
self,
|
|
6811
6821
|
*,
|
|
6812
6822
|
app_lifecycle_management: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.AppLifecycleManagementProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6823
|
+
built_in_lifecycle_config_arn: typing.Optional[builtins.str] = None,
|
|
6813
6824
|
custom_images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.CustomImageProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6814
6825
|
default_resource_spec: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.ResourceSpecProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6815
6826
|
lifecycle_config_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -6819,6 +6830,7 @@ class CfnDomain(
|
|
|
6819
6830
|
For more information about Code Editor, see `Get started with Code Editor in Amazon SageMaker <https://docs.aws.amazon.com/sagemaker/latest/dg/code-editor.html>`_ .
|
|
6820
6831
|
|
|
6821
6832
|
:param app_lifecycle_management: Settings that are used to configure and manage the lifecycle of CodeEditor applications.
|
|
6833
|
+
:param built_in_lifecycle_config_arn: The lifecycle configuration that runs before the default lifecycle configuration.
|
|
6822
6834
|
:param custom_images: A list of custom SageMaker images that are configured to run as a Code Editor app.
|
|
6823
6835
|
:param default_resource_spec: The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the Code Editor app.
|
|
6824
6836
|
:param lifecycle_config_arns: The Amazon Resource Name (ARN) of the Code Editor application lifecycle configuration.
|
|
@@ -6841,6 +6853,7 @@ class CfnDomain(
|
|
|
6841
6853
|
min_idle_timeout_in_minutes=123
|
|
6842
6854
|
)
|
|
6843
6855
|
),
|
|
6856
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
6844
6857
|
custom_images=[sagemaker.CfnDomain.CustomImageProperty(
|
|
6845
6858
|
app_image_config_name="appImageConfigName",
|
|
6846
6859
|
image_name="imageName",
|
|
@@ -6860,12 +6873,15 @@ class CfnDomain(
|
|
|
6860
6873
|
if __debug__:
|
|
6861
6874
|
type_hints = typing.get_type_hints(_typecheckingstub__fc744bb58e49877db429fbdcea73e31d9e5326375463940bb48321473f97dfaa)
|
|
6862
6875
|
check_type(argname="argument app_lifecycle_management", value=app_lifecycle_management, expected_type=type_hints["app_lifecycle_management"])
|
|
6876
|
+
check_type(argname="argument built_in_lifecycle_config_arn", value=built_in_lifecycle_config_arn, expected_type=type_hints["built_in_lifecycle_config_arn"])
|
|
6863
6877
|
check_type(argname="argument custom_images", value=custom_images, expected_type=type_hints["custom_images"])
|
|
6864
6878
|
check_type(argname="argument default_resource_spec", value=default_resource_spec, expected_type=type_hints["default_resource_spec"])
|
|
6865
6879
|
check_type(argname="argument lifecycle_config_arns", value=lifecycle_config_arns, expected_type=type_hints["lifecycle_config_arns"])
|
|
6866
6880
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
6867
6881
|
if app_lifecycle_management is not None:
|
|
6868
6882
|
self._values["app_lifecycle_management"] = app_lifecycle_management
|
|
6883
|
+
if built_in_lifecycle_config_arn is not None:
|
|
6884
|
+
self._values["built_in_lifecycle_config_arn"] = built_in_lifecycle_config_arn
|
|
6869
6885
|
if custom_images is not None:
|
|
6870
6886
|
self._values["custom_images"] = custom_images
|
|
6871
6887
|
if default_resource_spec is not None:
|
|
@@ -6884,6 +6900,15 @@ class CfnDomain(
|
|
|
6884
6900
|
result = self._values.get("app_lifecycle_management")
|
|
6885
6901
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.AppLifecycleManagementProperty"]], result)
|
|
6886
6902
|
|
|
6903
|
+
@builtins.property
|
|
6904
|
+
def built_in_lifecycle_config_arn(self) -> typing.Optional[builtins.str]:
|
|
6905
|
+
'''The lifecycle configuration that runs before the default lifecycle configuration.
|
|
6906
|
+
|
|
6907
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-codeeditorappsettings.html#cfn-sagemaker-domain-codeeditorappsettings-builtinlifecycleconfigarn
|
|
6908
|
+
'''
|
|
6909
|
+
result = self._values.get("built_in_lifecycle_config_arn")
|
|
6910
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6911
|
+
|
|
6887
6912
|
@builtins.property
|
|
6888
6913
|
def custom_images(
|
|
6889
6914
|
self,
|
|
@@ -7383,6 +7408,7 @@ class CfnDomain(
|
|
|
7383
7408
|
min_idle_timeout_in_minutes=123
|
|
7384
7409
|
)
|
|
7385
7410
|
),
|
|
7411
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
7386
7412
|
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
7387
7413
|
repository_url="repositoryUrl"
|
|
7388
7414
|
)],
|
|
@@ -7977,6 +8003,77 @@ class CfnDomain(
|
|
|
7977
8003
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
7978
8004
|
)
|
|
7979
8005
|
|
|
8006
|
+
@jsii.data_type(
|
|
8007
|
+
jsii_type="aws-cdk-lib.aws_sagemaker.CfnDomain.HiddenSageMakerImageProperty",
|
|
8008
|
+
jsii_struct_bases=[],
|
|
8009
|
+
name_mapping={
|
|
8010
|
+
"sage_maker_image_name": "sageMakerImageName",
|
|
8011
|
+
"version_aliases": "versionAliases",
|
|
8012
|
+
},
|
|
8013
|
+
)
|
|
8014
|
+
class HiddenSageMakerImageProperty:
|
|
8015
|
+
def __init__(
|
|
8016
|
+
self,
|
|
8017
|
+
*,
|
|
8018
|
+
sage_maker_image_name: typing.Optional[builtins.str] = None,
|
|
8019
|
+
version_aliases: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
8020
|
+
) -> None:
|
|
8021
|
+
'''
|
|
8022
|
+
:param sage_maker_image_name: The SageMaker image name that you are hiding from the Studio user interface.
|
|
8023
|
+
:param version_aliases:
|
|
8024
|
+
|
|
8025
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-hiddensagemakerimage.html
|
|
8026
|
+
:exampleMetadata: fixture=_generated
|
|
8027
|
+
|
|
8028
|
+
Example::
|
|
8029
|
+
|
|
8030
|
+
# The code below shows an example of how to instantiate this type.
|
|
8031
|
+
# The values are placeholders you should change.
|
|
8032
|
+
from aws_cdk import aws_sagemaker as sagemaker
|
|
8033
|
+
|
|
8034
|
+
hidden_sage_maker_image_property = sagemaker.CfnDomain.HiddenSageMakerImageProperty(
|
|
8035
|
+
sage_maker_image_name="sageMakerImageName",
|
|
8036
|
+
version_aliases=["versionAliases"]
|
|
8037
|
+
)
|
|
8038
|
+
'''
|
|
8039
|
+
if __debug__:
|
|
8040
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ef4c24a298ba004167ed74541300e1835cc3b27da6fc437da88601dc2a28b100)
|
|
8041
|
+
check_type(argname="argument sage_maker_image_name", value=sage_maker_image_name, expected_type=type_hints["sage_maker_image_name"])
|
|
8042
|
+
check_type(argname="argument version_aliases", value=version_aliases, expected_type=type_hints["version_aliases"])
|
|
8043
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8044
|
+
if sage_maker_image_name is not None:
|
|
8045
|
+
self._values["sage_maker_image_name"] = sage_maker_image_name
|
|
8046
|
+
if version_aliases is not None:
|
|
8047
|
+
self._values["version_aliases"] = version_aliases
|
|
8048
|
+
|
|
8049
|
+
@builtins.property
|
|
8050
|
+
def sage_maker_image_name(self) -> typing.Optional[builtins.str]:
|
|
8051
|
+
'''The SageMaker image name that you are hiding from the Studio user interface.
|
|
8052
|
+
|
|
8053
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-hiddensagemakerimage.html#cfn-sagemaker-domain-hiddensagemakerimage-sagemakerimagename
|
|
8054
|
+
'''
|
|
8055
|
+
result = self._values.get("sage_maker_image_name")
|
|
8056
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8057
|
+
|
|
8058
|
+
@builtins.property
|
|
8059
|
+
def version_aliases(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
8060
|
+
'''
|
|
8061
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-hiddensagemakerimage.html#cfn-sagemaker-domain-hiddensagemakerimage-versionaliases
|
|
8062
|
+
'''
|
|
8063
|
+
result = self._values.get("version_aliases")
|
|
8064
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
8065
|
+
|
|
8066
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8067
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8068
|
+
|
|
8069
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8070
|
+
return not (rhs == self)
|
|
8071
|
+
|
|
8072
|
+
def __repr__(self) -> str:
|
|
8073
|
+
return "HiddenSageMakerImageProperty(%s)" % ", ".join(
|
|
8074
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8075
|
+
)
|
|
8076
|
+
|
|
7980
8077
|
@jsii.data_type(
|
|
7981
8078
|
jsii_type="aws-cdk-lib.aws_sagemaker.CfnDomain.IdleSettingsProperty",
|
|
7982
8079
|
jsii_struct_bases=[],
|
|
@@ -8087,6 +8184,7 @@ class CfnDomain(
|
|
|
8087
8184
|
jsii_struct_bases=[],
|
|
8088
8185
|
name_mapping={
|
|
8089
8186
|
"app_lifecycle_management": "appLifecycleManagement",
|
|
8187
|
+
"built_in_lifecycle_config_arn": "builtInLifecycleConfigArn",
|
|
8090
8188
|
"code_repositories": "codeRepositories",
|
|
8091
8189
|
"custom_images": "customImages",
|
|
8092
8190
|
"default_resource_spec": "defaultResourceSpec",
|
|
@@ -8098,6 +8196,7 @@ class CfnDomain(
|
|
|
8098
8196
|
self,
|
|
8099
8197
|
*,
|
|
8100
8198
|
app_lifecycle_management: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.AppLifecycleManagementProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8199
|
+
built_in_lifecycle_config_arn: typing.Optional[builtins.str] = None,
|
|
8101
8200
|
code_repositories: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.CodeRepositoryProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
8102
8201
|
custom_images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.CustomImageProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
8103
8202
|
default_resource_spec: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.ResourceSpecProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -8106,6 +8205,7 @@ class CfnDomain(
|
|
|
8106
8205
|
'''The settings for the JupyterLab application.
|
|
8107
8206
|
|
|
8108
8207
|
:param app_lifecycle_management: Indicates whether idle shutdown is activated for JupyterLab applications.
|
|
8208
|
+
:param built_in_lifecycle_config_arn: The lifecycle configuration that runs before the default lifecycle configuration.
|
|
8109
8209
|
:param code_repositories: A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.
|
|
8110
8210
|
:param custom_images: A list of custom SageMaker images that are configured to run as a JupyterLab app.
|
|
8111
8211
|
:param default_resource_spec: The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app.
|
|
@@ -8129,6 +8229,7 @@ class CfnDomain(
|
|
|
8129
8229
|
min_idle_timeout_in_minutes=123
|
|
8130
8230
|
)
|
|
8131
8231
|
),
|
|
8232
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
8132
8233
|
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
8133
8234
|
repository_url="repositoryUrl"
|
|
8134
8235
|
)],
|
|
@@ -8151,6 +8252,7 @@ class CfnDomain(
|
|
|
8151
8252
|
if __debug__:
|
|
8152
8253
|
type_hints = typing.get_type_hints(_typecheckingstub__3cd086b89fbe936eaaa5fb775d9cbd0e29ad00fb21eb2a45265c217414f406d1)
|
|
8153
8254
|
check_type(argname="argument app_lifecycle_management", value=app_lifecycle_management, expected_type=type_hints["app_lifecycle_management"])
|
|
8255
|
+
check_type(argname="argument built_in_lifecycle_config_arn", value=built_in_lifecycle_config_arn, expected_type=type_hints["built_in_lifecycle_config_arn"])
|
|
8154
8256
|
check_type(argname="argument code_repositories", value=code_repositories, expected_type=type_hints["code_repositories"])
|
|
8155
8257
|
check_type(argname="argument custom_images", value=custom_images, expected_type=type_hints["custom_images"])
|
|
8156
8258
|
check_type(argname="argument default_resource_spec", value=default_resource_spec, expected_type=type_hints["default_resource_spec"])
|
|
@@ -8158,6 +8260,8 @@ class CfnDomain(
|
|
|
8158
8260
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8159
8261
|
if app_lifecycle_management is not None:
|
|
8160
8262
|
self._values["app_lifecycle_management"] = app_lifecycle_management
|
|
8263
|
+
if built_in_lifecycle_config_arn is not None:
|
|
8264
|
+
self._values["built_in_lifecycle_config_arn"] = built_in_lifecycle_config_arn
|
|
8161
8265
|
if code_repositories is not None:
|
|
8162
8266
|
self._values["code_repositories"] = code_repositories
|
|
8163
8267
|
if custom_images is not None:
|
|
@@ -8178,6 +8282,15 @@ class CfnDomain(
|
|
|
8178
8282
|
result = self._values.get("app_lifecycle_management")
|
|
8179
8283
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.AppLifecycleManagementProperty"]], result)
|
|
8180
8284
|
|
|
8285
|
+
@builtins.property
|
|
8286
|
+
def built_in_lifecycle_config_arn(self) -> typing.Optional[builtins.str]:
|
|
8287
|
+
'''The lifecycle configuration that runs before the default lifecycle configuration.
|
|
8288
|
+
|
|
8289
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-jupyterlabappsettings.html#cfn-sagemaker-domain-jupyterlabappsettings-builtinlifecycleconfigarn
|
|
8290
|
+
'''
|
|
8291
|
+
result = self._values.get("built_in_lifecycle_config_arn")
|
|
8292
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8293
|
+
|
|
8181
8294
|
@builtins.property
|
|
8182
8295
|
def code_repositories(
|
|
8183
8296
|
self,
|
|
@@ -8926,7 +9039,9 @@ class CfnDomain(
|
|
|
8926
9039
|
jsii_struct_bases=[],
|
|
8927
9040
|
name_mapping={
|
|
8928
9041
|
"hidden_app_types": "hiddenAppTypes",
|
|
9042
|
+
"hidden_instance_types": "hiddenInstanceTypes",
|
|
8929
9043
|
"hidden_ml_tools": "hiddenMlTools",
|
|
9044
|
+
"hidden_sage_maker_image_version_aliases": "hiddenSageMakerImageVersionAliases",
|
|
8930
9045
|
},
|
|
8931
9046
|
)
|
|
8932
9047
|
class StudioWebPortalSettingsProperty:
|
|
@@ -8934,14 +9049,18 @@ class CfnDomain(
|
|
|
8934
9049
|
self,
|
|
8935
9050
|
*,
|
|
8936
9051
|
hidden_app_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
9052
|
+
hidden_instance_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
8937
9053
|
hidden_ml_tools: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
9054
|
+
hidden_sage_maker_image_version_aliases: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.HiddenSageMakerImageProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
8938
9055
|
) -> None:
|
|
8939
9056
|
'''Studio settings.
|
|
8940
9057
|
|
|
8941
9058
|
If these settings are applied on a user level, they take priority over the settings applied on a domain level.
|
|
8942
9059
|
|
|
8943
9060
|
:param hidden_app_types: The `Applications supported in Studio <https://docs.aws.amazon.com/sagemaker/latest/dg/studio-updated-apps.html>`_ that are hidden from the Studio left navigation pane.
|
|
9061
|
+
:param hidden_instance_types: The instance types you are hiding from the Studio user interface.
|
|
8944
9062
|
:param hidden_ml_tools: The machine learning tools that are hidden from the Studio left navigation pane.
|
|
9063
|
+
:param hidden_sage_maker_image_version_aliases: The version aliases you are hiding from the Studio user interface.
|
|
8945
9064
|
|
|
8946
9065
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-studiowebportalsettings.html
|
|
8947
9066
|
:exampleMetadata: fixture=_generated
|
|
@@ -8954,18 +9073,29 @@ class CfnDomain(
|
|
|
8954
9073
|
|
|
8955
9074
|
studio_web_portal_settings_property = sagemaker.CfnDomain.StudioWebPortalSettingsProperty(
|
|
8956
9075
|
hidden_app_types=["hiddenAppTypes"],
|
|
8957
|
-
|
|
9076
|
+
hidden_instance_types=["hiddenInstanceTypes"],
|
|
9077
|
+
hidden_ml_tools=["hiddenMlTools"],
|
|
9078
|
+
hidden_sage_maker_image_version_aliases=[sagemaker.CfnDomain.HiddenSageMakerImageProperty(
|
|
9079
|
+
sage_maker_image_name="sageMakerImageName",
|
|
9080
|
+
version_aliases=["versionAliases"]
|
|
9081
|
+
)]
|
|
8958
9082
|
)
|
|
8959
9083
|
'''
|
|
8960
9084
|
if __debug__:
|
|
8961
9085
|
type_hints = typing.get_type_hints(_typecheckingstub__8a8ec723792b0ed26599d28b5d7a21fbc89e286f4d03c0e5a17ecf55972981f1)
|
|
8962
9086
|
check_type(argname="argument hidden_app_types", value=hidden_app_types, expected_type=type_hints["hidden_app_types"])
|
|
9087
|
+
check_type(argname="argument hidden_instance_types", value=hidden_instance_types, expected_type=type_hints["hidden_instance_types"])
|
|
8963
9088
|
check_type(argname="argument hidden_ml_tools", value=hidden_ml_tools, expected_type=type_hints["hidden_ml_tools"])
|
|
9089
|
+
check_type(argname="argument hidden_sage_maker_image_version_aliases", value=hidden_sage_maker_image_version_aliases, expected_type=type_hints["hidden_sage_maker_image_version_aliases"])
|
|
8964
9090
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8965
9091
|
if hidden_app_types is not None:
|
|
8966
9092
|
self._values["hidden_app_types"] = hidden_app_types
|
|
9093
|
+
if hidden_instance_types is not None:
|
|
9094
|
+
self._values["hidden_instance_types"] = hidden_instance_types
|
|
8967
9095
|
if hidden_ml_tools is not None:
|
|
8968
9096
|
self._values["hidden_ml_tools"] = hidden_ml_tools
|
|
9097
|
+
if hidden_sage_maker_image_version_aliases is not None:
|
|
9098
|
+
self._values["hidden_sage_maker_image_version_aliases"] = hidden_sage_maker_image_version_aliases
|
|
8969
9099
|
|
|
8970
9100
|
@builtins.property
|
|
8971
9101
|
def hidden_app_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -8976,6 +9106,15 @@ class CfnDomain(
|
|
|
8976
9106
|
result = self._values.get("hidden_app_types")
|
|
8977
9107
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
8978
9108
|
|
|
9109
|
+
@builtins.property
|
|
9110
|
+
def hidden_instance_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
9111
|
+
'''The instance types you are hiding from the Studio user interface.
|
|
9112
|
+
|
|
9113
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-studiowebportalsettings.html#cfn-sagemaker-domain-studiowebportalsettings-hiddeninstancetypes
|
|
9114
|
+
'''
|
|
9115
|
+
result = self._values.get("hidden_instance_types")
|
|
9116
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
9117
|
+
|
|
8979
9118
|
@builtins.property
|
|
8980
9119
|
def hidden_ml_tools(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
8981
9120
|
'''The machine learning tools that are hidden from the Studio left navigation pane.
|
|
@@ -8985,6 +9124,17 @@ class CfnDomain(
|
|
|
8985
9124
|
result = self._values.get("hidden_ml_tools")
|
|
8986
9125
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
8987
9126
|
|
|
9127
|
+
@builtins.property
|
|
9128
|
+
def hidden_sage_maker_image_version_aliases(
|
|
9129
|
+
self,
|
|
9130
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDomain.HiddenSageMakerImageProperty"]]]]:
|
|
9131
|
+
'''The version aliases you are hiding from the Studio user interface.
|
|
9132
|
+
|
|
9133
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-studiowebportalsettings.html#cfn-sagemaker-domain-studiowebportalsettings-hiddensagemakerimageversionaliases
|
|
9134
|
+
'''
|
|
9135
|
+
result = self._values.get("hidden_sage_maker_image_version_aliases")
|
|
9136
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDomain.HiddenSageMakerImageProperty"]]]], result)
|
|
9137
|
+
|
|
8988
9138
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8989
9139
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8990
9140
|
|
|
@@ -9001,6 +9151,7 @@ class CfnDomain(
|
|
|
9001
9151
|
jsii_struct_bases=[],
|
|
9002
9152
|
name_mapping={
|
|
9003
9153
|
"execution_role": "executionRole",
|
|
9154
|
+
"auto_mount_home_efs": "autoMountHomeEfs",
|
|
9004
9155
|
"code_editor_app_settings": "codeEditorAppSettings",
|
|
9005
9156
|
"custom_file_system_configs": "customFileSystemConfigs",
|
|
9006
9157
|
"custom_posix_user_config": "customPosixUserConfig",
|
|
@@ -9022,6 +9173,7 @@ class CfnDomain(
|
|
|
9022
9173
|
self,
|
|
9023
9174
|
*,
|
|
9024
9175
|
execution_role: builtins.str,
|
|
9176
|
+
auto_mount_home_efs: typing.Optional[builtins.str] = None,
|
|
9025
9177
|
code_editor_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.CodeEditorAppSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9026
9178
|
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,
|
|
9027
9179
|
custom_posix_user_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.CustomPosixUserConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -9044,6 +9196,7 @@ class CfnDomain(
|
|
|
9044
9196
|
``SecurityGroups`` is aggregated when specified in both calls. For all other settings in ``UserSettings`` , the values specified in ``CreateUserProfile`` take precedence over those specified in ``CreateDomain`` .
|
|
9045
9197
|
|
|
9046
9198
|
:param execution_role: The execution role for the user. SageMaker applies this setting only to private spaces that the user creates in the domain. SageMaker doesn't apply this setting to shared spaces.
|
|
9199
|
+
:param auto_mount_home_efs: Indicates whether auto-mounting of an EFS volume is supported for the user profile.
|
|
9047
9200
|
:param code_editor_app_settings: The Code Editor application settings. SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
9048
9201
|
:param custom_file_system_configs: The settings for assigning a custom file system to a user profile. Permitted users can access this file system in Amazon SageMaker AI Studio. SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
9049
9202
|
:param custom_posix_user_config: Details about the POSIX identity that is used for file system operations. SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
@@ -9072,6 +9225,7 @@ class CfnDomain(
|
|
|
9072
9225
|
execution_role="executionRole",
|
|
9073
9226
|
|
|
9074
9227
|
# the properties below are optional
|
|
9228
|
+
auto_mount_home_efs="autoMountHomeEfs",
|
|
9075
9229
|
code_editor_app_settings=sagemaker.CfnDomain.CodeEditorAppSettingsProperty(
|
|
9076
9230
|
app_lifecycle_management=sagemaker.CfnDomain.AppLifecycleManagementProperty(
|
|
9077
9231
|
idle_settings=sagemaker.CfnDomain.IdleSettingsProperty(
|
|
@@ -9081,6 +9235,7 @@ class CfnDomain(
|
|
|
9081
9235
|
min_idle_timeout_in_minutes=123
|
|
9082
9236
|
)
|
|
9083
9237
|
),
|
|
9238
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
9084
9239
|
custom_images=[sagemaker.CfnDomain.CustomImageProperty(
|
|
9085
9240
|
app_image_config_name="appImageConfigName",
|
|
9086
9241
|
image_name="imageName",
|
|
@@ -9124,6 +9279,7 @@ class CfnDomain(
|
|
|
9124
9279
|
min_idle_timeout_in_minutes=123
|
|
9125
9280
|
)
|
|
9126
9281
|
),
|
|
9282
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
9127
9283
|
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
9128
9284
|
repository_url="repositoryUrl"
|
|
9129
9285
|
)],
|
|
@@ -9201,13 +9357,19 @@ class CfnDomain(
|
|
|
9201
9357
|
studio_web_portal="studioWebPortal",
|
|
9202
9358
|
studio_web_portal_settings=sagemaker.CfnDomain.StudioWebPortalSettingsProperty(
|
|
9203
9359
|
hidden_app_types=["hiddenAppTypes"],
|
|
9204
|
-
|
|
9360
|
+
hidden_instance_types=["hiddenInstanceTypes"],
|
|
9361
|
+
hidden_ml_tools=["hiddenMlTools"],
|
|
9362
|
+
hidden_sage_maker_image_version_aliases=[sagemaker.CfnDomain.HiddenSageMakerImageProperty(
|
|
9363
|
+
sage_maker_image_name="sageMakerImageName",
|
|
9364
|
+
version_aliases=["versionAliases"]
|
|
9365
|
+
)]
|
|
9205
9366
|
)
|
|
9206
9367
|
)
|
|
9207
9368
|
'''
|
|
9208
9369
|
if __debug__:
|
|
9209
9370
|
type_hints = typing.get_type_hints(_typecheckingstub__88423e90a647fb1fb625855a5ca5160b5e8125e664363a24f90939664cc2d507)
|
|
9210
9371
|
check_type(argname="argument execution_role", value=execution_role, expected_type=type_hints["execution_role"])
|
|
9372
|
+
check_type(argname="argument auto_mount_home_efs", value=auto_mount_home_efs, expected_type=type_hints["auto_mount_home_efs"])
|
|
9211
9373
|
check_type(argname="argument code_editor_app_settings", value=code_editor_app_settings, expected_type=type_hints["code_editor_app_settings"])
|
|
9212
9374
|
check_type(argname="argument custom_file_system_configs", value=custom_file_system_configs, expected_type=type_hints["custom_file_system_configs"])
|
|
9213
9375
|
check_type(argname="argument custom_posix_user_config", value=custom_posix_user_config, expected_type=type_hints["custom_posix_user_config"])
|
|
@@ -9225,6 +9387,8 @@ class CfnDomain(
|
|
|
9225
9387
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
9226
9388
|
"execution_role": execution_role,
|
|
9227
9389
|
}
|
|
9390
|
+
if auto_mount_home_efs is not None:
|
|
9391
|
+
self._values["auto_mount_home_efs"] = auto_mount_home_efs
|
|
9228
9392
|
if code_editor_app_settings is not None:
|
|
9229
9393
|
self._values["code_editor_app_settings"] = code_editor_app_settings
|
|
9230
9394
|
if custom_file_system_configs is not None:
|
|
@@ -9266,6 +9430,15 @@ class CfnDomain(
|
|
|
9266
9430
|
assert result is not None, "Required property 'execution_role' is missing"
|
|
9267
9431
|
return typing.cast(builtins.str, result)
|
|
9268
9432
|
|
|
9433
|
+
@builtins.property
|
|
9434
|
+
def auto_mount_home_efs(self) -> typing.Optional[builtins.str]:
|
|
9435
|
+
'''Indicates whether auto-mounting of an EFS volume is supported for the user profile.
|
|
9436
|
+
|
|
9437
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html#cfn-sagemaker-domain-usersettings-automounthomeefs
|
|
9438
|
+
'''
|
|
9439
|
+
result = self._values.get("auto_mount_home_efs")
|
|
9440
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
9441
|
+
|
|
9269
9442
|
@builtins.property
|
|
9270
9443
|
def code_editor_app_settings(
|
|
9271
9444
|
self,
|
|
@@ -9518,6 +9691,7 @@ class CfnDomainProps:
|
|
|
9518
9691
|
execution_role="executionRole",
|
|
9519
9692
|
|
|
9520
9693
|
# the properties below are optional
|
|
9694
|
+
auto_mount_home_efs="autoMountHomeEfs",
|
|
9521
9695
|
code_editor_app_settings=sagemaker.CfnDomain.CodeEditorAppSettingsProperty(
|
|
9522
9696
|
app_lifecycle_management=sagemaker.CfnDomain.AppLifecycleManagementProperty(
|
|
9523
9697
|
idle_settings=sagemaker.CfnDomain.IdleSettingsProperty(
|
|
@@ -9527,6 +9701,7 @@ class CfnDomainProps:
|
|
|
9527
9701
|
min_idle_timeout_in_minutes=123
|
|
9528
9702
|
)
|
|
9529
9703
|
),
|
|
9704
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
9530
9705
|
custom_images=[sagemaker.CfnDomain.CustomImageProperty(
|
|
9531
9706
|
app_image_config_name="appImageConfigName",
|
|
9532
9707
|
image_name="imageName",
|
|
@@ -9570,6 +9745,7 @@ class CfnDomainProps:
|
|
|
9570
9745
|
min_idle_timeout_in_minutes=123
|
|
9571
9746
|
)
|
|
9572
9747
|
),
|
|
9748
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
9573
9749
|
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
9574
9750
|
repository_url="repositoryUrl"
|
|
9575
9751
|
)],
|
|
@@ -9647,7 +9823,12 @@ class CfnDomainProps:
|
|
|
9647
9823
|
studio_web_portal="studioWebPortal",
|
|
9648
9824
|
studio_web_portal_settings=sagemaker.CfnDomain.StudioWebPortalSettingsProperty(
|
|
9649
9825
|
hidden_app_types=["hiddenAppTypes"],
|
|
9650
|
-
|
|
9826
|
+
hidden_instance_types=["hiddenInstanceTypes"],
|
|
9827
|
+
hidden_ml_tools=["hiddenMlTools"],
|
|
9828
|
+
hidden_sage_maker_image_version_aliases=[sagemaker.CfnDomain.HiddenSageMakerImageProperty(
|
|
9829
|
+
sage_maker_image_name="sageMakerImageName",
|
|
9830
|
+
version_aliases=["versionAliases"]
|
|
9831
|
+
)]
|
|
9651
9832
|
)
|
|
9652
9833
|
),
|
|
9653
9834
|
domain_name="domainName",
|
|
@@ -9688,6 +9869,7 @@ class CfnDomainProps:
|
|
|
9688
9869
|
min_idle_timeout_in_minutes=123
|
|
9689
9870
|
)
|
|
9690
9871
|
),
|
|
9872
|
+
built_in_lifecycle_config_arn="builtInLifecycleConfigArn",
|
|
9691
9873
|
code_repositories=[sagemaker.CfnDomain.CodeRepositoryProperty(
|
|
9692
9874
|
repository_url="repositoryUrl"
|
|
9693
9875
|
)],
|
|
@@ -50890,6 +51072,7 @@ def _typecheckingstub__7effd4411e9cef3285cdb58cb66208ce801332047fd17028be8db70ae
|
|
|
50890
51072
|
def _typecheckingstub__fc744bb58e49877db429fbdcea73e31d9e5326375463940bb48321473f97dfaa(
|
|
50891
51073
|
*,
|
|
50892
51074
|
app_lifecycle_management: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.AppLifecycleManagementProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
51075
|
+
built_in_lifecycle_config_arn: typing.Optional[builtins.str] = None,
|
|
50893
51076
|
custom_images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.CustomImageProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
50894
51077
|
default_resource_spec: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.ResourceSpecProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
50895
51078
|
lifecycle_config_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -50992,6 +51175,14 @@ def _typecheckingstub__d8a1d62d2d0cebecfadffff928c7dca834df99c045099ba63d00955c2
|
|
|
50992
51175
|
"""Type checking stubs"""
|
|
50993
51176
|
pass
|
|
50994
51177
|
|
|
51178
|
+
def _typecheckingstub__ef4c24a298ba004167ed74541300e1835cc3b27da6fc437da88601dc2a28b100(
|
|
51179
|
+
*,
|
|
51180
|
+
sage_maker_image_name: typing.Optional[builtins.str] = None,
|
|
51181
|
+
version_aliases: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
51182
|
+
) -> None:
|
|
51183
|
+
"""Type checking stubs"""
|
|
51184
|
+
pass
|
|
51185
|
+
|
|
50995
51186
|
def _typecheckingstub__9e3d0f1226c122e790812fdc875a758ed55021588a3e9f6f3227062284b60c8b(
|
|
50996
51187
|
*,
|
|
50997
51188
|
idle_timeout_in_minutes: typing.Optional[jsii.Number] = None,
|
|
@@ -51005,6 +51196,7 @@ def _typecheckingstub__9e3d0f1226c122e790812fdc875a758ed55021588a3e9f6f322706228
|
|
|
51005
51196
|
def _typecheckingstub__3cd086b89fbe936eaaa5fb775d9cbd0e29ad00fb21eb2a45265c217414f406d1(
|
|
51006
51197
|
*,
|
|
51007
51198
|
app_lifecycle_management: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.AppLifecycleManagementProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
51199
|
+
built_in_lifecycle_config_arn: typing.Optional[builtins.str] = None,
|
|
51008
51200
|
code_repositories: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.CodeRepositoryProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
51009
51201
|
custom_images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.CustomImageProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
51010
51202
|
default_resource_spec: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.ResourceSpecProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -51078,7 +51270,9 @@ def _typecheckingstub__548dd396dfd935cd647f2a1297e1f20836fc0ddc163c1659d63bbf9e9
|
|
|
51078
51270
|
def _typecheckingstub__8a8ec723792b0ed26599d28b5d7a21fbc89e286f4d03c0e5a17ecf55972981f1(
|
|
51079
51271
|
*,
|
|
51080
51272
|
hidden_app_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
51273
|
+
hidden_instance_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
51081
51274
|
hidden_ml_tools: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
51275
|
+
hidden_sage_maker_image_version_aliases: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.HiddenSageMakerImageProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
51082
51276
|
) -> None:
|
|
51083
51277
|
"""Type checking stubs"""
|
|
51084
51278
|
pass
|
|
@@ -51086,6 +51280,7 @@ def _typecheckingstub__8a8ec723792b0ed26599d28b5d7a21fbc89e286f4d03c0e5a17ecf559
|
|
|
51086
51280
|
def _typecheckingstub__88423e90a647fb1fb625855a5ca5160b5e8125e664363a24f90939664cc2d507(
|
|
51087
51281
|
*,
|
|
51088
51282
|
execution_role: builtins.str,
|
|
51283
|
+
auto_mount_home_efs: typing.Optional[builtins.str] = None,
|
|
51089
51284
|
code_editor_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.CodeEditorAppSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
51090
51285
|
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,
|
|
51091
51286
|
custom_posix_user_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.CustomPosixUserConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -4529,6 +4529,12 @@ class Schedule(
|
|
|
4529
4529
|
|
|
4530
4530
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllThrottled", [props]))
|
|
4531
4531
|
|
|
4532
|
+
@jsii.python.classproperty
|
|
4533
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
4534
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
4535
|
+
'''Uniquely identifies this class.'''
|
|
4536
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
4537
|
+
|
|
4532
4538
|
@builtins.property
|
|
4533
4539
|
@jsii.member(jsii_name="scheduleArn")
|
|
4534
4540
|
def schedule_arn(self) -> builtins.str:
|
|
@@ -5282,6 +5288,12 @@ class ScheduleGroup(
|
|
|
5282
5288
|
|
|
5283
5289
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricThrottled", [props]))
|
|
5284
5290
|
|
|
5291
|
+
@jsii.python.classproperty
|
|
5292
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
5293
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
5294
|
+
'''Uniquely identifies this class.'''
|
|
5295
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
5296
|
+
|
|
5285
5297
|
@builtins.property
|
|
5286
5298
|
@jsii.member(jsii_name="scheduleGroupArn")
|
|
5287
5299
|
def schedule_group_arn(self) -> builtins.str:
|
|
@@ -3579,6 +3579,12 @@ class ResourcePolicy(
|
|
|
3579
3579
|
|
|
3580
3580
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
3581
3581
|
|
|
3582
|
+
@jsii.python.classproperty
|
|
3583
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
3584
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
3585
|
+
'''Uniquely identifies this class.'''
|
|
3586
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
3587
|
+
|
|
3582
3588
|
@builtins.property
|
|
3583
3589
|
@jsii.member(jsii_name="document")
|
|
3584
3590
|
def document(self) -> _PolicyDocument_3ac34393:
|
|
@@ -3703,6 +3709,12 @@ class RotationSchedule(
|
|
|
3703
3709
|
|
|
3704
3710
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
3705
3711
|
|
|
3712
|
+
@jsii.python.classproperty
|
|
3713
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
3714
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
3715
|
+
'''Uniquely identifies this class.'''
|
|
3716
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
3717
|
+
|
|
3706
3718
|
|
|
3707
3719
|
@jsii.data_type(
|
|
3708
3720
|
jsii_type="aws-cdk-lib.aws_secretsmanager.RotationScheduleOptions",
|
|
@@ -4274,6 +4286,12 @@ class Secret(
|
|
|
4274
4286
|
check_type(argname="argument json_field", value=json_field, expected_type=type_hints["json_field"])
|
|
4275
4287
|
return typing.cast(_SecretValue_3dd0ddae, jsii.invoke(self, "secretValueFromJson", [json_field]))
|
|
4276
4288
|
|
|
4289
|
+
@jsii.python.classproperty
|
|
4290
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
4291
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
4292
|
+
'''Uniquely identifies this class.'''
|
|
4293
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
4294
|
+
|
|
4277
4295
|
@builtins.property
|
|
4278
4296
|
@jsii.member(jsii_name="arnForPolicies")
|
|
4279
4297
|
def _arn_for_policies(self) -> builtins.str:
|
|
@@ -5750,6 +5768,12 @@ class SecretTargetAttachment(
|
|
|
5750
5768
|
check_type(argname="argument json_field", value=json_field, expected_type=type_hints["json_field"])
|
|
5751
5769
|
return typing.cast(_SecretValue_3dd0ddae, jsii.invoke(self, "secretValueFromJson", [json_field]))
|
|
5752
5770
|
|
|
5771
|
+
@jsii.python.classproperty
|
|
5772
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
5773
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
5774
|
+
'''Uniquely identifies this class.'''
|
|
5775
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
5776
|
+
|
|
5753
5777
|
@builtins.property
|
|
5754
5778
|
@jsii.member(jsii_name="arnForPolicies")
|
|
5755
5779
|
def _arn_for_policies(self) -> builtins.str:
|