aws-cdk-lib 2.206.0__py3-none-any.whl → 2.208.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.

Files changed (44) hide show
  1. aws_cdk/__init__.py +96 -15
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.206.0.jsii.tgz → aws-cdk-lib@2.208.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_aiops/__init__.py +70 -76
  5. aws_cdk/aws_amazonmq/__init__.py +8 -18
  6. aws_cdk/aws_appstream/__init__.py +36 -4
  7. aws_cdk/aws_autoscaling/__init__.py +20 -0
  8. aws_cdk/aws_bedrock/__init__.py +317 -142
  9. aws_cdk/aws_certificatemanager/__init__.py +48 -3
  10. aws_cdk/aws_cleanrooms/__init__.py +6 -2
  11. aws_cdk/aws_cloudformation/__init__.py +28 -15
  12. aws_cdk/aws_cloudfront/__init__.py +12 -2
  13. aws_cdk/aws_cloudwatch/__init__.py +574 -33
  14. aws_cdk/aws_connect/__init__.py +107 -3
  15. aws_cdk/aws_customerprofiles/__init__.py +27 -22
  16. aws_cdk/aws_datasync/__init__.py +14 -15
  17. aws_cdk/aws_docdb/__init__.py +5 -3
  18. aws_cdk/aws_ec2/__init__.py +59 -13
  19. aws_cdk/aws_ecs/__init__.py +185 -47
  20. aws_cdk/aws_events/__init__.py +142 -0
  21. aws_cdk/aws_gamelift/__init__.py +2 -2
  22. aws_cdk/aws_guardduty/__init__.py +86 -0
  23. aws_cdk/aws_iotsitewise/__init__.py +13 -9
  24. aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
  25. aws_cdk/aws_kms/__init__.py +19 -17
  26. aws_cdk/aws_logs/__init__.py +4775 -764
  27. aws_cdk/aws_mediapackagev2/__init__.py +950 -48
  28. aws_cdk/aws_omics/__init__.py +13 -10
  29. aws_cdk/aws_opsworkscm/__init__.py +2 -4
  30. aws_cdk/aws_quicksight/__init__.py +111 -4
  31. aws_cdk/aws_rds/__init__.py +358 -27
  32. aws_cdk/aws_s3/__init__.py +781 -8
  33. aws_cdk/aws_s3express/__init__.py +61 -3
  34. aws_cdk/aws_s3tables/__init__.py +254 -0
  35. aws_cdk/aws_sagemaker/__init__.py +527 -140
  36. aws_cdk/aws_ssm/__init__.py +106 -33
  37. aws_cdk/aws_transfer/__init__.py +70 -11
  38. aws_cdk/aws_wisdom/__init__.py +1185 -100
  39. {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/METADATA +2 -2
  40. {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/RECORD +44 -44
  41. {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/LICENSE +0 -0
  42. {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/NOTICE +0 -0
  43. {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/WHEEL +0 -0
  44. {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/top_level.txt +0 -0
@@ -6287,8 +6287,6 @@ class CfnDomain(
6287
6287
  )
6288
6288
  ),
6289
6289
  domain_name="domainName",
6290
- subnet_ids=["subnetIds"],
6291
- vpc_id="vpcId",
6292
6290
 
6293
6291
  # the properties below are optional
6294
6292
  app_network_access_type="appNetworkAccessType",
@@ -6408,11 +6406,13 @@ class CfnDomain(
6408
6406
  )
6409
6407
  ),
6410
6408
  kms_key_id="kmsKeyId",
6409
+ subnet_ids=["subnetIds"],
6411
6410
  tag_propagation="tagPropagation",
6412
6411
  tags=[CfnTag(
6413
6412
  key="key",
6414
6413
  value="value"
6415
- )]
6414
+ )],
6415
+ vpc_id="vpcId"
6416
6416
  )
6417
6417
  '''
6418
6418
 
@@ -6424,15 +6424,15 @@ class CfnDomain(
6424
6424
  auth_mode: builtins.str,
6425
6425
  default_user_settings: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.UserSettingsProperty", typing.Dict[builtins.str, typing.Any]]],
6426
6426
  domain_name: builtins.str,
6427
- subnet_ids: typing.Sequence[builtins.str],
6428
- vpc_id: builtins.str,
6429
6427
  app_network_access_type: typing.Optional[builtins.str] = None,
6430
6428
  app_security_group_management: typing.Optional[builtins.str] = None,
6431
6429
  default_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.DefaultSpaceSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6432
6430
  domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.DomainSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6433
6431
  kms_key_id: typing.Optional[builtins.str] = None,
6432
+ subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
6434
6433
  tag_propagation: typing.Optional[builtins.str] = None,
6435
6434
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
6435
+ vpc_id: typing.Optional[builtins.str] = None,
6436
6436
  ) -> None:
6437
6437
  '''
6438
6438
  :param scope: Scope in which this resource is defined.
@@ -6440,15 +6440,15 @@ class CfnDomain(
6440
6440
  :param auth_mode: The mode of authentication that members use to access the Domain. *Valid Values* : ``SSO | IAM``
6441
6441
  :param default_user_settings: The default user settings.
6442
6442
  :param domain_name: The domain name.
6443
- :param subnet_ids: The VPC subnets that Studio uses for communication. *Length Constraints* : Maximum length of 32. *Array members* : Minimum number of 1 item. Maximum number of 16 items. *Pattern* : ``[-0-9a-zA-Z]+``
6444
- :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]+``
6445
6443
  :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 AI , which allows direct internet access - ``VpcOnly`` - All Studio traffic is through the specified VPC and subnets *Valid Values* : ``PublicInternetOnly | VpcOnly``
6446
6444
  :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``
6447
6445
  :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.
6448
6446
  :param domain_settings: A collection of settings that apply to the ``SageMaker Domain`` . These settings are specified through the ``CreateDomain`` API call.
6449
6447
  :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* : ``.*``
6448
+ :param subnet_ids: The VPC subnets that Studio uses for communication. *Length Constraints* : Maximum length of 32. *Array members* : Minimum number of 1 item. Maximum number of 16 items. *Pattern* : ``[-0-9a-zA-Z]+``
6450
6449
  :param tag_propagation: Indicates whether the tags added to Domain, User Profile and Space entity is propagated to all SageMaker resources.
6451
6450
  :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.
6451
+ :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]+``
6452
6452
  '''
6453
6453
  if __debug__:
6454
6454
  type_hints = typing.get_type_hints(_typecheckingstub__6a98e719c58aab3299db52c4086bfb65ee6438882423af805478e9ea3fda998f)
@@ -6458,15 +6458,15 @@ class CfnDomain(
6458
6458
  auth_mode=auth_mode,
6459
6459
  default_user_settings=default_user_settings,
6460
6460
  domain_name=domain_name,
6461
- subnet_ids=subnet_ids,
6462
- vpc_id=vpc_id,
6463
6461
  app_network_access_type=app_network_access_type,
6464
6462
  app_security_group_management=app_security_group_management,
6465
6463
  default_space_settings=default_space_settings,
6466
6464
  domain_settings=domain_settings,
6467
6465
  kms_key_id=kms_key_id,
6466
+ subnet_ids=subnet_ids,
6468
6467
  tag_propagation=tag_propagation,
6469
6468
  tags=tags,
6469
+ vpc_id=vpc_id,
6470
6470
  )
6471
6471
 
6472
6472
  jsii.create(self.__class__, self, [scope, id, props])
@@ -6621,32 +6621,6 @@ class CfnDomain(
6621
6621
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6622
6622
  jsii.set(self, "domainName", value) # pyright: ignore[reportArgumentType]
6623
6623
 
6624
- @builtins.property
6625
- @jsii.member(jsii_name="subnetIds")
6626
- def subnet_ids(self) -> typing.List[builtins.str]:
6627
- '''The VPC subnets that Studio uses for communication.'''
6628
- return typing.cast(typing.List[builtins.str], jsii.get(self, "subnetIds"))
6629
-
6630
- @subnet_ids.setter
6631
- def subnet_ids(self, value: typing.List[builtins.str]) -> None:
6632
- if __debug__:
6633
- type_hints = typing.get_type_hints(_typecheckingstub__6556642f81d027deb80da8cf42e945b715e6966790a8ab41e68da4acaaf3a9eb)
6634
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6635
- jsii.set(self, "subnetIds", value) # pyright: ignore[reportArgumentType]
6636
-
6637
- @builtins.property
6638
- @jsii.member(jsii_name="vpcId")
6639
- def vpc_id(self) -> builtins.str:
6640
- '''The ID of the Amazon Virtual Private Cloud (Amazon VPC) that Studio uses for communication.'''
6641
- return typing.cast(builtins.str, jsii.get(self, "vpcId"))
6642
-
6643
- @vpc_id.setter
6644
- def vpc_id(self, value: builtins.str) -> None:
6645
- if __debug__:
6646
- type_hints = typing.get_type_hints(_typecheckingstub__e0aca1d756799cd6468a535127ee441605b164991ff11c6effe6c40c519ff5c0)
6647
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6648
- jsii.set(self, "vpcId", value) # pyright: ignore[reportArgumentType]
6649
-
6650
6624
  @builtins.property
6651
6625
  @jsii.member(jsii_name="appNetworkAccessType")
6652
6626
  def app_network_access_type(self) -> typing.Optional[builtins.str]:
@@ -6728,6 +6702,19 @@ class CfnDomain(
6728
6702
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6729
6703
  jsii.set(self, "kmsKeyId", value) # pyright: ignore[reportArgumentType]
6730
6704
 
6705
+ @builtins.property
6706
+ @jsii.member(jsii_name="subnetIds")
6707
+ def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
6708
+ '''The VPC subnets that Studio uses for communication.'''
6709
+ return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "subnetIds"))
6710
+
6711
+ @subnet_ids.setter
6712
+ def subnet_ids(self, value: typing.Optional[typing.List[builtins.str]]) -> None:
6713
+ if __debug__:
6714
+ type_hints = typing.get_type_hints(_typecheckingstub__6556642f81d027deb80da8cf42e945b715e6966790a8ab41e68da4acaaf3a9eb)
6715
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6716
+ jsii.set(self, "subnetIds", value) # pyright: ignore[reportArgumentType]
6717
+
6731
6718
  @builtins.property
6732
6719
  @jsii.member(jsii_name="tagPropagation")
6733
6720
  def tag_propagation(self) -> typing.Optional[builtins.str]:
@@ -6754,6 +6741,19 @@ class CfnDomain(
6754
6741
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6755
6742
  jsii.set(self, "tagsRaw", value) # pyright: ignore[reportArgumentType]
6756
6743
 
6744
+ @builtins.property
6745
+ @jsii.member(jsii_name="vpcId")
6746
+ def vpc_id(self) -> typing.Optional[builtins.str]:
6747
+ '''The ID of the Amazon Virtual Private Cloud (Amazon VPC) that Studio uses for communication.'''
6748
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "vpcId"))
6749
+
6750
+ @vpc_id.setter
6751
+ def vpc_id(self, value: typing.Optional[builtins.str]) -> None:
6752
+ if __debug__:
6753
+ type_hints = typing.get_type_hints(_typecheckingstub__e0aca1d756799cd6468a535127ee441605b164991ff11c6effe6c40c519ff5c0)
6754
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6755
+ jsii.set(self, "vpcId", value) # pyright: ignore[reportArgumentType]
6756
+
6757
6757
  @jsii.data_type(
6758
6758
  jsii_type="aws-cdk-lib.aws_sagemaker.CfnDomain.AppLifecycleManagementProperty",
6759
6759
  jsii_struct_bases=[],
@@ -9228,7 +9228,7 @@ class CfnDomain(
9228
9228
  :param environment_id: The ID of the environment that Amazon SageMaker Unified Studio associates with the domain.
9229
9229
  :param project_id: The ID of the Amazon SageMaker Unified Studio project that corresponds to the domain.
9230
9230
  :param project_s3_path: The location where Amazon S3 stores temporary execution data and other artifacts for the project that corresponds to the domain.
9231
- :param single_sign_on_application_arn: The ARN of the DataZone application managed by SageMaker Unified Studio in the AWS IAM Identity Center.
9231
+ :param single_sign_on_application_arn: The ARN of the application managed by SageMaker AI and SageMaker Unified Studio in the AWS IAM Identity Center.
9232
9232
  :param studio_web_portal_access: Sets whether you can access the domain in Amazon SageMaker Studio:. - **ENABLED** - You can access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it in both studio interfaces. - **DISABLED** - You can't access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it only in that studio interface. To migrate a domain to Amazon SageMaker Unified Studio, you specify the UnifiedStudioSettings data type when you use the UpdateDomain action.
9233
9233
 
9234
9234
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html
@@ -9339,7 +9339,7 @@ class CfnDomain(
9339
9339
 
9340
9340
  @builtins.property
9341
9341
  def single_sign_on_application_arn(self) -> typing.Optional[builtins.str]:
9342
- '''The ARN of the DataZone application managed by SageMaker Unified Studio in the AWS IAM Identity Center.
9342
+ '''The ARN of the application managed by SageMaker AI and SageMaker Unified Studio in the AWS IAM Identity Center.
9343
9343
 
9344
9344
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html#cfn-sagemaker-domain-unifiedstudiosettings-singlesignonapplicationarn
9345
9345
  '''
