aws-cdk-lib 2.218.0__py3-none-any.whl → 2.220.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 (65) hide show
  1. aws_cdk/__init__.py +31 -36
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.218.0.jsii.tgz → aws-cdk-lib@2.220.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amazonmq/__init__.py +98 -87
  5. aws_cdk/aws_apigateway/__init__.py +39 -0
  6. aws_cdk/aws_applicationsignals/__init__.py +450 -2
  7. aws_cdk/aws_arcregionswitch/__init__.py +8 -0
  8. aws_cdk/aws_backup/__init__.py +29 -0
  9. aws_cdk/aws_batch/__init__.py +109 -7
  10. aws_cdk/aws_bcmdataexports/__init__.py +9 -0
  11. aws_cdk/aws_bedrock/__init__.py +384 -1
  12. aws_cdk/aws_bedrockagentcore/__init__.py +7862 -1568
  13. aws_cdk/aws_cloudfront/experimental/__init__.py +4 -0
  14. aws_cdk/aws_cloudfront_origins/__init__.py +87 -6
  15. aws_cdk/aws_cloudwatch/__init__.py +5 -5
  16. aws_cdk/aws_codebuild/__init__.py +339 -62
  17. aws_cdk/aws_cognito/__init__.py +6 -4
  18. aws_cdk/aws_connect/__init__.py +9 -9
  19. aws_cdk/aws_cur/__init__.py +5 -3
  20. aws_cdk/aws_datasync/__init__.py +44 -22
  21. aws_cdk/aws_datazone/__init__.py +35 -33
  22. aws_cdk/aws_dax/__init__.py +12 -3
  23. aws_cdk/aws_dms/__init__.py +3 -5
  24. aws_cdk/aws_ec2/__init__.py +2721 -30
  25. aws_cdk/aws_ecs/__init__.py +2900 -90
  26. aws_cdk/aws_eks/__init__.py +114 -9
  27. aws_cdk/aws_entityresolution/__init__.py +18 -0
  28. aws_cdk/aws_fsx/__init__.py +4 -4
  29. aws_cdk/aws_greengrassv2/__init__.py +29 -0
  30. aws_cdk/aws_imagebuilder/__init__.py +397 -0
  31. aws_cdk/aws_iotsitewise/__init__.py +136 -80
  32. aws_cdk/aws_kinesis/__init__.py +95 -4
  33. aws_cdk/aws_lambda/__init__.py +43 -0
  34. aws_cdk/aws_lightsail/__init__.py +584 -0
  35. aws_cdk/aws_logs/__init__.py +57 -0
  36. aws_cdk/aws_lookoutmetrics/__init__.py +14 -2
  37. aws_cdk/aws_m2/__init__.py +59 -13
  38. aws_cdk/aws_medialive/__init__.py +108 -0
  39. aws_cdk/aws_msk/__init__.py +4 -2
  40. aws_cdk/aws_mwaa/__init__.py +5 -5
  41. aws_cdk/aws_neptune/__init__.py +133 -70
  42. aws_cdk/aws_networkfirewall/__init__.py +6 -2
  43. aws_cdk/aws_networkmanager/__init__.py +29 -0
  44. aws_cdk/aws_observabilityadmin/__init__.py +1227 -83
  45. aws_cdk/aws_omics/__init__.py +7 -1
  46. aws_cdk/aws_opensearchservice/__init__.py +64 -0
  47. aws_cdk/aws_opsworkscm/__init__.py +0 -29
  48. aws_cdk/aws_pcs/__init__.py +224 -33
  49. aws_cdk/aws_pinpoint/__init__.py +58 -0
  50. aws_cdk/aws_quicksight/__init__.py +118 -0
  51. aws_cdk/aws_rds/__init__.py +62 -37
  52. aws_cdk/aws_refactorspaces/__init__.py +18 -6
  53. aws_cdk/aws_route53/__init__.py +138 -8
  54. aws_cdk/aws_s3/__init__.py +29 -2
  55. aws_cdk/aws_s3objectlambda/__init__.py +44 -12
  56. aws_cdk/aws_servicecatalog/__init__.py +103 -106
  57. aws_cdk/aws_smsvoice/__init__.py +319 -0
  58. aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
  59. aws_cdk/aws_synthetics/__init__.py +21 -1
  60. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/METADATA +2 -2
  61. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/RECORD +65 -65
  62. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/LICENSE +0 -0
  63. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/NOTICE +0 -0
  64. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/WHEEL +0 -0
  65. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/top_level.txt +0 -0
