aws-cdk-lib 2.160.0__py3-none-any.whl → 2.161.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 (51) hide show
  1. aws_cdk/__init__.py +21 -14
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.160.0.jsii.tgz → aws-cdk-lib@2.161.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +13 -14
  5. aws_cdk/aws_autoscaling/__init__.py +2 -2
  6. aws_cdk/aws_b2bi/__init__.py +2283 -672
  7. aws_cdk/aws_batch/__init__.py +9 -5
  8. aws_cdk/aws_bedrock/__init__.py +52 -20
  9. aws_cdk/aws_cloudformation/__init__.py +9 -9
  10. aws_cdk/aws_cloudtrail/__init__.py +97 -183
  11. aws_cdk/aws_cloudwatch/__init__.py +38 -42
  12. aws_cdk/aws_datasync/__init__.py +1 -1
  13. aws_cdk/aws_ec2/__init__.py +114 -8
  14. aws_cdk/aws_ecs/__init__.py +513 -2
  15. aws_cdk/aws_eks/__init__.py +118 -2
  16. aws_cdk/aws_elasticloadbalancingv2/__init__.py +5 -3
  17. aws_cdk/aws_glue/__init__.py +386 -0
  18. aws_cdk/aws_iotfleetwise/__init__.py +49 -49
  19. aws_cdk/aws_iottwinmaker/__init__.py +4 -4
  20. aws_cdk/aws_iotwireless/__init__.py +2 -1
  21. aws_cdk/aws_kinesisfirehose/__init__.py +52 -76
  22. aws_cdk/aws_lambda/__init__.py +383 -244
  23. aws_cdk/aws_logs/__init__.py +431 -3
  24. aws_cdk/aws_mediaconnect/__init__.py +6 -4
  25. aws_cdk/aws_medialive/__init__.py +36 -0
  26. aws_cdk/aws_organizations/__init__.py +4 -3
  27. aws_cdk/aws_pipes/__init__.py +2 -2
  28. aws_cdk/aws_quicksight/__init__.py +1086 -6
  29. aws_cdk/aws_rds/__init__.py +158 -3
  30. aws_cdk/aws_route53resolver/__init__.py +3 -17
  31. aws_cdk/aws_s3/__init__.py +20 -11
  32. aws_cdk/aws_s3_deployment/__init__.py +45 -0
  33. aws_cdk/aws_s3express/__init__.py +314 -4
  34. aws_cdk/aws_sagemaker/__init__.py +44 -4
  35. aws_cdk/aws_secretsmanager/__init__.py +14 -7
  36. aws_cdk/aws_securityhub/__init__.py +16 -14
  37. aws_cdk/aws_ses/__init__.py +52 -18
  38. aws_cdk/aws_sqs/__init__.py +16 -14
  39. aws_cdk/aws_ssm/__init__.py +6 -2
  40. aws_cdk/aws_synthetics/__init__.py +46 -0
  41. aws_cdk/aws_waf/__init__.py +33 -22
  42. aws_cdk/aws_wafregional/__init__.py +36 -24
  43. aws_cdk/aws_workspacesweb/__init__.py +54 -3
  44. aws_cdk/cloudformation_include/__init__.py +28 -0
  45. aws_cdk/cx_api/__init__.py +50 -0
  46. {aws_cdk_lib-2.160.0.dist-info → aws_cdk_lib-2.161.0.dist-info}/METADATA +1 -1
  47. {aws_cdk_lib-2.160.0.dist-info → aws_cdk_lib-2.161.0.dist-info}/RECORD +51 -51
  48. {aws_cdk_lib-2.160.0.dist-info → aws_cdk_lib-2.161.0.dist-info}/LICENSE +0 -0
  49. {aws_cdk_lib-2.160.0.dist-info → aws_cdk_lib-2.161.0.dist-info}/NOTICE +0 -0
  50. {aws_cdk_lib-2.160.0.dist-info → aws_cdk_lib-2.161.0.dist-info}/WHEEL +0 -0
  51. {aws_cdk_lib-2.160.0.dist-info → aws_cdk_lib-2.161.0.dist-info}/top_level.txt +0 -0