@@ -9862,15 +9862,15 @@ class CfnDomain(
9862
9862
  "auth_mode": "authMode",
9863
9863
  "default_user_settings": "defaultUserSettings",
9864
9864
  "domain_name": "domainName",
9865
- "subnet_ids": "subnetIds",
9866
- "vpc_id": "vpcId",
9867
9865
  "app_network_access_type": "appNetworkAccessType",
9868
9866
  "app_security_group_management": "appSecurityGroupManagement",
9869
9867
  "default_space_settings": "defaultSpaceSettings",
9870
9868
  "domain_settings": "domainSettings",
9871
9869
  "kms_key_id": "kmsKeyId",
9870
+ "subnet_ids": "subnetIds",
9872
9871
  "tag_propagation": "tagPropagation",
9873
9872
  "tags": "tags",
9873
+ "vpc_id": "vpcId",
9874
9874
  },
9875
9875
  )
9876
9876
  class CfnDomainProps:
@@ -9880,30 +9880,30 @@ class CfnDomainProps:
9880
9880
  auth_mode: builtins.str,
9881
9881
  default_user_settings: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.UserSettingsProperty, typing.Dict[builtins.str, typing.Any]]],
9882
9882
  domain_name: builtins.str,
9883
- subnet_ids: typing.Sequence[builtins.str],
9884
- vpc_id: builtins.str,
9885
9883
  app_network_access_type: typing.Optional[builtins.str] = None,
9886
9884
  app_security_group_management: typing.Optional[builtins.str] = None,
9887
9885
  default_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DefaultSpaceSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9888
9886
  domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DomainSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9889
9887
  kms_key_id: typing.Optional[builtins.str] = None,
9888
+ subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
9890
9889
  tag_propagation: typing.Optional[builtins.str] = None,
9891
9890
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
9891
+ vpc_id: typing.Optional[builtins.str] = None,
9892
9892
  ) -> None:
9893
9893
  '''Properties for defining a ``CfnDomain``.
9894
9894
 
9895
9895
  :param auth_mode: The mode of authentication that members use to access the Domain. *Valid Values* : ``SSO | IAM``
9896
9896
  :param default_user_settings: The default user settings.
9897
9897
  :param domain_name: The domain name.
9898
- :param subnet_ids: The VPC subnets that Studio uses for communication. *Length Constraints* : Maximum length of 32. *Array members* : Minimum number of 1 item. Maximum number of 16 items. *Pattern* : ``[-0-9a-zA-Z]+``
9899
- :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]+``
9900
9898
  :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 AI , which allows direct internet access - ``VpcOnly`` - All Studio traffic is through the specified VPC and subnets *Valid Values* : ``PublicInternetOnly | VpcOnly``
9901
9899
  :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``
9902
9900
  :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.
9903
9901
  :param domain_settings: A collection of settings that apply to the ``SageMaker Domain`` . These settings are specified through the ``CreateDomain`` API call.
9904
9902
  :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* : ``.*``
9903
+ :param subnet_ids: The VPC subnets that Studio uses for communication. *Length Constraints* : Maximum length of 32. *Array members* : Minimum number of 1 item. Maximum number of 16 items. *Pattern* : ``[-0-9a-zA-Z]+``
9905
9904
  :param tag_propagation: Indicates whether the tags added to Domain, User Profile and Space entity is propagated to all SageMaker resources.
9906
9905
  :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.
9906
+ :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]+``
9907
9907
 
9908
9908
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-domain.html
9909
9909
  :exampleMetadata: fixture=_generated
@@ -10061,8 +10061,6 @@ class CfnDomainProps:
10061
10061
  )
10062
10062
  ),
10063
10063
  domain_name="domainName",
10064
- subnet_ids=["subnetIds"],
10065
- vpc_id="vpcId",
10066
10064
 
10067
10065
  # the properties below are optional
10068
10066
  app_network_access_type="appNetworkAccessType",
@@ -10182,11 +10180,13 @@ class CfnDomainProps:
10182
10180
  )
10183
10181
  ),
10184
10182
  kms_key_id="kmsKeyId",
10183
+ subnet_ids=["subnetIds"],
10185
10184
  tag_propagation="tagPropagation",
10186
10185
  tags=[CfnTag(
10187
10186
  key="key",
10188
10187
  value="value"
10189
- )]
10188
+ )],
10189
+ vpc_id="vpcId"
10190
10190
  )
10191
10191
  '''
