cdktn 0.24.0.dev71__tar.gz → 0.24.0.dev73__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdktn
3
- Version: 0.24.0.dev71
3
+ Version: 0.24.0.dev73
4
4
  Summary: Cloud Development Kit for Terraform
5
5
  Home-page: https://github.com/open-constructs/cdk-terrain
6
6
  Author: OpenConstructs
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "cdktn",
8
- "version": "0.24.0.dev71",
8
+ "version": "0.24.0.dev73",
9
9
  "description": "Cloud Development Kit for Terraform",
10
10
  "license": "MPL-2.0",
11
11
  "url": "https://github.com/open-constructs/cdk-terrain",
@@ -27,7 +27,7 @@ kwargs = json.loads(
27
27
  ],
28
28
  "package_data": {
29
29
  "cdktn._jsii": [
30
- "cdktn@0.24.0-pre.71.jsii.tgz"
30
+ "cdktn@0.24.0-pre.73.jsii.tgz"
31
31
  ],
32
32
  "cdktn": [
33
33
  "py.typed"
@@ -7530,6 +7530,121 @@ class NumberMapList(MapList, metaclass=jsii.JSIIMeta, jsii_type="cdktn.NumberMap
7530
7530
  jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
7531
7531
 
7532
7532
 
7533
+ @jsii.implements(ITerraformAddressable, IResolvable)
7534
+ class NumberMapMap(metaclass=jsii.JSIIMeta, jsii_type="cdktn.NumberMapMap"):
7535
+ '''
7536
+ :stability: experimental
7537
+ '''
7538
+
7539
+ def __init__(
7540
+ self,
7541
+ terraform_resource: "IInterpolatingParent",
7542
+ terraform_attribute: builtins.str,
7543
+ ) -> None:
7544
+ '''
7545
+ :param terraform_resource: -
7546
+ :param terraform_attribute: -
7547
+
7548
+ :stability: experimental
7549
+ '''
7550
+ if __debug__:
7551
+ type_hints = typing.get_type_hints(_typecheckingstub__583c0da74dde726f130b76a08c1362ef3f21b53db44a87ba8e73fc57db2371ba)
7552
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
7553
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
7554
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute])
7555
+
7556
+ @jsii.member(jsii_name="computeFqn")
7557
+ def compute_fqn(self) -> builtins.str:
7558
+ '''
7559
+ :stability: experimental
7560
+ '''
7561
+ return typing.cast(builtins.str, jsii.invoke(self, "computeFqn", []))
7562
+
7563
+ @jsii.member(jsii_name="lookup")
7564
+ def lookup(self, key: builtins.str) -> "NumberMap":
7565
+ '''
7566
+ :param key: -
7567
+
7568
+ :stability: experimental
7569
+ '''
7570
+ if __debug__:
7571
+ type_hints = typing.get_type_hints(_typecheckingstub__1439889b99735d984845c29afda58ce5aceffddbea507bf32e9412ffb65ce34c)
7572
+ check_type(argname="argument key", value=key, expected_type=type_hints["key"])
7573
+ return typing.cast("NumberMap", jsii.invoke(self, "lookup", [key]))
7574
+
7575
+ @jsii.member(jsii_name="resolve")
7576
+ def resolve(self, _context: "IResolveContext") -> typing.Any:
7577
+ '''(experimental) Produce the Token's value at resolution time.
7578
+
7579
+ :param _context: -
7580
+
7581
+ :stability: experimental
7582
+ '''
7583
+ if __debug__:
7584
+ type_hints = typing.get_type_hints(_typecheckingstub__7c82597aab445923eb8e5f4b2a2e65abc2c9c637ddde42e51f343914ca7dca4b)
7585
+ check_type(argname="argument _context", value=_context, expected_type=type_hints["_context"])
7586
+ return typing.cast(typing.Any, jsii.invoke(self, "resolve", [_context]))
7587
+
7588
+ @jsii.member(jsii_name="toString")
7589
+ def to_string(self) -> builtins.str:
7590
+ '''(experimental) Return a string representation of this resolvable object.
7591
+
7592
+ Returns a reversible string representation.
7593
+
7594
+ :stability: experimental
7595
+ '''
7596
+ return typing.cast(builtins.str, jsii.invoke(self, "toString", []))
7597
+
7598
+ @builtins.property
7599
+ @jsii.member(jsii_name="creationStack")
7600
+ def creation_stack(self) -> typing.List[builtins.str]:
7601
+ '''(experimental) The creation stack of this resolvable which will be appended to errors thrown during resolution.
7602
+
7603
+ If this returns an empty array the stack will not be attached.
7604
+
7605
+ :stability: experimental
7606
+ '''
7607
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "creationStack"))
7608
+
7609
+ @builtins.property
7610
+ @jsii.member(jsii_name="fqn")
7611
+ def fqn(self) -> builtins.str:
7612
+ '''
7613
+ :stability: experimental
7614
+ '''
7615
+ return typing.cast(builtins.str, jsii.get(self, "fqn"))
7616
+
7617
+ @builtins.property
7618
+ @jsii.member(jsii_name="terraformAttribute")
7619
+ def _terraform_attribute(self) -> builtins.str:
7620
+ '''
7621
+ :stability: experimental
7622
+ '''
7623
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
7624
+
7625
+ @_terraform_attribute.setter
7626
+ def _terraform_attribute(self, value: builtins.str) -> None:
7627
+ if __debug__:
7628
+ type_hints = typing.get_type_hints(_typecheckingstub__e0965bac63213ee505beeb0af6be6fcee4948bfd67aba3a112441189fa4392ff)
7629
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7630
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
7631
+
7632
+ @builtins.property
7633
+ @jsii.member(jsii_name="terraformResource")
7634
+ def _terraform_resource(self) -> "IInterpolatingParent":
7635
+ '''
7636
+ :stability: experimental
7637
+ '''
7638
+ return typing.cast("IInterpolatingParent", jsii.get(self, "terraformResource"))
7639
+
7640
+ @_terraform_resource.setter
7641
+ def _terraform_resource(self, value: "IInterpolatingParent") -> None:
7642
+ if __debug__:
7643
+ type_hints = typing.get_type_hints(_typecheckingstub__ca6b8e931dafe9751a69aa49abd64d3a0a9c9f621f842b5e23e2804bdbb81892)
7644
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7645
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
7646
+
7647
+
7533
7648
  class Op(metaclass=jsii.JSIIMeta, jsii_type="cdktn.Op"):