@@ -1757,27 +1757,27 @@ class CfnLaunchTemplateConstraintProps:
1757
1757
  jsii_type="aws-cdk-lib.aws_servicecatalog.CfnPortfolioPrincipalAssociationProps",
1758
1758
  jsii_struct_bases=[],
1759
1759
  name_mapping={
1760
- "principal_type": "principalType",
1761
- "accept_language": "acceptLanguage",
1762
1760
  "portfolio_id": "portfolioId",
1763
1761
  "principal_arn": "principalArn",
1762
+ "principal_type": "principalType",
1763
+ "accept_language": "acceptLanguage",
1764
1764
  },
1765
1765
  )
1766
1766
  class CfnPortfolioPrincipalAssociationProps:
1767
1767
  def __init__(
1768
1768
  self,
1769
1769
  *,
1770
+ portfolio_id: builtins.str,
1771
+ principal_arn: builtins.str,
1770
1772
  principal_type: builtins.str,
1771
1773
  accept_language: typing.Optional[builtins.str] = None,
1772
- portfolio_id: typing.Optional[builtins.str] = None,
1773
- principal_arn: typing.Optional[builtins.str] = None,
1774
1774
  ) -> None:
1775
1775
  '''Properties for defining a ``CfnPortfolioPrincipalAssociation``.
1776
1776
 
1777
- :param principal_type: The principal type. The supported values are ``IAM`` and ``IAM_PATTERN`` .
1778
- :param accept_language: The language code. - ``jp`` - Japanese - ``zh`` - Chinese
1779
1777
  :param portfolio_id: The portfolio identifier.
1780
1778
  :param principal_arn: The ARN of the principal ( IAM user, role, or group).
1779
+ :param principal_type: The principal type. The supported values are ``IAM`` and ``IAM_PATTERN`` .
1780
+ :param accept_language: The language code. - ``jp`` - Japanese - ``zh`` - Chinese
1781
1781
 
1782
1782
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html
1783
1783
  :exampleMetadata: fixture=_generated
@@ -1789,29 +1789,47 @@ class CfnPortfolioPrincipalAssociationProps:
1789
1789
  from aws_cdk import aws_servicecatalog as servicecatalog
1790
1790
 
1791
1791
  cfn_portfolio_principal_association_props = servicecatalog.CfnPortfolioPrincipalAssociationProps(
1792
+ portfolio_id="portfolioId",
1793
+ principal_arn="principalArn",
1792
1794
  principal_type="principalType",
1793
1795
 
1794
1796
  # the properties below are optional
1795
- accept_language="acceptLanguage",
1796
- portfolio_id="portfolioId",
1797
- principal_arn="principalArn"
1797
+ accept_language="acceptLanguage"
1798
1798
  )
1799
1799
  '''
1800
1800
  if __debug__:
1801
1801
  type_hints = typing.get_type_hints(_typecheckingstub__86aa94ae9b8977b851184740615709136e8ab87d84e565bd4ed1c37202e743af)
1802
- check_type(argname="argument principal_type", value=principal_type, expected_type=type_hints["principal_type"])
1803
- check_type(argname="argument accept_language", value=accept_language, expected_type=type_hints["accept_language"])
1804
1802
  check_type(argname="argument portfolio_id", value=portfolio_id, expected_type=type_hints["portfolio_id"])
1805
1803
  check_type(argname="argument principal_arn", value=principal_arn, expected_type=type_hints["principal_arn"])
1804
+ check_type(argname="argument principal_type", value=principal_type, expected_type=type_hints["principal_type"])
1805
+ check_type(argname="argument accept_language", value=accept_language, expected_type=type_hints["accept_language"])
1806
1806
  self._values: typing.Dict[builtins.str, typing.Any] = {
1807
+ "portfolio_id": portfolio_id,
1808
+ "principal_arn": principal_arn,
1807
1809
  "principal_type": principal_type,
1808
1810
  }
1809
1811
  if accept_language is not None:
1810
1812
  self._values["accept_language"] = accept_language
