aws-cdk-lib 2.100.0__py3-none-any.whl → 2.101.1__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 (38) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.100.0.jsii.tgz → aws-cdk-lib@2.101.1.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigatewayv2/__init__.py +0 -8
  4. aws_cdk/aws_appconfig/__init__.py +101 -18
  5. aws_cdk/aws_apprunner/__init__.py +5 -2
  6. aws_cdk/aws_appstream/__init__.py +18 -26
  7. aws_cdk/aws_cloudfront/__init__.py +251 -3
  8. aws_cdk/aws_cloudtrail/__init__.py +47 -3
  9. aws_cdk/aws_cognito/__init__.py +414 -8
  10. aws_cdk/aws_dlm/__init__.py +10 -9
  11. aws_cdk/aws_ec2/__init__.py +308 -179
  12. aws_cdk/aws_events/__init__.py +62 -86
  13. aws_cdk/aws_fms/__init__.py +3 -3
  14. aws_cdk/aws_grafana/__init__.py +4 -4
  15. aws_cdk/aws_greengrassv2/__init__.py +1 -8
  16. aws_cdk/aws_iot/__init__.py +714 -0
  17. aws_cdk/aws_iotsitewise/__init__.py +3 -3
  18. aws_cdk/aws_kinesisanalytics/__init__.py +15 -15
  19. aws_cdk/aws_kinesisanalyticsv2/__init__.py +15 -15
  20. aws_cdk/aws_kinesisfirehose/__init__.py +87 -40
  21. aws_cdk/aws_lambda/__init__.py +34 -4
  22. aws_cdk/aws_lightsail/__init__.py +3 -1
  23. aws_cdk/aws_mediatailor/__init__.py +24 -1
  24. aws_cdk/aws_quicksight/__init__.py +2508 -55
  25. aws_cdk/aws_rds/__init__.py +121 -51
  26. aws_cdk/aws_sagemaker/__init__.py +5 -3
  27. aws_cdk/aws_sns/__init__.py +42 -5
  28. aws_cdk/aws_ssm/__init__.py +0 -8
  29. aws_cdk/aws_stepfunctions/__init__.py +233 -16
  30. aws_cdk/aws_stepfunctions_tasks/__init__.py +926 -27
  31. aws_cdk/aws_transfer/__init__.py +4 -4
  32. aws_cdk/aws_workspacesweb/__init__.py +3 -3
  33. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/METADATA +1 -1
  34. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/RECORD +38 -38
  35. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/LICENSE +0 -0
  36. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/NOTICE +0 -0
  37. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/WHEEL +0 -0
  38. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/top_level.txt +0 -0