10192
10192
  if __debug__:
@@ -10194,21 +10194,19 @@ class CfnDomainProps:
10194
10194
  check_type(argname="argument auth_mode", value=auth_mode, expected_type=type_hints["auth_mode"])
10195
10195
  check_type(argname="argument default_user_settings", value=default_user_settings, expected_type=type_hints["default_user_settings"])
10196
10196
  check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
10197
- check_type(argname="argument subnet_ids", value=subnet_ids, expected_type=type_hints["subnet_ids"])
10198
- check_type(argname="argument vpc_id", value=vpc_id, expected_type=type_hints["vpc_id"])
10199
10197
  check_type(argname="argument app_network_access_type", value=app_network_access_type, expected_type=type_hints["app_network_access_type"])
10200
10198
  check_type(argname="argument app_security_group_management", value=app_security_group_management, expected_type=type_hints["app_security_group_management"])
10201
10199
  check_type(argname="argument default_space_settings", value=default_space_settings, expected_type=type_hints["default_space_settings"])
10202
10200
  check_type(argname="argument domain_settings", value=domain_settings, expected_type=type_hints["domain_settings"])
10203
10201
  check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
10202
+ check_type(argname="argument subnet_ids", value=subnet_ids, expected_type=type_hints["subnet_ids"])
10204
10203
  check_type(argname="argument tag_propagation", value=tag_propagation, expected_type=type_hints["tag_propagation"])
10205
10204
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
10205
+ check_type(argname="argument vpc_id", value=vpc_id, expected_type=type_hints["vpc_id"])
10206
10206
  self._values: typing.Dict[builtins.str, typing.Any] = {
10207
10207
  "auth_mode": auth_mode,
10208
10208
  "default_user_settings": default_user_settings,
10209
10209
  "domain_name": domain_name,
10210
- "subnet_ids": subnet_ids,
10211
- "vpc_id": vpc_id,
10212
10210
  }
10213
10211
  if app_network_access_type is not None:
10214
10212
  self._values["app_network_access_type"] = app_network_access_type
@@ -10220,10 +10218,14 @@ class CfnDomainProps:
10220
10218
  self._values["domain_settings"] = domain_settings
10221
10219
  if kms_key_id is not None:
10222
10220
  self._values["kms_key_id"] = kms_key_id
10221
+ if subnet_ids is not None:
10222
+ self._values["subnet_ids"] = subnet_ids
10223
10223
  if tag_propagation is not None:
10224
10224
  self._values["tag_propagation"] = tag_propagation
10225
10225
  if tags is not None:
10226
10226
  self._values["tags"] = tags
10227
+ if vpc_id is not None:
10228
+ self._values["vpc_id"] = vpc_id
10227
10229
 
10228
10230
  @builtins.property
10229
10231
  def auth_mode(self) -> builtins.str:
@@ -10259,36 +10261,6 @@ class CfnDomainProps:
10259
10261
  assert result is not None, "Required property 'domain_name' is missing"
10260
10262
  return typing.cast(builtins.str, result)
10261
10263
 
10262
- @builtins.property
10263
- def subnet_ids(self) -> typing.List[builtins.str]:
10264
- '''The VPC subnets that Studio uses for communication.
10265
-
10266
- *Length Constraints* : Maximum length of 32.
10267
-
10268
- *Array members* : Minimum number of 1 item. Maximum number of 16 items.
10269
-
10270
- *Pattern* : ``[-0-9a-zA-Z]+``
10271
-
10272
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-domain.html#cfn-sagemaker-domain-subnetids
10273
- '''
10274
- result = self._values.get("subnet_ids")
10275
- assert result is not None, "Required property 'subnet_ids' is missing"
10276
- return typing.cast(typing.List[builtins.str], result)
10277
-
10278
- @builtins.property
10279
- def vpc_id(self) -> builtins.str:
10280
- '''The ID of the Amazon Virtual Private Cloud (Amazon VPC) that Studio uses for communication.
10281
-
10282
- *Length Constraints* : Maximum length of 32.
10283
-
10284
- *Pattern* : ``[-0-9a-zA-Z]+``
10285
-
10286
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-domain.html#cfn-sagemaker-domain-vpcid
10287
- '''
10288
- result = self._values.get("vpc_id")
10289
- assert result is not None, "Required property 'vpc_id' is missing"
10290
- return typing.cast(builtins.str, result)
10291
-
10292
10264
  @builtins.property
10293
10265
  def app_network_access_type(self) -> typing.Optional[builtins.str]:
10294
10266
  '''Specifies the VPC used for non-EFS traffic. The default value is ``PublicInternetOnly`` .
@@ -10357,6 +10329,21 @@ class CfnDomainProps:
10357
10329
  result = self._values.get("kms_key_id")
10358
10330
  return typing.cast(typing.Optional[builtins.str], result)
10359
10331
 
10332
+ @builtins.property
10333
+ def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
10334
+ '''The VPC subnets that Studio uses for communication.
10335
+
10336
+ *Length Constraints* : Maximum length of 32.
10337
+
10338
+ *Array members* : Minimum number of 1 item. Maximum number of 16 items.
10339
+
10340
+ *Pattern* : ``[-0-9a-zA-Z]+``
10341
+
10342
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-domain.html#cfn-sagemaker-domain-subnetids
10343
+ '''
10344
+ result = self._values.get("subnet_ids")
10345
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
10346
+
10360
10347
  @builtins.property
10361
10348
  def tag_propagation(self) -> typing.Optional[builtins.str]:
10362
10349
  '''Indicates whether the tags added to Domain, User Profile and Space entity is propagated to all SageMaker resources.
@@ -10381,6 +10368,19 @@ class CfnDomainProps:
10381
10368
  result = self._values.get("tags")
10382
10369
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
10383
10370
 
10371
+ @builtins.property
10372
+ def vpc_id(self) -> typing.Optional[builtins.str]:
10373
+ '''The ID of the Amazon Virtual Private Cloud (Amazon VPC) that Studio uses for communication.
10374
+
10375
+ *Length Constraints* : Maximum length of 32.
10376
+
10377
+ *Pattern* : ``[-0-9a-zA-Z]+``
10378
+
10379
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-domain.html#cfn-sagemaker-domain-vpcid
10380
+ '''
10381
+ result = self._values.get("vpc_id")
10382
+ return typing.cast(typing.Optional[builtins.str], result)
10383
+
10384
10384
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
10385
10385
  return isinstance(rhs, self.__class__) and rhs._values == self._values
10386
10386
 
@@ -27090,7 +27090,7 @@ class CfnModelCard(
27090
27090
  user_profile_arn: typing.Optional[builtins.str] = None,
27091
27091
  user_profile_name: typing.Optional[builtins.str] = None,
27092
27092
  ) -> None:
27093
- '''Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
27093
+ '''Information about the user who created or modified a SageMaker resource.
27094
27094
 
27095
27095
  :param domain_id: The domain associated with the user. Default: - "UnsetValue"
27096
27096
  :param user_profile_arn: The Amazon Resource Name (ARN) of the user's profile. Default: - "UnsetValue"