@@ -92,7 +92,6 @@ class CfnCampaign(
92
92
  from aws_cdk import aws_iotfleetwise as iotfleetwise
93
93
 
94
94
  cfn_campaign = iotfleetwise.CfnCampaign(self, "MyCfnCampaign",
95
- action="action",
96
95
  collection_scheme=iotfleetwise.CfnCampaign.CollectionSchemeProperty(
97
96
  condition_based_collection_scheme=iotfleetwise.CfnCampaign.ConditionBasedCollectionSchemeProperty(
98
97
  expression="expression",
@@ -111,6 +110,7 @@ class CfnCampaign(
111
110
  target_arn="targetArn",
112
111
 
113
112
  # the properties below are optional
113
+ action="action",
114
114
  compression="compression",
115
115
  data_destination_configs=[iotfleetwise.CfnCampaign.DataDestinationConfigProperty(
116
116
  mqtt_topic_config=iotfleetwise.CfnCampaign.MqttTopicConfigProperty(
@@ -173,11 +173,11 @@ class CfnCampaign(
173
173
  scope: _constructs_77d1e7e8.Construct,
174
174
  id: builtins.str,
175
175
  *,
176
- action: builtins.str,
177
176
  collection_scheme: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.CollectionSchemeProperty", typing.Dict[builtins.str, typing.Any]]],
178
177
  name: builtins.str,
179
178
  signal_catalog_arn: builtins.str,
180
179
  target_arn: builtins.str,
180
+ action: typing.Optional[builtins.str] = None,
181
181
  compression: typing.Optional[builtins.str] = None,
182
182
  data_destination_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.DataDestinationConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
183
183
  data_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -195,11 +195,11 @@ class CfnCampaign(
195
195
  '''
196
196
  :param scope: Scope in which this resource is defined.
197
197
  :param id: Construct identifier for this resource (unique in its scope).
198
- :param action: Specifies how to update a campaign. The action can be one of the following:. - ``APPROVE`` - To approve delivering a data collection scheme to vehicles. - ``SUSPEND`` - To suspend collecting signal data. The campaign is deleted from vehicles and all vehicles in the suspended campaign will stop sending data. - ``RESUME`` - To reactivate the ``SUSPEND`` campaign. The campaign is redeployed to all vehicles and the vehicles will resume sending data. - ``UPDATE`` - To update a campaign.
199
198
  :param collection_scheme: The data collection scheme associated with the campaign. You can specify a scheme that collects data based on time or an event.
200
199
  :param name: The name of a campaign.
201
200
  :param signal_catalog_arn: The Amazon Resource Name (ARN) of the signal catalog associated with the campaign.
202
201
  :param target_arn: The Amazon Resource Name (ARN) of a vehicle or fleet to which the campaign is deployed.
202
+ :param action: Specifies how to update a campaign. The action can be one of the following:. - ``APPROVE`` - To approve delivering a data collection scheme to vehicles. - ``SUSPEND`` - To suspend collecting signal data. The campaign is deleted from vehicles and all vehicles in the suspended campaign will stop sending data. - ``RESUME`` - To reactivate the ``SUSPEND`` campaign. The campaign is redeployed to all vehicles and the vehicles will resume sending data. - ``UPDATE`` - To update a campaign.
203
203
  :param compression: (Optional) Whether to compress signals before transmitting data to AWS IoT FleetWise . If you don't want to compress the signals, use ``OFF`` . If it's not specified, ``SNAPPY`` is used. Default: ``SNAPPY`` Default: - "OFF"
204
204
  :param data_destination_configs: (Optional) The destination where the campaign sends data. You can choose to send data to be stored in Amazon S3 or Amazon Timestream . Amazon S3 optimizes the cost of data storage and provides additional mechanisms to use vehicle data, such as data lakes, centralized data storage, data processing pipelines, and analytics. AWS IoT FleetWise supports at-least-once file delivery to S3. Your vehicle data is stored on multiple AWS IoT FleetWise servers for redundancy and high availability. You can use Amazon Timestream to access and analyze time series data, and Timestream to query vehicle data so that you can identify trends and patterns.
205
205
  :param data_extra_dimensions: (Optional) A list of vehicle attributes to associate with a campaign. Enrich the data with specified vehicle attributes. For example, add ``make`` and ``model`` to the campaign, and AWS IoT FleetWise will associate the data with those attributes as dimensions in Amazon Timestream . You can then query the data against ``make`` and ``model`` . Default: An empty array
@@ -219,11 +219,11 @@ class CfnCampaign(
219
219
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
220
220
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
221
221
  props = CfnCampaignProps(
222
- action=action,
223
222
  collection_scheme=collection_scheme,
224
223
  name=name,
225
224
  signal_catalog_arn=signal_catalog_arn,
226
225
  target_arn=target_arn,
226
+ action=action,
227
227
  compression=compression,
228
228
  data_destination_configs=data_destination_configs,
229
229
  data_extra_dimensions=data_extra_dimensions,
@@ -320,22 +320,6 @@ class CfnCampaign(
320
320
  '''Tag Manager which manages the tags for this resource.'''
321
321
  return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
322
322
 
323
- @builtins.property
324
- @jsii.member(jsii_name="action")
325
- def action(self) -> builtins.str:
326
- '''Specifies how to update a campaign.
327
-
328
- The action can be one of the following:.
329
- '''
330
- return typing.cast(builtins.str, jsii.get(self, "action"))
331
-
332
- @action.setter
333
- def action(self, value: builtins.str) -> None:
334
- if __debug__:
335
- type_hints = typing.get_type_hints(_typecheckingstub__66dafa89e69b8562346040c56213280b8861d04a6b73911f5471941f58e3d463)
336
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
337
- jsii.set(self, "action", value) # pyright: ignore[reportArgumentType]
338
-
339
323
  @builtins.property
340
324
  @jsii.member(jsii_name="collectionScheme")
341
325
  def collection_scheme(
@@ -393,6 +377,22 @@ class CfnCampaign(
393
377
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
394
378
  jsii.set(self, "targetArn", value) # pyright: ignore[reportArgumentType]
395
379
 
380
+ @builtins.property
381
+ @jsii.member(jsii_name="action")
382
+ def action(self) -> typing.Optional[builtins.str]:
383
+ '''Specifies how to update a campaign.
384
+
385
+ The action can be one of the following:.
386
+ '''
387
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "action"))
388
+
389
+ @action.setter
390
+ def action(self, value: typing.Optional[builtins.str]) -> None:
391
+ if __debug__:
392
+ type_hints = typing.get_type_hints(_typecheckingstub__66dafa89e69b8562346040c56213280b8861d04a6b73911f5471941f58e3d463)
393
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
394
+ jsii.set(self, "action", value) # pyright: ignore[reportArgumentType]
395
+
396
396
  @builtins.property
397
397
  @jsii.member(jsii_name="compression")
398
398
  def compression(self) -> typing.Optional[builtins.str]:
@@ -1624,11 +1624,11 @@ class CfnCampaign(
1624
1624
  jsii_type="aws-cdk-lib.aws_iotfleetwise.CfnCampaignProps",
1625
1625
  jsii_struct_bases=[],
1626
1626
  name_mapping={
1627
- "action": "action",
1628
1627
  "collection_scheme": "collectionScheme",
1629
1628
  "name": "name",
1630
1629
  "signal_catalog_arn": "signalCatalogArn",
1631
1630
  "target_arn": "targetArn",
1631
+ "action": "action",
1632
1632
  "compression": "compression",
1633
1633
  "data_destination_configs": "dataDestinationConfigs",
1634
1634
  "data_extra_dimensions": "dataExtraDimensions",
@@ -1648,11 +1648,11 @@ class CfnCampaignProps:
1648
1648
  def __init__(
1649
1649
  self,
1650
1650
  *,
1651
- action: builtins.str,
1652
1651
  collection_scheme: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.CollectionSchemeProperty, typing.Dict[builtins.str, typing.Any]]],
1653
1652
  name: builtins.str,
1654
1653
  signal_catalog_arn: builtins.str,
1655
1654
  target_arn: builtins.str,
1655
+ action: typing.Optional[builtins.str] = None,
1656
1656
  compression: typing.Optional[builtins.str] = None,
1657
1657
  data_destination_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.DataDestinationConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
1658
1658
  data_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -1669,11 +1669,11 @@ class CfnCampaignProps:
1669
1669
  ) -> None:
1670
1670
  '''Properties for defining a ``CfnCampaign``.
1671
1671
 
1672
- :param action: Specifies how to update a campaign. The action can be one of the following:. - ``APPROVE`` - To approve delivering a data collection scheme to vehicles. - ``SUSPEND`` - To suspend collecting signal data. The campaign is deleted from vehicles and all vehicles in the suspended campaign will stop sending data. - ``RESUME`` - To reactivate the ``SUSPEND`` campaign. The campaign is redeployed to all vehicles and the vehicles will resume sending data. - ``UPDATE`` - To update a campaign.
1673
1672
  :param collection_scheme: The data collection scheme associated with the campaign. You can specify a scheme that collects data based on time or an event.
1674
1673
  :param name: The name of a campaign.
1675
1674
  :param signal_catalog_arn: The Amazon Resource Name (ARN) of the signal catalog associated with the campaign.
1676
1675
  :param target_arn: The Amazon Resource Name (ARN) of a vehicle or fleet to which the campaign is deployed.
1676
+ :param action: Specifies how to update a campaign. The action can be one of the following:. - ``APPROVE`` - To approve delivering a data collection scheme to vehicles. - ``SUSPEND`` - To suspend collecting signal data. The campaign is deleted from vehicles and all vehicles in the suspended campaign will stop sending data. - ``RESUME`` - To reactivate the ``SUSPEND`` campaign. The campaign is redeployed to all vehicles and the vehicles will resume sending data. - ``UPDATE`` - To update a campaign.
1677
1677
  :param compression: (Optional) Whether to compress signals before transmitting data to AWS IoT FleetWise . If you don't want to compress the signals, use ``OFF`` . If it's not specified, ``SNAPPY`` is used. Default: ``SNAPPY`` Default: - "OFF"
1678
1678
  :param data_destination_configs: (Optional) The destination where the campaign sends data. You can choose to send data to be stored in Amazon S3 or Amazon Timestream . Amazon S3 optimizes the cost of data storage and provides additional mechanisms to use vehicle data, such as data lakes, centralized data storage, data processing pipelines, and analytics. AWS IoT FleetWise supports at-least-once file delivery to S3. Your vehicle data is stored on multiple AWS IoT FleetWise servers for redundancy and high availability. You can use Amazon Timestream to access and analyze time series data, and Timestream to query vehicle data so that you can identify trends and patterns.
1679
1679
  :param data_extra_dimensions: (Optional) A list of vehicle attributes to associate with a campaign. Enrich the data with specified vehicle attributes. For example, add ``make`` and ``model`` to the campaign, and AWS IoT FleetWise will associate the data with those attributes as dimensions in Amazon Timestream . You can then query the data against ``make`` and ``model`` . Default: An empty array
@@ -1698,7 +1698,6 @@ class CfnCampaignProps:
1698
1698
  from aws_cdk import aws_iotfleetwise as iotfleetwise
1699
1699
 
1700
1700
  cfn_campaign_props = iotfleetwise.CfnCampaignProps(
1701
- action="action",
1702
1701
  collection_scheme=iotfleetwise.CfnCampaign.CollectionSchemeProperty(
1703
1702
  condition_based_collection_scheme=iotfleetwise.CfnCampaign.ConditionBasedCollectionSchemeProperty(
1704
1703
  expression="expression",
@@ -1717,6 +1716,7 @@ class CfnCampaignProps:
1717
1716
  target_arn="targetArn",
1718
1717
 
1719
1718
  # the properties below are optional
1719
+ action="action",
1720
1720
  compression="compression",
1721
1721
  data_destination_configs=[iotfleetwise.CfnCampaign.DataDestinationConfigProperty(
1722
1722
  mqtt_topic_config=iotfleetwise.CfnCampaign.MqttTopicConfigProperty(
@@ -1775,11 +1775,11 @@ class CfnCampaignProps:
1775
1775
  '''
1776
1776
  if __debug__:
1777
1777
  type_hints = typing.get_type_hints(_typecheckingstub__54c45792d3f0c102d3358acf678401b9616a7fee4b70882083776c5f9635cf71)
1778
- check_type(argname="argument action", value=action, expected_type=type_hints["action"])
1779
1778
  check_type(argname="argument collection_scheme", value=collection_scheme, expected_type=type_hints["collection_scheme"])
1780
1779
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
1781
1780
  check_type(argname="argument signal_catalog_arn", value=signal_catalog_arn, expected_type=type_hints["signal_catalog_arn"])
1782
1781
  check_type(argname="argument target_arn", value=target_arn, expected_type=type_hints["target_arn"])
1782
+ check_type(argname="argument action", value=action, expected_type=type_hints["action"])
1783
1783
  check_type(argname="argument compression", value=compression, expected_type=type_hints["compression"])
1784
1784
  check_type(argname="argument data_destination_configs", value=data_destination_configs, expected_type=type_hints["data_destination_configs"])
1785
1785
  check_type(argname="argument data_extra_dimensions", value=data_extra_dimensions, expected_type=type_hints["data_extra_dimensions"])
@@ -1794,12 +1794,13 @@ class CfnCampaignProps:
1794
1794
  check_type(argname="argument start_time", value=start_time, expected_type=type_hints["start_time"])
1795
1795
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
1796
1796
  self._values: typing.Dict[builtins.str, typing.Any] = {
1797
- "action": action,
1798
1797
  "collection_scheme": collection_scheme,
1799
1798
  "name": name,
1800
1799
  "signal_catalog_arn": signal_catalog_arn,
1801
1800
  "target_arn": target_arn,
1802
1801
  }
1802
+ if action is not None:
1803
+ self._values["action"] = action
1803
1804
  if compression is not None:
1804
1805
  self._values["compression"] = compression
1805
1806
  if data_destination_configs is not None:
@@ -1827,21 +1828,6 @@ class CfnCampaignProps:
1827
1828
  if tags is not None:
1828
1829
  self._values["tags"] = tags
1829
1830
 
1830
- @builtins.property
1831
- def action(self) -> builtins.str:
1832
- '''Specifies how to update a campaign. The action can be one of the following:.
1833
-
1834
- - ``APPROVE`` - To approve delivering a data collection scheme to vehicles.
1835
- - ``SUSPEND`` - To suspend collecting signal data. The campaign is deleted from vehicles and all vehicles in the suspended campaign will stop sending data.
1836
- - ``RESUME`` - To reactivate the ``SUSPEND`` campaign. The campaign is redeployed to all vehicles and the vehicles will resume sending data.
1837
- - ``UPDATE`` - To update a campaign.
1838
-
1839
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-campaign.html#cfn-iotfleetwise-campaign-action
1840
- '''
1841
- result = self._values.get("action")
1842
- assert result is not None, "Required property 'action' is missing"
1843
- return typing.cast(builtins.str, result)
1844
-
1845
1831
  @builtins.property
1846
1832
  def collection_scheme(
1847
1833
  self,
@@ -1886,6 +1872,20 @@ class CfnCampaignProps:
1886
1872
  assert result is not None, "Required property 'target_arn' is missing"
1887
1873
  return typing.cast(builtins.str, result)
1888
1874
 
1875
+ @builtins.property
1876
+ def action(self) -> typing.Optional[builtins.str]:
1877
+ '''Specifies how to update a campaign. The action can be one of the following:.
1878
+
1879
+ - ``APPROVE`` - To approve delivering a data collection scheme to vehicles.
1880
+ - ``SUSPEND`` - To suspend collecting signal data. The campaign is deleted from vehicles and all vehicles in the suspended campaign will stop sending data.
1881
+ - ``RESUME`` - To reactivate the ``SUSPEND`` campaign. The campaign is redeployed to all vehicles and the vehicles will resume sending data.
1882
+ - ``UPDATE`` - To update a campaign.
1883
+
1884
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-campaign.html#cfn-iotfleetwise-campaign-action
1885
+ '''
1886
+ result = self._values.get("action")
1887
+ return typing.cast(typing.Optional[builtins.str], result)
1888
+
1889
1889
  @builtins.property
1890
1890
  def compression(self) -> typing.Optional[builtins.str]:
1891
1891
  '''(Optional) Whether to compress signals before transmitting data to AWS IoT FleetWise .
@@ -6374,11 +6374,11 @@ def _typecheckingstub__f7abc45d2046b48ec3bc5807ec2826a784930a5009b41b194dd6e4bed
6374
6374
  scope: _constructs_77d1e7e8.Construct,
6375
6375
  id: builtins.str,
6376
6376
  *,
6377
- action: builtins.str,
6378
6377
  collection_scheme: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.CollectionSchemeProperty, typing.Dict[builtins.str, typing.Any]]],
6379
6378
  name: builtins.str,
6380
6379
  signal_catalog_arn: builtins.str,
6381
6380
  target_arn: builtins.str,
6381
+ action: typing.Optional[builtins.str] = None,
6382
6382
  compression: typing.Optional[builtins.str] = None,
6383
6383
  data_destination_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.DataDestinationConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6384
6384
  data_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -6408,12 +6408,6 @@ def _typecheckingstub__89d4f6e55fdf4b8418716e773b2a62dc1763b8a2553490a7567e2cfe6
6408
6408
  """Type checking stubs"""
6409
6409
  pass
6410
6410
 
6411
- def _typecheckingstub__66dafa89e69b8562346040c56213280b8861d04a6b73911f5471941f58e3d463(
6412
- value: builtins.str,
6413
- ) -> None:
6414
- """Type checking stubs"""
6415
- pass
6416
-
6417
6411
  def _typecheckingstub__868a9ff35e32583e37d3c029fdca22ea031055a38c7dd0dcbfa1f30846ee551d(
6418
6412
  value: typing.Union[_IResolvable_da3f097b, CfnCampaign.CollectionSchemeProperty],
6419
6413
  ) -> None:
@@ -6438,6 +6432,12 @@ def _typecheckingstub__6154b7ad20e73a4e23143d3707a09d050bbb1092b307bc8e014558908
6438
6432
  """Type checking stubs"""
6439
6433
  pass
6440
6434
 
6435
+ def _typecheckingstub__66dafa89e69b8562346040c56213280b8861d04a6b73911f5471941f58e3d463(
6436
+ value: typing.Optional[builtins.str],
6437
+ ) -> None:
6438
+ """Type checking stubs"""
6439
+ pass
6440
+
6441
6441
  def _typecheckingstub__17ec1dfb29d11e0d55dc84fc23937babfb2d1e33fdf8192c23c4130716fa6a02(
6442
6442
  value: typing.Optional[builtins.str],
6443
6443
  ) -> None:
@@ -6620,11 +6620,11 @@ def _typecheckingstub__5788ae222c7e21aaed8bd9dbed72cfbc09a7c423d494e8aa4ae9d7a22
6620
6620
 
6621
6621
  def _typecheckingstub__54c45792d3f0c102d3358acf678401b9616a7fee4b70882083776c5f9635cf71(
6622
6622
  *,
6623
- action: builtins.str,
6624
6623
  collection_scheme: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.CollectionSchemeProperty, typing.Dict[builtins.str, typing.Any]]],
6625
6624
  name: builtins.str,
6626
6625
  signal_catalog_arn: builtins.str,
6627
6626
  target_arn: builtins.str,
6627
+ action: typing.Optional[builtins.str] = None,
6628
6628
  compression: typing.Optional[builtins.str] = None,
6629
6629
  data_destination_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.DataDestinationConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6630
6630
  data_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -4138,7 +4138,7 @@ class CfnScene(
4138
4138
  :param id: Construct identifier for this resource (unique in its scope).
4139
4139
  :param content_location: The relative path that specifies the location of the content definition file.
4140
4140
  :param scene_id: The ID of the scene.
4141
- :param workspace_id: The ID of the scene.
4141
+ :param workspace_id: The ID of the workspace.
4142
4142
  :param capabilities: A list of capabilities that the scene uses to render.
4143
4143
  :param description: The description of this scene.
4144
4144
  :param scene_metadata: The scene metadata.
@@ -4266,7 +4266,7 @@ class CfnScene(
4266
4266
  @builtins.property
4267
4267
  @jsii.member(jsii_name="workspaceId")
4268
4268
  def workspace_id(self) -> builtins.str:
4269
- '''The ID of the scene.'''
4269
+ '''The ID of the workspace.'''
4270
4270
  return typing.cast(builtins.str, jsii.get(self, "workspaceId"))
4271
4271
 
4272
4272
  @workspace_id.setter
@@ -4366,7 +4366,7 @@ class CfnSceneProps:
4366
4366
 
4367
4367
  :param content_location: The relative path that specifies the location of the content definition file.
4368
4368
  :param scene_id: The ID of the scene.
4369
- :param workspace_id: The ID of the scene.
4369
+ :param workspace_id: The ID of the workspace.
4370
4370
  :param capabilities: A list of capabilities that the scene uses to render.
4371
4371
  :param description: The description of this scene.
4372
4372
  :param scene_metadata: The scene metadata.
@@ -4442,7 +4442,7 @@ class CfnSceneProps:
4442
4442
 
4443
4443
  @builtins.property
4444
4444
  def workspace_id(self) -> builtins.str:
4445
- '''The ID of the scene.
4445
+ '''The ID of the workspace.
4446
4446
 
4447
4447
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iottwinmaker-scene.html#cfn-iottwinmaker-scene-workspaceid
4448
4448
  '''
@@ -5724,7 +5724,8 @@ class CfnWirelessDevice(
5724
5724
  )
5725
5725
  class OtaaV10xProperty:
5726
5726
  def __init__(self, *, app_eui: builtins.str, app_key: builtins.str) -> None:
5727
- '''
5727
+ '''OTAA device object for v1.0.x.
5728
+
5728
5729
  :param app_eui: The AppEUI value. You specify this value when using LoRaWAN versions v1.0.2 or v1.0.3.
5729
5730
  :param app_key: The AppKey value.
5730
5731