7534
7649
  '''(experimental) This class contains static functions for all arithmetical and logical operators in the Terraform configuration language.
7535
7650
 
@@ -17357,6 +17472,121 @@ class AnyMapList(MapList, metaclass=jsii.JSIIMeta, jsii_type="cdktn.AnyMapList")
17357
17472
  jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
17358
17473
 
17359
17474
 
17475
+ @jsii.implements(ITerraformAddressable, IResolvable)
17476
+ class AnyMapMap(metaclass=jsii.JSIIMeta, jsii_type="cdktn.AnyMapMap"):
17477
+ '''
17478
+ :stability: experimental
17479
+ '''
17480
+
17481
+ def __init__(
17482
+ self,
17483
+ terraform_resource: "IInterpolatingParent",
17484
+ terraform_attribute: builtins.str,
17485
+ ) -> None:
17486
+ '''
17487
+ :param terraform_resource: -
17488
+ :param terraform_attribute: -
17489
+
17490
+ :stability: experimental
17491
+ '''
17492
+ if __debug__:
17493
+ type_hints = typing.get_type_hints(_typecheckingstub__fb0d0d8f65d4c90d189f668a46d3749c53d8776f9d78a4ff21f7439b2dcd35ea)
17494
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
17495
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
17496
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute])
17497
+
17498
+ @jsii.member(jsii_name="computeFqn")
17499
+ def compute_fqn(self) -> builtins.str:
17500
+ '''
17501
+ :stability: experimental
17502
+ '''
17503
+ return typing.cast(builtins.str, jsii.invoke(self, "computeFqn", []))
17504
+
17505
+ @jsii.member(jsii_name="lookup")
17506
+ def lookup(self, key: builtins.str) -> "AnyMap":
17507
+ '''
17508
+ :param key: -
17509
+
17510
+ :stability: experimental
17511
+ '''
17512
+ if __debug__:
17513
+ type_hints = typing.get_type_hints(_typecheckingstub__4eb86507221213342c050fa8c6307b7064ed99b0ea1e14713fb0c55d94ba951b)
17514
+ check_type(argname="argument key", value=key, expected_type=type_hints["key"])
17515
+ return typing.cast("AnyMap", jsii.invoke(self, "lookup", [key]))
17516
+
17517
+ @jsii.member(jsii_name="resolve")
17518
+ def resolve(self, _context: "IResolveContext") -> typing.Any:
17519
+ '''(experimental) Produce the Token's value at resolution time.
17520
+
17521
+ :param _context: -
17522
+
17523
+ :stability: experimental
17524
+ '''
17525
+ if __debug__:
17526
+ type_hints = typing.get_type_hints(_typecheckingstub__ab3dc75c28eef608f3aad3bc96d1548b978036271a197d0c1fa67dafaf550723)
17527
+ check_type(argname="argument _context", value=_context, expected_type=type_hints["_context"])
17528
+ return typing.cast(typing.Any, jsii.invoke(self, "resolve", [_context]))
17529
+
17530
+ @jsii.member(jsii_name="toString")
17531
+ def to_string(self) -> builtins.str:
17532
+ '''(experimental) Return a string representation of this resolvable object.
17533
+
17534
+ Returns a reversible string representation.
17535
+
17536
+ :stability: experimental
17537
+ '''
17538
+ return typing.cast(builtins.str, jsii.invoke(self, "toString", []))
17539
+
17540
+ @builtins.property
17541
+ @jsii.member(jsii_name="creationStack")
17542
+ def creation_stack(self) -> typing.List[builtins.str]:
17543
+ '''(experimental) The creation stack of this resolvable which will be appended to errors thrown during resolution.
17544
+
17545
+ If this returns an empty array the stack will not be attached.
17546
+
17547
+ :stability: experimental
17548
+ '''
17549
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "creationStack"))
17550
+
17551
+ @builtins.property
17552
+ @jsii.member(jsii_name="fqn")
17553
+ def fqn(self) -> builtins.str:
17554
+ '''
17555
+ :stability: experimental
17556
+ '''
17557
+ return typing.cast(builtins.str, jsii.get(self, "fqn"))
17558
+
17559
+ @builtins.property
17560
+ @jsii.member(jsii_name="terraformAttribute")
17561
+ def _terraform_attribute(self) -> builtins.str:
17562
+ '''
17563
+ :stability: experimental
17564
+ '''
17565
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
17566
+
17567
+ @_terraform_attribute.setter
17568
+ def _terraform_attribute(self, value: builtins.str) -> None:
17569
+ if __debug__:
17570
+ type_hints = typing.get_type_hints(_typecheckingstub__8003da46e13009a02cf9fb5070d771c91668d5c3bc848907b242ae05ce1b4615)
17571
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
17572
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
17573
+
17574
+ @builtins.property
17575
+ @jsii.member(jsii_name="terraformResource")
17576
+ def _terraform_resource(self) -> "IInterpolatingParent":
17577
+ '''
17578
+ :stability: experimental
17579
+ '''
17580
+ return typing.cast("IInterpolatingParent", jsii.get(self, "terraformResource"))
17581
+
17582
+ @_terraform_resource.setter
17583
+ def _terraform_resource(self, value: "IInterpolatingParent") -> None:
17584
+ if __debug__:
17585
+ type_hints = typing.get_type_hints(_typecheckingstub__e05f43129af3028ae44938231937cc6abd778cc24ebddc1d1db7a18062cb8d53)
17586
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
17587
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
17588
+
17589
+
17360
17590
  @jsii.implements(ITerraformAddressable, IResolvable)
17361
17591
  class BooleanMap(metaclass=jsii.JSIIMeta, jsii_type="cdktn.BooleanMap"):
17362
17592
  '''