@@ -43835,7 +43835,6 @@ class CfnProject(
43835
43835
 
43836
43836
  cfn_project = sagemaker.CfnProject(self, "MyCfnProject",
43837
43837
  project_name="projectName",
43838
- service_catalog_provisioning_details=service_catalog_provisioning_details,
43839
43838
 
43840
43839
  # the properties below are optional
43841
43840
  project_description="projectDescription",
@@ -43843,9 +43842,23 @@ class CfnProject(
43843
43842
  provisioned_product_id="provisionedProductId",
43844
43843
  provisioned_product_status_message="provisionedProductStatusMessage"
43845
43844
  ),
43845
+ service_catalog_provisioning_details=service_catalog_provisioning_details,
43846
43846
  tags=[CfnTag(
43847
43847
  key="key",
43848
43848
  value="value"
43849
+ )],
43850
+ template_provider_details=[sagemaker.CfnProject.TemplateProviderDetailProperty(
43851
+ cfn_template_provider_detail=sagemaker.CfnProject.CfnTemplateProviderDetailProperty(
43852
+ template_name="templateName",
43853
+ template_url="templateUrl",
43854
+
43855
+ # the properties below are optional
43856
+ parameters=[sagemaker.CfnProject.CfnStackParameterProperty(
43857
+ key="key",
43858
+ value="value"
43859
+ )],
43860
+ role_arn="roleArn"
43861
+ )
43849
43862
  )]
43850
43863
  )
43851
43864
  '''
@@ -43856,19 +43869,21 @@ class CfnProject(
43856
43869
  id: builtins.str,
43857
43870
  *,
43858
43871
  project_name: builtins.str,
43859
- service_catalog_provisioning_details: typing.Any,
43860
43872
  project_description: typing.Optional[builtins.str] = None,
43861
43873
  service_catalog_provisioned_product_details: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProject.ServiceCatalogProvisionedProductDetailsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
43874
+ service_catalog_provisioning_details: typing.Any = None,
43862
43875
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
43876
+ template_provider_details: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProject.TemplateProviderDetailProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
43863
43877
  ) -> None:
43864
43878
  '''
43865
43879
  :param scope: Scope in which this resource is defined.
43866
43880
  :param id: Construct identifier for this resource (unique in its scope).
43867
43881
  :param project_name: The name of the project.
43868
- :param service_catalog_provisioning_details: The product ID and provisioning artifact ID to provision a service catalog. For information, see `What is AWS Service Catalog <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html>`_ .
43869
43882
  :param project_description: The description of the project.
43870
43883
  :param service_catalog_provisioned_product_details: Details of a provisioned service catalog product. For information about service catalog, see `What is AWS Service Catalog <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html>`_ .
43884
+ :param service_catalog_provisioning_details: The product ID and provisioning artifact ID to provision a service catalog. For information, see `What is AWS Service Catalog <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html>`_ .
43871
43885
  :param tags: A list of key-value pairs to apply to this resource. For more information, see `Resource Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ and `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what>`_ in the *AWS Billing and Cost Management User Guide* .
43886
+ :param template_provider_details: An array of template providers associated with the project.
43872
43887
  '''
43873
43888
  if __debug__:
43874
43889
  type_hints = typing.get_type_hints(_typecheckingstub__36d90c8a4de3ec6cd6aac98e8b78ab8d07ed4eaab37e59bd5a481048e098a352)
@@ -43876,10 +43891,11 @@ class CfnProject(
43876
43891
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
43877
43892
  props = CfnProjectProps(
43878
43893
  project_name=project_name,
43879
- service_catalog_provisioning_details=service_catalog_provisioning_details,
43880
43894
  project_description=project_description,
43881
43895
  service_catalog_provisioned_product_details=service_catalog_provisioned_product_details,
43896
+ service_catalog_provisioning_details=service_catalog_provisioning_details,
43882
43897
  tags=tags,
43898
+ template_provider_details=template_provider_details,
43883
43899
  )
43884
43900
 
43885
43901
  jsii.create(self.__class__, self, [scope, id, props])
@@ -43976,19 +43992,6 @@ class CfnProject(
43976
43992
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
43977
43993
  jsii.set(self, "projectName", value) # pyright: ignore[reportArgumentType]
43978
43994
 
43979
- @builtins.property
43980
- @jsii.member(jsii_name="serviceCatalogProvisioningDetails")
43981
- def service_catalog_provisioning_details(self) -> typing.Any:
43982
- '''The product ID and provisioning artifact ID to provision a service catalog.'''
43983
- return typing.cast(typing.Any, jsii.get(self, "serviceCatalogProvisioningDetails"))
43984
-
43985
- @service_catalog_provisioning_details.setter
43986
- def service_catalog_provisioning_details(self, value: typing.Any) -> None:
43987
- if __debug__:
43988
- type_hints = typing.get_type_hints(_typecheckingstub__9d718ddafa3c422dac1f0d00451c0ed5aa622263f6d29b78b9bf867f3295e22c)
43989
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
43990
- jsii.set(self, "serviceCatalogProvisioningDetails", value) # pyright: ignore[reportArgumentType]
43991
-
43992
43995
  @builtins.property
43993
43996
  @jsii.member(jsii_name="projectDescription")
43994
43997
  def project_description(self) -> typing.Optional[builtins.str]:
@@ -44020,6 +44023,19 @@ class CfnProject(
44020
44023
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
44021
44024
  jsii.set(self, "serviceCatalogProvisionedProductDetails", value) # pyright: ignore[reportArgumentType]
44022
44025
 
44026
+ @builtins.property
44027
+ @jsii.member(jsii_name="serviceCatalogProvisioningDetails")
44028
+ def service_catalog_provisioning_details(self) -> typing.Any:
44029
+ '''The product ID and provisioning artifact ID to provision a service catalog.'''
44030
+ return typing.cast(typing.Any, jsii.get(self, "serviceCatalogProvisioningDetails"))
44031
+
44032
+ @service_catalog_provisioning_details.setter
44033
+ def service_catalog_provisioning_details(self, value: typing.Any) -> None:
44034
+ if __debug__:
44035
+ type_hints = typing.get_type_hints(_typecheckingstub__9d718ddafa3c422dac1f0d00451c0ed5aa622263f6d29b78b9bf867f3295e22c)
44036
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
44037
+ jsii.set(self, "serviceCatalogProvisioningDetails", value) # pyright: ignore[reportArgumentType]
44038
+
44023
44039
  @builtins.property
44024
44040
  @jsii.member(jsii_name="tagsRaw")
44025
44041
  def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
@@ -44033,6 +44049,203 @@ class CfnProject(
44033
44049
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
44034
44050
  jsii.set(self, "tagsRaw", value) # pyright: ignore[reportArgumentType]
44035
44051
 
44052
+ @builtins.property
44053
+ @jsii.member(jsii_name="templateProviderDetails")
44054
+ def template_provider_details(
44055
+ self,
44056
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.TemplateProviderDetailProperty"]]]]:
44057
+ '''An array of template providers associated with the project.'''
44058
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.TemplateProviderDetailProperty"]]]], jsii.get(self, "templateProviderDetails"))
44059
+
44060
+ @template_provider_details.setter
44061
+ def template_provider_details(
44062
+ self,
44063
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.TemplateProviderDetailProperty"]]]],
44064
+ ) -> None:
44065
+ if __debug__:
44066
+ type_hints = typing.get_type_hints(_typecheckingstub__37327309a66059bbaac8df3f1833107474485154b02e0371e4491fe9cd0c36a3)
44067
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
44068
+ jsii.set(self, "templateProviderDetails", value) # pyright: ignore[reportArgumentType]
44069
+
44070
+ @jsii.data_type(
44071
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnProject.CfnStackParameterProperty",
44072
+ jsii_struct_bases=[],
44073
+ name_mapping={"key": "key", "value": "value"},
44074
+ )
44075
+ class CfnStackParameterProperty:
44076
+ def __init__(self, *, key: builtins.str, value: builtins.str) -> None:
44077
+ '''A key-value pair representing a parameter used in the CloudFormation stack.
44078
+
44079
+ :param key: The name of the CloudFormation parameter.
44080
+ :param value: The value of the CloudFormation parameter.
44081
+
44082
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfnstackparameter.html
44083
+ :exampleMetadata: fixture=_generated
44084
+
44085
+ Example::
44086
+
44087
+ # The code below shows an example of how to instantiate this type.
44088
+ # The values are placeholders you should change.
44089
+ from aws_cdk import aws_sagemaker as sagemaker
44090
+
44091
+ cfn_stack_parameter_property = sagemaker.CfnProject.CfnStackParameterProperty(
44092
+ key="key",
44093
+ value="value"
44094
+ )
44095
+ '''
44096
+ if __debug__:
44097
+ type_hints = typing.get_type_hints(_typecheckingstub__534e62c09f17026e2396197610e65023c50b40e1b78a108cdaaa85a583a9f89e)
44098
+ check_type(argname="argument key", value=key, expected_type=type_hints["key"])
44099
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
44100
+ self._values: typing.Dict[builtins.str, typing.Any] = {
44101
+ "key": key,
44102
+ "value": value,
44103
+ }
44104
+
44105
+ @builtins.property
44106
+ def key(self) -> builtins.str:
44107
+ '''The name of the CloudFormation parameter.
44108
+
44109
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfnstackparameter.html#cfn-sagemaker-project-cfnstackparameter-key
44110
+ '''
44111
+ result = self._values.get("key")
44112
+ assert result is not None, "Required property 'key' is missing"
44113
+ return typing.cast(builtins.str, result)
44114
+
44115
+ @builtins.property
44116
+ def value(self) -> builtins.str:
44117
+ '''The value of the CloudFormation parameter.
44118
+
44119
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfnstackparameter.html#cfn-sagemaker-project-cfnstackparameter-value
44120
+ '''
44121
+ result = self._values.get("value")
44122
+ assert result is not None, "Required property 'value' is missing"
44123
+ return typing.cast(builtins.str, result)
44124
+
44125
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
44126
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
44127
+
44128
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
44129
+ return not (rhs == self)
44130
+
44131
+ def __repr__(self) -> str:
44132
+ return "CfnStackParameterProperty(%s)" % ", ".join(
44133
+ k + "=" + repr(v) for k, v in self._values.items()
44134
+ )
44135
+
44136
+ @jsii.data_type(
44137
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnProject.CfnTemplateProviderDetailProperty",
44138
+ jsii_struct_bases=[],
44139
+ name_mapping={
44140
+ "template_name": "templateName",
44141
+ "template_url": "templateUrl",
44142
+ "parameters": "parameters",
44143
+ "role_arn": "roleArn",
44144
+ },
44145
+ )
44146
+ class CfnTemplateProviderDetailProperty:
44147
+ def __init__(
44148
+ self,
44149
+ *,
44150
+ template_name: builtins.str,
44151
+ template_url: builtins.str,
44152
+ parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProject.CfnStackParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
44153
+ role_arn: typing.Optional[builtins.str] = None,
44154
+ ) -> None:
44155
+ '''Details about a CloudFormation template provider configuration and associated provisioning information.
44156
+
44157
+ :param template_name: The unique identifier of the template within the project.
44158
+ :param template_url: The Amazon S3 URL of the CloudFormation template.
44159
+ :param parameters: An array of CloudFormation stack parameters.
44160
+ :param role_arn: The IAM role used by CloudFormation to create the stack.
44161
+
44162
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfntemplateproviderdetail.html
44163
+ :exampleMetadata: fixture=_generated
44164
+
44165
+ Example::
44166
+
44167
+ # The code below shows an example of how to instantiate this type.
44168
+ # The values are placeholders you should change.
44169
+ from aws_cdk import aws_sagemaker as sagemaker
44170
+
44171
+ cfn_template_provider_detail_property = sagemaker.CfnProject.CfnTemplateProviderDetailProperty(
44172
+ template_name="templateName",
44173
+ template_url="templateUrl",
44174
+
44175
+ # the properties below are optional
44176
+ parameters=[sagemaker.CfnProject.CfnStackParameterProperty(
44177
+ key="key",
44178
+ value="value"
44179
+ )],
44180
+ role_arn="roleArn"
44181
+ )
44182
+ '''
44183
+ if __debug__:
44184
+ type_hints = typing.get_type_hints(_typecheckingstub__a470528273d2446842ca763fb735017692619e229b48df7f63d35516e81b7022)
44185
+ check_type(argname="argument template_name", value=template_name, expected_type=type_hints["template_name"])
44186
+ check_type(argname="argument template_url", value=template_url, expected_type=type_hints["template_url"])
44187
+ check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
44188
+ check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
44189
+ self._values: typing.Dict[builtins.str, typing.Any] = {
44190
+ "template_name": template_name,
44191
+ "template_url": template_url,
44192
+ }
44193
+ if parameters is not None:
44194
+ self._values["parameters"] = parameters
44195
+ if role_arn is not None:
44196
+ self._values["role_arn"] = role_arn
44197
+
44198
+ @builtins.property
44199
+ def template_name(self) -> builtins.str:
44200
+ '''The unique identifier of the template within the project.
44201
+
44202
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfntemplateproviderdetail.html#cfn-sagemaker-project-cfntemplateproviderdetail-templatename
44203
+ '''
44204
+ result = self._values.get("template_name")
44205
+ assert result is not None, "Required property 'template_name' is missing"
44206
+ return typing.cast(builtins.str, result)
44207
+
44208
+ @builtins.property
44209
+ def template_url(self) -> builtins.str:
44210
+ '''The Amazon S3 URL of the CloudFormation template.
44211
+
44212
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfntemplateproviderdetail.html#cfn-sagemaker-project-cfntemplateproviderdetail-templateurl
44213
+ '''
44214
+ result = self._values.get("template_url")
44215
+ assert result is not None, "Required property 'template_url' is missing"
44216
+ return typing.cast(builtins.str, result)
44217
+
44218
+ @builtins.property
44219
+ def parameters(
44220
+ self,
44221
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.CfnStackParameterProperty"]]]]:
44222
+ '''An array of CloudFormation stack parameters.
44223
+
44224
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfntemplateproviderdetail.html#cfn-sagemaker-project-cfntemplateproviderdetail-parameters
44225
+ '''
44226
+ result = self._values.get("parameters")
44227
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.CfnStackParameterProperty"]]]], result)
44228
+
44229
+ @builtins.property
44230
+ def role_arn(self) -> typing.Optional[builtins.str]:
44231
+ '''The IAM role used by CloudFormation to create the stack.
44232
+
44233
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfntemplateproviderdetail.html#cfn-sagemaker-project-cfntemplateproviderdetail-rolearn
44234
+ '''
44235
+ result = self._values.get("role_arn")
44236
+ return typing.cast(typing.Optional[builtins.str], result)
44237
+
44238
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
44239
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
44240
+
44241
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
44242
+ return not (rhs == self)
44243
+
44244
+ def __repr__(self) -> str:
44245
+ return "CfnTemplateProviderDetailProperty(%s)" % ", ".join(
44246
+ k + "=" + repr(v) for k, v in self._values.items()
44247
+ )
44248
+
44036
44249
  @jsii.data_type(
44037
44250
  jsii_type="aws-cdk-lib.aws_sagemaker.CfnProject.ProvisioningParameterProperty",
44038
44251
  jsii_struct_bases=[],
@@ -44299,16 +44512,85 @@ class CfnProject(
44299
44512
  k + "=" + repr(v) for k, v in self._values.items()
44300
44513
  )
44301
44514
 
44515
+ @jsii.data_type(
44516
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnProject.TemplateProviderDetailProperty",
44517
+ jsii_struct_bases=[],
44518
+ name_mapping={"cfn_template_provider_detail": "cfnTemplateProviderDetail"},
44519
+ )
44520
+ class TemplateProviderDetailProperty:
44521
+ def __init__(
44522
+ self,
44523
+ *,
44524
+ cfn_template_provider_detail: typing.Union[_IResolvable_da3f097b, typing.Union["CfnProject.CfnTemplateProviderDetailProperty", typing.Dict[builtins.str, typing.Any]]],
44525
+ ) -> None:
44526
+ '''Details about a template provider configuration and associated provisioning information.
44527
+
44528
+ :param cfn_template_provider_detail: Details about a CloudFormation template provider configuration and associated provisioning information.
44529
+
44530
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-templateproviderdetail.html
44531
+ :exampleMetadata: fixture=_generated
44532
+
44533
+ Example::
44534
+
44535
+ # The code below shows an example of how to instantiate this type.
44536
+ # The values are placeholders you should change.
44537
+ from aws_cdk import aws_sagemaker as sagemaker
44538
+
44539
+ template_provider_detail_property = sagemaker.CfnProject.TemplateProviderDetailProperty(
44540
+ cfn_template_provider_detail=sagemaker.CfnProject.CfnTemplateProviderDetailProperty(
44541
+ template_name="templateName",
44542
+ template_url="templateUrl",
44543
+
44544
+ # the properties below are optional
44545
+ parameters=[sagemaker.CfnProject.CfnStackParameterProperty(
44546
+ key="key",
44547
+ value="value"
44548
+ )],
44549
+ role_arn="roleArn"
44550
+ )
44551
+ )
44552
+ '''
44553
+ if __debug__:
44554
+ type_hints = typing.get_type_hints(_typecheckingstub__657cc6e15ef29b6c0d6e743c417a8819b7a46a25c0e1d1c738b644e09ba23776)
44555
+ check_type(argname="argument cfn_template_provider_detail", value=cfn_template_provider_detail, expected_type=type_hints["cfn_template_provider_detail"])
44556
+ self._values: typing.Dict[builtins.str, typing.Any] = {
44557
+ "cfn_template_provider_detail": cfn_template_provider_detail,
44558
+ }
44559
+
44560
+ @builtins.property
44561
+ def cfn_template_provider_detail(
44562
+ self,
44563
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnProject.CfnTemplateProviderDetailProperty"]:
44564
+ '''Details about a CloudFormation template provider configuration and associated provisioning information.
44565
+
44566
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-templateproviderdetail.html#cfn-sagemaker-project-templateproviderdetail-cfntemplateproviderdetail
44567
+ '''
44568
+ result = self._values.get("cfn_template_provider_detail")
44569
+ assert result is not None, "Required property 'cfn_template_provider_detail' is missing"
44570
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnProject.CfnTemplateProviderDetailProperty"], result)
44571
+
44572
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
44573
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
44574
+
44575
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
44576
+ return not (rhs == self)
44577
+
44578
+ def __repr__(self) -> str:
44579
+ return "TemplateProviderDetailProperty(%s)" % ", ".join(
44580
+ k + "=" + repr(v) for k, v in self._values.items()
44581
+ )
44582
+
44302
44583
 
44303
44584
  @jsii.data_type(
44304
44585
  jsii_type="aws-cdk-lib.aws_sagemaker.CfnProjectProps",
44305
44586
  jsii_struct_bases=[],
44306
44587
  name_mapping={
44307
44588
  "project_name": "projectName",
44308
- "service_catalog_provisioning_details": "serviceCatalogProvisioningDetails",
44309
44589
  "project_description": "projectDescription",
44310
44590
  "service_catalog_provisioned_product_details": "serviceCatalogProvisionedProductDetails",
44591
+ "service_catalog_provisioning_details": "serviceCatalogProvisioningDetails",
44311
44592
  "tags": "tags",
44593
+ "template_provider_details": "templateProviderDetails",
44312
44594
  },
44313
44595
  )
44314
44596
  class CfnProjectProps:
@@ -44316,18 +44598,20 @@ class CfnProjectProps:
44316
44598
  self,
44317
44599
  *,
44318
44600
  project_name: builtins.str,
44319
- service_catalog_provisioning_details: typing.Any,
44320
44601
  project_description: typing.Optional[builtins.str] = None,
44321
44602
  service_catalog_provisioned_product_details: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.ServiceCatalogProvisionedProductDetailsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
44603
+ service_catalog_provisioning_details: typing.Any = None,
44322
44604
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
44605
+ template_provider_details: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.TemplateProviderDetailProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
44323
44606
  ) -> None:
44324
44607
  '''Properties for defining a ``CfnProject``.
44325
44608
 
44326
44609
  :param project_name: The name of the project.
44327
- :param service_catalog_provisioning_details: The product ID and provisioning artifact ID to provision a service catalog. For information, see `What is AWS Service Catalog <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html>`_ .
44328
44610
  :param project_description: The description of the project.
44329
44611
  :param service_catalog_provisioned_product_details: Details of a provisioned service catalog product. For information about service catalog, see `What is AWS Service Catalog <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html>`_ .
44612
+ :param service_catalog_provisioning_details: The product ID and provisioning artifact ID to provision a service catalog. For information, see `What is AWS Service Catalog <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html>`_ .
44330
44613
  :param tags: A list of key-value pairs to apply to this resource. For more information, see `Resource Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ and `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what>`_ in the *AWS Billing and Cost Management User Guide* .
44614
+ :param template_provider_details: An array of template providers associated with the project.
44331
44615
 
44332
44616
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html
44333
44617
  :exampleMetadata: fixture=_generated
@@ -44342,7 +44626,6 @@ class CfnProjectProps:
44342
44626
 
44343
44627
  cfn_project_props = sagemaker.CfnProjectProps(
44344
44628
  project_name="projectName",
44345
- service_catalog_provisioning_details=service_catalog_provisioning_details,
44346
44629
 
44347
44630
  # the properties below are optional
44348
44631
  project_description="projectDescription",
@@ -44350,29 +44633,47 @@ class CfnProjectProps:
44350
44633
  provisioned_product_id="provisionedProductId",
44351
44634
  provisioned_product_status_message="provisionedProductStatusMessage"
44352
44635
  ),
44636
+ service_catalog_provisioning_details=service_catalog_provisioning_details,
44353
44637
  tags=[CfnTag(
44354
44638
  key="key",
44355
44639
  value="value"
44640
+ )],
44641
+ template_provider_details=[sagemaker.CfnProject.TemplateProviderDetailProperty(
44642
+ cfn_template_provider_detail=sagemaker.CfnProject.CfnTemplateProviderDetailProperty(
44643
+ template_name="templateName",
44644
+ template_url="templateUrl",
44645
+
44646
+ # the properties below are optional
44647
+ parameters=[sagemaker.CfnProject.CfnStackParameterProperty(
44648
+ key="key",
44649
+ value="value"
44650
+ )],
44651
+ role_arn="roleArn"
44652
+ )
44356
44653
  )]
44357
44654
  )