1811
- if portfolio_id is not None:
1812
- self._values["portfolio_id"] = portfolio_id
1813
- if principal_arn is not None:
1814
- self._values["principal_arn"] = principal_arn
1813
+
1814
+ @builtins.property
1815
+ def portfolio_id(self) -> builtins.str:
1816
+ '''The portfolio identifier.
1817
+
1818
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid
1819
+ '''
1820
+ result = self._values.get("portfolio_id")
1821
+ assert result is not None, "Required property 'portfolio_id' is missing"
1822
+ return typing.cast(builtins.str, result)
1823
+
1824
+ @builtins.property
1825
+ def principal_arn(self) -> builtins.str:
1826
+ '''The ARN of the principal ( IAM user, role, or group).
1827
+
1828
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn
1829
+ '''
1830
+ result = self._values.get("principal_arn")
1831
+ assert result is not None, "Required property 'principal_arn' is missing"
1832
+ return typing.cast(builtins.str, result)
1815
1833
 
1816
1834
  @builtins.property
1817
1835
  def principal_type(self) -> builtins.str:
@@ -1837,24 +1855,6 @@ class CfnPortfolioPrincipalAssociationProps:
1837
1855
  result = self._values.get("accept_language")
1838
1856
  return typing.cast(typing.Optional[builtins.str], result)
1839
1857
 
1840
- @builtins.property
1841
- def portfolio_id(self) -> typing.Optional[builtins.str]:
1842
- '''The portfolio identifier.
1843
-
1844
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid
1845
- '''
1846
- result = self._values.get("portfolio_id")
1847
- return typing.cast(typing.Optional[builtins.str], result)
1848
-
1849
- @builtins.property
1850
- def principal_arn(self) -> typing.Optional[builtins.str]:
1851
- '''The ARN of the principal ( IAM user, role, or group).
1852
-
1853
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn
1854
- '''
1855
- result = self._values.get("principal_arn")
1856
- return typing.cast(typing.Optional[builtins.str], result)
1857
-
1858
1858
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
1859
1859
  return isinstance(rhs, self.__class__) and rhs._values == self._values
1860
1860
 
@@ -5920,13 +5920,14 @@ class PortfolioShareOptions:
5920
5920
  @jsii.data_type(
5921
5921
  jsii_type="aws-cdk-lib.aws_servicecatalog.PortfolioShareReference",
5922
5922
  jsii_struct_bases=[],
5923
- name_mapping={"portfolio_share_id": "portfolioShareId"},
5923
+ name_mapping={"account_id": "accountId", "portfolio_id": "portfolioId"},
5924
5924
  )
5925
5925
  class PortfolioShareReference:
5926
- def __init__(self, *, portfolio_share_id: builtins.str) -> None:
5926
+ def __init__(self, *, account_id: builtins.str, portfolio_id: builtins.str) -> None:
5927
5927
  '''A reference to a PortfolioShare resource.
5928
5928
 
5929
- :param portfolio_share_id: The Id of the PortfolioShare resource.
5929
+ :param account_id: The AccountId of the PortfolioShare resource.
5930
+ :param portfolio_id: The PortfolioId of the PortfolioShare resource.
5930
5931
 
5931
5932
  :exampleMetadata: fixture=_generated
5932
5933
 
@@ -5937,21 +5938,31 @@ class PortfolioShareReference:
5937
5938
  from aws_cdk import aws_servicecatalog as servicecatalog
5938
5939
 
5939
5940
  portfolio_share_reference = servicecatalog.PortfolioShareReference(
5940
- portfolio_share_id="portfolioShareId"
5941
+ account_id="accountId",
5942
+ portfolio_id="portfolioId"
5941
5943
  )
5942
5944
  '''
5943
5945
  if __debug__:
5944
5946
  type_hints = typing.get_type_hints(_typecheckingstub__47bf57dd430337266528b07d46c4fa85ec8fdf2a3fbe5ce72a6b4889e91fa7b8)
5945
- check_type(argname="argument portfolio_share_id", value=portfolio_share_id, expected_type=type_hints["portfolio_share_id"])
5947
+ check_type(argname="argument account_id", value=account_id, expected_type=type_hints["account_id"])
5948
+ check_type(argname="argument portfolio_id", value=portfolio_id, expected_type=type_hints["portfolio_id"])
5946
5949
  self._values: typing.Dict[builtins.str, typing.Any] = {
5947
- "portfolio_share_id": portfolio_share_id,
5950
+ "account_id": account_id,
5951
+ "portfolio_id": portfolio_id,
5948
5952
  }
5949
5953
 
5950
5954
  @builtins.property