@@ -17559,6 +17789,121 @@ class BooleanMapList(
17559
17789
  jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
17560
17790
 
17561
17791
 
17792
+ @jsii.implements(ITerraformAddressable, IResolvable)
17793
+ class BooleanMapMap(metaclass=jsii.JSIIMeta, jsii_type="cdktn.BooleanMapMap"):
17794
+ '''
17795
+ :stability: experimental
17796
+ '''
17797
+
17798
+ def __init__(
17799
+ self,
17800
+ terraform_resource: "IInterpolatingParent",
17801
+ terraform_attribute: builtins.str,
17802
+ ) -> None:
17803
+ '''
17804
+ :param terraform_resource: -
17805
+ :param terraform_attribute: -
17806
+
17807
+ :stability: experimental
17808
+ '''
17809
+ if __debug__:
17810
+ type_hints = typing.get_type_hints(_typecheckingstub__5dc90c73721210661c38c31781467df84447bccbc58653e84028b4c30e95ac39)
17811
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
17812
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
17813
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute])
17814
+
17815
+ @jsii.member(jsii_name="computeFqn")
17816
+ def compute_fqn(self) -> builtins.str:
17817
+ '''
17818
+ :stability: experimental
17819
+ '''
17820
+ return typing.cast(builtins.str, jsii.invoke(self, "computeFqn", []))
17821
+
17822
+ @jsii.member(jsii_name="lookup")
17823
+ def lookup(self, key: builtins.str) -> "BooleanMap":
17824
+ '''
17825
+ :param key: -
17826
+
17827
+ :stability: experimental
17828
+ '''
17829
+ if __debug__:
17830
+ type_hints = typing.get_type_hints(_typecheckingstub__216506bc2c92e1890f3296ff5f295e29b2fcec6b7f5112cb1dfa30a008d5a40e)
17831
+ check_type(argname="argument key", value=key, expected_type=type_hints["key"])
17832
+ return typing.cast("BooleanMap", jsii.invoke(self, "lookup", [key]))
17833
+
17834
+ @jsii.member(jsii_name="resolve")
17835
+ def resolve(self, _context: "IResolveContext") -> typing.Any:
17836
+ '''(experimental) Produce the Token's value at resolution time.
17837
+
17838
+ :param _context: -
17839
+
17840
+ :stability: experimental
17841
+ '''
17842
+ if __debug__:
17843
+ type_hints = typing.get_type_hints(_typecheckingstub__360280cdee1b54998e385ba1d843aa04d6142602bf7dd63da297365aa79fec3c)
17844
+ check_type(argname="argument _context", value=_context, expected_type=type_hints["_context"])
17845
+ return typing.cast(typing.Any, jsii.invoke(self, "resolve", [_context]))
17846
+
17847
+ @jsii.member(jsii_name="toString")
17848
+ def to_string(self) -> builtins.str:
17849
+ '''(experimental) Return a string representation of this resolvable object.
17850
+
17851
+ Returns a reversible string representation.
17852
+
17853
+ :stability: experimental
17854
+ '''
17855
+ return typing.cast(builtins.str, jsii.invoke(self, "toString", []))
17856
+
17857
+ @builtins.property
17858
+ @jsii.member(jsii_name="creationStack")
17859
+ def creation_stack(self) -> typing.List[builtins.str]:
17860
+ '''(experimental) The creation stack of this resolvable which will be appended to errors thrown during resolution.
17861
+
17862
+ If this returns an empty array the stack will not be attached.
17863
+
17864
+ :stability: experimental
17865
+ '''
17866
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "creationStack"))
17867
+
17868
+ @builtins.property
17869
+ @jsii.member(jsii_name="fqn")
17870
+ def fqn(self) -> builtins.str:
17871
+ '''
17872
+ :stability: experimental
17873
+ '''
17874
+ return typing.cast(builtins.str, jsii.get(self, "fqn"))
17875
+
17876
+ @builtins.property
17877
+ @jsii.member(jsii_name="terraformAttribute")
17878
+ def _terraform_attribute(self) -> builtins.str:
17879
+ '''
17880
+ :stability: experimental
17881
+ '''
17882
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
17883
+
17884
+ @_terraform_attribute.setter
17885
+ def _terraform_attribute(self, value: builtins.str) -> None:
17886
+ if __debug__:
17887
+ type_hints = typing.get_type_hints(_typecheckingstub__0d9cc0844f58651f355180b9f1ca9ab926bcdd47896211d1362f430c71f2a091)
17888
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
17889
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
17890
+
17891
+ @builtins.property
17892
+ @jsii.member(jsii_name="terraformResource")
17893
+ def _terraform_resource(self) -> "IInterpolatingParent":
17894
+ '''
17895
+ :stability: experimental
17896
+ '''
17897
+ return typing.cast("IInterpolatingParent", jsii.get(self, "terraformResource"))
17898
+
17899
+ @_terraform_resource.setter
17900
+ def _terraform_resource(self, value: "IInterpolatingParent") -> None:
17901
+ if __debug__:
17902
+ type_hints = typing.get_type_hints(_typecheckingstub__fc66bb069d4f417396a421b3c709177b54ebf2b757f3965e92709f83a3c5ca39)
17903
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
17904
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
17905
+
17906
+
17562
17907
  @jsii.implements(IInterpolatingParent, IResolvable, ITerraformAddressable)