44358
44655
  '''
44359
44656
  if __debug__:
44360
44657
  type_hints = typing.get_type_hints(_typecheckingstub__87f81cd557ad556b59bd3547ccb89572ed4ac29822e147ed5868563162997450)
44361
44658
  check_type(argname="argument project_name", value=project_name, expected_type=type_hints["project_name"])
44362
- check_type(argname="argument service_catalog_provisioning_details", value=service_catalog_provisioning_details, expected_type=type_hints["service_catalog_provisioning_details"])
44363
44659
  check_type(argname="argument project_description", value=project_description, expected_type=type_hints["project_description"])
44364
44660
  check_type(argname="argument service_catalog_provisioned_product_details", value=service_catalog_provisioned_product_details, expected_type=type_hints["service_catalog_provisioned_product_details"])
44661
+ check_type(argname="argument service_catalog_provisioning_details", value=service_catalog_provisioning_details, expected_type=type_hints["service_catalog_provisioning_details"])
44365
44662
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
44663
+ check_type(argname="argument template_provider_details", value=template_provider_details, expected_type=type_hints["template_provider_details"])
44366
44664
  self._values: typing.Dict[builtins.str, typing.Any] = {
44367
44665
  "project_name": project_name,
44368
- "service_catalog_provisioning_details": service_catalog_provisioning_details,
44369
44666
  }
44370
44667
  if project_description is not None:
44371
44668
  self._values["project_description"] = project_description
44372
44669
  if service_catalog_provisioned_product_details is not None:
44373
44670
  self._values["service_catalog_provisioned_product_details"] = service_catalog_provisioned_product_details
44671
+ if service_catalog_provisioning_details is not None:
44672
+ self._values["service_catalog_provisioning_details"] = service_catalog_provisioning_details
44374
44673
  if tags is not None:
44375
44674
  self._values["tags"] = tags
44675
+ if template_provider_details is not None:
44676
+ self._values["template_provider_details"] = template_provider_details
44376
44677
 
44377
44678
  @builtins.property
44378
44679
  def project_name(self) -> builtins.str:
@@ -44384,18 +44685,6 @@ class CfnProjectProps:
44384
44685
  assert result is not None, "Required property 'project_name' is missing"
44385
44686
  return typing.cast(builtins.str, result)
44386
44687
 
44387
- @builtins.property
44388
- def service_catalog_provisioning_details(self) -> typing.Any:
44389
- '''The product ID and provisioning artifact ID to provision a service catalog.
44390
-
44391
- For information, see `What is AWS Service Catalog <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html>`_ .
44392
-
44393
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html#cfn-sagemaker-project-servicecatalogprovisioningdetails
44394
- '''
44395
- result = self._values.get("service_catalog_provisioning_details")
44396
- assert result is not None, "Required property 'service_catalog_provisioning_details' is missing"
44397
- return typing.cast(typing.Any, result)
44398
-
44399
44688
  @builtins.property
44400
44689
  def project_description(self) -> typing.Optional[builtins.str]:
44401
44690
  '''The description of the project.
