aws-cdk-lib 2.144.0__py3-none-any.whl → 2.146.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 (38) hide show
  1. aws_cdk/__init__.py +3 -1
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.144.0.jsii.tgz → aws-cdk-lib@2.146.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2_authorizers/__init__.py +27 -0
  5. aws_cdk/aws_apigatewayv2_integrations/__init__.py +27 -0
  6. aws_cdk/aws_appsync/__init__.py +62 -0
  7. aws_cdk/aws_autoscaling/__init__.py +416 -60
  8. aws_cdk/aws_chatbot/__init__.py +38 -0
  9. aws_cdk/aws_codebuild/__init__.py +598 -19
  10. aws_cdk/aws_config/__init__.py +1305 -45
  11. aws_cdk/aws_connect/__init__.py +86 -0
  12. aws_cdk/aws_ec2/__init__.py +42 -3
  13. aws_cdk/aws_ecs/__init__.py +110 -1
  14. aws_cdk/aws_eks/__init__.py +1495 -72
  15. aws_cdk/aws_iam/__init__.py +16 -11
  16. aws_cdk/aws_lambda/__init__.py +12 -0
  17. aws_cdk/aws_logs/__init__.py +114 -8
  18. aws_cdk/aws_logs_destinations/__init__.py +11 -9
  19. aws_cdk/aws_mediaconnect/__init__.py +2 -6
  20. aws_cdk/aws_mediapackagev2/__init__.py +476 -0
  21. aws_cdk/aws_opensearchservice/__init__.py +6 -0
  22. aws_cdk/aws_pipes/__init__.py +639 -0
  23. aws_cdk/aws_rds/__init__.py +12 -0
  24. aws_cdk/aws_rolesanywhere/__init__.py +196 -0
  25. aws_cdk/aws_route53/__init__.py +3 -3
  26. aws_cdk/aws_securityhub/__init__.py +2415 -374
  27. aws_cdk/aws_securitylake/__init__.py +179 -314
  28. aws_cdk/aws_sns/__init__.py +61 -9
  29. aws_cdk/aws_sqs/__init__.py +2 -2
  30. aws_cdk/aws_stepfunctions_tasks/__init__.py +3 -3
  31. aws_cdk/pipelines/__init__.py +2 -0
  32. aws_cdk/region_info/__init__.py +6 -0
  33. {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/METADATA +2 -2
  34. {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/NOTICE +0 -35
  35. {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/RECORD +38 -38
  36. {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/LICENSE +0 -0
  37. {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/WHEEL +0 -0
  38. {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/top_level.txt +0 -0
@@ -367,6 +367,33 @@ class CfnPipe(
367
367
  ),
368
368
  step_function_state_machine_parameters=pipes.CfnPipe.PipeTargetStateMachineParametersProperty(
369
369
  invocation_type="invocationType"
370
+ ),
371
+ timestream_parameters=pipes.CfnPipe.PipeTargetTimestreamParametersProperty(
372
+ dimension_mappings=[pipes.CfnPipe.DimensionMappingProperty(
373
+ dimension_name="dimensionName",
374
+ dimension_value="dimensionValue",
375
+ dimension_value_type="dimensionValueType"
376
+ )],
377
+ time_value="timeValue",
378
+ version_value="versionValue",
379
+
380
+ # the properties below are optional
381
+ epoch_time_unit="epochTimeUnit",
382
+ multi_measure_mappings=[pipes.CfnPipe.MultiMeasureMappingProperty(
383
+ multi_measure_attribute_mappings=[pipes.CfnPipe.MultiMeasureAttributeMappingProperty(
384
+ measure_value="measureValue",
385
+ measure_value_type="measureValueType",
386
+ multi_measure_attribute_name="multiMeasureAttributeName"
387
+ )],
388
+ multi_measure_name="multiMeasureName"
389
+ )],
390
+ single_measure_mappings=[pipes.CfnPipe.SingleMeasureMappingProperty(
391
+ measure_name="measureName",
392
+ measure_value="measureValue",
393
+ measure_value_type="measureValueType"
394
+ )],
395
+ time_field_type="timeFieldType",
396
+ timestamp_format="timestampFormat"
370
397
  )
371
398
  )
372
399
  )
@@ -1512,6 +1539,92 @@ class CfnPipe(
1512
1539
  k + "=" + repr(v) for k, v in self._values.items()
1513
1540
  )
1514
1541
 
1542
+ @jsii.data_type(
1543
+ jsii_type="aws-cdk-lib.aws_pipes.CfnPipe.DimensionMappingProperty",
1544
+ jsii_struct_bases=[],
1545
+ name_mapping={
1546
+ "dimension_name": "dimensionName",
1547
+ "dimension_value": "dimensionValue",
1548
+ "dimension_value_type": "dimensionValueType",
1549
+ },
1550
+ )
1551
+ class DimensionMappingProperty:
1552
+ def __init__(
1553
+ self,
1554
+ *,
1555
+ dimension_name: builtins.str,
1556
+ dimension_value: builtins.str,
1557
+ dimension_value_type: builtins.str,
1558
+ ) -> None:
1559
+ '''
1560
+ :param dimension_name:
1561
+ :param dimension_value:
1562
+ :param dimension_value_type:
1563
+
1564
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dimensionmapping.html
1565
+ :exampleMetadata: fixture=_generated
1566
+
1567
+ Example::
1568
+
1569
+ # The code below shows an example of how to instantiate this type.
1570
+ # The values are placeholders you should change.
1571
+ from aws_cdk import aws_pipes as pipes
1572
+
1573
+ dimension_mapping_property = pipes.CfnPipe.DimensionMappingProperty(
1574
+ dimension_name="dimensionName",
1575
+ dimension_value="dimensionValue",
1576
+ dimension_value_type="dimensionValueType"
1577
+ )
1578
+ '''
1579
+ if __debug__:
1580
+ type_hints = typing.get_type_hints(_typecheckingstub__90445059775fe670e3c9c4a62b04819c3b1b38303ab6fd3fa549dd8bfd50f665)
1581
+ check_type(argname="argument dimension_name", value=dimension_name, expected_type=type_hints["dimension_name"])
1582
+ check_type(argname="argument dimension_value", value=dimension_value, expected_type=type_hints["dimension_value"])
1583
+ check_type(argname="argument dimension_value_type", value=dimension_value_type, expected_type=type_hints["dimension_value_type"])
1584
+ self._values: typing.Dict[builtins.str, typing.Any] = {
1585
+ "dimension_name": dimension_name,
1586
+ "dimension_value": dimension_value,
1587
+ "dimension_value_type": dimension_value_type,
1588
+ }
1589
+
1590
+ @builtins.property
1591
+ def dimension_name(self) -> builtins.str:
1592
+ '''
1593
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dimensionmapping.html#cfn-pipes-pipe-dimensionmapping-dimensionname
1594
+ '''
1595
+ result = self._values.get("dimension_name")
1596
+ assert result is not None, "Required property 'dimension_name' is missing"
1597
+ return typing.cast(builtins.str, result)
1598
+
1599
+ @builtins.property
1600
+ def dimension_value(self) -> builtins.str:
1601
+ '''
1602
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dimensionmapping.html#cfn-pipes-pipe-dimensionmapping-dimensionvalue
1603
+ '''
1604
+ result = self._values.get("dimension_value")
1605
+ assert result is not None, "Required property 'dimension_value' is missing"
1606
+ return typing.cast(builtins.str, result)
1607
+
1608
+ @builtins.property
1609
+ def dimension_value_type(self) -> builtins.str:
1610
+ '''
1611
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dimensionmapping.html#cfn-pipes-pipe-dimensionmapping-dimensionvaluetype
1612
+ '''
1613
+ result = self._values.get("dimension_value_type")
1614
+ assert result is not None, "Required property 'dimension_value_type' is missing"
1615
+ return typing.cast(builtins.str, result)
1616
+
1617
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
1618
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
1619
+
1620
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
1621
+ return not (rhs == self)
1622
+
1623
+ def __repr__(self) -> str:
1624
+ return "DimensionMappingProperty(%s)" % ", ".join(
1625
+ k + "=" + repr(v) for k, v in self._values.items()
1626
+ )
1627
+
1515
1628
  @jsii.data_type(
1516
1629
  jsii_type="aws-cdk-lib.aws_pipes.CfnPipe.EcsContainerOverrideProperty",
1517
1630
  jsii_struct_bases=[],
@@ -2563,6 +2676,169 @@ class CfnPipe(
2563
2676
  k + "=" + repr(v) for k, v in self._values.items()
2564
2677
  )
2565
2678
 
2679
+ @jsii.data_type(
2680
+ jsii_type="aws-cdk-lib.aws_pipes.CfnPipe.MultiMeasureAttributeMappingProperty",
2681
+ jsii_struct_bases=[],
2682
+ name_mapping={
2683
+ "measure_value": "measureValue",
2684
+ "measure_value_type": "measureValueType",
2685
+ "multi_measure_attribute_name": "multiMeasureAttributeName",
2686
+ },
2687
+ )
2688
+ class MultiMeasureAttributeMappingProperty:
2689
+ def __init__(
2690
+ self,
2691
+ *,
2692
+ measure_value: builtins.str,
2693
+ measure_value_type: builtins.str,
2694
+ multi_measure_attribute_name: builtins.str,
2695
+ ) -> None:
2696
+ '''
2697
+ :param measure_value:
2698
+ :param measure_value_type:
2699
+ :param multi_measure_attribute_name:
2700
+
2701
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasureattributemapping.html
2702
+ :exampleMetadata: fixture=_generated
2703
+
2704
+ Example::
2705
+
2706
+ # The code below shows an example of how to instantiate this type.
2707
+ # The values are placeholders you should change.
2708
+ from aws_cdk import aws_pipes as pipes
2709
+
2710
+ multi_measure_attribute_mapping_property = pipes.CfnPipe.MultiMeasureAttributeMappingProperty(
2711
+ measure_value="measureValue",
2712
+ measure_value_type="measureValueType",
2713
+ multi_measure_attribute_name="multiMeasureAttributeName"
2714
+ )
2715
+ '''
2716
+ if __debug__:
2717
+ type_hints = typing.get_type_hints(_typecheckingstub__212f99ab798061b4358af8078ee7d62d5efcb557ac65d28bae84405218a7bdb0)
2718
+ check_type(argname="argument measure_value", value=measure_value, expected_type=type_hints["measure_value"])
2719
+ check_type(argname="argument measure_value_type", value=measure_value_type, expected_type=type_hints["measure_value_type"])
2720
+ check_type(argname="argument multi_measure_attribute_name", value=multi_measure_attribute_name, expected_type=type_hints["multi_measure_attribute_name"])
2721
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2722
+ "measure_value": measure_value,
2723
+ "measure_value_type": measure_value_type,
2724
+ "multi_measure_attribute_name": multi_measure_attribute_name,
2725
+ }
2726
+
2727
+ @builtins.property
2728
+ def measure_value(self) -> builtins.str:
2729
+ '''
2730
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasureattributemapping.html#cfn-pipes-pipe-multimeasureattributemapping-measurevalue
2731
+ '''
2732
+ result = self._values.get("measure_value")
2733
+ assert result is not None, "Required property 'measure_value' is missing"
2734
+ return typing.cast(builtins.str, result)
2735
+
2736
+ @builtins.property
2737
+ def measure_value_type(self) -> builtins.str:
2738
+ '''
2739
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasureattributemapping.html#cfn-pipes-pipe-multimeasureattributemapping-measurevaluetype
2740
+ '''
2741
+ result = self._values.get("measure_value_type")
2742
+ assert result is not None, "Required property 'measure_value_type' is missing"
2743
+ return typing.cast(builtins.str, result)
2744
+
2745
+ @builtins.property
2746
+ def multi_measure_attribute_name(self) -> builtins.str:
2747
+ '''
2748
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasureattributemapping.html#cfn-pipes-pipe-multimeasureattributemapping-multimeasureattributename
2749
+ '''
2750
+ result = self._values.get("multi_measure_attribute_name")
2751
+ assert result is not None, "Required property 'multi_measure_attribute_name' is missing"
2752
+ return typing.cast(builtins.str, result)
2753
+
2754
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2755
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2756
+
2757
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2758
+ return not (rhs == self)
2759
+
2760
+ def __repr__(self) -> str:
2761
+ return "MultiMeasureAttributeMappingProperty(%s)" % ", ".join(
2762
+ k + "=" + repr(v) for k, v in self._values.items()
2763
+ )
2764
+
2765
+ @jsii.data_type(
2766
+ jsii_type="aws-cdk-lib.aws_pipes.CfnPipe.MultiMeasureMappingProperty",
2767
+ jsii_struct_bases=[],
2768
+ name_mapping={
2769
+ "multi_measure_attribute_mappings": "multiMeasureAttributeMappings",
2770
+ "multi_measure_name": "multiMeasureName",
2771
+ },
2772
+ )
2773
+ class MultiMeasureMappingProperty:
2774
+ def __init__(
2775
+ self,
2776
+ *,
2777
+ multi_measure_attribute_mappings: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPipe.MultiMeasureAttributeMappingProperty", typing.Dict[builtins.str, typing.Any]]]]],
2778
+ multi_measure_name: builtins.str,
2779
+ ) -> None:
2780
+ '''
2781
+ :param multi_measure_attribute_mappings:
2782
+ :param multi_measure_name:
2783
+
2784
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasuremapping.html
2785
+ :exampleMetadata: fixture=_generated
2786
+
2787
+ Example::
2788
+
2789
+ # The code below shows an example of how to instantiate this type.
2790
+ # The values are placeholders you should change.
2791
+ from aws_cdk import aws_pipes as pipes
2792
+
2793
+ multi_measure_mapping_property = pipes.CfnPipe.MultiMeasureMappingProperty(
2794
+ multi_measure_attribute_mappings=[pipes.CfnPipe.MultiMeasureAttributeMappingProperty(
2795
+ measure_value="measureValue",
2796
+ measure_value_type="measureValueType",
2797
+ multi_measure_attribute_name="multiMeasureAttributeName"
2798
+ )],
2799
+ multi_measure_name="multiMeasureName"
2800
+ )
2801
+ '''
2802
+ if __debug__:
2803
+ type_hints = typing.get_type_hints(_typecheckingstub__b2807dcf94bfcf7b833ff6fa9c78c231e51d400fb78dd507b6fd4742dd6ee65c)
2804
+ check_type(argname="argument multi_measure_attribute_mappings", value=multi_measure_attribute_mappings, expected_type=type_hints["multi_measure_attribute_mappings"])
2805
+ check_type(argname="argument multi_measure_name", value=multi_measure_name, expected_type=type_hints["multi_measure_name"])
2806
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2807
+ "multi_measure_attribute_mappings": multi_measure_attribute_mappings,
2808
+ "multi_measure_name": multi_measure_name,
2809
+ }
2810
+
2811
+ @builtins.property
2812
+ def multi_measure_attribute_mappings(
2813
+ self,
2814
+ ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnPipe.MultiMeasureAttributeMappingProperty"]]]:
2815
+ '''
2816
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasuremapping.html#cfn-pipes-pipe-multimeasuremapping-multimeasureattributemappings
2817
+ '''
2818
+ result = self._values.get("multi_measure_attribute_mappings")
2819
+ assert result is not None, "Required property 'multi_measure_attribute_mappings' is missing"
2820
+ return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnPipe.MultiMeasureAttributeMappingProperty"]]], result)
2821
+
2822
+ @builtins.property
2823
+ def multi_measure_name(self) -> builtins.str:
2824
+ '''
2825
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasuremapping.html#cfn-pipes-pipe-multimeasuremapping-multimeasurename
2826
+ '''
2827
+ result = self._values.get("multi_measure_name")
2828
+ assert result is not None, "Required property 'multi_measure_name' is missing"
2829
+ return typing.cast(builtins.str, result)
2830
+
2831
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2832
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2833
+
2834
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2835
+ return not (rhs == self)
2836
+
2837
+ def __repr__(self) -> str:
2838
+ return "MultiMeasureMappingProperty(%s)" % ", ".join(
2839
+ k + "=" + repr(v) for k, v in self._values.items()
2840
+ )
2841
+
2566
2842
  @jsii.data_type(
2567
2843
  jsii_type="aws-cdk-lib.aws_pipes.CfnPipe.NetworkConfigurationProperty",
2568
2844
  jsii_struct_bases=[],
@@ -5288,6 +5564,7 @@ class CfnPipe(
5288
5564
  "sage_maker_pipeline_parameters": "sageMakerPipelineParameters",
5289
5565
  "sqs_queue_parameters": "sqsQueueParameters",
5290
5566
  "step_function_state_machine_parameters": "stepFunctionStateMachineParameters",
5567
+ "timestream_parameters": "timestreamParameters",
5291
5568
  },
5292
5569
  )
5293
5570
  class PipeTargetParametersProperty:
@@ -5306,6 +5583,7 @@ class CfnPipe(
5306
5583
  sage_maker_pipeline_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPipe.PipeTargetSageMakerPipelineParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5307
5584
  sqs_queue_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPipe.PipeTargetSqsQueueParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5308
5585
  step_function_state_machine_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPipe.PipeTargetStateMachineParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5586
+ timestream_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPipe.PipeTargetTimestreamParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5309
5587
  ) -> None:
5310
5588
  '''The parameters required to set up a target for your pipe.
5311
5589
 
@@ -5323,6 +5601,7 @@ class CfnPipe(
5323
5601
  :param sage_maker_pipeline_parameters: The parameters for using a SageMaker pipeline as a target.
5324
5602
  :param sqs_queue_parameters: The parameters for using a Amazon SQS stream as a target.
5325
5603
  :param step_function_state_machine_parameters: The parameters for using a Step Functions state machine as a target.
5604
+ :param timestream_parameters:
5326
5605
 
5327
5606
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargetparameters.html
5328
5607
  :exampleMetadata: infused
@@ -5357,6 +5636,7 @@ class CfnPipe(
5357
5636
  check_type(argname="argument sage_maker_pipeline_parameters", value=sage_maker_pipeline_parameters, expected_type=type_hints["sage_maker_pipeline_parameters"])
5358
5637
  check_type(argname="argument sqs_queue_parameters", value=sqs_queue_parameters, expected_type=type_hints["sqs_queue_parameters"])
5359
5638
  check_type(argname="argument step_function_state_machine_parameters", value=step_function_state_machine_parameters, expected_type=type_hints["step_function_state_machine_parameters"])
5639
+ check_type(argname="argument timestream_parameters", value=timestream_parameters, expected_type=type_hints["timestream_parameters"])
5360
5640
  self._values: typing.Dict[builtins.str, typing.Any] = {}
5361
5641
  if batch_job_parameters is not None:
5362
5642
  self._values["batch_job_parameters"] = batch_job_parameters
@@ -5382,6 +5662,8 @@ class CfnPipe(
5382
5662
  self._values["sqs_queue_parameters"] = sqs_queue_parameters
5383
5663
  if step_function_state_machine_parameters is not None:
5384
5664
  self._values["step_function_state_machine_parameters"] = step_function_state_machine_parameters
5665
+ if timestream_parameters is not None:
5666
+ self._values["timestream_parameters"] = timestream_parameters
5385
5667
 
5386
5668
  @builtins.property
5387
5669
  def batch_job_parameters(
@@ -5517,6 +5799,16 @@ class CfnPipe(
5517
5799
  result = self._values.get("step_function_state_machine_parameters")
5518
5800
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPipe.PipeTargetStateMachineParametersProperty"]], result)
5519
5801
 
5802
+ @builtins.property
5803
+ def timestream_parameters(
5804
+ self,
5805
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPipe.PipeTargetTimestreamParametersProperty"]]:
5806
+ '''
5807
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargetparameters.html#cfn-pipes-pipe-pipetargetparameters-timestreamparameters
5808
+ '''
5809
+ result = self._values.get("timestream_parameters")
5810
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPipe.PipeTargetTimestreamParametersProperty"]], result)
5811
+
5520
5812
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
5521
5813
  return isinstance(rhs, self.__class__) and rhs._values == self._values
5522
5814
 
@@ -5880,6 +6172,190 @@ class CfnPipe(
5880
6172
  k + "=" + repr(v) for k, v in self._values.items()
5881
6173
  )
5882
6174
 
6175
+ @jsii.data_type(
6176
+ jsii_type="aws-cdk-lib.aws_pipes.CfnPipe.PipeTargetTimestreamParametersProperty",
6177
+ jsii_struct_bases=[],
6178
+ name_mapping={
6179
+ "dimension_mappings": "dimensionMappings",
6180
+ "time_value": "timeValue",
6181
+ "version_value": "versionValue",
6182
+ "epoch_time_unit": "epochTimeUnit",
6183
+ "multi_measure_mappings": "multiMeasureMappings",
6184
+ "single_measure_mappings": "singleMeasureMappings",
6185
+ "time_field_type": "timeFieldType",
6186
+ "timestamp_format": "timestampFormat",
6187
+ },
6188
+ )
6189
+ class PipeTargetTimestreamParametersProperty:
6190
+ def __init__(
6191
+ self,
6192
+ *,
6193
+ dimension_mappings: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPipe.DimensionMappingProperty", typing.Dict[builtins.str, typing.Any]]]]],
6194
+ time_value: builtins.str,
6195
+ version_value: builtins.str,
6196
+ epoch_time_unit: typing.Optional[builtins.str] = None,
6197
+ multi_measure_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPipe.MultiMeasureMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
6198
+ single_measure_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPipe.SingleMeasureMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
6199
+ time_field_type: typing.Optional[builtins.str] = None,
6200
+ timestamp_format: typing.Optional[builtins.str] = None,
6201
+ ) -> None:
6202
+ '''
6203
+ :param dimension_mappings:
6204
+ :param time_value:
6205
+ :param version_value:
6206
+ :param epoch_time_unit:
6207
+ :param multi_measure_mappings:
6208
+ :param single_measure_mappings:
6209
+ :param time_field_type:
6210
+ :param timestamp_format:
6211
+
6212
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html
6213
+ :exampleMetadata: fixture=_generated
6214
+
6215
+ Example::
6216
+
6217
+ # The code below shows an example of how to instantiate this type.
6218
+ # The values are placeholders you should change.
6219
+ from aws_cdk import aws_pipes as pipes
6220
+
6221
+ pipe_target_timestream_parameters_property = pipes.CfnPipe.PipeTargetTimestreamParametersProperty(
6222
+ dimension_mappings=[pipes.CfnPipe.DimensionMappingProperty(
6223
+ dimension_name="dimensionName",
6224
+ dimension_value="dimensionValue",
6225
+ dimension_value_type="dimensionValueType"
6226
+ )],
6227
+ time_value="timeValue",
6228
+ version_value="versionValue",
6229
+
6230
+ # the properties below are optional
6231
+ epoch_time_unit="epochTimeUnit",
6232
+ multi_measure_mappings=[pipes.CfnPipe.MultiMeasureMappingProperty(
6233
+ multi_measure_attribute_mappings=[pipes.CfnPipe.MultiMeasureAttributeMappingProperty(
6234
+ measure_value="measureValue",
6235
+ measure_value_type="measureValueType",
6236
+ multi_measure_attribute_name="multiMeasureAttributeName"
6237
+ )],
6238
+ multi_measure_name="multiMeasureName"
6239
+ )],
6240
+ single_measure_mappings=[pipes.CfnPipe.SingleMeasureMappingProperty(
6241
+ measure_name="measureName",
6242
+ measure_value="measureValue",
6243
+ measure_value_type="measureValueType"
6244
+ )],
6245
+ time_field_type="timeFieldType",
6246
+ timestamp_format="timestampFormat"
6247
+ )
6248
+ '''
6249
+ if __debug__:
6250
+ type_hints = typing.get_type_hints(_typecheckingstub__b206852e9e433f381f61fd5ad5dfd0470a8f2f2d91b1c9d47ec9f3911f90b705)
6251
+ check_type(argname="argument dimension_mappings", value=dimension_mappings, expected_type=type_hints["dimension_mappings"])
6252
+ check_type(argname="argument time_value", value=time_value, expected_type=type_hints["time_value"])
6253
+ check_type(argname="argument version_value", value=version_value, expected_type=type_hints["version_value"])
6254
+ check_type(argname="argument epoch_time_unit", value=epoch_time_unit, expected_type=type_hints["epoch_time_unit"])
6255
+ check_type(argname="argument multi_measure_mappings", value=multi_measure_mappings, expected_type=type_hints["multi_measure_mappings"])
6256
+ check_type(argname="argument single_measure_mappings", value=single_measure_mappings, expected_type=type_hints["single_measure_mappings"])
6257
+ check_type(argname="argument time_field_type", value=time_field_type, expected_type=type_hints["time_field_type"])
6258
+ check_type(argname="argument timestamp_format", value=timestamp_format, expected_type=type_hints["timestamp_format"])
6259
+ self._values: typing.Dict[builtins.str, typing.Any] = {
6260
+ "dimension_mappings": dimension_mappings,
6261
+ "time_value": time_value,
6262
+ "version_value": version_value,
6263
+ }
6264
+ if epoch_time_unit is not None:
6265
+ self._values["epoch_time_unit"] = epoch_time_unit
6266
+ if multi_measure_mappings is not None:
6267
+ self._values["multi_measure_mappings"] = multi_measure_mappings
6268
+ if single_measure_mappings is not None:
6269
+ self._values["single_measure_mappings"] = single_measure_mappings
6270
+ if time_field_type is not None:
6271
+ self._values["time_field_type"] = time_field_type
6272
+ if timestamp_format is not None:
6273
+ self._values["timestamp_format"] = timestamp_format
6274
+
6275
+ @builtins.property
6276
+ def dimension_mappings(
6277
+ self,
6278
+ ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnPipe.DimensionMappingProperty"]]]:
6279
+ '''
6280
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html#cfn-pipes-pipe-pipetargettimestreamparameters-dimensionmappings
6281
+ '''
6282
+ result = self._values.get("dimension_mappings")
6283
+ assert result is not None, "Required property 'dimension_mappings' is missing"
6284
+ return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnPipe.DimensionMappingProperty"]]], result)
6285
+
6286
+ @builtins.property
6287
+ def time_value(self) -> builtins.str:
6288
+ '''
6289
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html#cfn-pipes-pipe-pipetargettimestreamparameters-timevalue
6290
+ '''
6291
+ result = self._values.get("time_value")
6292
+ assert result is not None, "Required property 'time_value' is missing"
6293
+ return typing.cast(builtins.str, result)
6294
+
6295
+ @builtins.property
6296
+ def version_value(self) -> builtins.str:
6297
+ '''
6298
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html#cfn-pipes-pipe-pipetargettimestreamparameters-versionvalue
6299
+ '''
6300
+ result = self._values.get("version_value")
6301
+ assert result is not None, "Required property 'version_value' is missing"
6302
+ return typing.cast(builtins.str, result)
6303
+
6304
+ @builtins.property
6305
+ def epoch_time_unit(self) -> typing.Optional[builtins.str]:
6306
+ '''
6307
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html#cfn-pipes-pipe-pipetargettimestreamparameters-epochtimeunit
6308
+ '''
6309
+ result = self._values.get("epoch_time_unit")
6310
+ return typing.cast(typing.Optional[builtins.str], result)
6311
+
6312
+ @builtins.property
6313
+ def multi_measure_mappings(
6314
+ self,
6315
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnPipe.MultiMeasureMappingProperty"]]]]:
6316
+ '''
6317
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html#cfn-pipes-pipe-pipetargettimestreamparameters-multimeasuremappings
6318
+ '''
6319
+ result = self._values.get("multi_measure_mappings")
6320
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnPipe.MultiMeasureMappingProperty"]]]], result)
6321
+
6322
+ @builtins.property
6323
+ def single_measure_mappings(
6324
+ self,
6325
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnPipe.SingleMeasureMappingProperty"]]]]:
6326
+ '''
6327
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html#cfn-pipes-pipe-pipetargettimestreamparameters-singlemeasuremappings
6328
+ '''
6329
+ result = self._values.get("single_measure_mappings")
6330
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnPipe.SingleMeasureMappingProperty"]]]], result)
6331
+
6332
+ @builtins.property
6333
+ def time_field_type(self) -> typing.Optional[builtins.str]:
6334
+ '''
6335
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html#cfn-pipes-pipe-pipetargettimestreamparameters-timefieldtype
6336
+ '''
6337
+ result = self._values.get("time_field_type")
6338
+ return typing.cast(typing.Optional[builtins.str], result)
6339
+
6340
+ @builtins.property
6341
+ def timestamp_format(self) -> typing.Optional[builtins.str]:
6342
+ '''
6343
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html#cfn-pipes-pipe-pipetargettimestreamparameters-timestampformat
6344
+ '''
6345
+ result = self._values.get("timestamp_format")
6346
+ return typing.cast(typing.Optional[builtins.str], result)
6347
+
6348
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
6349
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
6350
+
6351
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
6352
+ return not (rhs == self)
6353
+
6354
+ def __repr__(self) -> str:
6355
+ return "PipeTargetTimestreamParametersProperty(%s)" % ", ".join(
6356
+ k + "=" + repr(v) for k, v in self._values.items()
6357
+ )
6358
+
5883
6359
  @jsii.data_type(
5884
6360
  jsii_type="aws-cdk-lib.aws_pipes.CfnPipe.PlacementConstraintProperty",
5885
6361
  jsii_struct_bases=[],
@@ -6388,6 +6864,92 @@ class CfnPipe(
6388
6864
  k + "=" + repr(v) for k, v in self._values.items()
6389
6865
  )
6390
6866
 
6867
+ @jsii.data_type(
6868
+ jsii_type="aws-cdk-lib.aws_pipes.CfnPipe.SingleMeasureMappingProperty",
6869
+ jsii_struct_bases=[],
6870
+ name_mapping={
6871
+ "measure_name": "measureName",
6872
+ "measure_value": "measureValue",
6873
+ "measure_value_type": "measureValueType",
6874
+ },
6875
+ )
6876
+ class SingleMeasureMappingProperty:
6877
+ def __init__(
6878
+ self,
6879
+ *,
6880
+ measure_name: builtins.str,
6881
+ measure_value: builtins.str,
6882
+ measure_value_type: builtins.str,
6883
+ ) -> None:
6884
+ '''
6885
+ :param measure_name:
6886
+ :param measure_value:
6887
+ :param measure_value_type:
6888
+
6889
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-singlemeasuremapping.html
6890
+ :exampleMetadata: fixture=_generated
6891
+
6892
+ Example::
6893
+
6894
+ # The code below shows an example of how to instantiate this type.
6895
+ # The values are placeholders you should change.
6896
+ from aws_cdk import aws_pipes as pipes
6897
+
6898
+ single_measure_mapping_property = pipes.CfnPipe.SingleMeasureMappingProperty(
6899
+ measure_name="measureName",
6900
+ measure_value="measureValue",
6901
+ measure_value_type="measureValueType"
6902
+ )
6903
+ '''
6904
+ if __debug__:
6905
+ type_hints = typing.get_type_hints(_typecheckingstub__6f2cbc8cdc4847f4898a4137ea8b22908f1ad5c472f632396cf65a72af05bda9)
6906
+ check_type(argname="argument measure_name", value=measure_name, expected_type=type_hints["measure_name"])
6907
+ check_type(argname="argument measure_value", value=measure_value, expected_type=type_hints["measure_value"])
6908
+ check_type(argname="argument measure_value_type", value=measure_value_type, expected_type=type_hints["measure_value_type"])
6909
+ self._values: typing.Dict[builtins.str, typing.Any] = {
6910
+ "measure_name": measure_name,
6911
+ "measure_value": measure_value,
6912
+ "measure_value_type": measure_value_type,
6913
+ }
6914
+
6915
+ @builtins.property
6916
+ def measure_name(self) -> builtins.str:
6917
+ '''
6918
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-singlemeasuremapping.html#cfn-pipes-pipe-singlemeasuremapping-measurename
6919
+ '''
6920
+ result = self._values.get("measure_name")
6921
+ assert result is not None, "Required property 'measure_name' is missing"
6922
+ return typing.cast(builtins.str, result)
6923
+
6924
+ @builtins.property
6925
+ def measure_value(self) -> builtins.str:
6926
+ '''
6927
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-singlemeasuremapping.html#cfn-pipes-pipe-singlemeasuremapping-measurevalue
6928
+ '''
6929
+ result = self._values.get("measure_value")
6930
+ assert result is not None, "Required property 'measure_value' is missing"
6931
+ return typing.cast(builtins.str, result)
6932
+
6933
+ @builtins.property
6934
+ def measure_value_type(self) -> builtins.str:
6935
+ '''
6936
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-singlemeasuremapping.html#cfn-pipes-pipe-singlemeasuremapping-measurevaluetype
6937
+ '''
6938
+ result = self._values.get("measure_value_type")
6939
+ assert result is not None, "Required property 'measure_value_type' is missing"
6940
+ return typing.cast(builtins.str, result)
6941
+
6942
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
6943
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
6944
+
6945
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
6946
+ return not (rhs == self)
6947
+
6948
+ def __repr__(self) -> str:
6949
+ return "SingleMeasureMappingProperty(%s)" % ", ".join(
6950
+ k + "=" + repr(v) for k, v in self._values.items()
6951
+ )
6952
+
6391
6953
 
6392
6954
  @jsii.data_type(
6393
6955
  jsii_type="aws-cdk-lib.aws_pipes.CfnPipeProps",
@@ -6738,6 +7300,33 @@ class CfnPipeProps:
6738
7300
  ),
6739
7301
  step_function_state_machine_parameters=pipes.CfnPipe.PipeTargetStateMachineParametersProperty(
6740
7302
  invocation_type="invocationType"
7303
+ ),
7304
+ timestream_parameters=pipes.CfnPipe.PipeTargetTimestreamParametersProperty(
7305
+ dimension_mappings=[pipes.CfnPipe.DimensionMappingProperty(
7306
+ dimension_name="dimensionName",
7307
+ dimension_value="dimensionValue",
7308
+ dimension_value_type="dimensionValueType"
7309
+ )],
7310
+ time_value="timeValue",
7311
+ version_value="versionValue",
7312
+
7313
+ # the properties below are optional
7314
+ epoch_time_unit="epochTimeUnit",
7315
+ multi_measure_mappings=[pipes.CfnPipe.MultiMeasureMappingProperty(
7316
+ multi_measure_attribute_mappings=[pipes.CfnPipe.MultiMeasureAttributeMappingProperty(
7317
+ measure_value="measureValue",
7318
+ measure_value_type="measureValueType",
7319
+ multi_measure_attribute_name="multiMeasureAttributeName"
7320
+ )],
7321
+ multi_measure_name="multiMeasureName"
7322
+ )],
7323
+ single_measure_mappings=[pipes.CfnPipe.SingleMeasureMappingProperty(
7324
+ measure_name="measureName",
7325
+ measure_value="measureValue",
7326
+ measure_value_type="measureValueType"
7327
+ )],
7328
+ time_field_type="timeFieldType",
7329
+ timestamp_format="timestampFormat"
6741
7330
  )
6742
7331
  )
6743
7332
  )
@@ -7104,6 +7693,15 @@ def _typecheckingstub__c77be0d58acf260e66916991ed848b46a2c0c50751145a9186710668a
7104
7693
  """Type checking stubs"""
7105
7694
  pass
7106
7695
 
7696
+ def _typecheckingstub__90445059775fe670e3c9c4a62b04819c3b1b38303ab6fd3fa549dd8bfd50f665(
7697
+ *,
7698
+ dimension_name: builtins.str,
7699
+ dimension_value: builtins.str,
7700
+ dimension_value_type: builtins.str,
7701
+ ) -> None:
7702
+ """Type checking stubs"""
7703
+ pass
7704
+
7107
7705
  def _typecheckingstub__2aa9c9e99af21330a73d690bfbb31c0ded547e5a62886d6682815f5910e00e65(
7108
7706
  *,
7109
7707
  command: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -7206,6 +7804,23 @@ def _typecheckingstub__46261e68c3c1fb4bc41f7b2debe372659b86c5d9845e6857c0ad7b904
7206
7804
  """Type checking stubs"""
7207
7805
  pass
7208
7806
 
7807
+ def _typecheckingstub__212f99ab798061b4358af8078ee7d62d5efcb557ac65d28bae84405218a7bdb0(
7808
+ *,
7809
+ measure_value: builtins.str,
7810
+ measure_value_type: builtins.str,
7811
+ multi_measure_attribute_name: builtins.str,
7812
+ ) -> None:
7813
+ """Type checking stubs"""
7814
+ pass
7815
+
7816
+ def _typecheckingstub__b2807dcf94bfcf7b833ff6fa9c78c231e51d400fb78dd507b6fd4742dd6ee65c(
7817
+ *,
7818
+ multi_measure_attribute_mappings: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPipe.MultiMeasureAttributeMappingProperty, typing.Dict[builtins.str, typing.Any]]]]],
7819
+ multi_measure_name: builtins.str,
7820
+ ) -> None:
7821
+ """Type checking stubs"""
7822
+ pass
7823
+
7209
7824
  def _typecheckingstub__d27b7177804b8a4677a880ec362095763e2c62871f3c70d4aadd38189dedd0ac(
7210
7825
  *,
7211
7826
  awsvpc_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPipe.AwsVpcConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -7430,6 +8045,7 @@ def _typecheckingstub__165d2153d77ee319562b47678485053dec4a8dbcb94c274abe1d78488
7430
8045
  sage_maker_pipeline_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPipe.PipeTargetSageMakerPipelineParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7431
8046
  sqs_queue_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPipe.PipeTargetSqsQueueParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7432
8047
  step_function_state_machine_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPipe.PipeTargetStateMachineParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8048
+ timestream_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPipe.PipeTargetTimestreamParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7433
8049
  ) -> None:
7434
8050
  """Type checking stubs"""
7435
8051
  pass
@@ -7468,6 +8084,20 @@ def _typecheckingstub__9ec503fded11cbbc4dab0b1613c3577e5cd2103bb82744fbf161f720d
7468
8084
  """Type checking stubs"""
7469
8085
  pass
7470
8086
 
8087
+ def _typecheckingstub__b206852e9e433f381f61fd5ad5dfd0470a8f2f2d91b1c9d47ec9f3911f90b705(
8088
+ *,
8089
+ dimension_mappings: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPipe.DimensionMappingProperty, typing.Dict[builtins.str, typing.Any]]]]],
8090
+ time_value: builtins.str,
8091
+ version_value: builtins.str,
8092
+ epoch_time_unit: typing.Optional[builtins.str] = None,
8093
+ multi_measure_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPipe.MultiMeasureMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
8094
+ single_measure_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPipe.SingleMeasureMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
8095
+ time_field_type: typing.Optional[builtins.str] = None,
8096
+ timestamp_format: typing.Optional[builtins.str] = None,
8097
+ ) -> None:
8098
+ """Type checking stubs"""
8099
+ pass
8100
+
7471
8101
  def _typecheckingstub__29749098783763739ea7f446fdc50033c069cafa812e55482d1793fc10995a4b(
7472
8102
  *,
7473
8103
  expression: typing.Optional[builtins.str] = None,
@@ -7520,6 +8150,15 @@ def _typecheckingstub__93a7c0e9afe409ba0c90cb07ebece11a8dbddefa4be80b9479ca7514b
7520
8150
  """Type checking stubs"""
7521
8151
  pass
7522
8152
 
8153
+ def _typecheckingstub__6f2cbc8cdc4847f4898a4137ea8b22908f1ad5c472f632396cf65a72af05bda9(
8154
+ *,
8155
+ measure_name: builtins.str,
8156
+ measure_value: builtins.str,
8157
+ measure_value_type: builtins.str,
8158
+ ) -> None:
8159
+ """Type checking stubs"""
8160
+ pass
8161
+
7523
8162
  def _typecheckingstub__f6a6720db1bd2e7acc178f6bd481fd8e3e740405a24c01b669c4c4595318b8c0(
7524
8163
  *,
7525
8164
  role_arn: builtins.str,