17563
17908
  class ComplexComputedList(
17564
17909
  metaclass=jsii.JSIIMeta,
@@ -26449,6 +26794,7 @@ __all__ = [
26449
26794
  "AnyListMap",
26450
26795
  "AnyMap",
26451
26796
  "AnyMapList",
26797
+ "AnyMapMap",
26452
26798
  "App",
26453
26799
  "AppConfig",
26454
26800
  "Aspects",
@@ -26460,6 +26806,7 @@ __all__ = [
26460
26806
  "BooleanListMap",
26461
26807
  "BooleanMap",
26462
26808
  "BooleanMapList",
26809
+ "BooleanMapMap",
26463
26810
  "CloudBackend",
26464
26811
  "CloudBackendConfig",
26465
26812
  "CloudWorkspace",
@@ -26551,6 +26898,7 @@ __all__ = [
26551
26898
  "NumberListMap",
26552
26899
  "NumberMap",
26553
26900
  "NumberMapList",
26901
+ "NumberMapMap",
26554
26902
  "Op",
26555
26903
  "OssAssumeRole",
26556
26904
  "OssBackend",
@@ -28067,6 +28415,37 @@ def _typecheckingstub__2945ad0a64e5aa1fc06c37386342cf289a06aa4bcd3c2819e7510b554
28067
28415
  """Type checking stubs"""
28068
28416
  pass
28069
28417
 
28418
+ def _typecheckingstub__583c0da74dde726f130b76a08c1362ef3f21b53db44a87ba8e73fc57db2371ba(
28419
+ terraform_resource: IInterpolatingParent,
28420
+ terraform_attribute: builtins.str,
28421
+ ) -> None:
28422
+ """Type checking stubs"""
28423
+ pass
28424
+
28425
+ def _typecheckingstub__1439889b99735d984845c29afda58ce5aceffddbea507bf32e9412ffb65ce34c(
28426
+ key: builtins.str,
28427
+ ) -> None:
28428
+ """Type checking stubs"""
28429
+ pass
28430
+
28431
+ def _typecheckingstub__7c82597aab445923eb8e5f4b2a2e65abc2c9c637ddde42e51f343914ca7dca4b(
28432
+ _context: IResolveContext,
28433
+ ) -> None:
28434
+ """Type checking stubs"""
28435
+ pass
28436
+
28437
+ def _typecheckingstub__e0965bac63213ee505beeb0af6be6fcee4948bfd67aba3a112441189fa4392ff(
28438
+ value: builtins.str,
28439
+ ) -> None:
28440
+ """Type checking stubs"""
28441
+ pass
28442
+
28443
+ def _typecheckingstub__ca6b8e931dafe9751a69aa49abd64d3a0a9c9f621f842b5e23e2804bdbb81892(
28444
+ value: IInterpolatingParent,
28445
+ ) -> None:
28446
+ """Type checking stubs"""
28447
+ pass
28448
+
28070
28449
  def _typecheckingstub__c89edc54c51fd737011d0d1d16c08b61d2d36e8e723f680c851e7f7b5082579c(
28071
28450
  left: typing.Any,
28072
28451
  right: typing.Any,
@@ -29787,6 +30166,37 @@ def _typecheckingstub__5e1f247f17760d242529b193426d35393d32b13993491b17a8d42c996
29787
30166
  """Type checking stubs"""
29788
30167
  pass
29789
30168
 
30169
+ def _typecheckingstub__fb0d0d8f65d4c90d189f668a46d3749c53d8776f9d78a4ff21f7439b2dcd35ea(
30170
+ terraform_resource: IInterpolatingParent,
30171
+ terraform_attribute: builtins.str,
30172
+ ) -> None:
30173
+ """Type checking stubs"""
30174
+ pass
30175
+
30176
+ def _typecheckingstub__4eb86507221213342c050fa8c6307b7064ed99b0ea1e14713fb0c55d94ba951b(
30177
+ key: builtins.str,
30178
+ ) -> None:
30179
+ """Type checking stubs"""
30180
+ pass
30181
+
30182
+ def _typecheckingstub__ab3dc75c28eef608f3aad3bc96d1548b978036271a197d0c1fa67dafaf550723(
30183
+ _context: IResolveContext,
30184
+ ) -> None:
30185
+ """Type checking stubs"""
30186
+ pass
30187
+
30188
+ def _typecheckingstub__8003da46e13009a02cf9fb5070d771c91668d5c3bc848907b242ae05ce1b4615(
30189
+ value: builtins.str,
30190
+ ) -> None:
30191
+ """Type checking stubs"""
30192
+ pass
30193
+
30194
+ def _typecheckingstub__e05f43129af3028ae44938231937cc6abd778cc24ebddc1d1db7a18062cb8d53(
30195
+ value: IInterpolatingParent,
30196
+ ) -> None:
30197
+ """Type checking stubs"""
30198
+ pass
30199
+
29790
30200
  def _typecheckingstub__b4cbbedf36a8746a1d5c9c145d7b08835c4ba037baf7c170a739d514ac054c5d(
29791
30201
  terraform_resource: IInterpolatingParent,
29792
30202
  terraform_attribute: builtins.str,
@@ -29850,6 +30260,37 @@ def _typecheckingstub__ae11341a79bbd420fb007854cf069fe6d43cee030165e31290d50f14d
29850
30260
  """Type checking stubs"""
29851
30261
  pass
29852
30262
 
30263
+ def _typecheckingstub__5dc90c73721210661c38c31781467df84447bccbc58653e84028b4c30e95ac39(
30264
+ terraform_resource: IInterpolatingParent,
30265
+ terraform_attribute: builtins.str,
30266
+ ) -> None:
30267
+ """Type checking stubs"""
30268
+ pass
30269
+
30270
+ def _typecheckingstub__216506bc2c92e1890f3296ff5f295e29b2fcec6b7f5112cb1dfa30a008d5a40e(
30271
+ key: builtins.str,
30272
+ ) -> None:
30273
+ """Type checking stubs"""
30274
+ pass
30275
+
30276
+ def _typecheckingstub__360280cdee1b54998e385ba1d843aa04d6142602bf7dd63da297365aa79fec3c(
30277
+ _context: IResolveContext,
30278
+ ) -> None:
30279
+ """Type checking stubs"""
30280
+ pass
30281
+
30282
+ def _typecheckingstub__0d9cc0844f58651f355180b9f1ca9ab926bcdd47896211d1362f430c71f2a091(
30283
+ value: builtins.str,
30284
+ ) -> None:
30285
+ """Type checking stubs"""
30286
+ pass
30287
+
30288
+ def _typecheckingstub__fc66bb069d4f417396a421b3c709177b54ebf2b757f3965e92709f83a3c5ca39(
30289
+ value: IInterpolatingParent,
30290
+ ) -> None:
30291
+ """Type checking stubs"""
30292
+ pass
30293
+
29853
30294
  def _typecheckingstub__383f75d3115cefe50368b79b9cef65b6997c768310bb192c74f470cf288d8b78(
29854
30295
  terraform_resource: IInterpolatingParent,
29855
30296
  terraform_attribute: builtins.str,
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
31
31
  import constructs._jsii
32
32
 
33
33
  __jsii_assembly__ = jsii.JSIIAssembly.load(
34
- "cdktn", "0.24.0-pre.71", __name__[0:-6], "cdktn@0.24.0-pre.71.jsii.tgz"
34
+ "cdktn", "0.24.0-pre.73", __name__[0:-6], "cdktn@0.24.0-pre.73.jsii.tgz"
35
35
  )
36
36
 
37
37
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdktn
3
- Version: 0.24.0.dev71
3
+ Version: 0.24.0.dev73
4
4
  Summary: Cloud Development Kit for Terraform
5
5
  Home-page: https://github.com/open-constructs/cdk-terrain
6
6
  Author: OpenConstructs
@@ -11,5 +11,5 @@ src/cdktn.egg-info/dependency_links.txt
11
11
  src/cdktn.egg-info/requires.txt
12
12
  src/cdktn.egg-info/top_level.txt
13
13
  src/cdktn/_jsii/__init__.py
14
- src/cdktn/_jsii/cdktn@0.24.0-pre.71.jsii.tgz
14
+ src/cdktn/_jsii/cdktn@0.24.0-pre.73.jsii.tgz
15
15
  src/cdktn/testing_matchers/__init__.py
File without changes
File without changes
File without changes
File without changes