aws-cdk-lib 2.156.0__py3-none-any.whl → 2.157.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 (53) hide show
  1. aws_cdk/__init__.py +26 -22
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.156.0.jsii.tgz → aws-cdk-lib@2.157.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +10 -75
  5. aws_cdk/aws_amplify/__init__.py +106 -0
  6. aws_cdk/aws_apigatewayv2/__init__.py +81 -13
  7. aws_cdk/aws_appintegrations/__init__.py +14 -14
  8. aws_cdk/aws_applicationsignals/__init__.py +750 -1
  9. aws_cdk/aws_appsync/__init__.py +50 -18
  10. aws_cdk/aws_autoscaling/__init__.py +6 -6
  11. aws_cdk/aws_backup/__init__.py +39 -0
  12. aws_cdk/aws_batch/__init__.py +41 -0
  13. aws_cdk/aws_bedrock/__init__.py +1513 -94
  14. aws_cdk/aws_chatbot/__init__.py +6 -6
  15. aws_cdk/aws_cloudformation/__init__.py +22 -22
  16. aws_cdk/aws_cloudfront/experimental/__init__.py +30 -3
  17. aws_cdk/aws_datasync/__init__.py +40 -29
  18. aws_cdk/aws_ec2/__init__.py +373 -49
  19. aws_cdk/aws_ecs/__init__.py +253 -87
  20. aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -4
  21. aws_cdk/aws_entityresolution/__init__.py +117 -4
  22. aws_cdk/aws_glue/__init__.py +0 -8
  23. aws_cdk/aws_groundstation/__init__.py +27 -16
  24. aws_cdk/aws_guardduty/__init__.py +26 -14
  25. aws_cdk/aws_iotfleetwise/__init__.py +108 -0
  26. aws_cdk/aws_lambda/__init__.py +147 -17
  27. aws_cdk/aws_lambda_nodejs/__init__.py +30 -3
  28. aws_cdk/aws_macie/__init__.py +4 -4
  29. aws_cdk/aws_medialive/__init__.py +348 -0
  30. aws_cdk/aws_mediapackagev2/__init__.py +38 -38
  31. aws_cdk/aws_neptune/__init__.py +14 -8
  32. aws_cdk/aws_opensearchservice/__init__.py +194 -0
  33. aws_cdk/aws_pcaconnectorscep/__init__.py +884 -0
  34. aws_cdk/aws_personalize/__init__.py +2 -2
  35. aws_cdk/aws_pipes/__init__.py +22 -22
  36. aws_cdk/aws_qbusiness/__init__.py +675 -6
  37. aws_cdk/aws_quicksight/__init__.py +3285 -0
  38. aws_cdk/aws_rds/__init__.py +18 -0
  39. aws_cdk/aws_sagemaker/__init__.py +1167 -0
  40. aws_cdk/aws_secretsmanager/__init__.py +2 -3
  41. aws_cdk/aws_securityhub/__init__.py +108 -103
  42. aws_cdk/aws_ses/__init__.py +31 -0
  43. aws_cdk/aws_sns/__init__.py +19 -13
  44. aws_cdk/aws_ssm/__init__.py +10 -6
  45. aws_cdk/aws_ssmquicksetup/__init__.py +967 -0
  46. aws_cdk/aws_stepfunctions_tasks/__init__.py +4 -4
  47. aws_cdk/triggers/__init__.py +30 -3
  48. {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/METADATA +1 -1
  49. {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/RECORD +53 -51
  50. {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/LICENSE +0 -0
  51. {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/NOTICE +0 -0
  52. {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/WHEEL +0 -0
  53. {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/top_level.txt +0 -0
@@ -1489,6 +1489,1038 @@ class CfnAppProps:
1489
1489
  )
1490
1490
 
1491
1491
 
1492
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
1493
+ class CfnCluster(
1494
+ _CfnResource_9df397a6,
1495
+ metaclass=jsii.JSIIMeta,
1496
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnCluster",
1497
+ ):
1498
+ '''Resource Type definition for AWS::SageMaker::Cluster.
1499
+
1500
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html
1501
+ :cloudformationResource: AWS::SageMaker::Cluster
1502
+ :exampleMetadata: fixture=_generated
1503
+
1504
+ Example::
1505
+
1506
+ # The code below shows an example of how to instantiate this type.
1507
+ # The values are placeholders you should change.
1508
+ from aws_cdk import aws_sagemaker as sagemaker
1509
+
1510
+ cfn_cluster = sagemaker.CfnCluster(self, "MyCfnCluster",
1511
+ instance_groups=[sagemaker.CfnCluster.ClusterInstanceGroupProperty(
1512
+ execution_role="executionRole",
1513
+ instance_count=123,
1514
+ instance_group_name="instanceGroupName",
1515
+ instance_type="instanceType",
1516
+ life_cycle_config=sagemaker.CfnCluster.ClusterLifeCycleConfigProperty(
1517
+ on_create="onCreate",
1518
+ source_s3_uri="sourceS3Uri"
1519
+ ),
1520
+
1521
+ # the properties below are optional
1522
+ current_count=123,
1523
+ instance_storage_configs=[sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty(
1524
+ ebs_volume_config=sagemaker.CfnCluster.ClusterEbsVolumeConfigProperty(
1525
+ volume_size_in_gb=123
1526
+ )
1527
+ )],
1528
+ on_start_deep_health_checks=["onStartDeepHealthChecks"],
1529
+ threads_per_core=123
1530
+ )],
1531
+
1532
+ # the properties below are optional
1533
+ cluster_name="clusterName",
1534
+ node_recovery="nodeRecovery",
1535
+ orchestrator=sagemaker.CfnCluster.OrchestratorProperty(
1536
+ eks=sagemaker.CfnCluster.ClusterOrchestratorEksConfigProperty(
1537
+ cluster_arn="clusterArn"
1538
+ )
1539
+ ),
1540
+ tags=[CfnTag(
1541
+ key="key",
1542
+ value="value"
1543
+ )],
1544
+ vpc_config=sagemaker.CfnCluster.VpcConfigProperty(
1545
+ security_group_ids=["securityGroupIds"],
1546
+ subnets=["subnets"]
1547
+ )
1548
+ )
1549
+ '''
1550
+
1551
+ def __init__(
1552
+ self,
1553
+ scope: _constructs_77d1e7e8.Construct,
1554
+ id: builtins.str,
1555
+ *,
1556
+ instance_groups: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ClusterInstanceGroupProperty", typing.Dict[builtins.str, typing.Any]]]]],
1557
+ cluster_name: typing.Optional[builtins.str] = None,
1558
+ node_recovery: typing.Optional[builtins.str] = None,
1559
+ orchestrator: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.OrchestratorProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1560
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1561
+ vpc_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.VpcConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1562
+ ) -> None:
1563
+ '''
1564
+ :param scope: Scope in which this resource is defined.
1565
+ :param id: Construct identifier for this resource (unique in its scope).
1566
+ :param instance_groups: The instance groups of the SageMaker HyperPod cluster.
1567
+ :param cluster_name: The name of the HyperPod Cluster.
1568
+ :param node_recovery: If node auto-recovery is set to true, faulty nodes will be replaced or rebooted when a failure is detected. If set to false, nodes will be labelled when a fault is detected.
1569
+ :param orchestrator: Specifies parameter(s) specific to the orchestrator, e.g. specify the EKS cluster.
1570
+ :param tags: Custom tags for managing the SageMaker HyperPod cluster as an AWS resource. You can add tags to your cluster in the same way you add them in other AWS services that support tagging.
1571
+ :param vpc_config: Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC.
1572
+ '''
1573
+ if __debug__:
1574
+ type_hints = typing.get_type_hints(_typecheckingstub__b1441bbec1bb60460bda62b43765e140885fbb36e13b090ded31c919b4f27ca6)
1575
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
1576
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1577
+ props = CfnClusterProps(
1578
+ instance_groups=instance_groups,
1579
+ cluster_name=cluster_name,
1580
+ node_recovery=node_recovery,
1581
+ orchestrator=orchestrator,
1582
+ tags=tags,
1583
+ vpc_config=vpc_config,
1584
+ )
1585
+
1586
+ jsii.create(self.__class__, self, [scope, id, props])
1587
+
1588
+ @jsii.member(jsii_name="inspect")
1589
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
1590
+ '''Examines the CloudFormation resource and discloses attributes.
1591
+
1592
+ :param inspector: tree inspector to collect and process attributes.
1593
+ '''
1594
+ if __debug__:
1595
+ type_hints = typing.get_type_hints(_typecheckingstub__c6bf38c830f5d60bc842320feb4dec3a217b386f6d517f4958fd6640eda19286)
1596
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
1597
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
1598
+
1599
+ @jsii.member(jsii_name="renderProperties")
1600
+ def _render_properties(
1601
+ self,
1602
+ props: typing.Mapping[builtins.str, typing.Any],
1603
+ ) -> typing.Mapping[builtins.str, typing.Any]:
1604
+ '''
1605
+ :param props: -
1606
+ '''
1607
+ if __debug__:
1608
+ type_hints = typing.get_type_hints(_typecheckingstub__23ff930ab861d82c5316349d3cb92e229dc76252f7fe321a81296dd8049216aa)
1609
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
1610
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
1611
+
1612
+ @jsii.python.classproperty
1613
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
1614
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
1615
+ '''The CloudFormation resource type name for this resource class.'''
1616
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
1617
+
1618
+ @builtins.property
1619
+ @jsii.member(jsii_name="attrClusterArn")
1620
+ def attr_cluster_arn(self) -> builtins.str:
1621
+ '''The Amazon Resource Name (ARN) of the HyperPod Cluster.
1622
+
1623
+ :cloudformationAttribute: ClusterArn
1624
+ '''
1625
+ return typing.cast(builtins.str, jsii.get(self, "attrClusterArn"))
1626
+
1627
+ @builtins.property
1628
+ @jsii.member(jsii_name="attrClusterStatus")
1629
+ def attr_cluster_status(self) -> builtins.str:
1630
+ '''The status of the HyperPod Cluster.
1631
+
1632
+ :cloudformationAttribute: ClusterStatus
1633
+ '''
1634
+ return typing.cast(builtins.str, jsii.get(self, "attrClusterStatus"))
1635
+
1636
+ @builtins.property
1637
+ @jsii.member(jsii_name="attrCreationTime")
1638
+ def attr_creation_time(self) -> builtins.str:
1639
+ '''The time at which the HyperPod cluster was created.
1640
+
1641
+ :cloudformationAttribute: CreationTime
1642
+ '''
1643
+ return typing.cast(builtins.str, jsii.get(self, "attrCreationTime"))
1644
+
1645
+ @builtins.property
1646
+ @jsii.member(jsii_name="attrFailureMessage")
1647
+ def attr_failure_message(self) -> builtins.str:
1648
+ '''The failure message of the HyperPod Cluster.
1649
+
1650
+ :cloudformationAttribute: FailureMessage
1651
+ '''
1652
+ return typing.cast(builtins.str, jsii.get(self, "attrFailureMessage"))
1653
+
1654
+ @builtins.property
1655
+ @jsii.member(jsii_name="cdkTagManager")
1656
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
1657
+ '''Tag Manager which manages the tags for this resource.'''
1658
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
1659
+
1660
+ @builtins.property
1661
+ @jsii.member(jsii_name="cfnProperties")
1662
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
1663
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
1664
+
1665
+ @builtins.property
1666
+ @jsii.member(jsii_name="instanceGroups")
1667
+ def instance_groups(
1668
+ self,
1669
+ ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterInstanceGroupProperty"]]]:
1670
+ '''The instance groups of the SageMaker HyperPod cluster.'''
1671
+ return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterInstanceGroupProperty"]]], jsii.get(self, "instanceGroups"))
1672
+
1673
+ @instance_groups.setter
1674
+ def instance_groups(
1675
+ self,
1676
+ value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterInstanceGroupProperty"]]],
1677
+ ) -> None:
1678
+ if __debug__:
1679
+ type_hints = typing.get_type_hints(_typecheckingstub__4e78b567f109d38ee1f8221168fe230f3c378e24d69dab4b08d88a01e417dae5)
1680
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1681
+ jsii.set(self, "instanceGroups", value) # pyright: ignore[reportArgumentType]
1682
+
1683
+ @builtins.property
1684
+ @jsii.member(jsii_name="clusterName")
1685
+ def cluster_name(self) -> typing.Optional[builtins.str]:
1686
+ '''The name of the HyperPod Cluster.'''
1687
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "clusterName"))
1688
+
1689
+ @cluster_name.setter
1690
+ def cluster_name(self, value: typing.Optional[builtins.str]) -> None:
1691
+ if __debug__:
1692
+ type_hints = typing.get_type_hints(_typecheckingstub__8c72731c4fb9d1b248db78e05e403c022229ea39aa9884e7da88a1c9dd345bfb)
1693
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1694
+ jsii.set(self, "clusterName", value) # pyright: ignore[reportArgumentType]
1695
+
1696
+ @builtins.property
1697
+ @jsii.member(jsii_name="nodeRecovery")
1698
+ def node_recovery(self) -> typing.Optional[builtins.str]:
1699
+ '''If node auto-recovery is set to true, faulty nodes will be replaced or rebooted when a failure is detected.'''
1700
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nodeRecovery"))
1701
+
1702
+ @node_recovery.setter
1703
+ def node_recovery(self, value: typing.Optional[builtins.str]) -> None:
1704
+ if __debug__:
1705
+ type_hints = typing.get_type_hints(_typecheckingstub__4fbe65936cd747930256e6fb03ae406dcd4ea78b463b13ed47a475b84468f655)
1706
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1707
+ jsii.set(self, "nodeRecovery", value) # pyright: ignore[reportArgumentType]
1708
+
1709
+ @builtins.property
1710
+ @jsii.member(jsii_name="orchestrator")
1711
+ def orchestrator(
1712
+ self,
1713
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.OrchestratorProperty"]]:
1714
+ '''Specifies parameter(s) specific to the orchestrator, e.g. specify the EKS cluster.'''
1715
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.OrchestratorProperty"]], jsii.get(self, "orchestrator"))
1716
+
1717
+ @orchestrator.setter
1718
+ def orchestrator(
1719
+ self,
1720
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.OrchestratorProperty"]],
1721
+ ) -> None:
1722
+ if __debug__:
1723
+ type_hints = typing.get_type_hints(_typecheckingstub__b28b5799cdd1c859107ae372c1215ec60b0e0936d622ea46ffde5ae876779722)
1724
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1725
+ jsii.set(self, "orchestrator", value) # pyright: ignore[reportArgumentType]
1726
+
1727
+ @builtins.property
1728
+ @jsii.member(jsii_name="tags")
1729
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1730
+ '''Custom tags for managing the SageMaker HyperPod cluster as an AWS resource.'''
1731
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
1732
+
1733
+ @tags.setter
1734
+ def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
1735
+ if __debug__:
1736
+ type_hints = typing.get_type_hints(_typecheckingstub__d084f139dda46e8f580a7b39f59ba1634670f397fa2aa5cb51e1f2f0cb2b6cbe)
1737
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1738
+ jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
1739
+
1740
+ @builtins.property
1741
+ @jsii.member(jsii_name="vpcConfig")
1742
+ def vpc_config(
1743
+ self,
1744
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConfigProperty"]]:
1745
+ '''Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.'''
1746
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConfigProperty"]], jsii.get(self, "vpcConfig"))
1747
+
1748
+ @vpc_config.setter
1749
+ def vpc_config(
1750
+ self,
1751
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConfigProperty"]],
1752
+ ) -> None:
1753
+ if __debug__:
1754
+ type_hints = typing.get_type_hints(_typecheckingstub__429f3349777c49353a90fb2e147d893a183eb1e53971ad423f88736afc16b14c)
1755
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1756
+ jsii.set(self, "vpcConfig", value) # pyright: ignore[reportArgumentType]
1757
+
1758
+ @jsii.data_type(
1759
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnCluster.ClusterEbsVolumeConfigProperty",
1760
+ jsii_struct_bases=[],
1761
+ name_mapping={"volume_size_in_gb": "volumeSizeInGb"},
1762
+ )
1763
+ class ClusterEbsVolumeConfigProperty:
1764
+ def __init__(
1765
+ self,
1766
+ *,
1767
+ volume_size_in_gb: typing.Optional[jsii.Number] = None,
1768
+ ) -> None:
1769
+ '''Defines the configuration for attaching additional Amazon Elastic Block Store (EBS) volumes to the instances in the SageMaker HyperPod cluster instance group.
1770
+
1771
+ The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
1772
+
1773
+ :param volume_size_in_gb: The size in gigabytes (GB) of the additional EBS volume to be attached to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
1774
+
1775
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterebsvolumeconfig.html
1776
+ :exampleMetadata: fixture=_generated
1777
+
1778
+ Example::
1779
+
1780
+ # The code below shows an example of how to instantiate this type.
1781
+ # The values are placeholders you should change.
1782
+ from aws_cdk import aws_sagemaker as sagemaker
1783
+
1784
+ cluster_ebs_volume_config_property = sagemaker.CfnCluster.ClusterEbsVolumeConfigProperty(
1785
+ volume_size_in_gb=123
1786
+ )
1787
+ '''
1788
+ if __debug__:
1789
+ type_hints = typing.get_type_hints(_typecheckingstub__9c3cafd59fbc880606685f87e0e67d5a5ce5428cfebf3db8838122cd54c4a361)
1790
+ check_type(argname="argument volume_size_in_gb", value=volume_size_in_gb, expected_type=type_hints["volume_size_in_gb"])
1791
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
1792
+ if volume_size_in_gb is not None:
1793
+ self._values["volume_size_in_gb"] = volume_size_in_gb
1794
+
1795
+ @builtins.property
1796
+ def volume_size_in_gb(self) -> typing.Optional[jsii.Number]:
1797
+ '''The size in gigabytes (GB) of the additional EBS volume to be attached to the instances in the SageMaker HyperPod cluster instance group.
1798
+
1799
+ The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
1800
+
1801
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterebsvolumeconfig.html#cfn-sagemaker-cluster-clusterebsvolumeconfig-volumesizeingb
1802
+ '''
1803
+ result = self._values.get("volume_size_in_gb")
1804
+ return typing.cast(typing.Optional[jsii.Number], result)
1805
+
1806
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
1807
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
1808
+
1809
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
1810
+ return not (rhs == self)
1811
+
1812
+ def __repr__(self) -> str:
1813
+ return "ClusterEbsVolumeConfigProperty(%s)" % ", ".join(
1814
+ k + "=" + repr(v) for k, v in self._values.items()
1815
+ )
1816
+
1817
+ @jsii.data_type(
1818
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnCluster.ClusterInstanceGroupProperty",
1819
+ jsii_struct_bases=[],
1820
+ name_mapping={
1821
+ "execution_role": "executionRole",
1822
+ "instance_count": "instanceCount",
1823
+ "instance_group_name": "instanceGroupName",
1824
+ "instance_type": "instanceType",
1825
+ "life_cycle_config": "lifeCycleConfig",
1826
+ "current_count": "currentCount",
1827
+ "instance_storage_configs": "instanceStorageConfigs",
1828
+ "on_start_deep_health_checks": "onStartDeepHealthChecks",
1829
+ "threads_per_core": "threadsPerCore",
1830
+ },
1831
+ )
1832
+ class ClusterInstanceGroupProperty:
1833
+ def __init__(
1834
+ self,
1835
+ *,
1836
+ execution_role: builtins.str,
1837
+ instance_count: jsii.Number,
1838
+ instance_group_name: builtins.str,
1839
+ instance_type: builtins.str,
1840
+ life_cycle_config: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ClusterLifeCycleConfigProperty", typing.Dict[builtins.str, typing.Any]]],
1841
+ current_count: typing.Optional[jsii.Number] = None,
1842
+ instance_storage_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ClusterInstanceStorageConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
1843
+ on_start_deep_health_checks: typing.Optional[typing.Sequence[builtins.str]] = None,
1844
+ threads_per_core: typing.Optional[jsii.Number] = None,
1845
+ ) -> None:
1846
+ '''Details of an instance group in a SageMaker HyperPod cluster.
1847
+
1848
+ :param execution_role: The execution role for the instance group to assume.
1849
+ :param instance_count: The number of instances you specified to add to the instance group of a SageMaker HyperPod cluster.
1850
+ :param instance_group_name: The name of the instance group of a SageMaker HyperPod cluster.
1851
+ :param instance_type: The instance type of the instance group of a SageMaker HyperPod cluster.
1852
+ :param life_cycle_config: The lifecycle configuration for a SageMaker HyperPod cluster.
1853
+ :param current_count: The number of instances that are currently in the instance group of a SageMaker HyperPod cluster.
1854
+ :param instance_storage_configs: The instance storage configuration for the instance group.
1855
+ :param on_start_deep_health_checks: Nodes will undergo advanced stress test to detect and replace faulty instances, based on the type of deep health check(s) passed in.
1856
+ :param threads_per_core: The number you specified to TreadsPerCore in CreateCluster for enabling or disabling multithreading. For instance types that support multithreading, you can specify 1 for disabling multithreading and 2 for enabling multithreading.
1857
+
1858
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html
1859
+ :exampleMetadata: fixture=_generated
1860
+
1861
+ Example::
1862
+
1863
+ # The code below shows an example of how to instantiate this type.
1864
+ # The values are placeholders you should change.
1865
+ from aws_cdk import aws_sagemaker as sagemaker
1866
+
1867
+ cluster_instance_group_property = sagemaker.CfnCluster.ClusterInstanceGroupProperty(
1868
+ execution_role="executionRole",
1869
+ instance_count=123,
1870
+ instance_group_name="instanceGroupName",
1871
+ instance_type="instanceType",
1872
+ life_cycle_config=sagemaker.CfnCluster.ClusterLifeCycleConfigProperty(
1873
+ on_create="onCreate",
1874
+ source_s3_uri="sourceS3Uri"
1875
+ ),
1876
+
1877
+ # the properties below are optional
1878
+ current_count=123,
1879
+ instance_storage_configs=[sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty(
1880
+ ebs_volume_config=sagemaker.CfnCluster.ClusterEbsVolumeConfigProperty(
1881
+ volume_size_in_gb=123
1882
+ )
1883
+ )],
1884
+ on_start_deep_health_checks=["onStartDeepHealthChecks"],
1885
+ threads_per_core=123
1886
+ )
1887
+ '''
1888
+ if __debug__:
1889
+ type_hints = typing.get_type_hints(_typecheckingstub__3a19719ba9f3f785eebfbcc6ee996f6178944dfe9cbd5d5cdf73341bd47bcc03)
1890
+ check_type(argname="argument execution_role", value=execution_role, expected_type=type_hints["execution_role"])
1891
+ check_type(argname="argument instance_count", value=instance_count, expected_type=type_hints["instance_count"])
1892
+ check_type(argname="argument instance_group_name", value=instance_group_name, expected_type=type_hints["instance_group_name"])
1893
+ check_type(argname="argument instance_type", value=instance_type, expected_type=type_hints["instance_type"])
1894
+ check_type(argname="argument life_cycle_config", value=life_cycle_config, expected_type=type_hints["life_cycle_config"])
1895
+ check_type(argname="argument current_count", value=current_count, expected_type=type_hints["current_count"])
1896
+ check_type(argname="argument instance_storage_configs", value=instance_storage_configs, expected_type=type_hints["instance_storage_configs"])
1897
+ check_type(argname="argument on_start_deep_health_checks", value=on_start_deep_health_checks, expected_type=type_hints["on_start_deep_health_checks"])
1898
+ check_type(argname="argument threads_per_core", value=threads_per_core, expected_type=type_hints["threads_per_core"])
1899
+ self._values: typing.Dict[builtins.str, typing.Any] = {
1900
+ "execution_role": execution_role,
1901
+ "instance_count": instance_count,
1902
+ "instance_group_name": instance_group_name,
1903
+ "instance_type": instance_type,
1904
+ "life_cycle_config": life_cycle_config,
1905
+ }
1906
+ if current_count is not None:
1907
+ self._values["current_count"] = current_count
1908
+ if instance_storage_configs is not None:
1909
+ self._values["instance_storage_configs"] = instance_storage_configs
1910
+ if on_start_deep_health_checks is not None:
1911
+ self._values["on_start_deep_health_checks"] = on_start_deep_health_checks
1912
+ if threads_per_core is not None:
1913
+ self._values["threads_per_core"] = threads_per_core
1914
+
1915
+ @builtins.property
1916
+ def execution_role(self) -> builtins.str:
1917
+ '''The execution role for the instance group to assume.
1918
+
1919
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-executionrole
1920
+ '''
1921
+ result = self._values.get("execution_role")
1922
+ assert result is not None, "Required property 'execution_role' is missing"
1923
+ return typing.cast(builtins.str, result)
1924
+
1925
+ @builtins.property
1926
+ def instance_count(self) -> jsii.Number:
1927
+ '''The number of instances you specified to add to the instance group of a SageMaker HyperPod cluster.
1928
+
1929
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-instancecount
1930
+ '''
1931
+ result = self._values.get("instance_count")
1932
+ assert result is not None, "Required property 'instance_count' is missing"
1933
+ return typing.cast(jsii.Number, result)
1934
+
1935
+ @builtins.property
1936
+ def instance_group_name(self) -> builtins.str:
1937
+ '''The name of the instance group of a SageMaker HyperPod cluster.
1938
+
1939
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-instancegroupname
1940
+ '''
1941
+ result = self._values.get("instance_group_name")
1942
+ assert result is not None, "Required property 'instance_group_name' is missing"
1943
+ return typing.cast(builtins.str, result)
1944
+
1945
+ @builtins.property
1946
+ def instance_type(self) -> builtins.str:
1947
+ '''The instance type of the instance group of a SageMaker HyperPod cluster.
1948
+
1949
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-instancetype
1950
+ '''
1951
+ result = self._values.get("instance_type")
1952
+ assert result is not None, "Required property 'instance_type' is missing"
1953
+ return typing.cast(builtins.str, result)
1954
+
1955
+ @builtins.property
1956
+ def life_cycle_config(
1957
+ self,
1958
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterLifeCycleConfigProperty"]:
1959
+ '''The lifecycle configuration for a SageMaker HyperPod cluster.
1960
+
1961
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-lifecycleconfig
1962
+ '''
1963
+ result = self._values.get("life_cycle_config")
1964
+ assert result is not None, "Required property 'life_cycle_config' is missing"
1965
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterLifeCycleConfigProperty"], result)
1966
+
1967
+ @builtins.property
1968
+ def current_count(self) -> typing.Optional[jsii.Number]:
1969
+ '''The number of instances that are currently in the instance group of a SageMaker HyperPod cluster.
1970
+
1971
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-currentcount
1972
+ '''
1973
+ result = self._values.get("current_count")
1974
+ return typing.cast(typing.Optional[jsii.Number], result)
1975
+
1976
+ @builtins.property
1977
+ def instance_storage_configs(
1978
+ self,
1979
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterInstanceStorageConfigProperty"]]]]:
1980
+ '''The instance storage configuration for the instance group.
1981
+
1982
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-instancestorageconfigs
1983
+ '''
1984
+ result = self._values.get("instance_storage_configs")
1985
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterInstanceStorageConfigProperty"]]]], result)
1986
+
1987
+ @builtins.property
1988
+ def on_start_deep_health_checks(
1989
+ self,
1990
+ ) -> typing.Optional[typing.List[builtins.str]]:
1991
+ '''Nodes will undergo advanced stress test to detect and replace faulty instances, based on the type of deep health check(s) passed in.
1992
+
1993
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-onstartdeephealthchecks
1994
+ '''
1995
+ result = self._values.get("on_start_deep_health_checks")
1996
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
1997
+
1998
+ @builtins.property
1999
+ def threads_per_core(self) -> typing.Optional[jsii.Number]:
2000
+ '''The number you specified to TreadsPerCore in CreateCluster for enabling or disabling multithreading.
2001
+
2002
+ For instance types that support multithreading, you can specify 1 for disabling multithreading and 2 for enabling multithreading.
2003
+
2004
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-threadspercore
2005
+ '''
2006
+ result = self._values.get("threads_per_core")
2007
+ return typing.cast(typing.Optional[jsii.Number], result)
2008
+
2009
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2010
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2011
+
2012
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2013
+ return not (rhs == self)
2014
+
2015
+ def __repr__(self) -> str:
2016
+ return "ClusterInstanceGroupProperty(%s)" % ", ".join(
2017
+ k + "=" + repr(v) for k, v in self._values.items()
2018
+ )
2019
+
2020
+ @jsii.data_type(
2021
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty",
2022
+ jsii_struct_bases=[],
2023
+ name_mapping={"ebs_volume_config": "ebsVolumeConfig"},
2024
+ )
2025
+ class ClusterInstanceStorageConfigProperty:
2026
+ def __init__(
2027
+ self,
2028
+ *,
2029
+ ebs_volume_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ClusterEbsVolumeConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2030
+ ) -> None:
2031
+ '''Defines the configuration for attaching additional storage to the instances in the SageMaker HyperPod cluster instance group.
2032
+
2033
+ :param ebs_volume_config: Defines the configuration for attaching additional Amazon Elastic Block Store (EBS) volumes to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
2034
+
2035
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancestorageconfig.html
2036
+ :exampleMetadata: fixture=_generated
2037
+
2038
+ Example::
2039
+
2040
+ # The code below shows an example of how to instantiate this type.
2041
+ # The values are placeholders you should change.
2042
+ from aws_cdk import aws_sagemaker as sagemaker
2043
+
2044
+ cluster_instance_storage_config_property = sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty(
2045
+ ebs_volume_config=sagemaker.CfnCluster.ClusterEbsVolumeConfigProperty(
2046
+ volume_size_in_gb=123
2047
+ )
2048
+ )
2049
+ '''
2050
+ if __debug__:
2051
+ type_hints = typing.get_type_hints(_typecheckingstub__43caf7c774c2545f8cff945a7d450e1acd83d6c11b7011b4cab6d25bea696218)
2052
+ check_type(argname="argument ebs_volume_config", value=ebs_volume_config, expected_type=type_hints["ebs_volume_config"])
2053
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
2054
+ if ebs_volume_config is not None:
2055
+ self._values["ebs_volume_config"] = ebs_volume_config
2056
+
2057
+ @builtins.property
2058
+ def ebs_volume_config(
2059
+ self,
2060
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterEbsVolumeConfigProperty"]]:
2061
+ '''Defines the configuration for attaching additional Amazon Elastic Block Store (EBS) volumes to the instances in the SageMaker HyperPod cluster instance group.
2062
+
2063
+ The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
2064
+
2065
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancestorageconfig.html#cfn-sagemaker-cluster-clusterinstancestorageconfig-ebsvolumeconfig
2066
+ '''
2067
+ result = self._values.get("ebs_volume_config")
2068
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterEbsVolumeConfigProperty"]], result)
2069
+
2070
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2071
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2072
+
2073
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2074
+ return not (rhs == self)
2075
+
2076
+ def __repr__(self) -> str:
2077
+ return "ClusterInstanceStorageConfigProperty(%s)" % ", ".join(
2078
+ k + "=" + repr(v) for k, v in self._values.items()
2079
+ )
2080
+
2081
+ @jsii.data_type(
2082
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnCluster.ClusterLifeCycleConfigProperty",
2083
+ jsii_struct_bases=[],
2084
+ name_mapping={"on_create": "onCreate", "source_s3_uri": "sourceS3Uri"},
2085
+ )
2086
+ class ClusterLifeCycleConfigProperty:
2087
+ def __init__(
2088
+ self,
2089
+ *,
2090
+ on_create: builtins.str,
2091
+ source_s3_uri: builtins.str,
2092
+ ) -> None:
2093
+ '''The lifecycle configuration for a SageMaker HyperPod cluster.
2094
+
2095
+ :param on_create: The file name of the entrypoint script of lifecycle scripts under SourceS3Uri. This entrypoint script runs during cluster creation.
2096
+ :param source_s3_uri: An Amazon S3 bucket path where your lifecycle scripts are stored.
2097
+
2098
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterlifecycleconfig.html
2099
+ :exampleMetadata: fixture=_generated
2100
+
2101
+ Example::
2102
+
2103
+ # The code below shows an example of how to instantiate this type.
2104
+ # The values are placeholders you should change.
2105
+ from aws_cdk import aws_sagemaker as sagemaker
2106
+
2107
+ cluster_life_cycle_config_property = sagemaker.CfnCluster.ClusterLifeCycleConfigProperty(
2108
+ on_create="onCreate",
2109
+ source_s3_uri="sourceS3Uri"
2110
+ )
2111
+ '''
2112
+ if __debug__:
2113
+ type_hints = typing.get_type_hints(_typecheckingstub__9feca01a5855cd661f26c8dbf78069a1fe8e659c3851cf6144113cdfc3cdc58b)
2114
+ check_type(argname="argument on_create", value=on_create, expected_type=type_hints["on_create"])
2115
+ check_type(argname="argument source_s3_uri", value=source_s3_uri, expected_type=type_hints["source_s3_uri"])
2116
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2117
+ "on_create": on_create,
2118
+ "source_s3_uri": source_s3_uri,
2119
+ }
2120
+
2121
+ @builtins.property
2122
+ def on_create(self) -> builtins.str:
2123
+ '''The file name of the entrypoint script of lifecycle scripts under SourceS3Uri.
2124
+
2125
+ This entrypoint script runs during cluster creation.
2126
+
2127
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterlifecycleconfig.html#cfn-sagemaker-cluster-clusterlifecycleconfig-oncreate
2128
+ '''
2129
+ result = self._values.get("on_create")
2130
+ assert result is not None, "Required property 'on_create' is missing"
2131
+ return typing.cast(builtins.str, result)
2132
+
2133
+ @builtins.property
2134
+ def source_s3_uri(self) -> builtins.str:
2135
+ '''An Amazon S3 bucket path where your lifecycle scripts are stored.
2136
+
2137
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterlifecycleconfig.html#cfn-sagemaker-cluster-clusterlifecycleconfig-sources3uri
2138
+ '''
2139
+ result = self._values.get("source_s3_uri")
2140
+ assert result is not None, "Required property 'source_s3_uri' is missing"
2141
+ return typing.cast(builtins.str, result)
2142
+
2143
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2144
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2145
+
2146
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2147
+ return not (rhs == self)
2148
+
2149
+ def __repr__(self) -> str:
2150
+ return "ClusterLifeCycleConfigProperty(%s)" % ", ".join(
2151
+ k + "=" + repr(v) for k, v in self._values.items()
2152
+ )
2153
+
2154
+ @jsii.data_type(
2155
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnCluster.ClusterOrchestratorEksConfigProperty",
2156
+ jsii_struct_bases=[],
2157
+ name_mapping={"cluster_arn": "clusterArn"},
2158
+ )
2159
+ class ClusterOrchestratorEksConfigProperty:
2160
+ def __init__(self, *, cluster_arn: builtins.str) -> None:
2161
+ '''Specifies parameter(s) related to EKS as orchestrator, e.g. the EKS cluster nodes will attach to,.
2162
+
2163
+ :param cluster_arn: The ARN of the EKS cluster, such as arn:aws:eks:us-west-2:123456789012:cluster/my-eks-cluster.
2164
+
2165
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterorchestratoreksconfig.html
2166
+ :exampleMetadata: fixture=_generated
2167
+
2168
+ Example::
2169
+
2170
+ # The code below shows an example of how to instantiate this type.
2171
+ # The values are placeholders you should change.
2172
+ from aws_cdk import aws_sagemaker as sagemaker
2173
+
2174
+ cluster_orchestrator_eks_config_property = sagemaker.CfnCluster.ClusterOrchestratorEksConfigProperty(
2175
+ cluster_arn="clusterArn"
2176
+ )
2177
+ '''
2178
+ if __debug__:
2179
+ type_hints = typing.get_type_hints(_typecheckingstub__3b374679c88beb50318d8d8daa787c0b2f669d656010f29c3a5f6b1e4aa2fe2e)
2180
+ check_type(argname="argument cluster_arn", value=cluster_arn, expected_type=type_hints["cluster_arn"])
2181
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2182
+ "cluster_arn": cluster_arn,
2183
+ }
2184
+
2185
+ @builtins.property
2186
+ def cluster_arn(self) -> builtins.str:
2187
+ '''The ARN of the EKS cluster, such as arn:aws:eks:us-west-2:123456789012:cluster/my-eks-cluster.
2188
+
2189
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterorchestratoreksconfig.html#cfn-sagemaker-cluster-clusterorchestratoreksconfig-clusterarn
2190
+ '''
2191
+ result = self._values.get("cluster_arn")
2192
+ assert result is not None, "Required property 'cluster_arn' is missing"
2193
+ return typing.cast(builtins.str, result)
2194
+
2195
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2196
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2197
+
2198
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2199
+ return not (rhs == self)
2200
+
2201
+ def __repr__(self) -> str:
2202
+ return "ClusterOrchestratorEksConfigProperty(%s)" % ", ".join(
2203
+ k + "=" + repr(v) for k, v in self._values.items()
2204
+ )
2205
+
2206
+ @jsii.data_type(
2207
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnCluster.OrchestratorProperty",
2208
+ jsii_struct_bases=[],
2209
+ name_mapping={"eks": "eks"},
2210
+ )
2211
+ class OrchestratorProperty:
2212
+ def __init__(
2213
+ self,
2214
+ *,
2215
+ eks: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ClusterOrchestratorEksConfigProperty", typing.Dict[builtins.str, typing.Any]]],
2216
+ ) -> None:
2217
+ '''Specifies parameter(s) specific to the orchestrator, e.g. specify the EKS cluster.
2218
+
2219
+ :param eks: Specifies parameter(s) related to EKS as orchestrator, e.g. the EKS cluster nodes will attach to,.
2220
+
2221
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-orchestrator.html
2222
+ :exampleMetadata: fixture=_generated
2223
+
2224
+ Example::
2225
+
2226
+ # The code below shows an example of how to instantiate this type.
2227
+ # The values are placeholders you should change.
2228
+ from aws_cdk import aws_sagemaker as sagemaker
2229
+
2230
+ orchestrator_property = sagemaker.CfnCluster.OrchestratorProperty(
2231
+ eks=sagemaker.CfnCluster.ClusterOrchestratorEksConfigProperty(
2232
+ cluster_arn="clusterArn"
2233
+ )
2234
+ )
2235
+ '''
2236
+ if __debug__:
2237
+ type_hints = typing.get_type_hints(_typecheckingstub__bd76c8323d4b86bae18d24faa04bdbae1945db1d8ba5ca351b2ce27ff07f8aa6)
2238
+ check_type(argname="argument eks", value=eks, expected_type=type_hints["eks"])
2239
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2240
+ "eks": eks,
2241
+ }
2242
+
2243
+ @builtins.property
2244
+ def eks(
2245
+ self,
2246
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterOrchestratorEksConfigProperty"]:
2247
+ '''Specifies parameter(s) related to EKS as orchestrator, e.g. the EKS cluster nodes will attach to,.
2248
+
2249
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-orchestrator.html#cfn-sagemaker-cluster-orchestrator-eks
2250
+ '''
2251
+ result = self._values.get("eks")
2252
+ assert result is not None, "Required property 'eks' is missing"
2253
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnCluster.ClusterOrchestratorEksConfigProperty"], result)
2254
+
2255
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2256
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2257
+
2258
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2259
+ return not (rhs == self)
2260
+
2261
+ def __repr__(self) -> str:
2262
+ return "OrchestratorProperty(%s)" % ", ".join(
2263
+ k + "=" + repr(v) for k, v in self._values.items()
2264
+ )
2265
+
2266
+ @jsii.data_type(
2267
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnCluster.VpcConfigProperty",
2268
+ jsii_struct_bases=[],
2269
+ name_mapping={"security_group_ids": "securityGroupIds", "subnets": "subnets"},
2270
+ )
2271
+ class VpcConfigProperty:
2272
+ def __init__(
2273
+ self,
2274
+ *,
2275
+ security_group_ids: typing.Sequence[builtins.str],
2276
+ subnets: typing.Sequence[builtins.str],
2277
+ ) -> None:
2278
+ '''Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.
2279
+
2280
+ You can control access to and from your resources by configuring a VPC.
2281
+
2282
+ :param security_group_ids: The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the Subnets field.
2283
+ :param subnets: The ID of the subnets in the VPC to which you want to connect your training job or model.
2284
+
2285
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-vpcconfig.html
2286
+ :exampleMetadata: fixture=_generated
2287
+
2288
+ Example::
2289
+
2290
+ # The code below shows an example of how to instantiate this type.
2291
+ # The values are placeholders you should change.
2292
+ from aws_cdk import aws_sagemaker as sagemaker
2293
+
2294
+ vpc_config_property = sagemaker.CfnCluster.VpcConfigProperty(
2295
+ security_group_ids=["securityGroupIds"],
2296
+ subnets=["subnets"]
2297
+ )
2298
+ '''
2299
+ if __debug__:
2300
+ type_hints = typing.get_type_hints(_typecheckingstub__c25c63e6108b86a8b4d868c1bea98ca33c486d394309500187dda4d53e294a1a)
2301
+ check_type(argname="argument security_group_ids", value=security_group_ids, expected_type=type_hints["security_group_ids"])
2302
+ check_type(argname="argument subnets", value=subnets, expected_type=type_hints["subnets"])
2303
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2304
+ "security_group_ids": security_group_ids,
2305
+ "subnets": subnets,
2306
+ }
2307
+
2308
+ @builtins.property
2309
+ def security_group_ids(self) -> typing.List[builtins.str]:
2310
+ '''The VPC security group IDs, in the form sg-xxxxxxxx.
2311
+
2312
+ Specify the security groups for the VPC that is specified in the Subnets field.
2313
+
2314
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-vpcconfig.html#cfn-sagemaker-cluster-vpcconfig-securitygroupids
2315
+ '''
2316
+ result = self._values.get("security_group_ids")
2317
+ assert result is not None, "Required property 'security_group_ids' is missing"
2318
+ return typing.cast(typing.List[builtins.str], result)
2319
+
2320
+ @builtins.property
2321
+ def subnets(self) -> typing.List[builtins.str]:
2322
+ '''The ID of the subnets in the VPC to which you want to connect your training job or model.
2323
+
2324
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-vpcconfig.html#cfn-sagemaker-cluster-vpcconfig-subnets
2325
+ '''
2326
+ result = self._values.get("subnets")
2327
+ assert result is not None, "Required property 'subnets' is missing"
2328
+ return typing.cast(typing.List[builtins.str], result)
2329
+
2330
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2331
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2332
+
2333
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2334
+ return not (rhs == self)
2335
+
2336
+ def __repr__(self) -> str:
2337
+ return "VpcConfigProperty(%s)" % ", ".join(
2338
+ k + "=" + repr(v) for k, v in self._values.items()
2339
+ )
2340
+
2341
+
2342
+ @jsii.data_type(
2343
+ jsii_type="aws-cdk-lib.aws_sagemaker.CfnClusterProps",
2344
+ jsii_struct_bases=[],
2345
+ name_mapping={
2346
+ "instance_groups": "instanceGroups",
2347
+ "cluster_name": "clusterName",
2348
+ "node_recovery": "nodeRecovery",
2349
+ "orchestrator": "orchestrator",
2350
+ "tags": "tags",
2351
+ "vpc_config": "vpcConfig",
2352
+ },
2353
+ )
2354
+ class CfnClusterProps:
2355
+ def __init__(
2356
+ self,
2357
+ *,
2358
+ instance_groups: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterInstanceGroupProperty, typing.Dict[builtins.str, typing.Any]]]]],
2359
+ cluster_name: typing.Optional[builtins.str] = None,
2360
+ node_recovery: typing.Optional[builtins.str] = None,
2361
+ orchestrator: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.OrchestratorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2362
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
2363
+ vpc_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.VpcConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2364
+ ) -> None:
2365
+ '''Properties for defining a ``CfnCluster``.
2366
+
2367
+ :param instance_groups: The instance groups of the SageMaker HyperPod cluster.
2368
+ :param cluster_name: The name of the HyperPod Cluster.
2369
+ :param node_recovery: If node auto-recovery is set to true, faulty nodes will be replaced or rebooted when a failure is detected. If set to false, nodes will be labelled when a fault is detected.
2370
+ :param orchestrator: Specifies parameter(s) specific to the orchestrator, e.g. specify the EKS cluster.
2371
+ :param tags: Custom tags for managing the SageMaker HyperPod cluster as an AWS resource. You can add tags to your cluster in the same way you add them in other AWS services that support tagging.
2372
+ :param vpc_config: Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC.
2373
+
2374
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html
2375
+ :exampleMetadata: fixture=_generated
2376
+
2377
+ Example::
2378
+
2379
+ # The code below shows an example of how to instantiate this type.
2380
+ # The values are placeholders you should change.
2381
+ from aws_cdk import aws_sagemaker as sagemaker
2382
+
2383
+ cfn_cluster_props = sagemaker.CfnClusterProps(
2384
+ instance_groups=[sagemaker.CfnCluster.ClusterInstanceGroupProperty(
2385
+ execution_role="executionRole",
2386
+ instance_count=123,
2387
+ instance_group_name="instanceGroupName",
2388
+ instance_type="instanceType",
2389
+ life_cycle_config=sagemaker.CfnCluster.ClusterLifeCycleConfigProperty(
2390
+ on_create="onCreate",
2391
+ source_s3_uri="sourceS3Uri"
2392
+ ),
2393
+
2394
+ # the properties below are optional
2395
+ current_count=123,
2396
+ instance_storage_configs=[sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty(
2397
+ ebs_volume_config=sagemaker.CfnCluster.ClusterEbsVolumeConfigProperty(
2398
+ volume_size_in_gb=123
2399
+ )
2400
+ )],
2401
+ on_start_deep_health_checks=["onStartDeepHealthChecks"],
2402
+ threads_per_core=123
2403
+ )],
2404
+
2405
+ # the properties below are optional
2406
+ cluster_name="clusterName",
2407
+ node_recovery="nodeRecovery",
2408
+ orchestrator=sagemaker.CfnCluster.OrchestratorProperty(
2409
+ eks=sagemaker.CfnCluster.ClusterOrchestratorEksConfigProperty(
2410
+ cluster_arn="clusterArn"
2411
+ )
2412
+ ),
2413
+ tags=[CfnTag(
2414
+ key="key",
2415
+ value="value"
2416
+ )],
2417
+ vpc_config=sagemaker.CfnCluster.VpcConfigProperty(
2418
+ security_group_ids=["securityGroupIds"],
2419
+ subnets=["subnets"]
2420
+ )
2421
+ )
2422
+ '''
2423
+ if __debug__:
2424
+ type_hints = typing.get_type_hints(_typecheckingstub__c8126a53dc1741a2edde75d8d4eca79c53a2294746ea237dfba0097a758522ce)
2425
+ check_type(argname="argument instance_groups", value=instance_groups, expected_type=type_hints["instance_groups"])
2426
+ check_type(argname="argument cluster_name", value=cluster_name, expected_type=type_hints["cluster_name"])
2427
+ check_type(argname="argument node_recovery", value=node_recovery, expected_type=type_hints["node_recovery"])
2428
+ check_type(argname="argument orchestrator", value=orchestrator, expected_type=type_hints["orchestrator"])
2429
+ check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
2430
+ check_type(argname="argument vpc_config", value=vpc_config, expected_type=type_hints["vpc_config"])
2431
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2432
+ "instance_groups": instance_groups,
2433
+ }
2434
+ if cluster_name is not None:
2435
+ self._values["cluster_name"] = cluster_name
2436
+ if node_recovery is not None:
2437
+ self._values["node_recovery"] = node_recovery
2438
+ if orchestrator is not None:
2439
+ self._values["orchestrator"] = orchestrator
2440
+ if tags is not None:
2441
+ self._values["tags"] = tags
2442
+ if vpc_config is not None:
2443
+ self._values["vpc_config"] = vpc_config
2444
+
2445
+ @builtins.property
2446
+ def instance_groups(
2447
+ self,
2448
+ ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnCluster.ClusterInstanceGroupProperty]]]:
2449
+ '''The instance groups of the SageMaker HyperPod cluster.
2450
+
2451
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-instancegroups
2452
+ '''
2453
+ result = self._values.get("instance_groups")
2454
+ assert result is not None, "Required property 'instance_groups' is missing"
2455
+ return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnCluster.ClusterInstanceGroupProperty]]], result)
2456
+
2457
+ @builtins.property
2458
+ def cluster_name(self) -> typing.Optional[builtins.str]:
2459
+ '''The name of the HyperPod Cluster.
2460
+
2461
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-clustername
2462
+ '''
2463
+ result = self._values.get("cluster_name")
2464
+ return typing.cast(typing.Optional[builtins.str], result)
2465
+
2466
+ @builtins.property
2467
+ def node_recovery(self) -> typing.Optional[builtins.str]:
2468
+ '''If node auto-recovery is set to true, faulty nodes will be replaced or rebooted when a failure is detected.
2469
+
2470
+ If set to false, nodes will be labelled when a fault is detected.
2471
+
2472
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-noderecovery
2473
+ '''
2474
+ result = self._values.get("node_recovery")
2475
+ return typing.cast(typing.Optional[builtins.str], result)
2476
+
2477
+ @builtins.property
2478
+ def orchestrator(
2479
+ self,
2480
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.OrchestratorProperty]]:
2481
+ '''Specifies parameter(s) specific to the orchestrator, e.g. specify the EKS cluster.
2482
+
2483
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-orchestrator
2484
+ '''
2485
+ result = self._values.get("orchestrator")
2486
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.OrchestratorProperty]], result)
2487
+
2488
+ @builtins.property
2489
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
2490
+ '''Custom tags for managing the SageMaker HyperPod cluster as an AWS resource.
2491
+
2492
+ You can add tags to your cluster in the same way you add them in other AWS services that support tagging.
2493
+
2494
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-tags
2495
+ '''
2496
+ result = self._values.get("tags")
2497
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
2498
+
2499
+ @builtins.property
2500
+ def vpc_config(
2501
+ self,
2502
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.VpcConfigProperty]]:
2503
+ '''Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.
2504
+
2505
+ You can control access to and from your resources by configuring a VPC.
2506
+
2507
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-vpcconfig
2508
+ '''
2509
+ result = self._values.get("vpc_config")
2510
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.VpcConfigProperty]], result)
2511
+
2512
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2513
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2514
+
2515
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2516
+ return not (rhs == self)
2517
+
2518
+ def __repr__(self) -> str:
2519
+ return "CfnClusterProps(%s)" % ", ".join(
2520
+ k + "=" + repr(v) for k, v in self._values.items()
2521
+ )
2522
+
2523
+
1492
2524
  @jsii.implements(_IInspectable_c2943556, _ITaggable_36806126)
