aws-cdk-lib 2.164.1__py3-none-any.whl → 2.166.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 +20 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.164.1.jsii.tgz → aws-cdk-lib@2.166.0.jsii.tgz} +0 -0
- aws_cdk/aws_appsync/__init__.py +2163 -375
- aws_cdk/aws_autoscaling/__init__.py +145 -8
- aws_cdk/aws_backup/__init__.py +627 -3
- aws_cdk/aws_bedrock/__init__.py +982 -191
- aws_cdk/aws_codebuild/__init__.py +88 -33
- aws_cdk/aws_codepipeline/__init__.py +98 -5
- aws_cdk/aws_codestar/__init__.py +1 -1
- aws_cdk/aws_cognito/__init__.py +656 -102
- aws_cdk/aws_connect/__init__.py +1 -1
- aws_cdk/aws_datasync/__init__.py +9 -7
- aws_cdk/aws_devopsguru/__init__.py +2 -2
- aws_cdk/aws_dms/__init__.py +762 -0
- aws_cdk/aws_dynamodb/__init__.py +13 -8
- aws_cdk/aws_ec2/__init__.py +134 -35
- aws_cdk/aws_ecs/__init__.py +41 -31
- aws_cdk/aws_eks/__init__.py +10 -12
- aws_cdk/aws_elasticache/__init__.py +52 -6
- aws_cdk/aws_emrserverless/__init__.py +35 -33
- aws_cdk/aws_events/__init__.py +25 -30
- aws_cdk/aws_imagebuilder/__init__.py +183 -0
- aws_cdk/aws_iot/__init__.py +37 -43
- aws_cdk/aws_iotwireless/__init__.py +2 -2
- aws_cdk/aws_kinesis/__init__.py +297 -1
- aws_cdk/aws_lambda/__init__.py +3 -3
- aws_cdk/aws_m2/__init__.py +58 -58
- aws_cdk/aws_mediapackagev2/__init__.py +191 -0
- aws_cdk/aws_memorydb/__init__.py +41 -0
- aws_cdk/aws_networkfirewall/__init__.py +14 -5
- aws_cdk/aws_opensearchservice/__init__.py +969 -0
- aws_cdk/aws_pipes/__init__.py +1 -1
- aws_cdk/aws_qbusiness/__init__.py +23 -14
- aws_cdk/aws_rds/__init__.py +187 -48
- aws_cdk/aws_redshift/__init__.py +23 -23
- aws_cdk/aws_refactorspaces/__init__.py +56 -61
- aws_cdk/aws_resiliencehub/__init__.py +4 -4
- aws_cdk/aws_route53/__init__.py +37 -9
- aws_cdk/aws_s3_deployment/__init__.py +13 -7
- aws_cdk/aws_sagemaker/__init__.py +128 -23
- aws_cdk/aws_secretsmanager/__init__.py +2 -1
- aws_cdk/aws_ses/__init__.py +19 -0
- aws_cdk/aws_synthetics/__init__.py +121 -0
- aws_cdk/aws_timestream/__init__.py +41 -0
- aws_cdk/aws_wisdom/__init__.py +2035 -61
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.166.0.dist-info}/METADATA +6 -6
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.166.0.dist-info}/RECORD +52 -52
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.166.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.166.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.166.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.166.0.dist-info}/top_level.txt +0 -0
|
@@ -665,7 +665,7 @@ class BucketDeployment(
|
|
|
665
665
|
:param content_encoding: System-defined content-encoding metadata to be set on all objects in the deployment. Default: - Not set.
|
|
666
666
|
:param content_language: System-defined content-language metadata to be set on all objects in the deployment. Default: - Not set.
|
|
667
667
|
:param content_type: System-defined content-type metadata to be set on all objects in the deployment. Default: - Not set.
|
|
668
|
-
:param destination_key_prefix: Key prefix in the destination bucket. Must be <=104 characters Default: "/" (unzip to root of the destination bucket)
|
|
668
|
+
:param destination_key_prefix: Key prefix in the destination bucket. Must be <=104 characters. If it's set with prune: true, it will only prune files with the prefix. We recommend to always configure the ``destinationKeyPrefix`` property. This will prevent the deployment from accidentally deleting data that wasn't uploaded by it. Default: "/" (unzip to root of the destination bucket)
|
|
669
669
|
:param distribution: The CloudFront distribution using the destination bucket as an origin. Files in the distribution's edge caches will be invalidated after files are uploaded to the destination bucket. Default: - No invalidation occurs
|
|
670
670
|
:param distribution_paths: The file paths to invalidate in the CloudFront distribution. Default: - All files under the destination bucket key prefix will be invalidated.
|
|
671
671
|
:param ephemeral_storage_size: The size of the AWS Lambda function’s /tmp directory in MiB. Default: 512 MiB
|
|
@@ -678,7 +678,7 @@ class BucketDeployment(
|
|
|
678
678
|
:param memory_limit: The amount of memory (in MiB) to allocate to the AWS Lambda function which replicates the files from the CDK bucket to the destination bucket. If you are deploying large files, you will need to increase this number accordingly. Default: 128
|
|
679
679
|
:param metadata: User-defined object metadata to be set on all objects in the deployment. Default: - No user metadata is set
|
|
680
680
|
:param output_object_keys: If set to false, the custom resource will not send back the SourceObjectKeys. This is useful when you are facing the error ``Response object is too long`` See https://github.com/aws/aws-cdk/issues/28579 Default: true
|
|
681
|
-
:param prune: If this is set to false, files in the destination bucket that do not exist in the asset, will NOT be deleted during deployment (create/update). Default: true
|
|
681
|
+
:param prune: By default, files in the destination bucket that don't exist in the source will be deleted when the BucketDeployment resource is created or updated. If this is set to false, files in the destination bucket that do not exist in the asset, will NOT be deleted during deployment (create/update). Default: true
|
|
682
682
|
:param retain_on_delete: If this is set to "false", the destination files will be deleted when the resource is deleted or the destination is updated. NOTICE: Configuring this to "false" might have operational implications. Please visit to the package documentation referred below to make sure you fully understand those implications. Default: true - when resource is deleted/updated, files are retained
|
|
683
683
|
:param role: Execution role associated with this function. Default: - A role is automatically created
|
|
684
684
|
:param server_side_encryption: System-defined x-amz-server-side-encryption metadata to be set on all objects in the deployment. Default: - Server side encryption is not used.
|
|
@@ -880,7 +880,7 @@ class BucketDeploymentProps:
|
|
|
880
880
|
:param content_encoding: System-defined content-encoding metadata to be set on all objects in the deployment. Default: - Not set.
|
|
881
881
|
:param content_language: System-defined content-language metadata to be set on all objects in the deployment. Default: - Not set.
|
|
882
882
|
:param content_type: System-defined content-type metadata to be set on all objects in the deployment. Default: - Not set.
|
|
883
|
-
:param destination_key_prefix: Key prefix in the destination bucket. Must be <=104 characters Default: "/" (unzip to root of the destination bucket)
|
|
883
|
+
:param destination_key_prefix: Key prefix in the destination bucket. Must be <=104 characters. If it's set with prune: true, it will only prune files with the prefix. We recommend to always configure the ``destinationKeyPrefix`` property. This will prevent the deployment from accidentally deleting data that wasn't uploaded by it. Default: "/" (unzip to root of the destination bucket)
|
|
884
884
|
:param distribution: The CloudFront distribution using the destination bucket as an origin. Files in the distribution's edge caches will be invalidated after files are uploaded to the destination bucket. Default: - No invalidation occurs
|
|
885
885
|
:param distribution_paths: The file paths to invalidate in the CloudFront distribution. Default: - All files under the destination bucket key prefix will be invalidated.
|
|
886
886
|
:param ephemeral_storage_size: The size of the AWS Lambda function’s /tmp directory in MiB. Default: 512 MiB
|
|
@@ -893,7 +893,7 @@ class BucketDeploymentProps:
|
|
|
893
893
|
:param memory_limit: The amount of memory (in MiB) to allocate to the AWS Lambda function which replicates the files from the CDK bucket to the destination bucket. If you are deploying large files, you will need to increase this number accordingly. Default: 128
|
|
894
894
|
:param metadata: User-defined object metadata to be set on all objects in the deployment. Default: - No user metadata is set
|
|
895
895
|
:param output_object_keys: If set to false, the custom resource will not send back the SourceObjectKeys. This is useful when you are facing the error ``Response object is too long`` See https://github.com/aws/aws-cdk/issues/28579 Default: true
|
|
896
|
-
:param prune: If this is set to false, files in the destination bucket that do not exist in the asset, will NOT be deleted during deployment (create/update). Default: true
|
|
896
|
+
:param prune: By default, files in the destination bucket that don't exist in the source will be deleted when the BucketDeployment resource is created or updated. If this is set to false, files in the destination bucket that do not exist in the asset, will NOT be deleted during deployment (create/update). Default: true
|
|
897
897
|
:param retain_on_delete: If this is set to "false", the destination files will be deleted when the resource is deleted or the destination is updated. NOTICE: Configuring this to "false" might have operational implications. Please visit to the package documentation referred below to make sure you fully understand those implications. Default: true - when resource is deleted/updated, files are retained
|
|
898
898
|
:param role: Execution role associated with this function. Default: - A role is automatically created
|
|
899
899
|
:param server_side_encryption: System-defined x-amz-server-side-encryption metadata to be set on all objects in the deployment. Default: - Server side encryption is not used.
|
|
@@ -1111,9 +1111,12 @@ class BucketDeploymentProps:
|
|
|
1111
1111
|
|
|
1112
1112
|
@builtins.property
|
|
1113
1113
|
def destination_key_prefix(self) -> typing.Optional[builtins.str]:
|
|
1114
|
-
'''Key prefix in the destination bucket.
|
|
1114
|
+
'''Key prefix in the destination bucket. Must be <=104 characters.
|
|
1115
1115
|
|
|
1116
|
-
|
|
1116
|
+
If it's set with prune: true, it will only prune files with the prefix.
|
|
1117
|
+
|
|
1118
|
+
We recommend to always configure the ``destinationKeyPrefix`` property. This will prevent the deployment
|
|
1119
|
+
from accidentally deleting data that wasn't uploaded by it.
|
|
1117
1120
|
|
|
1118
1121
|
:default: "/" (unzip to root of the destination bucket)
|
|
1119
1122
|
'''
|
|
@@ -1265,7 +1268,10 @@ class BucketDeploymentProps:
|
|
|
1265
1268
|
|
|
1266
1269
|
@builtins.property
|
|
1267
1270
|
def prune(self) -> typing.Optional[builtins.bool]:
|
|
1268
|
-
'''
|
|
1271
|
+
'''By default, files in the destination bucket that don't exist in the source will be deleted when the BucketDeployment resource is created or updated.
|
|
1272
|
+
|
|
1273
|
+
If this is set to false, files in the destination bucket that
|
|
1274
|
+
do not exist in the asset, will NOT be deleted during deployment (create/update).
|
|
1269
1275
|
|
|
1270
1276
|
:default: true
|
|
1271
1277
|
|
|
@@ -6272,6 +6272,7 @@ class CfnDomain(
|
|
|
6272
6272
|
enable_docker_access="enableDockerAccess",
|
|
6273
6273
|
vpc_only_trusted_accounts=["vpcOnlyTrustedAccounts"]
|
|
6274
6274
|
),
|
|
6275
|
+
execution_role_identity_config="executionRoleIdentityConfig",
|
|
6275
6276
|
r_studio_server_pro_domain_settings=sagemaker.CfnDomain.RStudioServerProDomainSettingsProperty(
|
|
6276
6277
|
domain_execution_role_arn="domainExecutionRoleArn",
|
|
6277
6278
|
|
|
@@ -6288,6 +6289,7 @@ class CfnDomain(
|
|
|
6288
6289
|
security_group_ids=["securityGroupIds"]
|
|
6289
6290
|
),
|
|
6290
6291
|
kms_key_id="kmsKeyId",
|
|
6292
|
+
tag_propagation="tagPropagation",
|
|
6291
6293
|
tags=[CfnTag(
|
|
6292
6294
|
key="key",
|
|
6293
6295
|
value="value"
|
|
@@ -6310,6 +6312,7 @@ class CfnDomain(
|
|
|
6310
6312
|
default_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.DefaultSpaceSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6311
6313
|
domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.DomainSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6312
6314
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
6315
|
+
tag_propagation: typing.Optional[builtins.str] = None,
|
|
6313
6316
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6314
6317
|
) -> None:
|
|
6315
6318
|
'''
|
|
@@ -6322,9 +6325,10 @@ class CfnDomain(
|
|
|
6322
6325
|
:param vpc_id: The ID of the Amazon Virtual Private Cloud (Amazon VPC) that Studio uses for communication. *Length Constraints* : Maximum length of 32. *Pattern* : ``[-0-9a-zA-Z]+``
|
|
6323
6326
|
:param app_network_access_type: Specifies the VPC used for non-EFS traffic. The default value is ``PublicInternetOnly`` . - ``PublicInternetOnly`` - Non-EFS traffic is through a VPC managed by Amazon SageMaker , which allows direct internet access - ``VpcOnly`` - All Studio traffic is through the specified VPC and subnets *Valid Values* : ``PublicInternetOnly | VpcOnly``
|
|
6324
6327
|
:param app_security_group_management: The entity that creates and manages the required security groups for inter-app communication in ``VpcOnly`` mode. Required when ``CreateDomain.AppNetworkAccessType`` is ``VpcOnly`` and ``DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`` is provided. If setting up the domain for use with RStudio, this value must be set to ``Service`` . *Allowed Values* : ``Service`` | ``Customer``
|
|
6325
|
-
:param default_space_settings:
|
|
6328
|
+
:param default_space_settings: The default settings for shared spaces that users create in the domain. SageMaker applies these settings only to shared spaces. It doesn't apply them to private spaces.
|
|
6326
6329
|
:param domain_settings: A collection of settings that apply to the ``SageMaker Domain`` . These settings are specified through the ``CreateDomain`` API call.
|
|
6327
6330
|
:param kms_key_id: SageMaker uses AWS KMS to encrypt the EFS volume attached to the Domain with an AWS managed customer master key (CMK) by default. For more control, specify a customer managed CMK. *Length Constraints* : Maximum length of 2048. *Pattern* : ``.*``
|
|
6331
|
+
:param tag_propagation: Indicates whether the tags added to Domain, User Profile and Space entity is propagated to all SageMaker resources.
|
|
6328
6332
|
:param tags: Tags to associated with the Domain. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API. Tags that you specify for the Domain are also added to all apps that are launched in the Domain. *Array members* : Minimum number of 0 items. Maximum number of 50 items.
|
|
6329
6333
|
'''
|
|
6330
6334
|
if __debug__:
|
|
@@ -6342,6 +6346,7 @@ class CfnDomain(
|
|
|
6342
6346
|
default_space_settings=default_space_settings,
|
|
6343
6347
|
domain_settings=domain_settings,
|
|
6344
6348
|
kms_key_id=kms_key_id,
|
|
6349
|
+
tag_propagation=tag_propagation,
|
|
6345
6350
|
tags=tags,
|
|
6346
6351
|
)
|
|
6347
6352
|
|
|
@@ -6560,7 +6565,7 @@ class CfnDomain(
|
|
|
6560
6565
|
def default_space_settings(
|
|
6561
6566
|
self,
|
|
6562
6567
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.DefaultSpaceSettingsProperty"]]:
|
|
6563
|
-
'''
|
|
6568
|
+
'''The default settings for shared spaces that users create in the domain.'''
|
|
6564
6569
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.DefaultSpaceSettingsProperty"]], jsii.get(self, "defaultSpaceSettings"))
|
|
6565
6570
|
|
|
6566
6571
|
@default_space_settings.setter
|
|
@@ -6604,6 +6609,19 @@ class CfnDomain(
|
|
|
6604
6609
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6605
6610
|
jsii.set(self, "kmsKeyId", value) # pyright: ignore[reportArgumentType]
|
|
6606
6611
|
|
|
6612
|
+
@builtins.property
|
|
6613
|
+
@jsii.member(jsii_name="tagPropagation")
|
|
6614
|
+
def tag_propagation(self) -> typing.Optional[builtins.str]:
|
|
6615
|
+
'''Indicates whether the tags added to Domain, User Profile and Space entity is propagated to all SageMaker resources.'''
|
|
6616
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "tagPropagation"))
|
|
6617
|
+
|
|
6618
|
+
@tag_propagation.setter
|
|
6619
|
+
def tag_propagation(self, value: typing.Optional[builtins.str]) -> None:
|
|
6620
|
+
if __debug__:
|
|
6621
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c3d58c631c2c753ff6694e786e5b7271c0e621cef1413bccab572fda47a21ab3)
|
|
6622
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6623
|
+
jsii.set(self, "tagPropagation", value) # pyright: ignore[reportArgumentType]
|
|
6624
|
+
|
|
6607
6625
|
@builtins.property
|
|
6608
6626
|
@jsii.member(jsii_name="tagsRaw")
|
|
6609
6627
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -7189,7 +7207,9 @@ class CfnDomain(
|
|
|
7189
7207
|
security_groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7190
7208
|
space_storage_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.DefaultSpaceStorageSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7191
7209
|
) -> None:
|
|
7192
|
-
'''
|
|
7210
|
+
'''The default settings for shared spaces that users create in the domain.
|
|
7211
|
+
|
|
7212
|
+
SageMaker applies these settings only to shared spaces. It doesn't apply them to private spaces.
|
|
7193
7213
|
|
|
7194
7214
|
:param execution_role: The ARN of the execution role for the space.
|
|
7195
7215
|
:param custom_file_system_configs: The settings for assigning a custom file system to a domain. Permitted users can access this file system in Amazon SageMaker Studio.
|
|
@@ -7551,6 +7571,7 @@ class CfnDomain(
|
|
|
7551
7571
|
jsii_struct_bases=[],
|
|
7552
7572
|
name_mapping={
|
|
7553
7573
|
"docker_settings": "dockerSettings",
|
|
7574
|
+
"execution_role_identity_config": "executionRoleIdentityConfig",
|
|
7554
7575
|
"r_studio_server_pro_domain_settings": "rStudioServerProDomainSettings",
|
|
7555
7576
|
"security_group_ids": "securityGroupIds",
|
|
7556
7577
|
},
|
|
@@ -7560,6 +7581,7 @@ class CfnDomain(
|
|
|
7560
7581
|
self,
|
|
7561
7582
|
*,
|
|
7562
7583
|
docker_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.DockerSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7584
|
+
execution_role_identity_config: typing.Optional[builtins.str] = None,
|
|
7563
7585
|
r_studio_server_pro_domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.RStudioServerProDomainSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7564
7586
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7565
7587
|
) -> None:
|
|
@@ -7568,6 +7590,7 @@ class CfnDomain(
|
|
|
7568
7590
|
These settings are specified through the ``CreateDomain`` API call.
|
|
7569
7591
|
|
|
7570
7592
|
:param docker_settings: A collection of settings that configure the domain's Docker interaction.
|
|
7593
|
+
:param execution_role_identity_config: The configuration for attaching a SageMaker user profile name to the execution role as a `sts:SourceIdentity key <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html>`_ .
|
|
7571
7594
|
:param r_studio_server_pro_domain_settings: A collection of settings that configure the ``RStudioServerPro`` Domain-level app.
|
|
7572
7595
|
:param security_group_ids: The security groups for the Amazon Virtual Private Cloud that the ``Domain`` uses for communication between Domain-level apps and user apps.
|
|
7573
7596
|
|
|
@@ -7585,6 +7608,7 @@ class CfnDomain(
|
|
|
7585
7608
|
enable_docker_access="enableDockerAccess",
|
|
7586
7609
|
vpc_only_trusted_accounts=["vpcOnlyTrustedAccounts"]
|
|
7587
7610
|
),
|
|
7611
|
+
execution_role_identity_config="executionRoleIdentityConfig",
|
|
7588
7612
|
r_studio_server_pro_domain_settings=sagemaker.CfnDomain.RStudioServerProDomainSettingsProperty(
|
|
7589
7613
|
domain_execution_role_arn="domainExecutionRoleArn",
|
|
7590
7614
|
|
|
@@ -7604,11 +7628,14 @@ class CfnDomain(
|
|
|
7604
7628
|
if __debug__:
|
|
7605
7629
|
type_hints = typing.get_type_hints(_typecheckingstub__b23323cc301476d59d77a279da88bfc3d14a3c21fb8709a0ecc6db6074a56cf9)
|
|
7606
7630
|
check_type(argname="argument docker_settings", value=docker_settings, expected_type=type_hints["docker_settings"])
|
|
7631
|
+
check_type(argname="argument execution_role_identity_config", value=execution_role_identity_config, expected_type=type_hints["execution_role_identity_config"])
|
|
7607
7632
|
check_type(argname="argument r_studio_server_pro_domain_settings", value=r_studio_server_pro_domain_settings, expected_type=type_hints["r_studio_server_pro_domain_settings"])
|
|
7608
7633
|
check_type(argname="argument security_group_ids", value=security_group_ids, expected_type=type_hints["security_group_ids"])
|
|
7609
7634
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
7610
7635
|
if docker_settings is not None:
|
|
7611
7636
|
self._values["docker_settings"] = docker_settings
|
|
7637
|
+
if execution_role_identity_config is not None:
|
|
7638
|
+
self._values["execution_role_identity_config"] = execution_role_identity_config
|
|
7612
7639
|
if r_studio_server_pro_domain_settings is not None:
|
|
7613
7640
|
self._values["r_studio_server_pro_domain_settings"] = r_studio_server_pro_domain_settings
|
|
7614
7641
|
if security_group_ids is not None:
|
|
@@ -7625,6 +7652,15 @@ class CfnDomain(
|
|
|
7625
7652
|
result = self._values.get("docker_settings")
|
|
7626
7653
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.DockerSettingsProperty"]], result)
|
|
7627
7654
|
|
|
7655
|
+
@builtins.property
|
|
7656
|
+
def execution_role_identity_config(self) -> typing.Optional[builtins.str]:
|
|
7657
|
+
'''The configuration for attaching a SageMaker user profile name to the execution role as a `sts:SourceIdentity key <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html>`_ .
|
|
7658
|
+
|
|
7659
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-domainsettings.html#cfn-sagemaker-domain-domainsettings-executionroleidentityconfig
|
|
7660
|
+
'''
|
|
7661
|
+
result = self._values.get("execution_role_identity_config")
|
|
7662
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
7663
|
+
|
|
7628
7664
|
@builtins.property
|
|
7629
7665
|
def r_studio_server_pro_domain_settings(
|
|
7630
7666
|
self,
|
|
@@ -8788,19 +8824,19 @@ class CfnDomain(
|
|
|
8788
8824
|
|
|
8789
8825
|
``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`` .
|
|
8790
8826
|
|
|
8791
|
-
:param execution_role: The execution role for the user.
|
|
8792
|
-
:param code_editor_app_settings: The Code Editor application settings.
|
|
8793
|
-
: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 Studio.
|
|
8794
|
-
:param custom_posix_user_config: Details about the POSIX identity that is used for file system operations.
|
|
8827
|
+
: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.
|
|
8828
|
+
: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.
|
|
8829
|
+
: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 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.
|
|
8830
|
+
: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.
|
|
8795
8831
|
:param default_landing_uri: The default experience that the user is directed to when accessing the domain. The supported values are:. - ``studio::`` : Indicates that Studio is the default experience. This value can only be passed if ``StudioWebPortal`` is set to ``ENABLED`` . - ``app:JupyterServer:`` : Indicates that Studio Classic is the default experience.
|
|
8796
|
-
:param jupyter_lab_app_settings: The settings for the JupyterLab application.
|
|
8832
|
+
:param jupyter_lab_app_settings: The settings for the JupyterLab application. SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
8797
8833
|
:param jupyter_server_app_settings: The Jupyter server's app settings.
|
|
8798
8834
|
:param kernel_gateway_app_settings: The kernel gateway app settings.
|
|
8799
8835
|
:param r_session_app_settings: A collection of settings that configure the ``RSessionGateway`` app.
|
|
8800
8836
|
:param r_studio_server_pro_app_settings: A collection of settings that configure user interaction with the ``RStudioServerPro`` app.
|
|
8801
|
-
:param security_groups: The security groups for the Amazon Virtual Private Cloud (VPC) that the domain uses for communication. Optional when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``PublicInternetOnly`` . Required when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``VpcOnly`` , unless specified as part of the ``DefaultUserSettings`` for the domain. Amazon SageMaker adds a security group to allow NFS traffic from Amazon SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the maximum number shown.
|
|
8837
|
+
:param security_groups: The security groups for the Amazon Virtual Private Cloud (VPC) that the domain uses for communication. Optional when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``PublicInternetOnly`` . Required when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``VpcOnly`` , unless specified as part of the ``DefaultUserSettings`` for the domain. Amazon SageMaker adds a security group to allow NFS traffic from Amazon SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the maximum number shown. SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
8802
8838
|
:param sharing_settings: Specifies options for sharing Amazon SageMaker Studio notebooks.
|
|
8803
|
-
:param space_storage_settings: The storage settings for a space.
|
|
8839
|
+
:param space_storage_settings: The storage settings for a space. SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
8804
8840
|
:param studio_web_portal: Whether the user can access Studio. If this value is set to ``DISABLED`` , the user cannot access Studio, even if that is the default experience for the domain.
|
|
8805
8841
|
:param studio_web_portal_settings: Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
|
|
8806
8842
|
|
|
@@ -8997,6 +9033,8 @@ class CfnDomain(
|
|
|
8997
9033
|
def execution_role(self) -> builtins.str:
|
|
8998
9034
|
'''The execution role for the user.
|
|
8999
9035
|
|
|
9036
|
+
SageMaker applies this setting only to private spaces that the user creates in the domain. SageMaker doesn't apply this setting to shared spaces.
|
|
9037
|
+
|
|
9000
9038
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html#cfn-sagemaker-domain-usersettings-executionrole
|
|
9001
9039
|
'''
|
|
9002
9040
|
result = self._values.get("execution_role")
|
|
@@ -9009,6 +9047,8 @@ class CfnDomain(
|
|
|
9009
9047
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.CodeEditorAppSettingsProperty"]]:
|
|
9010
9048
|
'''The Code Editor application settings.
|
|
9011
9049
|
|
|
9050
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
9051
|
+
|
|
9012
9052
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html#cfn-sagemaker-domain-usersettings-codeeditorappsettings
|
|
9013
9053
|
'''
|
|
9014
9054
|
result = self._values.get("code_editor_app_settings")
|
|
@@ -9022,6 +9062,8 @@ class CfnDomain(
|
|
|
9022
9062
|
|
|
9023
9063
|
Permitted users can access this file system in Amazon SageMaker Studio.
|
|
9024
9064
|
|
|
9065
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
9066
|
+
|
|
9025
9067
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html#cfn-sagemaker-domain-usersettings-customfilesystemconfigs
|
|
9026
9068
|
'''
|
|
9027
9069
|
result = self._values.get("custom_file_system_configs")
|
|
@@ -9033,6 +9075,8 @@ class CfnDomain(
|
|
|
9033
9075
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.CustomPosixUserConfigProperty"]]:
|
|
9034
9076
|
'''Details about the POSIX identity that is used for file system operations.
|
|
9035
9077
|
|
|
9078
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
9079
|
+
|
|
9036
9080
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html#cfn-sagemaker-domain-usersettings-customposixuserconfig
|
|
9037
9081
|
'''
|
|
9038
9082
|
result = self._values.get("custom_posix_user_config")
|
|
@@ -9056,6 +9100,8 @@ class CfnDomain(
|
|
|
9056
9100
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.JupyterLabAppSettingsProperty"]]:
|
|
9057
9101
|
'''The settings for the JupyterLab application.
|
|
9058
9102
|
|
|
9103
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
9104
|
+
|
|
9059
9105
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html#cfn-sagemaker-domain-usersettings-jupyterlabappsettings
|
|
9060
9106
|
'''
|
|
9061
9107
|
result = self._values.get("jupyter_lab_app_settings")
|
|
@@ -9115,6 +9161,8 @@ class CfnDomain(
|
|
|
9115
9161
|
|
|
9116
9162
|
Amazon SageMaker adds a security group to allow NFS traffic from Amazon SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the maximum number shown.
|
|
9117
9163
|
|
|
9164
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
9165
|
+
|
|
9118
9166
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html#cfn-sagemaker-domain-usersettings-securitygroups
|
|
9119
9167
|
'''
|
|
9120
9168
|
result = self._values.get("security_groups")
|
|
@@ -9137,6 +9185,8 @@ class CfnDomain(
|
|
|
9137
9185
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.DefaultSpaceStorageSettingsProperty"]]:
|
|
9138
9186
|
'''The storage settings for a space.
|
|
9139
9187
|
|
|
9188
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
9189
|
+
|
|
9140
9190
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html#cfn-sagemaker-domain-usersettings-spacestoragesettings
|
|
9141
9191
|
'''
|
|
9142
9192
|
result = self._values.get("space_storage_settings")
|
|
@@ -9192,6 +9242,7 @@ class CfnDomain(
|
|
|
9192
9242
|
"default_space_settings": "defaultSpaceSettings",
|
|
9193
9243
|
"domain_settings": "domainSettings",
|
|
9194
9244
|
"kms_key_id": "kmsKeyId",
|
|
9245
|
+
"tag_propagation": "tagPropagation",
|
|
9195
9246
|
"tags": "tags",
|
|
9196
9247
|
},
|
|
9197
9248
|
)
|
|
@@ -9209,6 +9260,7 @@ class CfnDomainProps:
|
|
|
9209
9260
|
default_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DefaultSpaceSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9210
9261
|
domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DomainSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9211
9262
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
9263
|
+
tag_propagation: typing.Optional[builtins.str] = None,
|
|
9212
9264
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9213
9265
|
) -> None:
|
|
9214
9266
|
'''Properties for defining a ``CfnDomain``.
|
|
@@ -9220,9 +9272,10 @@ class CfnDomainProps:
|
|
|
9220
9272
|
:param vpc_id: The ID of the Amazon Virtual Private Cloud (Amazon VPC) that Studio uses for communication. *Length Constraints* : Maximum length of 32. *Pattern* : ``[-0-9a-zA-Z]+``
|
|
9221
9273
|
:param app_network_access_type: Specifies the VPC used for non-EFS traffic. The default value is ``PublicInternetOnly`` . - ``PublicInternetOnly`` - Non-EFS traffic is through a VPC managed by Amazon SageMaker , which allows direct internet access - ``VpcOnly`` - All Studio traffic is through the specified VPC and subnets *Valid Values* : ``PublicInternetOnly | VpcOnly``
|
|
9222
9274
|
:param app_security_group_management: The entity that creates and manages the required security groups for inter-app communication in ``VpcOnly`` mode. Required when ``CreateDomain.AppNetworkAccessType`` is ``VpcOnly`` and ``DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`` is provided. If setting up the domain for use with RStudio, this value must be set to ``Service`` . *Allowed Values* : ``Service`` | ``Customer``
|
|
9223
|
-
:param default_space_settings:
|
|
9275
|
+
:param default_space_settings: The default settings for shared spaces that users create in the domain. SageMaker applies these settings only to shared spaces. It doesn't apply them to private spaces.
|
|
9224
9276
|
:param domain_settings: A collection of settings that apply to the ``SageMaker Domain`` . These settings are specified through the ``CreateDomain`` API call.
|
|
9225
9277
|
:param kms_key_id: SageMaker uses AWS KMS to encrypt the EFS volume attached to the Domain with an AWS managed customer master key (CMK) by default. For more control, specify a customer managed CMK. *Length Constraints* : Maximum length of 2048. *Pattern* : ``.*``
|
|
9278
|
+
:param tag_propagation: Indicates whether the tags added to Domain, User Profile and Space entity is propagated to all SageMaker resources.
|
|
9226
9279
|
:param tags: Tags to associated with the Domain. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API. Tags that you specify for the Domain are also added to all apps that are launched in the Domain. *Array members* : Minimum number of 0 items. Maximum number of 50 items.
|
|
9227
9280
|
|
|
9228
9281
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-domain.html
|
|
@@ -9454,6 +9507,7 @@ class CfnDomainProps:
|
|
|
9454
9507
|
enable_docker_access="enableDockerAccess",
|
|
9455
9508
|
vpc_only_trusted_accounts=["vpcOnlyTrustedAccounts"]
|
|
9456
9509
|
),
|
|
9510
|
+
execution_role_identity_config="executionRoleIdentityConfig",
|
|
9457
9511
|
r_studio_server_pro_domain_settings=sagemaker.CfnDomain.RStudioServerProDomainSettingsProperty(
|
|
9458
9512
|
domain_execution_role_arn="domainExecutionRoleArn",
|
|
9459
9513
|
|
|
@@ -9470,6 +9524,7 @@ class CfnDomainProps:
|
|
|
9470
9524
|
security_group_ids=["securityGroupIds"]
|
|
9471
9525
|
),
|
|
9472
9526
|
kms_key_id="kmsKeyId",
|
|
9527
|
+
tag_propagation="tagPropagation",
|
|
9473
9528
|
tags=[CfnTag(
|
|
9474
9529
|
key="key",
|
|
9475
9530
|
value="value"
|
|
@@ -9488,6 +9543,7 @@ class CfnDomainProps:
|
|
|
9488
9543
|
check_type(argname="argument default_space_settings", value=default_space_settings, expected_type=type_hints["default_space_settings"])
|
|
9489
9544
|
check_type(argname="argument domain_settings", value=domain_settings, expected_type=type_hints["domain_settings"])
|
|
9490
9545
|
check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
|
|
9546
|
+
check_type(argname="argument tag_propagation", value=tag_propagation, expected_type=type_hints["tag_propagation"])
|
|
9491
9547
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
9492
9548
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
9493
9549
|
"auth_mode": auth_mode,
|
|
@@ -9506,6 +9562,8 @@ class CfnDomainProps:
|
|
|
9506
9562
|
self._values["domain_settings"] = domain_settings
|
|
9507
9563
|
if kms_key_id is not None:
|
|
9508
9564
|
self._values["kms_key_id"] = kms_key_id
|
|
9565
|
+
if tag_propagation is not None:
|
|
9566
|
+
self._values["tag_propagation"] = tag_propagation
|
|
9509
9567
|
if tags is not None:
|
|
9510
9568
|
self._values["tags"] = tags
|
|
9511
9569
|
|
|
@@ -9604,7 +9662,9 @@ class CfnDomainProps:
|
|
|
9604
9662
|
def default_space_settings(
|
|
9605
9663
|
self,
|
|
9606
9664
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDomain.DefaultSpaceSettingsProperty]]:
|
|
9607
|
-
'''
|
|
9665
|
+
'''The default settings for shared spaces that users create in the domain.
|
|
9666
|
+
|
|
9667
|
+
SageMaker applies these settings only to shared spaces. It doesn't apply them to private spaces.
|
|
9608
9668
|
|
|
9609
9669
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-domain.html#cfn-sagemaker-domain-defaultspacesettings
|
|
9610
9670
|
'''
|
|
@@ -9639,6 +9699,15 @@ class CfnDomainProps:
|
|
|
9639
9699
|
result = self._values.get("kms_key_id")
|
|
9640
9700
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
9641
9701
|
|
|
9702
|
+
@builtins.property
|
|
9703
|
+
def tag_propagation(self) -> typing.Optional[builtins.str]:
|
|
9704
|
+
'''Indicates whether the tags added to Domain, User Profile and Space entity is propagated to all SageMaker resources.
|
|
9705
|
+
|
|
9706
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-domain.html#cfn-sagemaker-domain-tagpropagation
|
|
9707
|
+
'''
|
|
9708
|
+
result = self._values.get("tag_propagation")
|
|
9709
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
9710
|
+
|
|
9642
9711
|
@builtins.property
|
|
9643
9712
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
9644
9713
|
'''Tags to associated with the Domain.
|
|
@@ -9814,6 +9883,15 @@ class CfnEndpoint(
|
|
|
9814
9883
|
'''The CloudFormation resource type name for this resource class.'''
|
|
9815
9884
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
9816
9885
|
|
|
9886
|
+
@builtins.property
|
|
9887
|
+
@jsii.member(jsii_name="attrEndpointArn")
|
|
9888
|
+
def attr_endpoint_arn(self) -> builtins.str:
|
|
9889
|
+
'''The Amazon Resource Name (ARN) of the endpoint.
|
|
9890
|
+
|
|
9891
|
+
:cloudformationAttribute: EndpointArn
|
|
9892
|
+
'''
|
|
9893
|
+
return typing.cast(builtins.str, jsii.get(self, "attrEndpointArn"))
|
|
9894
|
+
|
|
9817
9895
|
@builtins.property
|
|
9818
9896
|
@jsii.member(jsii_name="attrEndpointName")
|
|
9819
9897
|
def attr_endpoint_name(self) -> builtins.str:
|
|
@@ -44393,9 +44471,9 @@ class CfnStudioLifecycleConfig(
|
|
|
44393
44471
|
:param scope: Scope in which this resource is defined.
|
|
44394
44472
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
44395
44473
|
:param studio_lifecycle_config_app_type: The App type to which the Lifecycle Configuration is attached.
|
|
44396
|
-
:param studio_lifecycle_config_content: The content of your Amazon SageMaker Studio Lifecycle Configuration script.
|
|
44474
|
+
:param studio_lifecycle_config_content: The content of your Amazon SageMaker Studio Lifecycle Configuration script. This content must be base64 encoded.
|
|
44397
44475
|
:param studio_lifecycle_config_name: The name of the Amazon SageMaker Studio Lifecycle Configuration.
|
|
44398
|
-
:param tags: Tags to be associated with the Lifecycle Configuration.
|
|
44476
|
+
:param tags: Tags to be associated with the Lifecycle Configuration. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API.
|
|
44399
44477
|
'''
|
|
44400
44478
|
if __debug__:
|
|
44401
44479
|
type_hints = typing.get_type_hints(_typecheckingstub__781a43111dd6adef34feca5cebbdb6b17f5e2425b368d8e007d51d833843916c)
|
|
@@ -44535,9 +44613,9 @@ class CfnStudioLifecycleConfigProps:
|
|
|
44535
44613
|
'''Properties for defining a ``CfnStudioLifecycleConfig``.
|
|
44536
44614
|
|
|
44537
44615
|
:param studio_lifecycle_config_app_type: The App type to which the Lifecycle Configuration is attached.
|
|
44538
|
-
:param studio_lifecycle_config_content: The content of your Amazon SageMaker Studio Lifecycle Configuration script.
|
|
44616
|
+
:param studio_lifecycle_config_content: The content of your Amazon SageMaker Studio Lifecycle Configuration script. This content must be base64 encoded.
|
|
44539
44617
|
:param studio_lifecycle_config_name: The name of the Amazon SageMaker Studio Lifecycle Configuration.
|
|
44540
|
-
:param tags: Tags to be associated with the Lifecycle Configuration.
|
|
44618
|
+
:param tags: Tags to be associated with the Lifecycle Configuration. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API.
|
|
44541
44619
|
|
|
44542
44620
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-studiolifecycleconfig.html
|
|
44543
44621
|
:exampleMetadata: fixture=_generated
|
|
@@ -44588,6 +44666,8 @@ class CfnStudioLifecycleConfigProps:
|
|
|
44588
44666
|
def studio_lifecycle_config_content(self) -> builtins.str:
|
|
44589
44667
|
'''The content of your Amazon SageMaker Studio Lifecycle Configuration script.
|
|
44590
44668
|
|
|
44669
|
+
This content must be base64 encoded.
|
|
44670
|
+
|
|
44591
44671
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-studiolifecycleconfig.html#cfn-sagemaker-studiolifecycleconfig-studiolifecycleconfigcontent
|
|
44592
44672
|
'''
|
|
44593
44673
|
result = self._values.get("studio_lifecycle_config_content")
|
|
@@ -44608,6 +44688,8 @@ class CfnStudioLifecycleConfigProps:
|
|
|
44608
44688
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
44609
44689
|
'''Tags to be associated with the Lifecycle Configuration.
|
|
44610
44690
|
|
|
44691
|
+
Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API.
|
|
44692
|
+
|
|
44611
44693
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-studiolifecycleconfig.html#cfn-sagemaker-studiolifecycleconfig-tags
|
|
44612
44694
|
'''
|
|
44613
44695
|
result = self._values.get("tags")
|
|
@@ -46480,18 +46562,18 @@ class CfnUserProfile(
|
|
|
46480
46562
|
|
|
46481
46563
|
``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`` .
|
|
46482
46564
|
|
|
46483
|
-
:param code_editor_app_settings: The Code Editor application settings.
|
|
46484
|
-
: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 Studio.
|
|
46485
|
-
:param custom_posix_user_config: Details about the POSIX identity that is used for file system operations.
|
|
46565
|
+
: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.
|
|
46566
|
+
: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 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.
|
|
46567
|
+
: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.
|
|
46486
46568
|
:param default_landing_uri: The default experience that the user is directed to when accessing the domain. The supported values are:. - ``studio::`` : Indicates that Studio is the default experience. This value can only be passed if ``StudioWebPortal`` is set to ``ENABLED`` . - ``app:JupyterServer:`` : Indicates that Studio Classic is the default experience.
|
|
46487
|
-
:param execution_role: The execution role for the user.
|
|
46488
|
-
:param jupyter_lab_app_settings: The settings for the JupyterLab application.
|
|
46569
|
+
: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.
|
|
46570
|
+
:param jupyter_lab_app_settings: The settings for the JupyterLab application. SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
46489
46571
|
:param jupyter_server_app_settings: The Jupyter server's app settings.
|
|
46490
46572
|
:param kernel_gateway_app_settings: The kernel gateway app settings.
|
|
46491
46573
|
:param r_studio_server_pro_app_settings: A collection of settings that configure user interaction with the ``RStudioServerPro`` app.
|
|
46492
|
-
:param security_groups: The security groups for the Amazon Virtual Private Cloud (VPC) that the domain uses for communication. Optional when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``PublicInternetOnly`` . Required when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``VpcOnly`` , unless specified as part of the ``DefaultUserSettings`` for the domain. Amazon SageMaker adds a security group to allow NFS traffic from Amazon SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the maximum number shown.
|
|
46574
|
+
:param security_groups: The security groups for the Amazon Virtual Private Cloud (VPC) that the domain uses for communication. Optional when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``PublicInternetOnly`` . Required when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``VpcOnly`` , unless specified as part of the ``DefaultUserSettings`` for the domain. Amazon SageMaker adds a security group to allow NFS traffic from Amazon SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the maximum number shown. SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
46493
46575
|
:param sharing_settings: Specifies options for sharing Amazon SageMaker Studio notebooks.
|
|
46494
|
-
:param space_storage_settings: The storage settings for a space.
|
|
46576
|
+
:param space_storage_settings: The storage settings for a space. SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
46495
46577
|
:param studio_web_portal: Whether the user can access Studio. If this value is set to ``DISABLED`` , the user cannot access Studio, even if that is the default experience for the domain.
|
|
46496
46578
|
:param studio_web_portal_settings: Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
|
|
46497
46579
|
|
|
@@ -46670,6 +46752,8 @@ class CfnUserProfile(
|
|
|
46670
46752
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.CodeEditorAppSettingsProperty"]]:
|
|
46671
46753
|
'''The Code Editor application settings.
|
|
46672
46754
|
|
|
46755
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
46756
|
+
|
|
46673
46757
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html#cfn-sagemaker-userprofile-usersettings-codeeditorappsettings
|
|
46674
46758
|
'''
|
|
46675
46759
|
result = self._values.get("code_editor_app_settings")
|
|
@@ -46683,6 +46767,8 @@ class CfnUserProfile(
|
|
|
46683
46767
|
|
|
46684
46768
|
Permitted users can access this file system in Amazon SageMaker Studio.
|
|
46685
46769
|
|
|
46770
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
46771
|
+
|
|
46686
46772
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html#cfn-sagemaker-userprofile-usersettings-customfilesystemconfigs
|
|
46687
46773
|
'''
|
|
46688
46774
|
result = self._values.get("custom_file_system_configs")
|
|
@@ -46694,6 +46780,8 @@ class CfnUserProfile(
|
|
|
46694
46780
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.CustomPosixUserConfigProperty"]]:
|
|
46695
46781
|
'''Details about the POSIX identity that is used for file system operations.
|
|
46696
46782
|
|
|
46783
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
46784
|
+
|
|
46697
46785
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html#cfn-sagemaker-userprofile-usersettings-customposixuserconfig
|
|
46698
46786
|
'''
|
|
46699
46787
|
result = self._values.get("custom_posix_user_config")
|
|
@@ -46715,6 +46803,8 @@ class CfnUserProfile(
|
|
|
46715
46803
|
def execution_role(self) -> typing.Optional[builtins.str]:
|
|
46716
46804
|
'''The execution role for the user.
|
|
46717
46805
|
|
|
46806
|
+
SageMaker applies this setting only to private spaces that the user creates in the domain. SageMaker doesn't apply this setting to shared spaces.
|
|
46807
|
+
|
|
46718
46808
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html#cfn-sagemaker-userprofile-usersettings-executionrole
|
|
46719
46809
|
'''
|
|
46720
46810
|
result = self._values.get("execution_role")
|
|
@@ -46726,6 +46816,8 @@ class CfnUserProfile(
|
|
|
46726
46816
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.JupyterLabAppSettingsProperty"]]:
|
|
46727
46817
|
'''The settings for the JupyterLab application.
|
|
46728
46818
|
|
|
46819
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
46820
|
+
|
|
46729
46821
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html#cfn-sagemaker-userprofile-usersettings-jupyterlabappsettings
|
|
46730
46822
|
'''
|
|
46731
46823
|
result = self._values.get("jupyter_lab_app_settings")
|
|
@@ -46774,6 +46866,8 @@ class CfnUserProfile(
|
|
|
46774
46866
|
|
|
46775
46867
|
Amazon SageMaker adds a security group to allow NFS traffic from Amazon SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the maximum number shown.
|
|
46776
46868
|
|
|
46869
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
46870
|
+
|
|
46777
46871
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html#cfn-sagemaker-userprofile-usersettings-securitygroups
|
|
46778
46872
|
'''
|
|
46779
46873
|
result = self._values.get("security_groups")
|
|
@@ -46796,6 +46890,8 @@ class CfnUserProfile(
|
|
|
46796
46890
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.DefaultSpaceStorageSettingsProperty"]]:
|
|
46797
46891
|
'''The storage settings for a space.
|
|
46798
46892
|
|
|
46893
|
+
SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.
|
|
46894
|
+
|
|
46799
46895
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html#cfn-sagemaker-userprofile-usersettings-spacestoragesettings
|
|
46800
46896
|
'''
|
|
46801
46897
|
result = self._values.get("space_storage_settings")
|
|
@@ -48809,6 +48905,7 @@ def _typecheckingstub__6a98e719c58aab3299db52c4086bfb65ee6438882423af805478e9ea3
|
|
|
48809
48905
|
default_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DefaultSpaceSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
48810
48906
|
domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DomainSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
48811
48907
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
48908
|
+
tag_propagation: typing.Optional[builtins.str] = None,
|
|
48812
48909
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
48813
48910
|
) -> None:
|
|
48814
48911
|
"""Type checking stubs"""
|
|
@@ -48886,6 +48983,12 @@ def _typecheckingstub__705995dde312c66454de0b9e9f6a8d7e895beb5c34f61395d1dab1369
|
|
|
48886
48983
|
"""Type checking stubs"""
|
|
48887
48984
|
pass
|
|
48888
48985
|
|
|
48986
|
+
def _typecheckingstub__c3d58c631c2c753ff6694e786e5b7271c0e621cef1413bccab572fda47a21ab3(
|
|
48987
|
+
value: typing.Optional[builtins.str],
|
|
48988
|
+
) -> None:
|
|
48989
|
+
"""Type checking stubs"""
|
|
48990
|
+
pass
|
|
48991
|
+
|
|
48889
48992
|
def _typecheckingstub__6d1a70c209913231f1eb30dba814eb3a3bc58f6f4341ea1392c5061d8dbc8d51(
|
|
48890
48993
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
48891
48994
|
) -> None:
|
|
@@ -48980,6 +49083,7 @@ def _typecheckingstub__1936e7c64bbc1c0c5b8c086a1111acac047651d9cb6495a9c2f8961d2
|
|
|
48980
49083
|
def _typecheckingstub__b23323cc301476d59d77a279da88bfc3d14a3c21fb8709a0ecc6db6074a56cf9(
|
|
48981
49084
|
*,
|
|
48982
49085
|
docker_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DockerSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
49086
|
+
execution_role_identity_config: typing.Optional[builtins.str] = None,
|
|
48983
49087
|
r_studio_server_pro_domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.RStudioServerProDomainSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
48984
49088
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
48985
49089
|
) -> None:
|
|
@@ -49118,6 +49222,7 @@ def _typecheckingstub__d70b90cbf9af0f3b53a18e5f11f7de868ef5fe3e6110bb229fd135001
|
|
|
49118
49222
|
default_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DefaultSpaceSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
49119
49223
|
domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DomainSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
49120
49224
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
49225
|
+
tag_propagation: typing.Optional[builtins.str] = None,
|
|
49121
49226
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
49122
49227
|
) -> None:
|
|
49123
49228
|
"""Type checking stubs"""
|
|
@@ -819,7 +819,8 @@ class CfnRotationSchedule(
|
|
|
819
819
|
@builtins.property
|
|
820
820
|
@jsii.member(jsii_name="attrId")
|
|
821
821
|
def attr_id(self) -> builtins.str:
|
|
822
|
-
'''
|
|
822
|
+
'''The ARN of the secret.
|
|
823
|
+
|
|
823
824
|
:cloudformationAttribute: Id
|
|
824
825
|
'''
|
|
825
826
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|