aws-cdk-lib 2.174.1__py3-none-any.whl → 2.175.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.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.174.1.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +248 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
- aws_cdk/aws_autoscaling/__init__.py +8 -8
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cloudfront/__init__.py +92 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudwatch/__init__.py +146 -0
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dynamodb/__init__.py +300 -0
- aws_cdk/aws_ec2/__init__.py +97 -0
- aws_cdk/aws_ecs/__init__.py +351 -110
- aws_cdk/aws_ecs_patterns/__init__.py +77 -42
- aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kms/__init__.py +197 -0
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_rds/__init__.py +384 -0
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +42 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +36 -36
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
|
@@ -24505,6 +24505,8 @@ class Distribution(
|
|
|
24505
24505
|
label: typing.Optional[builtins.str] = None,
|
|
24506
24506
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24507
24507
|
region: typing.Optional[builtins.str] = None,
|
|
24508
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24509
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24508
24510
|
statistic: typing.Optional[builtins.str] = None,
|
|
24509
24511
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24510
24512
|
) -> _Metric_e396a4dc:
|
|
@@ -24517,6 +24519,8 @@ class Distribution(
|
|
|
24517
24519
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24518
24520
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24519
24521
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24522
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24523
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24520
24524
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24521
24525
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24522
24526
|
'''
|
|
@@ -24530,6 +24534,8 @@ class Distribution(
|
|
|
24530
24534
|
label=label,
|
|
24531
24535
|
period=period,
|
|
24532
24536
|
region=region,
|
|
24537
|
+
stack_account=stack_account,
|
|
24538
|
+
stack_region=stack_region,
|
|
24533
24539
|
statistic=statistic,
|
|
24534
24540
|
unit=unit,
|
|
24535
24541
|
)
|
|
@@ -24546,6 +24552,8 @@ class Distribution(
|
|
|
24546
24552
|
label: typing.Optional[builtins.str] = None,
|
|
24547
24553
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24548
24554
|
region: typing.Optional[builtins.str] = None,
|
|
24555
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24556
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24549
24557
|
statistic: typing.Optional[builtins.str] = None,
|
|
24550
24558
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24551
24559
|
) -> _Metric_e396a4dc:
|
|
@@ -24559,6 +24567,8 @@ class Distribution(
|
|
|
24559
24567
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24560
24568
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24561
24569
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24570
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24571
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24562
24572
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24563
24573
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24564
24574
|
|
|
@@ -24571,6 +24581,8 @@ class Distribution(
|
|
|
24571
24581
|
label=label,
|
|
24572
24582
|
period=period,
|
|
24573
24583
|
region=region,
|
|
24584
|
+
stack_account=stack_account,
|
|
24585
|
+
stack_region=stack_region,
|
|
24574
24586
|
statistic=statistic,
|
|
24575
24587
|
unit=unit,
|
|
24576
24588
|
)
|
|
@@ -24587,6 +24599,8 @@ class Distribution(
|
|
|
24587
24599
|
label: typing.Optional[builtins.str] = None,
|
|
24588
24600
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24589
24601
|
region: typing.Optional[builtins.str] = None,
|
|
24602
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24603
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24590
24604
|
statistic: typing.Optional[builtins.str] = None,
|
|
24591
24605
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24592
24606
|
) -> _Metric_e396a4dc:
|
|
@@ -24600,6 +24614,8 @@ class Distribution(
|
|
|
24600
24614
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24601
24615
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24602
24616
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24617
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24618
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24603
24619
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24604
24620
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24605
24621
|
|
|
@@ -24612,6 +24628,8 @@ class Distribution(
|
|
|
24612
24628
|
label=label,
|
|
24613
24629
|
period=period,
|
|
24614
24630
|
region=region,
|
|
24631
|
+
stack_account=stack_account,
|
|
24632
|
+
stack_region=stack_region,
|
|
24615
24633
|
statistic=statistic,
|
|
24616
24634
|
unit=unit,
|
|
24617
24635
|
)
|
|
@@ -24628,6 +24646,8 @@ class Distribution(
|
|
|
24628
24646
|
label: typing.Optional[builtins.str] = None,
|
|
24629
24647
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24630
24648
|
region: typing.Optional[builtins.str] = None,
|
|
24649
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24650
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24631
24651
|
statistic: typing.Optional[builtins.str] = None,
|
|
24632
24652
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24633
24653
|
) -> _Metric_e396a4dc:
|
|
@@ -24641,6 +24661,8 @@ class Distribution(
|
|
|
24641
24661
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24642
24662
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24643
24663
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24664
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24665
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24644
24666
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24645
24667
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24646
24668
|
|
|
@@ -24653,6 +24675,8 @@ class Distribution(
|
|
|
24653
24675
|
label=label,
|
|
24654
24676
|
period=period,
|
|
24655
24677
|
region=region,
|
|
24678
|
+
stack_account=stack_account,
|
|
24679
|
+
stack_region=stack_region,
|
|
24656
24680
|
statistic=statistic,
|
|
24657
24681
|
unit=unit,
|
|
24658
24682
|
)
|
|
@@ -24669,6 +24693,8 @@ class Distribution(
|
|
|
24669
24693
|
label: typing.Optional[builtins.str] = None,
|
|
24670
24694
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24671
24695
|
region: typing.Optional[builtins.str] = None,
|
|
24696
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24697
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24672
24698
|
statistic: typing.Optional[builtins.str] = None,
|
|
24673
24699
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24674
24700
|
) -> _Metric_e396a4dc:
|
|
@@ -24680,6 +24706,8 @@ class Distribution(
|
|
|
24680
24706
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24681
24707
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24682
24708
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24709
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24710
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24683
24711
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24684
24712
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24685
24713
|
|
|
@@ -24692,6 +24720,8 @@ class Distribution(
|
|
|
24692
24720
|
label=label,
|
|
24693
24721
|
period=period,
|
|
24694
24722
|
region=region,
|
|
24723
|
+
stack_account=stack_account,
|
|
24724
|
+
stack_region=stack_region,
|
|
24695
24725
|
statistic=statistic,
|
|
24696
24726
|
unit=unit,
|
|
24697
24727
|
)
|
|
@@ -24708,6 +24738,8 @@ class Distribution(
|
|
|
24708
24738
|
label: typing.Optional[builtins.str] = None,
|
|
24709
24739
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24710
24740
|
region: typing.Optional[builtins.str] = None,
|
|
24741
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24742
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24711
24743
|
statistic: typing.Optional[builtins.str] = None,
|
|
24712
24744
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24713
24745
|
) -> _Metric_e396a4dc:
|
|
@@ -24721,6 +24753,8 @@ class Distribution(
|
|
|
24721
24753
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24722
24754
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24723
24755
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24756
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24757
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24724
24758
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24725
24759
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24726
24760
|
|
|
@@ -24733,6 +24767,8 @@ class Distribution(
|
|
|
24733
24767
|
label=label,
|
|
24734
24768
|
period=period,
|
|
24735
24769
|
region=region,
|
|
24770
|
+
stack_account=stack_account,
|
|
24771
|
+
stack_region=stack_region,
|
|
24736
24772
|
statistic=statistic,
|
|
24737
24773
|
unit=unit,
|
|
24738
24774
|
)
|
|
@@ -24749,6 +24785,8 @@ class Distribution(
|
|
|
24749
24785
|
label: typing.Optional[builtins.str] = None,
|
|
24750
24786
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24751
24787
|
region: typing.Optional[builtins.str] = None,
|
|
24788
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24789
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24752
24790
|
statistic: typing.Optional[builtins.str] = None,
|
|
24753
24791
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24754
24792
|
) -> _Metric_e396a4dc:
|
|
@@ -24762,6 +24800,8 @@ class Distribution(
|
|
|
24762
24800
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24763
24801
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24764
24802
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24803
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24804
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24765
24805
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24766
24806
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24767
24807
|
|
|
@@ -24774,6 +24814,8 @@ class Distribution(
|
|
|
24774
24814
|
label=label,
|
|
24775
24815
|
period=period,
|
|
24776
24816
|
region=region,
|
|
24817
|
+
stack_account=stack_account,
|
|
24818
|
+
stack_region=stack_region,
|
|
24777
24819
|
statistic=statistic,
|
|
24778
24820
|
unit=unit,
|
|
24779
24821
|
)
|
|
@@ -24790,6 +24832,8 @@ class Distribution(
|
|
|
24790
24832
|
label: typing.Optional[builtins.str] = None,
|
|
24791
24833
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24792
24834
|
region: typing.Optional[builtins.str] = None,
|
|
24835
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24836
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24793
24837
|
statistic: typing.Optional[builtins.str] = None,
|
|
24794
24838
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24795
24839
|
) -> _Metric_e396a4dc:
|
|
@@ -24803,6 +24847,8 @@ class Distribution(
|
|
|
24803
24847
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24804
24848
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24805
24849
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24850
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24851
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24806
24852
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24807
24853
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24808
24854
|
|
|
@@ -24815,6 +24861,8 @@ class Distribution(
|
|
|
24815
24861
|
label=label,
|
|
24816
24862
|
period=period,
|
|
24817
24863
|
region=region,
|
|
24864
|
+
stack_account=stack_account,
|
|
24865
|
+
stack_region=stack_region,
|
|
24818
24866
|
statistic=statistic,
|
|
24819
24867
|
unit=unit,
|
|
24820
24868
|
)
|
|
@@ -24831,6 +24879,8 @@ class Distribution(
|
|
|
24831
24879
|
label: typing.Optional[builtins.str] = None,
|
|
24832
24880
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24833
24881
|
region: typing.Optional[builtins.str] = None,
|
|
24882
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24883
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24834
24884
|
statistic: typing.Optional[builtins.str] = None,
|
|
24835
24885
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24836
24886
|
) -> _Metric_e396a4dc:
|
|
@@ -24842,6 +24892,8 @@ class Distribution(
|
|
|
24842
24892
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24843
24893
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24844
24894
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24895
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24896
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24845
24897
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24846
24898
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24847
24899
|
|
|
@@ -24854,6 +24906,8 @@ class Distribution(
|
|
|
24854
24906
|
label=label,
|
|
24855
24907
|
period=period,
|
|
24856
24908
|
region=region,
|
|
24909
|
+
stack_account=stack_account,
|
|
24910
|
+
stack_region=stack_region,
|
|
24857
24911
|
statistic=statistic,
|
|
24858
24912
|
unit=unit,
|
|
24859
24913
|
)
|
|
@@ -24870,6 +24924,8 @@ class Distribution(
|
|
|
24870
24924
|
label: typing.Optional[builtins.str] = None,
|
|
24871
24925
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24872
24926
|
region: typing.Optional[builtins.str] = None,
|
|
24927
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24928
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24873
24929
|
statistic: typing.Optional[builtins.str] = None,
|
|
24874
24930
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24875
24931
|
) -> _Metric_e396a4dc:
|
|
@@ -24881,6 +24937,8 @@ class Distribution(
|
|
|
24881
24937
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24882
24938
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24883
24939
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24940
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24941
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24884
24942
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24885
24943
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24886
24944
|
|
|
@@ -24893,6 +24951,8 @@ class Distribution(
|
|
|
24893
24951
|
label=label,
|
|
24894
24952
|
period=period,
|
|
24895
24953
|
region=region,
|
|
24954
|
+
stack_account=stack_account,
|
|
24955
|
+
stack_region=stack_region,
|
|
24896
24956
|
statistic=statistic,
|
|
24897
24957
|
unit=unit,
|
|
24898
24958
|
)
|
|
@@ -24909,6 +24969,8 @@ class Distribution(
|
|
|
24909
24969
|
label: typing.Optional[builtins.str] = None,
|
|
24910
24970
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24911
24971
|
region: typing.Optional[builtins.str] = None,
|
|
24972
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24973
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24912
24974
|
statistic: typing.Optional[builtins.str] = None,
|
|
24913
24975
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24914
24976
|
) -> _Metric_e396a4dc:
|
|
@@ -24920,6 +24982,8 @@ class Distribution(
|
|
|
24920
24982
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24921
24983
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24922
24984
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24985
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24986
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24923
24987
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24924
24988
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24925
24989
|
|
|
@@ -24932,6 +24996,8 @@ class Distribution(
|
|
|
24932
24996
|
label=label,
|
|
24933
24997
|
period=period,
|
|
24934
24998
|
region=region,
|
|
24999
|
+
stack_account=stack_account,
|
|
25000
|
+
stack_region=stack_region,
|
|
24935
25001
|
statistic=statistic,
|
|
24936
25002
|
unit=unit,
|
|
24937
25003
|
)
|
|
@@ -24948,6 +25014,8 @@ class Distribution(
|
|
|
24948
25014
|
label: typing.Optional[builtins.str] = None,
|
|
24949
25015
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24950
25016
|
region: typing.Optional[builtins.str] = None,
|
|
25017
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
25018
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24951
25019
|
statistic: typing.Optional[builtins.str] = None,
|
|
24952
25020
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24953
25021
|
) -> _Metric_e396a4dc:
|
|
@@ -24963,6 +25031,8 @@ class Distribution(
|
|
|
24963
25031
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
24964
25032
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24965
25033
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
25034
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
25035
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24966
25036
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
24967
25037
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
24968
25038
|
|
|
@@ -24975,6 +25045,8 @@ class Distribution(
|
|
|
24975
25045
|
label=label,
|
|
24976
25046
|
period=period,
|
|
24977
25047
|
region=region,
|
|
25048
|
+
stack_account=stack_account,
|
|
25049
|
+
stack_region=stack_region,
|
|
24978
25050
|
statistic=statistic,
|
|
24979
25051
|
unit=unit,
|
|
24980
25052
|
)
|
|
@@ -24991,6 +25063,8 @@ class Distribution(
|
|
|
24991
25063
|
label: typing.Optional[builtins.str] = None,
|
|
24992
25064
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24993
25065
|
region: typing.Optional[builtins.str] = None,
|
|
25066
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
25067
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24994
25068
|
statistic: typing.Optional[builtins.str] = None,
|
|
24995
25069
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24996
25070
|
) -> _Metric_e396a4dc:
|
|
@@ -25006,6 +25080,8 @@ class Distribution(
|
|
|
25006
25080
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
25007
25081
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
25008
25082
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
25083
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
25084
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
25009
25085
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
25010
25086
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
25011
25087
|
|
|
@@ -25018,6 +25094,8 @@ class Distribution(
|
|
|
25018
25094
|
label=label,
|
|
25019
25095
|
period=period,
|
|
25020
25096
|
region=region,
|
|
25097
|
+
stack_account=stack_account,
|
|
25098
|
+
stack_region=stack_region,
|
|
25021
25099
|
statistic=statistic,
|
|
25022
25100
|
unit=unit,
|
|
25023
25101
|
)
|
|
@@ -25034,6 +25112,8 @@ class Distribution(
|
|
|
25034
25112
|
label: typing.Optional[builtins.str] = None,
|
|
25035
25113
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
25036
25114
|
region: typing.Optional[builtins.str] = None,
|
|
25115
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
25116
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
25037
25117
|
statistic: typing.Optional[builtins.str] = None,
|
|
25038
25118
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
25039
25119
|
) -> _Metric_e396a4dc:
|
|
@@ -25045,6 +25125,8 @@ class Distribution(
|
|
|
25045
25125
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
25046
25126
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
25047
25127
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
25128
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
25129
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
25048
25130
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
25049
25131
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
25050
25132
|
|
|
@@ -25057,6 +25139,8 @@ class Distribution(
|
|
|
25057
25139
|
label=label,
|
|
25058
25140
|
period=period,
|
|
25059
25141
|
region=region,
|
|
25142
|
+
stack_account=stack_account,
|
|
25143
|
+
stack_region=stack_region,
|
|
25060
25144
|
statistic=statistic,
|
|
25061
25145
|
unit=unit,
|
|
25062
25146
|
)
|
|
@@ -25073,6 +25157,8 @@ class Distribution(
|
|
|
25073
25157
|
label: typing.Optional[builtins.str] = None,
|
|
25074
25158
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
25075
25159
|
region: typing.Optional[builtins.str] = None,
|
|
25160
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
25161
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
25076
25162
|
statistic: typing.Optional[builtins.str] = None,
|
|
25077
25163
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
25078
25164
|
) -> _Metric_e396a4dc:
|
|
@@ -25084,6 +25170,8 @@ class Distribution(
|
|
|
25084
25170
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
25085
25171
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
25086
25172
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
25173
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
25174
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
25087
25175
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
25088
25176
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
25089
25177
|
|
|
@@ -25096,6 +25184,8 @@ class Distribution(
|
|
|
25096
25184
|
label=label,
|
|
25097
25185
|
period=period,
|
|
25098
25186
|
region=region,
|
|
25187
|
+
stack_account=stack_account,
|
|
25188
|
+
stack_region=stack_region,
|
|
25099
25189
|
statistic=statistic,
|
|
25100
25190
|
unit=unit,
|
|
25101
25191
|
)
|
|
@@ -28003,6 +28093,8 @@ def _typecheckingstub__57d1cb583a433250ea9a7b0fd61eb68ee34cc5f8ab9ebc2c7b54d4a3f
|
|
|
28003
28093
|
label: typing.Optional[builtins.str] = None,
|
|
28004
28094
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28005
28095
|
region: typing.Optional[builtins.str] = None,
|
|
28096
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28097
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28006
28098
|
statistic: typing.Optional[builtins.str] = None,
|
|
28007
28099
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28008
28100
|
) -> None:
|
|
@@ -636,6 +636,8 @@ class EdgeFunction(
|
|
|
636
636
|
label: typing.Optional[builtins.str] = None,
|
|
637
637
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
638
638
|
region: typing.Optional[builtins.str] = None,
|
|
639
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
640
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
639
641
|
statistic: typing.Optional[builtins.str] = None,
|
|
640
642
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
641
643
|
) -> _Metric_e396a4dc:
|
|
@@ -648,6 +650,8 @@ class EdgeFunction(
|
|
|
648
650
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
649
651
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
650
652
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
653
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
654
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
651
655
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
652
656
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
653
657
|
'''
|
|
@@ -661,6 +665,8 @@ class EdgeFunction(
|
|
|
661
665
|
label=label,
|
|
662
666
|
period=period,
|
|
663
667
|
region=region,
|
|
668
|
+
stack_account=stack_account,
|
|
669
|
+
stack_region=stack_region,
|
|
664
670
|
statistic=statistic,
|
|
665
671
|
unit=unit,
|
|
666
672
|
)
|
|
@@ -677,6 +683,8 @@ class EdgeFunction(
|
|
|
677
683
|
label: typing.Optional[builtins.str] = None,
|
|
678
684
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
679
685
|
region: typing.Optional[builtins.str] = None,
|
|
686
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
687
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
680
688
|
statistic: typing.Optional[builtins.str] = None,
|
|
681
689
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
682
690
|
) -> _Metric_e396a4dc:
|
|
@@ -690,6 +698,8 @@ class EdgeFunction(
|
|
|
690
698
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
691
699
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
692
700
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
701
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
702
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
693
703
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
694
704
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
695
705
|
'''
|
|
@@ -700,6 +710,8 @@ class EdgeFunction(
|
|
|
700
710
|
label=label,
|
|
701
711
|
period=period,
|
|
702
712
|
region=region,
|
|
713
|
+
stack_account=stack_account,
|
|
714
|
+
stack_region=stack_region,
|
|
703
715
|
statistic=statistic,
|
|
704
716
|
unit=unit,
|
|
705
717
|
)
|
|
@@ -716,6 +728,8 @@ class EdgeFunction(
|
|
|
716
728
|
label: typing.Optional[builtins.str] = None,
|
|
717
729
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
718
730
|
region: typing.Optional[builtins.str] = None,
|
|
731
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
732
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
719
733
|
statistic: typing.Optional[builtins.str] = None,
|
|
720
734
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
721
735
|
) -> _Metric_e396a4dc:
|
|
@@ -729,6 +743,8 @@ class EdgeFunction(
|
|
|
729
743
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
730
744
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
731
745
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
746
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
747
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
732
748
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
733
749
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
734
750
|
'''
|
|
@@ -739,6 +755,8 @@ class EdgeFunction(
|
|
|
739
755
|
label=label,
|
|
740
756
|
period=period,
|
|
741
757
|
region=region,
|
|
758
|
+
stack_account=stack_account,
|
|
759
|
+
stack_region=stack_region,
|
|
742
760
|
statistic=statistic,
|
|
743
761
|
unit=unit,
|
|
744
762
|
)
|
|
@@ -755,6 +773,8 @@ class EdgeFunction(
|
|
|
755
773
|
label: typing.Optional[builtins.str] = None,
|
|
756
774
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
757
775
|
region: typing.Optional[builtins.str] = None,
|
|
776
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
777
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
758
778
|
statistic: typing.Optional[builtins.str] = None,
|
|
759
779
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
760
780
|
) -> _Metric_e396a4dc:
|
|
@@ -768,6 +788,8 @@ class EdgeFunction(
|
|
|
768
788
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
769
789
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
770
790
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
791
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
792
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
771
793
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
772
794
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
773
795
|
'''
|
|
@@ -778,6 +800,8 @@ class EdgeFunction(
|
|
|
778
800
|
label=label,
|
|
779
801
|
period=period,
|
|
780
802
|
region=region,
|
|
803
|
+
stack_account=stack_account,
|
|
804
|
+
stack_region=stack_region,
|
|
781
805
|
statistic=statistic,
|
|
782
806
|
unit=unit,
|
|
783
807
|
)
|
|
@@ -794,6 +818,8 @@ class EdgeFunction(
|
|
|
794
818
|
label: typing.Optional[builtins.str] = None,
|
|
795
819
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
796
820
|
region: typing.Optional[builtins.str] = None,
|
|
821
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
822
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
797
823
|
statistic: typing.Optional[builtins.str] = None,
|
|
798
824
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
799
825
|
) -> _Metric_e396a4dc:
|
|
@@ -807,6 +833,8 @@ class EdgeFunction(
|
|
|
807
833
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
808
834
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
809
835
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
836
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
837
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
810
838
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
811
839
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
812
840
|
'''
|
|
@@ -817,6 +845,8 @@ class EdgeFunction(
|
|
|
817
845
|
label=label,
|
|
818
846
|
period=period,
|
|
819
847
|
region=region,
|
|
848
|
+
stack_account=stack_account,
|
|
849
|
+
stack_region=stack_region,
|
|
820
850
|
statistic=statistic,
|
|
821
851
|
unit=unit,
|
|
822
852
|
)
|
|
@@ -2132,6 +2162,8 @@ def _typecheckingstub__e35fb51736b3036c83dc4af9104a7ec11601ff54bef98bdf17e2325a3
|
|
|
2132
2162
|
label: typing.Optional[builtins.str] = None,
|
|
2133
2163
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2134
2164
|
region: typing.Optional[builtins.str] = None,
|
|
2165
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2166
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2135
2167
|
statistic: typing.Optional[builtins.str] = None,
|
|
2136
2168
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2137
2169
|
) -> None:
|