@@ -44418,6 +44707,17 @@ class CfnProjectProps:
44418
44707
  result = self._values.get("service_catalog_provisioned_product_details")
44419
44708
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnProject.ServiceCatalogProvisionedProductDetailsProperty]], result)
44420
44709
 
44710
+ @builtins.property
44711
+ def service_catalog_provisioning_details(self) -> typing.Any:
44712
+ '''The product ID and provisioning artifact ID to provision a service catalog.
44713
+
44714
+ For information, see `What is AWS Service Catalog <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html>`_ .
44715
+
44716
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html#cfn-sagemaker-project-servicecatalogprovisioningdetails
44717
+ '''
44718
+ result = self._values.get("service_catalog_provisioning_details")
44719
+ return typing.cast(typing.Any, result)
44720
+
44421
44721
  @builtins.property
44422
44722
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
44423
44723
  '''A list of key-value pairs to apply to this resource.
@@ -44429,6 +44729,17 @@ class CfnProjectProps:
44429
44729
  result = self._values.get("tags")
44430
44730
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
44431
44731
 
44732
+ @builtins.property
44733
+ def template_provider_details(
44734
+ self,
44735
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProject.TemplateProviderDetailProperty]]]]:
44736
+ '''An array of template providers associated with the project.
44737
+
44738
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html#cfn-sagemaker-project-templateproviderdetails
44739
+ '''
44740
+ result = self._values.get("template_provider_details")
44741
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProject.TemplateProviderDetailProperty]]]], result)
44742
+
44432
44743
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
44433
44744
  return isinstance(rhs, self.__class__) and rhs._values == self._values
44434
44745
 
@@ -44532,6 +44843,8 @@ class CfnSpace(
44532
44843
  ),
44533
44844
  lifecycle_config_arns=["lifecycleConfigArns"]
44534
44845
  ),
44846
+ remote_access="remoteAccess",
44847
+ space_managed_resources="spaceManagedResources",
44535
44848
  space_storage_settings=sagemaker.CfnSpace.SpaceStorageSettingsProperty(
44536
44849
  ebs_storage_settings=sagemaker.CfnSpace.EbsStorageSettingsProperty(
44537
44850
  ebs_volume_size_in_gb=123
@@ -45840,6 +46153,8 @@ class CfnSpace(
45840
46153
  "jupyter_lab_app_settings": "jupyterLabAppSettings",
45841
46154
  "jupyter_server_app_settings": "jupyterServerAppSettings",
45842
46155
  "kernel_gateway_app_settings": "kernelGatewayAppSettings",
46156
+ "remote_access": "remoteAccess",
46157
+ "space_managed_resources": "spaceManagedResources",
45843
46158
  "space_storage_settings": "spaceStorageSettings",
45844
46159
  },
45845
46160
  )
@@ -45853,6 +46168,8 @@ class CfnSpace(
45853
46168
  jupyter_lab_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSpace.SpaceJupyterLabAppSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
45854
46169
  jupyter_server_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSpace.JupyterServerAppSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
45855
46170
  kernel_gateway_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSpace.KernelGatewayAppSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
46171
+ remote_access: typing.Optional[builtins.str] = None,
46172
+ space_managed_resources: typing.Optional[builtins.str] = None,
45856
46173
  space_storage_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSpace.SpaceStorageSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
45857
46174
  ) -> None:
45858
46175
  '''A collection of space settings.