@@ -4579,6 +4579,7 @@ class CfnJobTemplate(
4579
4579
 
4580
4580
  # the properties below are optional
4581
4581
  abort_config=abort_config,
4582
+ destination_package_versions=["destinationPackageVersions"],
4582
4583
  document="document",
4583
4584
  document_source="documentSource",
4584
4585
  job_arn="jobArn",
@@ -4610,6 +4611,7 @@ class CfnJobTemplate(
4610
4611
  description: builtins.str,
4611
4612
  job_template_id: builtins.str,
4612
4613
  abort_config: typing.Any = None,
4614
+ destination_package_versions: typing.Optional[typing.Sequence[builtins.str]] = None,
4613
4615
  document: typing.Optional[builtins.str] = None,
4614
4616
  document_source: typing.Optional[builtins.str] = None,
4615
4617
  job_arn: typing.Optional[builtins.str] = None,
@@ -4626,6 +4628,7 @@ class CfnJobTemplate(
4626
4628
  :param description: A description of the job template.
4627
4629
  :param job_template_id: A unique identifier for the job template. We recommend using a UUID. Alpha-numeric characters, "-", and "_" are valid for use here.
4628
4630
  :param abort_config: The criteria that determine when and how a job abort takes place.
4631
+ :param destination_package_versions:
4629
4632
  :param document: The job document. Required if you don't specify a value for ``documentSource`` .
4630
4633
  :param document_source: An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for ``document`` . For example, ``--document-source https://s3. *region-code* .amazonaws.com/example-firmware/device-firmware.1.0`` For more information, see `Methods for accessing a bucket <https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html>`_ .
4631
4634
  :param job_arn: The ARN of the job to use as the basis for the job template.
@@ -4644,6 +4647,7 @@ class CfnJobTemplate(
4644
4647
  description=description,
4645
4648
  job_template_id=job_template_id,
4646
4649
  abort_config=abort_config,
4650
+ destination_package_versions=destination_package_versions,
4647
4651
  document=document,
4648
4652
  document_source=document_source,
4649
4653
  job_arn=job_arn,
@@ -4746,6 +4750,23 @@ class CfnJobTemplate(
4746
4750
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4747
4751
  jsii.set(self, "abortConfig", value)
4748
4752
 
4753
+ @builtins.property
4754
+ @jsii.member(jsii_name="destinationPackageVersions")
4755
+ def destination_package_versions(
4756
+ self,
4757
+ ) -> typing.Optional[typing.List[builtins.str]]:
4758
+ return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "destinationPackageVersions"))
4759
+
4760
+ @destination_package_versions.setter
4761
+ def destination_package_versions(
4762
+ self,
4763
+ value: typing.Optional[typing.List[builtins.str]],
4764
+ ) -> None:
4765
+ if __debug__:
4766
+ type_hints = typing.get_type_hints(_typecheckingstub__b0b5549fde2de1c407a0ccf2c83efb2e3e1edc4f1d8132fca3a3acc6accc14f7)
4767
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4768
+ jsii.set(self, "destinationPackageVersions", value)
4769
+
4749
4770
  @builtins.property
4750
4771
  @jsii.member(jsii_name="document")
4751
4772
  def document(self) -> typing.Optional[builtins.str]:
@@ -5652,6 +5673,7 @@ class CfnJobTemplate(
5652
5673
  "description": "description",
5653
5674
  "job_template_id": "jobTemplateId",
5654
5675
  "abort_config": "abortConfig",
5676
+ "destination_package_versions": "destinationPackageVersions",
5655
5677
  "document": "document",
5656
5678
  "document_source": "documentSource",
5657
5679
  "job_arn": "jobArn",
@@ -5670,6 +5692,7 @@ class CfnJobTemplateProps:
5670
5692
  description: builtins.str,
5671
5693
  job_template_id: builtins.str,
5672
5694
  abort_config: typing.Any = None,
5695
+ destination_package_versions: typing.Optional[typing.Sequence[builtins.str]] = None,
5673
5696
  document: typing.Optional[builtins.str] = None,
5674
5697
  document_source: typing.Optional[builtins.str] = None,
5675
5698
  job_arn: typing.Optional[builtins.str] = None,
@@ -5685,6 +5708,7 @@ class CfnJobTemplateProps:
5685
5708
  :param description: A description of the job template.
5686
5709
  :param job_template_id: A unique identifier for the job template. We recommend using a UUID. Alpha-numeric characters, "-", and "_" are valid for use here.
5687
5710
  :param abort_config: The criteria that determine when and how a job abort takes place.
5711
+ :param destination_package_versions:
5688
5712
  :param document: The job document. Required if you don't specify a value for ``documentSource`` .
5689
5713
  :param document_source: An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for ``document`` . For example, ``--document-source https://s3. *region-code* .amazonaws.com/example-firmware/device-firmware.1.0`` For more information, see `Methods for accessing a bucket <https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html>`_ .
5690
5714
  :param job_arn: The ARN of the job to use as the basis for the job template.
@@ -5715,6 +5739,7 @@ class CfnJobTemplateProps:
5715
5739
 
5716
5740
  # the properties below are optional
5717
5741
  abort_config=abort_config,
5742
+ destination_package_versions=["destinationPackageVersions"],
5718
5743
  document="document",
5719
5744
  document_source="documentSource",
5720
5745
  job_arn="jobArn",
@@ -5742,6 +5767,7 @@ class CfnJobTemplateProps:
5742
5767
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
5743
5768
  check_type(argname="argument job_template_id", value=job_template_id, expected_type=type_hints["job_template_id"])
5744
5769
  check_type(argname="argument abort_config", value=abort_config, expected_type=type_hints["abort_config"])
5770
+ check_type(argname="argument destination_package_versions", value=destination_package_versions, expected_type=type_hints["destination_package_versions"])
5745
5771
  check_type(argname="argument document", value=document, expected_type=type_hints["document"])
5746
5772
  check_type(argname="argument document_source", value=document_source, expected_type=type_hints["document_source"])
5747
5773
  check_type(argname="argument job_arn", value=job_arn, expected_type=type_hints["job_arn"])
@@ -5757,6 +5783,8 @@ class CfnJobTemplateProps:
5757
5783
  }
5758
5784
  if abort_config is not None:
5759
5785
  self._values["abort_config"] = abort_config
5786
+ if destination_package_versions is not None:
5787
+ self._values["destination_package_versions"] = destination_package_versions
5760
5788
  if document is not None:
5761
5789
  self._values["document"] = document
5762
5790
  if document_source is not None:
@@ -5807,6 +5835,16 @@ class CfnJobTemplateProps:
5807
5835
  result = self._values.get("abort_config")
5808
5836
  return typing.cast(typing.Any, result)
5809
5837
 
5838
+ @builtins.property
5839
+ def destination_package_versions(
5840
+ self,
5841
+ ) -> typing.Optional[typing.List[builtins.str]]:
5842
+ '''
5843
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-jobtemplate.html#cfn-iot-jobtemplate-destinationpackageversions
5844
+ '''
5845
+ result = self._values.get("destination_package_versions")
5846
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
5847
+
5810
5848
  @builtins.property
5811
5849
  def document(self) -> typing.Optional[builtins.str]:
5812
5850
  '''The job document.
@@ -10119,6 +10157,554 @@ class CfnSecurityProfileProps:
10119
10157
  )
10120
10158
 
10121
10159
 
10160
+ @jsii.implements(_IInspectable_c2943556)
10161
+ class CfnSoftwarePackage(
10162
+ _CfnResource_9df397a6,
10163
+ metaclass=jsii.JSIIMeta,
10164
+ jsii_type="aws-cdk-lib.aws_iot.CfnSoftwarePackage",
10165
+ ):
10166
+ '''resource definition.
10167
+
10168
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html
10169
+ :cloudformationResource: AWS::IoT::SoftwarePackage
10170
+ :exampleMetadata: fixture=_generated
10171
+
10172
+ Example::
10173
+
10174
+ # The code below shows an example of how to instantiate this type.
10175
+ # The values are placeholders you should change.
10176
+ from aws_cdk import aws_iot as iot
10177
+
10178
+ cfn_software_package = iot.CfnSoftwarePackage(self, "MyCfnSoftwarePackage",
10179
+ description="description",
10180
+ package_name="packageName",
10181
+ tags=[CfnTag(
10182
+ key="key",
10183
+ value="value"
10184
+ )]
10185
+ )
10186
+ '''
10187
+
10188
+ def __init__(
10189
+ self,
10190
+ scope: _constructs_77d1e7e8.Construct,
10191
+ id: builtins.str,
10192
+ *,
10193
+ description: typing.Optional[builtins.str] = None,
10194
+ package_name: typing.Optional[builtins.str] = None,
10195
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
10196
+ ) -> None:
10197
+ '''
10198
+ :param scope: Scope in which this resource is defined.
10199
+ :param id: Construct identifier for this resource (unique in its scope).
10200
+ :param description:
10201
+ :param package_name:
10202
+ :param tags: An array of key-value pairs to apply to this resource.
10203
+ '''
10204
+ if __debug__:
10205
+ type_hints = typing.get_type_hints(_typecheckingstub__94c7c8e186e68cde7a8264af8ace7c73f6ac201c314e1535a6ab915b3eb8e233)
10206
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
10207
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
10208
+ props = CfnSoftwarePackageProps(
10209
+ description=description, package_name=package_name, tags=tags
10210
+ )
10211
+
10212
+ jsii.create(self.__class__, self, [scope, id, props])
10213
+
10214
+ @jsii.member(jsii_name="inspect")
10215
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
10216
+ '''Examines the CloudFormation resource and discloses attributes.
10217
+
10218
+ :param inspector: tree inspector to collect and process attributes.
10219
+ '''
10220
+ if __debug__:
10221
+ type_hints = typing.get_type_hints(_typecheckingstub__63aa8695e9803a4aca16ebc3d38552c41e2bb2fd816d055d387721bdbd7371d0)
10222
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
10223
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
10224
+
10225
+ @jsii.member(jsii_name="renderProperties")
10226
+ def _render_properties(
10227
+ self,
10228
+ props: typing.Mapping[builtins.str, typing.Any],
10229
+ ) -> typing.Mapping[builtins.str, typing.Any]:
10230
+ '''
10231
+ :param props: -
10232
+ '''
10233
+ if __debug__:
10234
+ type_hints = typing.get_type_hints(_typecheckingstub__6098c0637922f0f433bf81c32de9602c1b6ecbc93120f45ce031fd87935d6fb3)
10235
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
10236
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
10237
+
10238
+ @jsii.python.classproperty
10239
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
10240
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
10241
+ '''The CloudFormation resource type name for this resource class.'''
10242
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
10243
+
10244
+ @builtins.property
10245
+ @jsii.member(jsii_name="attrPackageArn")
10246
+ def attr_package_arn(self) -> builtins.str:
10247
+ '''
10248
+ :cloudformationAttribute: PackageArn
10249
+ '''
10250
+ return typing.cast(builtins.str, jsii.get(self, "attrPackageArn"))
10251
+
10252
+ @builtins.property
10253
+ @jsii.member(jsii_name="cfnProperties")
10254
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
10255
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
10256
+
10257
+ @builtins.property
10258
+ @jsii.member(jsii_name="description")
10259
+ def description(self) -> typing.Optional[builtins.str]:
10260
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
10261
+
10262
+ @description.setter
10263
+ def description(self, value: typing.Optional[builtins.str]) -> None:
10264
+ if __debug__:
10265
+ type_hints = typing.get_type_hints(_typecheckingstub__f190c11c565cdef2e3914f775a67afd61e1a077865b3dad99e9477425481a64f)
10266
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10267
+ jsii.set(self, "description", value)
10268
+
10269
+ @builtins.property
10270
+ @jsii.member(jsii_name="packageName")
10271
+ def package_name(self) -> typing.Optional[builtins.str]:
10272
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "packageName"))
10273
+
10274
+ @package_name.setter
10275
+ def package_name(self, value: typing.Optional[builtins.str]) -> None:
10276
+ if __debug__:
10277
+ type_hints = typing.get_type_hints(_typecheckingstub__b9f247b2189515fc77ec8e1e3b530005dc0976b88f5f7f5da9934d0f7b730bd2)
10278
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10279
+ jsii.set(self, "packageName", value)
10280
+
10281
+ @builtins.property
10282
+ @jsii.member(jsii_name="tags")
10283
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
10284
+ '''An array of key-value pairs to apply to this resource.'''
10285
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
10286
+
10287
+ @tags.setter
10288
+ def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
10289
+ if __debug__:
10290
+ type_hints = typing.get_type_hints(_typecheckingstub__52bd98db72c254315d460ad032c500cccdb51730608ace5ecc37eeded0dfbb80)
10291
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10292
+ jsii.set(self, "tags", value)
10293
+
10294
+
10295
+ @jsii.data_type(
10296
+ jsii_type="aws-cdk-lib.aws_iot.CfnSoftwarePackageProps",
10297
+ jsii_struct_bases=[],
10298
+ name_mapping={
10299
+ "description": "description",
10300
+ "package_name": "packageName",
10301
+ "tags": "tags",
10302
+ },
10303
+ )
10304
+ class CfnSoftwarePackageProps:
10305
+ def __init__(
10306
+ self,
10307
+ *,
10308
+ description: typing.Optional[builtins.str] = None,
10309
+ package_name: typing.Optional[builtins.str] = None,
10310
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
10311
+ ) -> None:
10312
+ '''Properties for defining a ``CfnSoftwarePackage``.
10313
+
10314
+ :param description:
10315
+ :param package_name:
10316
+ :param tags: An array of key-value pairs to apply to this resource.
10317
+
10318
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html
10319
+ :exampleMetadata: fixture=_generated
10320
+
10321
+ Example::
10322
+
10323
+ # The code below shows an example of how to instantiate this type.
10324
+ # The values are placeholders you should change.
10325
+ from aws_cdk import aws_iot as iot
10326
+
10327
+ cfn_software_package_props = iot.CfnSoftwarePackageProps(
10328
+ description="description",
10329
+ package_name="packageName",
10330
+ tags=[CfnTag(
10331
+ key="key",
10332
+ value="value"
10333
+ )]
10334
+ )
10335
+ '''
10336
+ if __debug__:
10337
+ type_hints = typing.get_type_hints(_typecheckingstub__e75272652740c4b3bd44ba16e52293c40475922baea1bac29c22e2841319dbdc)
10338
+ check_type(argname="argument description", value=description, expected_type=type_hints["description"])
10339
+ check_type(argname="argument package_name", value=package_name, expected_type=type_hints["package_name"])
10340
+ check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
10341
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
10342
+ if description is not None:
10343
+ self._values["description"] = description
10344
+ if package_name is not None:
10345
+ self._values["package_name"] = package_name
10346
+ if tags is not None:
10347
+ self._values["tags"] = tags
10348
+
10349
+ @builtins.property
10350
+ def description(self) -> typing.Optional[builtins.str]:
10351
+ '''
10352
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html#cfn-iot-softwarepackage-description
10353
+ '''
10354
+ result = self._values.get("description")
10355
+ return typing.cast(typing.Optional[builtins.str], result)
10356
+
10357
+ @builtins.property
10358
+ def package_name(self) -> typing.Optional[builtins.str]:
10359
+ '''
10360
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html#cfn-iot-softwarepackage-packagename
10361
+ '''
10362
+ result = self._values.get("package_name")
10363
+ return typing.cast(typing.Optional[builtins.str], result)
10364
+
10365
+ @builtins.property
10366
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
10367
+ '''An array of key-value pairs to apply to this resource.
10368
+
10369
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html#cfn-iot-softwarepackage-tags
10370
+ '''
10371
+ result = self._values.get("tags")
10372
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
10373
+
10374
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
10375
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
10376
+
10377
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
10378
+ return not (rhs == self)
10379
+
10380
+ def __repr__(self) -> str:
10381
+ return "CfnSoftwarePackageProps(%s)" % ", ".join(
10382
+ k + "=" + repr(v) for k, v in self._values.items()
10383
+ )
10384
+
10385
+
10386
+ @jsii.implements(_IInspectable_c2943556)
10387
+ class CfnSoftwarePackageVersion(
10388
+ _CfnResource_9df397a6,
10389
+ metaclass=jsii.JSIIMeta,
10390
+ jsii_type="aws-cdk-lib.aws_iot.CfnSoftwarePackageVersion",
10391
+ ):
10392
+ '''resource definition.
10393
+
10394
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html
10395
+ :cloudformationResource: AWS::IoT::SoftwarePackageVersion
10396
+ :exampleMetadata: fixture=_generated
10397
+
10398
+ Example::
10399
+
10400
+ # The code below shows an example of how to instantiate this type.
10401
+ # The values are placeholders you should change.
10402
+ from aws_cdk import aws_iot as iot
10403
+
10404
+ cfn_software_package_version = iot.CfnSoftwarePackageVersion(self, "MyCfnSoftwarePackageVersion",
10405
+ package_name="packageName",
10406
+
10407
+ # the properties below are optional
10408
+ attributes={
10409
+ "attributes_key": "attributes"
10410
+ },
10411
+ description="description",
10412
+ tags=[CfnTag(
10413
+ key="key",
10414
+ value="value"
10415
+ )],
10416
+ version_name="versionName"
10417
+ )
10418
+ '''
10419
+
10420
+ def __init__(
10421
+ self,
10422
+ scope: _constructs_77d1e7e8.Construct,
10423
+ id: builtins.str,
10424
+ *,
10425
+ package_name: builtins.str,
10426
+ attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
10427
+ description: typing.Optional[builtins.str] = None,
10428
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
10429
+ version_name: typing.Optional[builtins.str] = None,
10430
+ ) -> None:
10431
+ '''
10432
+ :param scope: Scope in which this resource is defined.
10433
+ :param id: Construct identifier for this resource (unique in its scope).
10434
+ :param package_name:
10435
+ :param attributes:
10436
+ :param description:
10437
+ :param tags: An array of key-value pairs to apply to this resource.
10438
+ :param version_name:
10439
+ '''
10440
+ if __debug__:
10441
+ type_hints = typing.get_type_hints(_typecheckingstub__ae40d4286b1921a68172d1449478b0327292b57cc2637b8b975f200e0276e088)
10442
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
10443
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
10444
+ props = CfnSoftwarePackageVersionProps(
10445
+ package_name=package_name,
10446
+ attributes=attributes,
10447
+ description=description,
10448
+ tags=tags,
10449
+ version_name=version_name,
10450
+ )
10451
+
10452
+ jsii.create(self.__class__, self, [scope, id, props])
10453
+
10454
+ @jsii.member(jsii_name="inspect")
10455
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
10456
+ '''Examines the CloudFormation resource and discloses attributes.
10457
+
10458
+ :param inspector: tree inspector to collect and process attributes.
10459
+ '''
10460
+ if __debug__:
10461
+ type_hints = typing.get_type_hints(_typecheckingstub__caf76240fedeae52e6b6b45a04a762d4a9ccc74f9594e3db7b63eddb8fd6d6c0)
10462
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
10463
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
10464
+
10465
+ @jsii.member(jsii_name="renderProperties")
10466
+ def _render_properties(
10467
+ self,
10468
+ props: typing.Mapping[builtins.str, typing.Any],
10469
+ ) -> typing.Mapping[builtins.str, typing.Any]:
10470
+ '''
10471
+ :param props: -
10472
+ '''
10473
+ if __debug__:
10474
+ type_hints = typing.get_type_hints(_typecheckingstub__5bfed90879bfc109d6d111efb203e88a1dc976612506f62cddb1a9e2de818338)
10475
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
10476
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
10477
+
10478
+ @jsii.python.classproperty
10479
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
10480
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
10481
+ '''The CloudFormation resource type name for this resource class.'''
10482
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
10483
+
10484
+ @builtins.property
10485
+ @jsii.member(jsii_name="attrErrorReason")
10486
+ def attr_error_reason(self) -> builtins.str:
10487
+ '''
10488
+ :cloudformationAttribute: ErrorReason
10489
+ '''
10490
+ return typing.cast(builtins.str, jsii.get(self, "attrErrorReason"))
10491
+
10492
+ @builtins.property
10493
+ @jsii.member(jsii_name="attrPackageVersionArn")
10494
+ def attr_package_version_arn(self) -> builtins.str:
10495
+ '''
10496
+ :cloudformationAttribute: PackageVersionArn
10497
+ '''
10498
+ return typing.cast(builtins.str, jsii.get(self, "attrPackageVersionArn"))
10499
+
10500
+ @builtins.property
10501
+ @jsii.member(jsii_name="attrStatus")
10502
+ def attr_status(self) -> builtins.str:
10503
+ '''
10504
+ :cloudformationAttribute: Status
10505
+ '''
10506
+ return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
10507
+
10508
+ @builtins.property
10509
+ @jsii.member(jsii_name="cfnProperties")
10510
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
10511
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
10512
+
10513
+ @builtins.property
10514
+ @jsii.member(jsii_name="packageName")
10515
+ def package_name(self) -> builtins.str:
10516
+ return typing.cast(builtins.str, jsii.get(self, "packageName"))
10517
+
10518
+ @package_name.setter
10519
+ def package_name(self, value: builtins.str) -> None:
10520
+ if __debug__:
10521
+ type_hints = typing.get_type_hints(_typecheckingstub__0265c1733c26c6c2433ec35b9730fbf47f9d3b72075fdd702cdf5c3c8b571563)
10522
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10523
+ jsii.set(self, "packageName", value)
10524
+
10525
+ @builtins.property
10526
+ @jsii.member(jsii_name="attributes")
10527
+ def attributes(
10528
+ self,
10529
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
10530
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]], jsii.get(self, "attributes"))
10531
+
10532
+ @attributes.setter
10533
+ def attributes(
10534
+ self,
10535
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]],
10536
+ ) -> None:
10537
+ if __debug__:
10538
+ type_hints = typing.get_type_hints(_typecheckingstub__c101d3151063e2d9f4c7195d752acf7d3941838f08c5a5cf6532f60a6ebb2dce)
10539
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10540
+ jsii.set(self, "attributes", value)
10541
+
10542
+ @builtins.property
10543
+ @jsii.member(jsii_name="description")
10544
+ def description(self) -> typing.Optional[builtins.str]:
10545
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
10546
+
10547
+ @description.setter
10548
+ def description(self, value: typing.Optional[builtins.str]) -> None:
10549
+ if __debug__:
10550
+ type_hints = typing.get_type_hints(_typecheckingstub__a729b3ee5e45b855219fae5fca4701d4019058a4a96a7dcf45ed83d5ce9b5434)
10551
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10552
+ jsii.set(self, "description", value)
10553
+
10554
+ @builtins.property
10555
+ @jsii.member(jsii_name="tags")
10556
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
10557
+ '''An array of key-value pairs to apply to this resource.'''
10558
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
10559
+
10560
+ @tags.setter
10561
+ def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
10562
+ if __debug__:
10563
+ type_hints = typing.get_type_hints(_typecheckingstub__7c6a2c2e1accb87813c9cd034a270a43e73b47118eefc286bea739d462e600ef)
10564
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10565
+ jsii.set(self, "tags", value)
10566
+
10567
+ @builtins.property
10568
+ @jsii.member(jsii_name="versionName")
10569
+ def version_name(self) -> typing.Optional[builtins.str]:
10570
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "versionName"))
10571
+
10572
+ @version_name.setter
10573
+ def version_name(self, value: typing.Optional[builtins.str]) -> None:
10574
+ if __debug__:
10575
+ type_hints = typing.get_type_hints(_typecheckingstub__6d491b99338b411c29481450c6aab93af595bd4663bca838c4cf107d37adf89f)
10576
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10577
+ jsii.set(self, "versionName", value)
10578
+
10579
+
10580
+ @jsii.data_type(
10581
+ jsii_type="aws-cdk-lib.aws_iot.CfnSoftwarePackageVersionProps",
10582
+ jsii_struct_bases=[],
10583
+ name_mapping={
10584
+ "package_name": "packageName",
10585
+ "attributes": "attributes",
10586
+ "description": "description",
10587
+ "tags": "tags",
10588
+ "version_name": "versionName",
10589
+ },
10590
+ )
10591
+ class CfnSoftwarePackageVersionProps:
10592
+ def __init__(
10593
+ self,
10594
+ *,
10595
+ package_name: builtins.str,
10596
+ attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
10597
+ description: typing.Optional[builtins.str] = None,
10598
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
10599
+ version_name: typing.Optional[builtins.str] = None,
10600
+ ) -> None:
10601
+ '''Properties for defining a ``CfnSoftwarePackageVersion``.
10602
+
10603
+ :param package_name:
10604
+ :param attributes:
10605
+ :param description:
10606
+ :param tags: An array of key-value pairs to apply to this resource.
10607
+ :param version_name:
10608
+
10609
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html
10610
+ :exampleMetadata: fixture=_generated
10611
+
10612
+ Example::
10613
+
10614
+ # The code below shows an example of how to instantiate this type.
10615
+ # The values are placeholders you should change.
10616
+ from aws_cdk import aws_iot as iot
10617
+
10618
+ cfn_software_package_version_props = iot.CfnSoftwarePackageVersionProps(
10619
+ package_name="packageName",
10620
+
10621
+ # the properties below are optional
10622
+ attributes={
10623
+ "attributes_key": "attributes"
10624
+ },
10625
+ description="description",
10626
+ tags=[CfnTag(
10627
+ key="key",
10628
+ value="value"
10629
+ )],
10630
+ version_name="versionName"
10631
+ )
10632
+ '''
10633
+ if __debug__:
10634
+ type_hints = typing.get_type_hints(_typecheckingstub__1ee35d011adab7a2d8df83c92656187b403d2781df8df06d9575d380e2f8307c)
10635
+ check_type(argname="argument package_name", value=package_name, expected_type=type_hints["package_name"])
10636
+ check_type(argname="argument attributes", value=attributes, expected_type=type_hints["attributes"])
10637
+ check_type(argname="argument description", value=description, expected_type=type_hints["description"])
10638
+ check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
10639
+ check_type(argname="argument version_name", value=version_name, expected_type=type_hints["version_name"])
10640
+ self._values: typing.Dict[builtins.str, typing.Any] = {
10641
+ "package_name": package_name,
10642
+ }
10643
+ if attributes is not None:
10644
+ self._values["attributes"] = attributes
10645
+ if description is not None:
10646
+ self._values["description"] = description
10647
+ if tags is not None:
10648
+ self._values["tags"] = tags
10649
+ if version_name is not None:
10650
+ self._values["version_name"] = version_name
10651
+
10652
+ @builtins.property
10653
+ def package_name(self) -> builtins.str:
10654
+ '''
10655
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-packagename
10656
+ '''
10657
+ result = self._values.get("package_name")
10658
+ assert result is not None, "Required property 'package_name' is missing"
10659
+ return typing.cast(builtins.str, result)
10660
+
10661
+ @builtins.property
10662
+ def attributes(
10663
+ self,
10664
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
10665
+ '''
10666
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-attributes
10667
+ '''
10668
+ result = self._values.get("attributes")
10669
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]], result)
10670
+
10671
+ @builtins.property
10672
+ def description(self) -> typing.Optional[builtins.str]:
10673
+ '''
10674
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-description
10675
+ '''
10676
+ result = self._values.get("description")
10677
+ return typing.cast(typing.Optional[builtins.str], result)
10678
+
10679
+ @builtins.property
10680
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
10681
+ '''An array of key-value pairs to apply to this resource.
10682
+
10683
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-tags
10684
+ '''
10685
+ result = self._values.get("tags")
10686
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
10687
+
10688
+ @builtins.property
10689
+ def version_name(self) -> typing.Optional[builtins.str]:
10690
+ '''
10691
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-versionname
10692
+ '''
10693
+ result = self._values.get("version_name")
10694
+ return typing.cast(typing.Optional[builtins.str], result)
10695
+
10696
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
10697
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
10698
+
10699
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
10700
+ return not (rhs == self)
10701
+
10702
+ def __repr__(self) -> str:
10703
+ return "CfnSoftwarePackageVersionProps(%s)" % ", ".join(
10704
+ k + "=" + repr(v) for k, v in self._values.items()
10705
+ )
10706
+
10707
+
10122
10708
  @jsii.implements(_IInspectable_c2943556)
10123
10709
  class CfnThing(
10124
10710
  _CfnResource_9df397a6,
@@ -18012,6 +18598,10 @@ __all__ = [
18012
18598
  "CfnScheduledAuditProps",
18013
18599
  "CfnSecurityProfile",
18014
18600
  "CfnSecurityProfileProps",
18601
+ "CfnSoftwarePackage",
18602
+ "CfnSoftwarePackageProps",
18603
+ "CfnSoftwarePackageVersion",
18604
+ "CfnSoftwarePackageVersionProps",
18015
18605
  "CfnThing",
18016
18606
  "CfnThingGroup",
18017
18607
  "CfnThingGroupProps",
@@ -18802,6 +19392,7 @@ def _typecheckingstub__41042e233d09c55a1d146a4913894e94014a62c885bf42884b1cf8623
18802
19392
  description: builtins.str,
18803
19393
  job_template_id: builtins.str,
18804
19394
  abort_config: typing.Any = None,
19395
+ destination_package_versions: typing.Optional[typing.Sequence[builtins.str]] = None,
18805
19396
  document: typing.Optional[builtins.str] = None,
18806
19397
  document_source: typing.Optional[builtins.str] = None,
18807
19398
  job_arn: typing.Optional[builtins.str] = None,
@@ -18845,6 +19436,12 @@ def _typecheckingstub__6f40f09bc35afd5f5e50b9e8f924a59a5a6d5b45df38f967e79fd79a0
18845
19436
  """Type checking stubs"""
18846
19437
  pass
18847
19438
 
19439
+ def _typecheckingstub__b0b5549fde2de1c407a0ccf2c83efb2e3e1edc4f1d8132fca3a3acc6accc14f7(
19440
+ value: typing.Optional[typing.List[builtins.str]],
19441
+ ) -> None:
19442
+ """Type checking stubs"""
19443
+ pass
19444
+
18848
19445
  def _typecheckingstub__832e37fe1f4393eab31972aff76b7a57a7657f93fe36574e1ae5eb79383fe4c6(
18849
19446
  value: typing.Optional[builtins.str],
18850
19447
  ) -> None:
@@ -18984,6 +19581,7 @@ def _typecheckingstub__28c20b8a9676fd9409d3f7cb512490dbf5634f2468a7f4454df1b245a
18984
19581
  description: builtins.str,
18985
19582
  job_template_id: builtins.str,
18986
19583
  abort_config: typing.Any = None,
19584
+ destination_package_versions: typing.Optional[typing.Sequence[builtins.str]] = None,
18987
19585
  document: typing.Optional[builtins.str] = None,
18988
19586
  document_source: typing.Optional[builtins.str] = None,
18989
19587
  job_arn: typing.Optional[builtins.str] = None,
@@ -19681,6 +20279,122 @@ def _typecheckingstub__ebb28d586aa0d630c8e29df5bbc78a295e6751c4a5aadaaf79f8f9a23
19681
20279
  """Type checking stubs"""
19682
20280
  pass
19683
20281
 
20282
+ def _typecheckingstub__94c7c8e186e68cde7a8264af8ace7c73f6ac201c314e1535a6ab915b3eb8e233(
20283
+ scope: _constructs_77d1e7e8.Construct,
20284
+ id: builtins.str,
20285
+ *,
20286
+ description: typing.Optional[builtins.str] = None,
20287
+ package_name: typing.Optional[builtins.str] = None,
20288
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
20289
+ ) -> None:
20290
+ """Type checking stubs"""
20291
+ pass
20292
+
20293
+ def _typecheckingstub__63aa8695e9803a4aca16ebc3d38552c41e2bb2fd816d055d387721bdbd7371d0(
20294
+ inspector: _TreeInspector_488e0dd5,
20295
+ ) -> None:
20296
+ """Type checking stubs"""
20297
+ pass
20298
+
20299
+ def _typecheckingstub__6098c0637922f0f433bf81c32de9602c1b6ecbc93120f45ce031fd87935d6fb3(
20300
+ props: typing.Mapping[builtins.str, typing.Any],
20301
+ ) -> None:
20302
+ """Type checking stubs"""
20303
+ pass
20304
+
20305
+ def _typecheckingstub__f190c11c565cdef2e3914f775a67afd61e1a077865b3dad99e9477425481a64f(
20306
+ value: typing.Optional[builtins.str],
20307
+ ) -> None:
20308
+ """Type checking stubs"""
20309
+ pass
20310
+
20311
+ def _typecheckingstub__b9f247b2189515fc77ec8e1e3b530005dc0976b88f5f7f5da9934d0f7b730bd2(
20312
+ value: typing.Optional[builtins.str],
20313
+ ) -> None:
20314
+ """Type checking stubs"""
20315
+ pass
20316
+
20317
+ def _typecheckingstub__52bd98db72c254315d460ad032c500cccdb51730608ace5ecc37eeded0dfbb80(
20318
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
20319
+ ) -> None:
20320
+ """Type checking stubs"""
20321
+ pass
20322
+
20323
+ def _typecheckingstub__e75272652740c4b3bd44ba16e52293c40475922baea1bac29c22e2841319dbdc(
20324
+ *,
20325
+ description: typing.Optional[builtins.str] = None,
20326
+ package_name: typing.Optional[builtins.str] = None,
20327
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
20328
+ ) -> None:
20329
+ """Type checking stubs"""
20330
+ pass
20331
+
20332
+ def _typecheckingstub__ae40d4286b1921a68172d1449478b0327292b57cc2637b8b975f200e0276e088(
20333
+ scope: _constructs_77d1e7e8.Construct,
20334
+ id: builtins.str,
20335
+ *,
20336
+ package_name: builtins.str,
20337
+ attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
20338
+ description: typing.Optional[builtins.str] = None,
20339
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
20340
+ version_name: typing.Optional[builtins.str] = None,
20341
+ ) -> None:
20342
+ """Type checking stubs"""
20343
+ pass
20344
+
20345
+ def _typecheckingstub__caf76240fedeae52e6b6b45a04a762d4a9ccc74f9594e3db7b63eddb8fd6d6c0(
20346
+ inspector: _TreeInspector_488e0dd5,
20347
+ ) -> None:
20348
+ """Type checking stubs"""
20349
+ pass
20350
+
20351
+ def _typecheckingstub__5bfed90879bfc109d6d111efb203e88a1dc976612506f62cddb1a9e2de818338(
20352
+ props: typing.Mapping[builtins.str, typing.Any],
20353
+ ) -> None:
20354
+ """Type checking stubs"""
20355
+ pass
20356
+
20357
+ def _typecheckingstub__0265c1733c26c6c2433ec35b9730fbf47f9d3b72075fdd702cdf5c3c8b571563(
20358
+ value: builtins.str,
20359
+ ) -> None:
20360
+ """Type checking stubs"""
20361
+ pass
20362
+
20363
+ def _typecheckingstub__c101d3151063e2d9f4c7195d752acf7d3941838f08c5a5cf6532f60a6ebb2dce(
20364
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]],
20365
+ ) -> None:
20366
+ """Type checking stubs"""
20367
+ pass
20368
+
20369
+ def _typecheckingstub__a729b3ee5e45b855219fae5fca4701d4019058a4a96a7dcf45ed83d5ce9b5434(
20370
+ value: typing.Optional[builtins.str],
20371
+ ) -> None:
20372
+ """Type checking stubs"""
20373
+ pass
20374
+
20375
+ def _typecheckingstub__7c6a2c2e1accb87813c9cd034a270a43e73b47118eefc286bea739d462e600ef(
20376
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
20377
+ ) -> None:
20378
+ """Type checking stubs"""
20379
+ pass
20380
+
20381
+ def _typecheckingstub__6d491b99338b411c29481450c6aab93af595bd4663bca838c4cf107d37adf89f(
20382
+ value: typing.Optional[builtins.str],
20383
+ ) -> None:
20384
+ """Type checking stubs"""
20385
+ pass
20386
+
20387
+ def _typecheckingstub__1ee35d011adab7a2d8df83c92656187b403d2781df8df06d9575d380e2f8307c(
20388
+ *,
20389
+ package_name: builtins.str,
20390
+ attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
20391
+ description: typing.Optional[builtins.str] = None,
20392
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
20393
+ version_name: typing.Optional[builtins.str] = None,
20394
+ ) -> None:
20395
+ """Type checking stubs"""
20396
+ pass
20397
+
19684
20398
  def _typecheckingstub__c22f8db826ad742b31d2dec16a9996680b75b22e7a2c5f79d66f96032146025c(
19685
20399
  scope: _constructs_77d1e7e8.Construct,
19686
20400
  id: builtins.str,