1493
2525
  class CfnCodeRepository(
1494
2526
  _CfnResource_9df397a6,
@@ -46123,6 +47155,8 @@ __all__ = [
46123
47155
  "CfnAppImageConfig",
46124
47156
  "CfnAppImageConfigProps",
46125
47157
  "CfnAppProps",
47158
+ "CfnCluster",
47159
+ "CfnClusterProps",
46126
47160
  "CfnCodeRepository",
46127
47161
  "CfnCodeRepositoryProps",
46128
47162
  "CfnDataQualityJobDefinition",
@@ -46393,6 +47427,139 @@ def _typecheckingstub__2f03f5ccb1b2c4633c9ef3bee30e7429d047ef909520efe2cbcf88d12
46393
47427
  """Type checking stubs"""
46394
47428
  pass
46395
47429
 
47430
+ def _typecheckingstub__b1441bbec1bb60460bda62b43765e140885fbb36e13b090ded31c919b4f27ca6(
47431
+ scope: _constructs_77d1e7e8.Construct,
47432
+ id: builtins.str,
47433
+ *,
47434
+ instance_groups: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterInstanceGroupProperty, typing.Dict[builtins.str, typing.Any]]]]],
47435
+ cluster_name: typing.Optional[builtins.str] = None,
47436
+ node_recovery: typing.Optional[builtins.str] = None,
47437
+ orchestrator: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.OrchestratorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
47438
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
47439
+ vpc_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.VpcConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
47440
+ ) -> None:
47441
+ """Type checking stubs"""
47442
+ pass
47443
+
47444
+ def _typecheckingstub__c6bf38c830f5d60bc842320feb4dec3a217b386f6d517f4958fd6640eda19286(
47445
+ inspector: _TreeInspector_488e0dd5,
47446
+ ) -> None:
47447
+ """Type checking stubs"""
47448
+ pass
47449
+
47450
+ def _typecheckingstub__23ff930ab861d82c5316349d3cb92e229dc76252f7fe321a81296dd8049216aa(
47451
+ props: typing.Mapping[builtins.str, typing.Any],
47452
+ ) -> None:
47453
+ """Type checking stubs"""
47454
+ pass
47455
+
47456
+ def _typecheckingstub__4e78b567f109d38ee1f8221168fe230f3c378e24d69dab4b08d88a01e417dae5(
47457
+ value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnCluster.ClusterInstanceGroupProperty]]],
47458
+ ) -> None:
47459
+ """Type checking stubs"""
47460
+ pass
47461
+
47462
+ def _typecheckingstub__8c72731c4fb9d1b248db78e05e403c022229ea39aa9884e7da88a1c9dd345bfb(
47463
+ value: typing.Optional[builtins.str],
47464
+ ) -> None:
47465
+ """Type checking stubs"""
47466
+ pass
47467
+
47468
+ def _typecheckingstub__4fbe65936cd747930256e6fb03ae406dcd4ea78b463b13ed47a475b84468f655(
47469
+ value: typing.Optional[builtins.str],
47470
+ ) -> None:
47471
+ """Type checking stubs"""
47472
+ pass
47473
+
47474
+ def _typecheckingstub__b28b5799cdd1c859107ae372c1215ec60b0e0936d622ea46ffde5ae876779722(
47475
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.OrchestratorProperty]],
47476
+ ) -> None:
47477
+ """Type checking stubs"""
47478
+ pass
47479
+
47480
+ def _typecheckingstub__d084f139dda46e8f580a7b39f59ba1634670f397fa2aa5cb51e1f2f0cb2b6cbe(
47481
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
47482
+ ) -> None:
47483
+ """Type checking stubs"""
47484
+ pass
47485
+
47486
+ def _typecheckingstub__429f3349777c49353a90fb2e147d893a183eb1e53971ad423f88736afc16b14c(
47487
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.VpcConfigProperty]],
47488
+ ) -> None:
47489
+ """Type checking stubs"""
47490
+ pass
47491
+
47492
+ def _typecheckingstub__9c3cafd59fbc880606685f87e0e67d5a5ce5428cfebf3db8838122cd54c4a361(
47493
+ *,
47494
+ volume_size_in_gb: typing.Optional[jsii.Number] = None,
47495
+ ) -> None:
47496
+ """Type checking stubs"""
47497
+ pass
47498
+
47499
+ def _typecheckingstub__3a19719ba9f3f785eebfbcc6ee996f6178944dfe9cbd5d5cdf73341bd47bcc03(
47500
+ *,
47501
+ execution_role: builtins.str,
47502
+ instance_count: jsii.Number,
47503
+ instance_group_name: builtins.str,
47504
+ instance_type: builtins.str,
47505
+ life_cycle_config: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterLifeCycleConfigProperty, typing.Dict[builtins.str, typing.Any]]],
47506
+ current_count: typing.Optional[jsii.Number] = None,
47507
+ instance_storage_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterInstanceStorageConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
47508
+ on_start_deep_health_checks: typing.Optional[typing.Sequence[builtins.str]] = None,
47509
+ threads_per_core: typing.Optional[jsii.Number] = None,
47510
+ ) -> None:
47511
+ """Type checking stubs"""
47512
+ pass
47513
+
47514
+ def _typecheckingstub__43caf7c774c2545f8cff945a7d450e1acd83d6c11b7011b4cab6d25bea696218(
47515
+ *,
47516
+ ebs_volume_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterEbsVolumeConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
47517
+ ) -> None:
47518
+ """Type checking stubs"""
47519
+ pass
47520
+
47521
+ def _typecheckingstub__9feca01a5855cd661f26c8dbf78069a1fe8e659c3851cf6144113cdfc3cdc58b(
47522
+ *,
47523
+ on_create: builtins.str,
47524
+ source_s3_uri: builtins.str,
47525
+ ) -> None:
47526
+ """Type checking stubs"""
47527
+ pass
47528
+
47529
+ def _typecheckingstub__3b374679c88beb50318d8d8daa787c0b2f669d656010f29c3a5f6b1e4aa2fe2e(
47530
+ *,
47531
+ cluster_arn: builtins.str,
47532
+ ) -> None:
47533
+ """Type checking stubs"""
47534
+ pass
47535
+
47536
+ def _typecheckingstub__bd76c8323d4b86bae18d24faa04bdbae1945db1d8ba5ca351b2ce27ff07f8aa6(
47537
+ *,
47538
+ eks: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterOrchestratorEksConfigProperty, typing.Dict[builtins.str, typing.Any]]],
47539
+ ) -> None:
47540
+ """Type checking stubs"""
47541
+ pass
47542
+
47543
+ def _typecheckingstub__c25c63e6108b86a8b4d868c1bea98ca33c486d394309500187dda4d53e294a1a(
47544
+ *,
47545
+ security_group_ids: typing.Sequence[builtins.str],
47546
+ subnets: typing.Sequence[builtins.str],
47547
+ ) -> None:
47548
+ """Type checking stubs"""
47549
+ pass
47550
+
47551
+ def _typecheckingstub__c8126a53dc1741a2edde75d8d4eca79c53a2294746ea237dfba0097a758522ce(
47552
+ *,
47553
+ instance_groups: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterInstanceGroupProperty, typing.Dict[builtins.str, typing.Any]]]]],
47554
+ cluster_name: typing.Optional[builtins.str] = None,
47555
+ node_recovery: typing.Optional[builtins.str] = None,
47556
+ orchestrator: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.OrchestratorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
47557
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
47558
+ vpc_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.VpcConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
47559
+ ) -> None:
47560
+ """Type checking stubs"""
47561
+ pass
47562
+
46396
47563
  def _typecheckingstub__5d17e8e1fa9515a89c3b89e14e1cbaa1aa86352b6f00eb195b7e040e28d143bb(
46397
47564
  scope: _constructs_77d1e7e8.Construct,
46398
47565
  id: builtins.str,