@@ -45863,6 +46180,8 @@ class CfnSpace(
45863
46180
  :param jupyter_lab_app_settings: The settings for the JupyterLab application.
45864
46181
  :param jupyter_server_app_settings: The JupyterServer app settings.
45865
46182
  :param kernel_gateway_app_settings: The KernelGateway app settings.
46183
+ :param remote_access: A setting that enables or disables remote access for a SageMaker space. When enabled, this allows you to connect to the remote space from your local IDE.
46184
+ :param space_managed_resources: If you enable this option, SageMaker AI creates the following resources on your behalf when you create the space:. - The user profile that possesses the space. - The app that the space contains.
45866
46185
  :param space_storage_settings: The storage settings for a space.
45867
46186
 
45868
46187
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-spacesettings.html
@@ -45938,6 +46257,8 @@ class CfnSpace(
45938
46257
  ),
45939
46258
  lifecycle_config_arns=["lifecycleConfigArns"]
45940
46259
  ),
46260
+ remote_access="remoteAccess",
46261
+ space_managed_resources="spaceManagedResources",
45941
46262
  space_storage_settings=sagemaker.CfnSpace.SpaceStorageSettingsProperty(
45942
46263
  ebs_storage_settings=sagemaker.CfnSpace.EbsStorageSettingsProperty(
45943
46264
  ebs_volume_size_in_gb=123
@@ -45953,6 +46274,8 @@ class CfnSpace(
45953
46274
  check_type(argname="argument jupyter_lab_app_settings", value=jupyter_lab_app_settings, expected_type=type_hints["jupyter_lab_app_settings"])
45954
46275
  check_type(argname="argument jupyter_server_app_settings", value=jupyter_server_app_settings, expected_type=type_hints["jupyter_server_app_settings"])
45955
46276
  check_type(argname="argument kernel_gateway_app_settings", value=kernel_gateway_app_settings, expected_type=type_hints["kernel_gateway_app_settings"])
46277
+ check_type(argname="argument remote_access", value=remote_access, expected_type=type_hints["remote_access"])
46278
+ check_type(argname="argument space_managed_resources", value=space_managed_resources, expected_type=type_hints["space_managed_resources"])
45956
46279
  check_type(argname="argument space_storage_settings", value=space_storage_settings, expected_type=type_hints["space_storage_settings"])
45957
46280
  self._values: typing.Dict[builtins.str, typing.Any] = {}
45958
46281
  if app_type is not None:
@@ -45967,6 +46290,10 @@ class CfnSpace(
45967
46290
  self._values["jupyter_server_app_settings"] = jupyter_server_app_settings
45968
46291
  if kernel_gateway_app_settings is not None:
45969
46292
  self._values["kernel_gateway_app_settings"] = kernel_gateway_app_settings
46293
+ if remote_access is not None:
46294
+ self._values["remote_access"] = remote_access
46295
+ if space_managed_resources is not None:
46296
+ self._values["space_managed_resources"] = space_managed_resources
45970
46297
  if space_storage_settings is not None:
45971
46298
  self._values["space_storage_settings"] = space_storage_settings
45972
46299
 
@@ -46038,6 +46365,29 @@ class CfnSpace(
46038
46365
  result = self._values.get("kernel_gateway_app_settings")
46039
46366
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnSpace.KernelGatewayAppSettingsProperty"]], result)
46040
46367
 
46368
+ @builtins.property
46369
+ def remote_access(self) -> typing.Optional[builtins.str]:
46370
+ '''A setting that enables or disables remote access for a SageMaker space.
46371
+
46372
+ When enabled, this allows you to connect to the remote space from your local IDE.
46373
+
46374
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-spacesettings.html#cfn-sagemaker-space-spacesettings-remoteaccess
46375
+ '''
46376
+ result = self._values.get("remote_access")
46377
+ return typing.cast(typing.Optional[builtins.str], result)
46378
+
46379
+ @builtins.property
46380
+ def space_managed_resources(self) -> typing.Optional[builtins.str]:
46381
+ '''If you enable this option, SageMaker AI creates the following resources on your behalf when you create the space:.
46382
+
46383
+ - The user profile that possesses the space.
46384
+ - The app that the space contains.
46385
+
46386
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-spacesettings.html#cfn-sagemaker-space-spacesettings-spacemanagedresources
46387
+ '''
46388
+ result = self._values.get("space_managed_resources")
46389
+ return typing.cast(typing.Optional[builtins.str], result)
46390
+
46041
46391
  @builtins.property
46042
46392
  def space_storage_settings(
46043
46393
  self,
@@ -46289,6 +46639,8 @@ class CfnSpaceProps:
46289
46639
  ),
46290
46640
  lifecycle_config_arns=["lifecycleConfigArns"]
46291
46641
  ),
46642
+ remote_access="remoteAccess",
46643
+ space_managed_resources="spaceManagedResources",
46292
46644
  space_storage_settings=sagemaker.CfnSpace.SpaceStorageSettingsProperty(
46293
46645
  ebs_storage_settings=sagemaker.CfnSpace.EbsStorageSettingsProperty(
46294
46646
  ebs_volume_size_in_gb=123
@@ -51220,15 +51572,15 @@ def _typecheckingstub__6a98e719c58aab3299db52c4086bfb65ee6438882423af805478e9ea3
51220
51572
  auth_mode: builtins.str,
51221
51573
  default_user_settings: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.UserSettingsProperty, typing.Dict[builtins.str, typing.Any]]],
51222
51574
  domain_name: builtins.str,
51223
- subnet_ids: typing.Sequence[builtins.str],
51224
- vpc_id: builtins.str,
51225
51575
  app_network_access_type: typing.Optional[builtins.str] = None,
51226
51576
  app_security_group_management: typing.Optional[builtins.str] = None,
51227
51577
  default_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DefaultSpaceSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
51228
51578
  domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DomainSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
51229
51579
  kms_key_id: typing.Optional[builtins.str] = None,
51580
+ subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
51230
51581
  tag_propagation: typing.Optional[builtins.str] = None,
51231
51582
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
51583
+ vpc_id: typing.Optional[builtins.str] = None,
51232
51584
  ) -> None:
51233
51585
  """Type checking stubs"""
51234
51586
  pass
@@ -51263,18 +51615,6 @@ def _typecheckingstub__76d0ed31020f4eadd792cd5d7897939d99ef06ed557509d040b88b5f6
51263
51615
  """Type checking stubs"""
51264
51616
  pass
51265
51617
 
51266
- def _typecheckingstub__6556642f81d027deb80da8cf42e945b715e6966790a8ab41e68da4acaaf3a9eb(
51267
- value: typing.List[builtins.str],
51268
- ) -> None:
51269
- """Type checking stubs"""
51270
- pass
51271
-
51272
- def _typecheckingstub__e0aca1d756799cd6468a535127ee441605b164991ff11c6effe6c40c519ff5c0(
51273
- value: builtins.str,
51274
- ) -> None:
51275
- """Type checking stubs"""
51276
- pass
51277
-
51278
51618
  def _typecheckingstub__66770e15c78955514aa53519369aa0389610ff7cbd94793f5ee385fb2c96a0cb(
51279
51619
  value: typing.Optional[builtins.str],
51280
51620
  ) -> None:
@@ -51305,6 +51645,12 @@ def _typecheckingstub__705995dde312c66454de0b9e9f6a8d7e895beb5c34f61395d1dab1369
51305
51645
  """Type checking stubs"""
51306
51646
  pass
51307
51647
 
51648
+ def _typecheckingstub__6556642f81d027deb80da8cf42e945b715e6966790a8ab41e68da4acaaf3a9eb(
51649
+ value: typing.Optional[typing.List[builtins.str]],
51650
+ ) -> None:
51651
+ """Type checking stubs"""
51652
+ pass
51653
+
51308
51654
  def _typecheckingstub__c3d58c631c2c753ff6694e786e5b7271c0e621cef1413bccab572fda47a21ab3(
51309
51655
  value: typing.Optional[builtins.str],
51310
51656
  ) -> None:
@@ -51317,6 +51663,12 @@ def _typecheckingstub__6d1a70c209913231f1eb30dba814eb3a3bc58f6f4341ea1392c5061d8
51317
51663
  """Type checking stubs"""
51318
51664
  pass
51319
51665
 
51666
+ def _typecheckingstub__e0aca1d756799cd6468a535127ee441605b164991ff11c6effe6c40c519ff5c0(
51667
+ value: typing.Optional[builtins.str],
51668
+ ) -> None:
51669
+ """Type checking stubs"""
51670
+ pass
51671
+
51320
51672
  def _typecheckingstub__7effd4411e9cef3285cdb58cb66208ce801332047fd17028be8db70aea812d86(
51321
51673
  *,
51322
51674
  idle_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.IdleSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -51574,15 +51926,15 @@ def _typecheckingstub__d70b90cbf9af0f3b53a18e5f11f7de868ef5fe3e6110bb229fd135001
51574
51926
  auth_mode: builtins.str,
51575
51927
  default_user_settings: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.UserSettingsProperty, typing.Dict[builtins.str, typing.Any]]],
51576
51928
  domain_name: builtins.str,
51577
- subnet_ids: typing.Sequence[builtins.str],
51578
- vpc_id: builtins.str,
51579
51929
  app_network_access_type: typing.Optional[builtins.str] = None,
51580
51930
  app_security_group_management: typing.Optional[builtins.str] = None,
51581
51931
  default_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DefaultSpaceSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
51582
51932
  domain_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.DomainSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
51583
51933
  kms_key_id: typing.Optional[builtins.str] = None,
51934
+ subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
51584
51935
  tag_propagation: typing.Optional[builtins.str] = None,
51585
51936
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
51937
+ vpc_id: typing.Optional[builtins.str] = None,
51586
51938
  ) -> None:
51587
51939
  """Type checking stubs"""
51588
51940
  pass
@@ -55502,10 +55854,11 @@ def _typecheckingstub__36d90c8a4de3ec6cd6aac98e8b78ab8d07ed4eaab37e59bd5a481048e
55502
55854
  id: builtins.str,
55503
55855
  *,
55504
55856
  project_name: builtins.str,
55505
- service_catalog_provisioning_details: typing.Any,
55506
55857
  project_description: typing.Optional[builtins.str] = None,
55507
55858
  service_catalog_provisioned_product_details: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.ServiceCatalogProvisionedProductDetailsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
55859
+ service_catalog_provisioning_details: typing.Any = None,
55508
55860
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
55861
+ template_provider_details: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.TemplateProviderDetailProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
55509
55862
  ) -> None:
55510
55863
  """Type checking stubs"""
55511
55864
  pass
@@ -55528,12 +55881,6 @@ def _typecheckingstub__e671a1f8a3c6667e300b84008f581f9371ad7d9618076d90853fed714
55528
55881
  """Type checking stubs"""
55529
55882
  pass
55530
55883
 
55531
- def _typecheckingstub__9d718ddafa3c422dac1f0d00451c0ed5aa622263f6d29b78b9bf867f3295e22c(
55532
- value: typing.Any,
55533
- ) -> None:
55534
- """Type checking stubs"""
55535
- pass
55536
-
55537
55884
  def _typecheckingstub__bbba1d96ca34775b9d6bb59929ffa5affcca7733f06a146a63b8176d032affec(
55538
55885
  value: typing.Optional[builtins.str],
55539
55886
  ) -> None:
@@ -55546,12 +55893,42 @@ def _typecheckingstub__718846b7774e70e41ab8c08d9dd7855efeff4369da6fb321666c7229a
55546
55893
  """Type checking stubs"""
55547
55894
  pass
55548
55895
 
55896
+ def _typecheckingstub__9d718ddafa3c422dac1f0d00451c0ed5aa622263f6d29b78b9bf867f3295e22c(
55897
+ value: typing.Any,
55898
+ ) -> None:
55899
+ """Type checking stubs"""
55900
+ pass
55901
+
55549
55902
  def _typecheckingstub__710e9f99725a9a45c1269e140374af7d943b012a3c73a0a20bb49a9120ab06c6(
55550
55903
  value: typing.Optional[typing.List[_CfnTag_f6864754]],
55551
55904
  ) -> None:
55552
55905
  """Type checking stubs"""
55553
55906
  pass
55554
55907
 
55908
+ def _typecheckingstub__37327309a66059bbaac8df3f1833107474485154b02e0371e4491fe9cd0c36a3(
55909
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProject.TemplateProviderDetailProperty]]]],
55910
+ ) -> None:
55911
+ """Type checking stubs"""
55912
+ pass
55913
+
55914
+ def _typecheckingstub__534e62c09f17026e2396197610e65023c50b40e1b78a108cdaaa85a583a9f89e(
55915
+ *,
55916
+ key: builtins.str,
55917
+ value: builtins.str,
55918
+ ) -> None:
55919
+ """Type checking stubs"""
55920
+ pass
55921
+
55922
+ def _typecheckingstub__a470528273d2446842ca763fb735017692619e229b48df7f63d35516e81b7022(
55923
+ *,
55924
+ template_name: builtins.str,
55925
+ template_url: builtins.str,
55926
+ parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.CfnStackParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
55927
+ role_arn: typing.Optional[builtins.str] = None,
55928
+ ) -> None:
55929
+ """Type checking stubs"""
55930
+ pass
55931
+
55555
55932
  def _typecheckingstub__4c5d0079b3ac561527f2289261df009b2bf57d1d90c3910d54e231f6364bc394(
55556
55933
  *,
55557
55934
  key: builtins.str,
@@ -55578,13 +55955,21 @@ def _typecheckingstub__b185388247b0a58156f6d5e7ae6d0df0e06e969d26ac85a21f650329c
55578
55955
  """Type checking stubs"""
55579
55956
  pass
55580
55957
 
55958
+ def _typecheckingstub__657cc6e15ef29b6c0d6e743c417a8819b7a46a25c0e1d1c738b644e09ba23776(
55959
+ *,
55960
+ cfn_template_provider_detail: typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.CfnTemplateProviderDetailProperty, typing.Dict[builtins.str, typing.Any]]],
55961
+ ) -> None:
55962
+ """Type checking stubs"""
55963
+ pass
55964
+
55581
55965
  def _typecheckingstub__87f81cd557ad556b59bd3547ccb89572ed4ac29822e147ed5868563162997450(
55582
55966
  *,
55583
55967
  project_name: builtins.str,
55584
- service_catalog_provisioning_details: typing.Any,
55585
55968
  project_description: typing.Optional[builtins.str] = None,
55586
55969
  service_catalog_provisioned_product_details: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.ServiceCatalogProvisionedProductDetailsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
55970
+ service_catalog_provisioning_details: typing.Any = None,
55587
55971
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
55972
+ template_provider_details: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.TemplateProviderDetailProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
55588
55973
  ) -> None:
55589
55974
  """Type checking stubs"""
55590
55975
  pass
@@ -55776,6 +56161,8 @@ def _typecheckingstub__20403c26618d8fc71e879e92b0c5ef05fbfe71e99cf6ee51d918b935f
55776
56161
  jupyter_lab_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSpace.SpaceJupyterLabAppSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
55777
56162
  jupyter_server_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSpace.JupyterServerAppSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
55778
56163
  kernel_gateway_app_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSpace.KernelGatewayAppSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
56164
+ remote_access: typing.Optional[builtins.str] = None,
56165
+ space_managed_resources: typing.Optional[builtins.str] = None,
55779
56166
  space_storage_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSpace.SpaceStorageSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
55780
56167
  ) -> None:
55781
56168
  """Type checking stubs"""