5951
- def portfolio_share_id(self) -> builtins.str:
5952
- '''The Id of the PortfolioShare resource.'''
5953
- result = self._values.get("portfolio_share_id")
5954
- assert result is not None, "Required property 'portfolio_share_id' is missing"
5955
+ def account_id(self) -> builtins.str:
5956
+ '''The AccountId of the PortfolioShare resource.'''
5957
+ result = self._values.get("account_id")
5958
+ assert result is not None, "Required property 'account_id' is missing"
5959
+ return typing.cast(builtins.str, result)
5960
+
5961
+ @builtins.property
5962
+ def portfolio_id(self) -> builtins.str:
5963
+ '''The PortfolioId of the PortfolioShare resource.'''
5964
+ result = self._values.get("portfolio_id")
5965
+ assert result is not None, "Required property 'portfolio_id' is missing"
5955
5966
  return typing.cast(builtins.str, result)
5956
5967
 
5957
5968
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
@@ -9776,12 +9787,12 @@ class CfnPortfolioPrincipalAssociation(
9776
9787
  from aws_cdk import aws_servicecatalog as servicecatalog
9777
9788
 
9778
9789
  cfn_portfolio_principal_association = servicecatalog.CfnPortfolioPrincipalAssociation(self, "MyCfnPortfolioPrincipalAssociation",
9790
+ portfolio_id="portfolioId",
9791
+ principal_arn="principalArn",
9779
9792
  principal_type="principalType",
9780
9793
 
9781
9794
  # the properties below are optional
9782
- accept_language="acceptLanguage",
9783
- portfolio_id="portfolioId",
9784
- principal_arn="principalArn"
9795
+ accept_language="acceptLanguage"
9785
9796
  )
9786
9797
  '''
9787
9798
 
@@ -9790,28 +9801,28 @@ class CfnPortfolioPrincipalAssociation(
9790
9801
  scope: _constructs_77d1e7e8.Construct,
9791
9802
  id: builtins.str,
9792
9803
  *,
9804
+ portfolio_id: builtins.str,
9805
+ principal_arn: builtins.str,
9793
9806
  principal_type: builtins.str,
9794
9807
  accept_language: typing.Optional[builtins.str] = None,
9795
- portfolio_id: typing.Optional[builtins.str] = None,
9796
- principal_arn: typing.Optional[builtins.str] = None,
9797
9808
  ) -> None:
9798
9809
  '''
9799
9810
  :param scope: Scope in which this resource is defined.
9800
9811
  :param id: Construct identifier for this resource (unique in its scope).
9801
- :param principal_type: The principal type. The supported values are ``IAM`` and ``IAM_PATTERN`` .
9802
- :param accept_language: The language code. - ``jp`` - Japanese - ``zh`` - Chinese
9803
9812
  :param portfolio_id: The portfolio identifier.
9804
9813
  :param principal_arn: The ARN of the principal ( IAM user, role, or group).
9814
+ :param principal_type: The principal type. The supported values are ``IAM`` and ``IAM_PATTERN`` .
9815
+ :param accept_language: The language code. - ``jp`` - Japanese - ``zh`` - Chinese
9805
9816
  '''
9806
9817
  if __debug__:
9807
9818
  type_hints = typing.get_type_hints(_typecheckingstub__2b8a7d450a71f88f29341f360bc05a021b910027171e4e63c9be6c67c4d53b2a)
9808
9819
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
9809
9820
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
9810
9821
  props = CfnPortfolioPrincipalAssociationProps(
9811
- principal_type=principal_type,
9812
- accept_language=accept_language,
9813
9822
  portfolio_id=portfolio_id,
9814
9823
  principal_arn=principal_arn,
9824
+ principal_type=principal_type,
9825
+ accept_language=accept_language,
9815
9826
  )
9816
9827
 
9817
9828
  jsii.create(self.__class__, self, [scope, id, props])
@@ -9867,6 +9878,32 @@ class CfnPortfolioPrincipalAssociation(
9867
9878
  '''A reference to a PortfolioPrincipalAssociation resource.'''
9868
9879
  return typing.cast(PortfolioPrincipalAssociationReference, jsii.get(self, "portfolioPrincipalAssociationRef"))
9869
9880
 
9881
+ @builtins.property
9882
+ @jsii.member(jsii_name="portfolioId")
9883
+ def portfolio_id(self) -> builtins.str:
9884
+ '''The portfolio identifier.'''
9885
+ return typing.cast(builtins.str, jsii.get(self, "portfolioId"))
9886
+
9887
+ @portfolio_id.setter
9888
+ def portfolio_id(self, value: builtins.str) -> None:
9889
+ if __debug__:
9890
+ type_hints = typing.get_type_hints(_typecheckingstub__726706747073f477b14d5b31fa14aba7087b2fc4265414101c6069e458c605ef)
9891
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9892
+ jsii.set(self, "portfolioId", value) # pyright: ignore[reportArgumentType]
9893
+
9894
+ @builtins.property
9895
+ @jsii.member(jsii_name="principalArn")
9896
+ def principal_arn(self) -> builtins.str:
9897
+ '''The ARN of the principal ( IAM user, role, or group).'''
9898
+ return typing.cast(builtins.str, jsii.get(self, "principalArn"))
9899
+
9900
+ @principal_arn.setter
9901
+ def principal_arn(self, value: builtins.str) -> None:
9902
+ if __debug__:
9903
+ type_hints = typing.get_type_hints(_typecheckingstub__71c52a4171fa242df45a083617e532d09ea08d89eea6a461f83e7608b28c48bb)
9904
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9905
+ jsii.set(self, "principalArn", value) # pyright: ignore[reportArgumentType]
9906
+
9870
9907
  @builtins.property
9871
9908
  @jsii.member(jsii_name="principalType")
9872
9909
  def principal_type(self) -> builtins.str:
@@ -9893,32 +9930,6 @@ class CfnPortfolioPrincipalAssociation(
9893
9930
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9894
9931
  jsii.set(self, "acceptLanguage", value) # pyright: ignore[reportArgumentType]
9895
9932
 
9896
- @builtins.property
9897
- @jsii.member(jsii_name="portfolioId")
9898
- def portfolio_id(self) -> typing.Optional[builtins.str]:
9899
- '''The portfolio identifier.'''
9900
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "portfolioId"))
9901
-
9902
- @portfolio_id.setter
9903
- def portfolio_id(self, value: typing.Optional[builtins.str]) -> None:
9904
- if __debug__:
9905
- type_hints = typing.get_type_hints(_typecheckingstub__726706747073f477b14d5b31fa14aba7087b2fc4265414101c6069e458c605ef)
9906
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9907
- jsii.set(self, "portfolioId", value) # pyright: ignore[reportArgumentType]
9908
-
9909
- @builtins.property
9910
- @jsii.member(jsii_name="principalArn")
9911
- def principal_arn(self) -> typing.Optional[builtins.str]:
9912
- '''The ARN of the principal ( IAM user, role, or group).'''
9913
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "principalArn"))
9914
-
9915
- @principal_arn.setter
9916
- def principal_arn(self, value: typing.Optional[builtins.str]) -> None:
9917
- if __debug__:
9918
- type_hints = typing.get_type_hints(_typecheckingstub__71c52a4171fa242df45a083617e532d09ea08d89eea6a461f83e7608b28c48bb)
9919
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9920
- jsii.set(self, "principalArn", value) # pyright: ignore[reportArgumentType]
9921
-
9922
9933
 
9923
9934
  @jsii.implements(_IInspectable_c2943556, IPortfolioProductAssociationRef)
9924
9935
  class CfnPortfolioProductAssociation(
@@ -10009,14 +10020,6 @@ class CfnPortfolioProductAssociation(
10009
10020
  '''The CloudFormation resource type name for this resource class.'''
10010
10021
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
10011
10022
 
10012
- @builtins.property
10013
- @jsii.member(jsii_name="attrId")
10014
- def attr_id(self) -> builtins.str:
10015
- '''
10016
- :cloudformationAttribute: Id
10017
- '''
10018
- return typing.cast(builtins.str, jsii.get(self, "attrId"))
10019
-
10020
10023
  @builtins.property
10021
10024
  @jsii.member(jsii_name="cfnProperties")
10022
10025
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -10170,14 +10173,6 @@ class CfnPortfolioShare(
10170
10173
  '''The CloudFormation resource type name for this resource class.'''
10171
10174
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
10172
10175
 
10173
- @builtins.property
10174
- @jsii.member(jsii_name="attrId")
10175
- def attr_id(self) -> builtins.str:
10176
- '''
10177
- :cloudformationAttribute: Id
10178
- '''
10179
- return typing.cast(builtins.str, jsii.get(self, "attrId"))
10180
-
10181
10176
  @builtins.property
10182
10177
  @jsii.member(jsii_name="cfnProperties")
10183
10178
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -10343,7 +10338,8 @@ class CfnResourceUpdateConstraint(
10343
10338
  @builtins.property
10344
10339
  @jsii.member(jsii_name="attrId")
10345
10340
  def attr_id(self) -> builtins.str:
10346
- '''
10341
+ '''Unique identifier for the constraint.
10342
+
10347
10343
  :cloudformationAttribute: Id
10348
10344
  '''
10349
10345
  return typing.cast(builtins.str, jsii.get(self, "attrId"))
@@ -11724,10 +11720,10 @@ def _typecheckingstub__782bde46fdc76fe863545140febd1fe95f163b327614047bf13a8ac26
11724
11720
 
11725
11721
  def _typecheckingstub__86aa94ae9b8977b851184740615709136e8ab87d84e565bd4ed1c37202e743af(
11726
11722
  *,
11723
+ portfolio_id: builtins.str,
11724
+ principal_arn: builtins.str,
11727
11725
  principal_type: builtins.str,
11728
11726
  accept_language: typing.Optional[builtins.str] = None,
11729
- portfolio_id: typing.Optional[builtins.str] = None,
11730
- principal_arn: typing.Optional[builtins.str] = None,
11731
11727
  ) -> None:
11732
11728
  """Type checking stubs"""
11733
11729
  pass
@@ -12241,7 +12237,8 @@ def _typecheckingstub__fcaaa8353ed1607f501f7b9fcd87b34c195d54486861a0e11ed689dd4
12241
12237
 
12242
12238
  def _typecheckingstub__47bf57dd430337266528b07d46c4fa85ec8fdf2a3fbe5ce72a6b4889e91fa7b8(
12243
12239
  *,
12244
- portfolio_share_id: builtins.str,
12240
+ account_id: builtins.str,
12241
+ portfolio_id: builtins.str,
12245
12242
  ) -> None:
12246
12243
  """Type checking stubs"""
12247
12244
  pass
@@ -12974,10 +12971,10 @@ def _typecheckingstub__2b8a7d450a71f88f29341f360bc05a021b910027171e4e63c9be6c67c
12974
12971
  scope: _constructs_77d1e7e8.Construct,
12975
12972
  id: builtins.str,
12976
12973
  *,
12974
+ portfolio_id: builtins.str,
12975
+ principal_arn: builtins.str,
12977
12976
  principal_type: builtins.str,
12978
12977
  accept_language: typing.Optional[builtins.str] = None,
12979
- portfolio_id: typing.Optional[builtins.str] = None,
12980
- principal_arn: typing.Optional[builtins.str] = None,
12981
12978
  ) -> None:
12982
12979
  """Type checking stubs"""
12983
12980
  pass
@@ -12994,25 +12991,25 @@ def _typecheckingstub__257e8fbedbaa67aa61288a1f94be02039da4ac33558591be208505deb
12994
12991
  """Type checking stubs"""
12995
12992
  pass
12996
12993
 
12997
- def _typecheckingstub__66dbe3deef345271ae1cfb35b0e313622b15892928d8581127c03e117db33585(
12994
+ def _typecheckingstub__726706747073f477b14d5b31fa14aba7087b2fc4265414101c6069e458c605ef(
12998
12995
  value: builtins.str,
12999
12996
  ) -> None:
13000
12997
  """Type checking stubs"""
13001
12998
  pass
13002
12999
 
13003
- def _typecheckingstub__1390265bc6b4e797f81f5a56c99acfec9dceeb8b223c28fc92f325ebf1ee9136(
13004
- value: typing.Optional[builtins.str],
13000
+ def _typecheckingstub__71c52a4171fa242df45a083617e532d09ea08d89eea6a461f83e7608b28c48bb(
13001
+ value: builtins.str,
13005
13002
  ) -> None:
13006
13003
  """Type checking stubs"""
13007
13004
  pass
13008
13005
 
13009
- def _typecheckingstub__726706747073f477b14d5b31fa14aba7087b2fc4265414101c6069e458c605ef(
13010
- value: typing.Optional[builtins.str],
13006
+ def _typecheckingstub__66dbe3deef345271ae1cfb35b0e313622b15892928d8581127c03e117db33585(
13007
+ value: builtins.str,
13011
13008
  ) -> None:
13012
13009
  """Type checking stubs"""
13013
13010
  pass
13014
13011
 
13015
- def _typecheckingstub__71c52a4171fa242df45a083617e532d09ea08d89eea6a461f83e7608b28c48bb(
13012
+ def _typecheckingstub__1390265bc6b4e797f81f5a56c99acfec9dceeb8b223c28fc92f325ebf1ee9136(
13016
13013
  value: typing.Optional[builtins.str],
13017
13014
  ) -> None:
13018
13015
  """Type checking stubs"""