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
|
@@ -19592,6 +19592,8 @@ class Method(
|
|
|
19592
19592
|
label: typing.Optional[builtins.str] = None,
|
|
19593
19593
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19594
19594
|
region: typing.Optional[builtins.str] = None,
|
|
19595
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
19596
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19595
19597
|
statistic: typing.Optional[builtins.str] = None,
|
|
19596
19598
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19597
19599
|
) -> _Metric_e396a4dc:
|
|
@@ -19605,6 +19607,8 @@ class Method(
|
|
|
19605
19607
|
: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
|
|
19606
19608
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
19607
19609
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
19610
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
19611
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
19608
19612
|
: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
|
|
19609
19613
|
: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
|
|
19610
19614
|
'''
|
|
@@ -19619,6 +19623,8 @@ class Method(
|
|
|
19619
19623
|
label=label,
|
|
19620
19624
|
period=period,
|
|
19621
19625
|
region=region,
|
|
19626
|
+
stack_account=stack_account,
|
|
19627
|
+
stack_region=stack_region,
|
|
19622
19628
|
statistic=statistic,
|
|
19623
19629
|
unit=unit,
|
|
19624
19630
|
)
|
|
@@ -19636,6 +19642,8 @@ class Method(
|
|
|
19636
19642
|
label: typing.Optional[builtins.str] = None,
|
|
19637
19643
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19638
19644
|
region: typing.Optional[builtins.str] = None,
|
|
19645
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
19646
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19639
19647
|
statistic: typing.Optional[builtins.str] = None,
|
|
19640
19648
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19641
19649
|
) -> _Metric_e396a4dc:
|
|
@@ -19648,6 +19656,8 @@ class Method(
|
|
|
19648
19656
|
: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
|
|
19649
19657
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
19650
19658
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
19659
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
19660
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
19651
19661
|
: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
|
|
19652
19662
|
: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
|
|
19653
19663
|
|
|
@@ -19663,6 +19673,8 @@ class Method(
|
|
|
19663
19673
|
label=label,
|
|
19664
19674
|
period=period,
|
|
19665
19675
|
region=region,
|
|
19676
|
+
stack_account=stack_account,
|
|
19677
|
+
stack_region=stack_region,
|
|
19666
19678
|
statistic=statistic,
|
|
19667
19679
|
unit=unit,
|
|
19668
19680
|
)
|
|
@@ -19680,6 +19692,8 @@ class Method(
|
|
|
19680
19692
|
label: typing.Optional[builtins.str] = None,
|
|
19681
19693
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19682
19694
|
region: typing.Optional[builtins.str] = None,
|
|
19695
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
19696
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19683
19697
|
statistic: typing.Optional[builtins.str] = None,
|
|
19684
19698
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19685
19699
|
) -> _Metric_e396a4dc:
|
|
@@ -19692,6 +19706,8 @@ class Method(
|
|
|
19692
19706
|
: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
|
|
19693
19707
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
19694
19708
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
19709
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
19710
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
19695
19711
|
: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
|
|
19696
19712
|
: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
|
|
19697
19713
|
|
|
@@ -19707,6 +19723,8 @@ class Method(
|
|
|
19707
19723
|
label=label,
|
|
19708
19724
|
period=period,
|
|
19709
19725
|
region=region,
|
|
19726
|
+
stack_account=stack_account,
|
|
19727
|
+
stack_region=stack_region,
|
|
19710
19728
|
statistic=statistic,
|
|
19711
19729
|
unit=unit,
|
|
19712
19730
|
)
|
|
@@ -19724,6 +19742,8 @@ class Method(
|
|
|
19724
19742
|
label: typing.Optional[builtins.str] = None,
|
|
19725
19743
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19726
19744
|
region: typing.Optional[builtins.str] = None,
|
|
19745
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
19746
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19727
19747
|
statistic: typing.Optional[builtins.str] = None,
|
|
19728
19748
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19729
19749
|
) -> _Metric_e396a4dc:
|
|
@@ -19736,6 +19756,8 @@ class Method(
|
|
|
19736
19756
|
: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
|
|
19737
19757
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
19738
19758
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
19759
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
19760
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
19739
19761
|
: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
|
|
19740
19762
|
: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
|
|
19741
19763
|
|
|
@@ -19751,6 +19773,8 @@ class Method(
|
|
|
19751
19773
|
label=label,
|
|
19752
19774
|
period=period,
|
|
19753
19775
|
region=region,
|
|
19776
|
+
stack_account=stack_account,
|
|
19777
|
+
stack_region=stack_region,
|
|
19754
19778
|
statistic=statistic,
|
|
19755
19779
|
unit=unit,
|
|
19756
19780
|
)
|
|
@@ -19768,6 +19792,8 @@ class Method(
|
|
|
19768
19792
|
label: typing.Optional[builtins.str] = None,
|
|
19769
19793
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19770
19794
|
region: typing.Optional[builtins.str] = None,
|
|
19795
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
19796
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19771
19797
|
statistic: typing.Optional[builtins.str] = None,
|
|
19772
19798
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19773
19799
|
) -> _Metric_e396a4dc:
|
|
@@ -19780,6 +19806,8 @@ class Method(
|
|
|
19780
19806
|
: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
|
|
19781
19807
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
19782
19808
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
19809
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
19810
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
19783
19811
|
: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
|
|
19784
19812
|
: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
|
|
19785
19813
|
|
|
@@ -19795,6 +19823,8 @@ class Method(
|
|
|
19795
19823
|
label=label,
|
|
19796
19824
|
period=period,
|
|
19797
19825
|
region=region,
|
|
19826
|
+
stack_account=stack_account,
|
|
19827
|
+
stack_region=stack_region,
|
|
19798
19828
|
statistic=statistic,
|
|
19799
19829
|
unit=unit,
|
|
19800
19830
|
)
|
|
@@ -19812,6 +19842,8 @@ class Method(
|
|
|
19812
19842
|
label: typing.Optional[builtins.str] = None,
|
|
19813
19843
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19814
19844
|
region: typing.Optional[builtins.str] = None,
|
|
19845
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
19846
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19815
19847
|
statistic: typing.Optional[builtins.str] = None,
|
|
19816
19848
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19817
19849
|
) -> _Metric_e396a4dc:
|
|
@@ -19824,6 +19856,8 @@ class Method(
|
|
|
19824
19856
|
: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
|
|
19825
19857
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
19826
19858
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
19859
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
19860
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
19827
19861
|
: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
|
|
19828
19862
|
: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
|
|
19829
19863
|
|
|
@@ -19839,6 +19873,8 @@ class Method(
|
|
|
19839
19873
|
label=label,
|
|
19840
19874
|
period=period,
|
|
19841
19875
|
region=region,
|
|
19876
|
+
stack_account=stack_account,
|
|
19877
|
+
stack_region=stack_region,
|
|
19842
19878
|
statistic=statistic,
|
|
19843
19879
|
unit=unit,
|
|
19844
19880
|
)
|
|
@@ -19856,6 +19892,8 @@ class Method(
|
|
|
19856
19892
|
label: typing.Optional[builtins.str] = None,
|
|
19857
19893
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19858
19894
|
region: typing.Optional[builtins.str] = None,
|
|
19895
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
19896
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19859
19897
|
statistic: typing.Optional[builtins.str] = None,
|
|
19860
19898
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19861
19899
|
) -> _Metric_e396a4dc:
|
|
@@ -19870,6 +19908,8 @@ class Method(
|
|
|
19870
19908
|
: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
|
|
19871
19909
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
19872
19910
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
19911
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
19912
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
19873
19913
|
: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
|
|
19874
19914
|
: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
|
|
19875
19915
|
|
|
@@ -19885,6 +19925,8 @@ class Method(
|
|
|
19885
19925
|
label=label,
|
|
19886
19926
|
period=period,
|
|
19887
19927
|
region=region,
|
|
19928
|
+
stack_account=stack_account,
|
|
19929
|
+
stack_region=stack_region,
|
|
19888
19930
|
statistic=statistic,
|
|
19889
19931
|
unit=unit,
|
|
19890
19932
|
)
|
|
@@ -19902,6 +19944,8 @@ class Method(
|
|
|
19902
19944
|
label: typing.Optional[builtins.str] = None,
|
|
19903
19945
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19904
19946
|
region: typing.Optional[builtins.str] = None,
|
|
19947
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
19948
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19905
19949
|
statistic: typing.Optional[builtins.str] = None,
|
|
19906
19950
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19907
19951
|
) -> _Metric_e396a4dc:
|
|
@@ -19914,6 +19958,8 @@ class Method(
|
|
|
19914
19958
|
: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
|
|
19915
19959
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
19916
19960
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
19961
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
19962
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
19917
19963
|
: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
|
|
19918
19964
|
: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
|
|
19919
19965
|
|
|
@@ -19929,6 +19975,8 @@ class Method(
|
|
|
19929
19975
|
label=label,
|
|
19930
19976
|
period=period,
|
|
19931
19977
|
region=region,
|
|
19978
|
+
stack_account=stack_account,
|
|
19979
|
+
stack_region=stack_region,
|
|
19932
19980
|
statistic=statistic,
|
|
19933
19981
|
unit=unit,
|
|
19934
19982
|
)
|
|
@@ -23732,6 +23780,8 @@ class RestApiBase(
|
|
|
23732
23780
|
label: typing.Optional[builtins.str] = None,
|
|
23733
23781
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
23734
23782
|
region: typing.Optional[builtins.str] = None,
|
|
23783
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
23784
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
23735
23785
|
statistic: typing.Optional[builtins.str] = None,
|
|
23736
23786
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
23737
23787
|
) -> _Metric_e396a4dc:
|
|
@@ -23744,6 +23794,8 @@ class RestApiBase(
|
|
|
23744
23794
|
: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
|
|
23745
23795
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
23746
23796
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
23797
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
23798
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
23747
23799
|
: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
|
|
23748
23800
|
: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
|
|
23749
23801
|
'''
|
|
@@ -23757,6 +23809,8 @@ class RestApiBase(
|
|
|
23757
23809
|
label=label,
|
|
23758
23810
|
period=period,
|
|
23759
23811
|
region=region,
|
|
23812
|
+
stack_account=stack_account,
|
|
23813
|
+
stack_region=stack_region,
|
|
23760
23814
|
statistic=statistic,
|
|
23761
23815
|
unit=unit,
|
|
23762
23816
|
)
|
|
@@ -23773,6 +23827,8 @@ class RestApiBase(
|
|
|
23773
23827
|
label: typing.Optional[builtins.str] = None,
|
|
23774
23828
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
23775
23829
|
region: typing.Optional[builtins.str] = None,
|
|
23830
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
23831
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
23776
23832
|
statistic: typing.Optional[builtins.str] = None,
|
|
23777
23833
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
23778
23834
|
) -> _Metric_e396a4dc:
|
|
@@ -23786,6 +23842,8 @@ class RestApiBase(
|
|
|
23786
23842
|
: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
|
|
23787
23843
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
23788
23844
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
23845
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
23846
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
23789
23847
|
: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
|
|
23790
23848
|
: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
|
|
23791
23849
|
'''
|
|
@@ -23796,6 +23854,8 @@ class RestApiBase(
|
|
|
23796
23854
|
label=label,
|
|
23797
23855
|
period=period,
|
|
23798
23856
|
region=region,
|
|
23857
|
+
stack_account=stack_account,
|
|
23858
|
+
stack_region=stack_region,
|
|
23799
23859
|
statistic=statistic,
|
|
23800
23860
|
unit=unit,
|
|
23801
23861
|
)
|
|
@@ -23812,6 +23872,8 @@ class RestApiBase(
|
|
|
23812
23872
|
label: typing.Optional[builtins.str] = None,
|
|
23813
23873
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
23814
23874
|
region: typing.Optional[builtins.str] = None,
|
|
23875
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
23876
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
23815
23877
|
statistic: typing.Optional[builtins.str] = None,
|
|
23816
23878
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
23817
23879
|
) -> _Metric_e396a4dc:
|
|
@@ -23825,6 +23887,8 @@ class RestApiBase(
|
|
|
23825
23887
|
: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
|
|
23826
23888
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
23827
23889
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
23890
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
23891
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
23828
23892
|
: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
|
|
23829
23893
|
: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
|
|
23830
23894
|
'''
|
|
@@ -23835,6 +23899,8 @@ class RestApiBase(
|
|
|
23835
23899
|
label=label,
|
|
23836
23900
|
period=period,
|
|
23837
23901
|
region=region,
|
|
23902
|
+
stack_account=stack_account,
|
|
23903
|
+
stack_region=stack_region,
|
|
23838
23904
|
statistic=statistic,
|
|
23839
23905
|
unit=unit,
|
|
23840
23906
|
)
|
|
@@ -23851,6 +23917,8 @@ class RestApiBase(
|
|
|
23851
23917
|
label: typing.Optional[builtins.str] = None,
|
|
23852
23918
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
23853
23919
|
region: typing.Optional[builtins.str] = None,
|
|
23920
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
23921
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
23854
23922
|
statistic: typing.Optional[builtins.str] = None,
|
|
23855
23923
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
23856
23924
|
) -> _Metric_e396a4dc:
|
|
@@ -23864,6 +23932,8 @@ class RestApiBase(
|
|
|
23864
23932
|
: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
|
|
23865
23933
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
23866
23934
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
23935
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
23936
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
23867
23937
|
: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
|
|
23868
23938
|
: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
|
|
23869
23939
|
'''
|
|
@@ -23874,6 +23944,8 @@ class RestApiBase(
|
|
|
23874
23944
|
label=label,
|
|
23875
23945
|
period=period,
|
|
23876
23946
|
region=region,
|
|
23947
|
+
stack_account=stack_account,
|
|
23948
|
+
stack_region=stack_region,
|
|
23877
23949
|
statistic=statistic,
|
|
23878
23950
|
unit=unit,
|
|
23879
23951
|
)
|
|
@@ -23890,6 +23962,8 @@ class RestApiBase(
|
|
|
23890
23962
|
label: typing.Optional[builtins.str] = None,
|
|
23891
23963
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
23892
23964
|
region: typing.Optional[builtins.str] = None,
|
|
23965
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
23966
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
23893
23967
|
statistic: typing.Optional[builtins.str] = None,
|
|
23894
23968
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
23895
23969
|
) -> _Metric_e396a4dc:
|
|
@@ -23903,6 +23977,8 @@ class RestApiBase(
|
|
|
23903
23977
|
: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
|
|
23904
23978
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
23905
23979
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
23980
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
23981
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
23906
23982
|
: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
|
|
23907
23983
|
: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
|
|
23908
23984
|
'''
|
|
@@ -23913,6 +23989,8 @@ class RestApiBase(
|
|
|
23913
23989
|
label=label,
|
|
23914
23990
|
period=period,
|
|
23915
23991
|
region=region,
|
|
23992
|
+
stack_account=stack_account,
|
|
23993
|
+
stack_region=stack_region,
|
|
23916
23994
|
statistic=statistic,
|
|
23917
23995
|
unit=unit,
|
|
23918
23996
|
)
|
|
@@ -23929,6 +24007,8 @@ class RestApiBase(
|
|
|
23929
24007
|
label: typing.Optional[builtins.str] = None,
|
|
23930
24008
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
23931
24009
|
region: typing.Optional[builtins.str] = None,
|
|
24010
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24011
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
23932
24012
|
statistic: typing.Optional[builtins.str] = None,
|
|
23933
24013
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
23934
24014
|
) -> _Metric_e396a4dc:
|
|
@@ -23942,6 +24022,8 @@ class RestApiBase(
|
|
|
23942
24022
|
: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
|
|
23943
24023
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
23944
24024
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24025
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24026
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
23945
24027
|
: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
|
|
23946
24028
|
: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
|
|
23947
24029
|
'''
|
|
@@ -23952,6 +24034,8 @@ class RestApiBase(
|
|
|
23952
24034
|
label=label,
|
|
23953
24035
|
period=period,
|
|
23954
24036
|
region=region,
|
|
24037
|
+
stack_account=stack_account,
|
|
24038
|
+
stack_region=stack_region,
|
|
23955
24039
|
statistic=statistic,
|
|
23956
24040
|
unit=unit,
|
|
23957
24041
|
)
|
|
@@ -23968,6 +24052,8 @@ class RestApiBase(
|
|
|
23968
24052
|
label: typing.Optional[builtins.str] = None,
|
|
23969
24053
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
23970
24054
|
region: typing.Optional[builtins.str] = None,
|
|
24055
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24056
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
23971
24057
|
statistic: typing.Optional[builtins.str] = None,
|
|
23972
24058
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
23973
24059
|
) -> _Metric_e396a4dc:
|
|
@@ -23983,6 +24069,8 @@ class RestApiBase(
|
|
|
23983
24069
|
: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
|
|
23984
24070
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
23985
24071
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24072
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24073
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
23986
24074
|
: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
|
|
23987
24075
|
: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
|
|
23988
24076
|
'''
|
|
@@ -23993,6 +24081,8 @@ class RestApiBase(
|
|
|
23993
24081
|
label=label,
|
|
23994
24082
|
period=period,
|
|
23995
24083
|
region=region,
|
|
24084
|
+
stack_account=stack_account,
|
|
24085
|
+
stack_region=stack_region,
|
|
23996
24086
|
statistic=statistic,
|
|
23997
24087
|
unit=unit,
|
|
23998
24088
|
)
|
|
@@ -24009,6 +24099,8 @@ class RestApiBase(
|
|
|
24009
24099
|
label: typing.Optional[builtins.str] = None,
|
|
24010
24100
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
24011
24101
|
region: typing.Optional[builtins.str] = None,
|
|
24102
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
24103
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
24012
24104
|
statistic: typing.Optional[builtins.str] = None,
|
|
24013
24105
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
24014
24106
|
) -> _Metric_e396a4dc:
|
|
@@ -24022,6 +24114,8 @@ class RestApiBase(
|
|
|
24022
24114
|
: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
|
|
24023
24115
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
24024
24116
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
24117
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
24118
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
24025
24119
|
: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
|
|
24026
24120
|
: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
|
|
24027
24121
|
'''
|
|
@@ -24032,6 +24126,8 @@ class RestApiBase(
|
|
|
24032
24126
|
label=label,
|
|
24033
24127
|
period=period,
|
|
24034
24128
|
region=region,
|
|
24129
|
+
stack_account=stack_account,
|
|
24130
|
+
stack_region=stack_region,
|
|
24035
24131
|
statistic=statistic,
|
|
24036
24132
|
unit=unit,
|
|
24037
24133
|
)
|
|
@@ -25970,6 +26066,8 @@ class StageBase(
|
|
|
25970
26066
|
label: typing.Optional[builtins.str] = None,
|
|
25971
26067
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
25972
26068
|
region: typing.Optional[builtins.str] = None,
|
|
26069
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26070
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
25973
26071
|
statistic: typing.Optional[builtins.str] = None,
|
|
25974
26072
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
25975
26073
|
) -> _Metric_e396a4dc:
|
|
@@ -25982,6 +26080,8 @@ class StageBase(
|
|
|
25982
26080
|
: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
|
|
25983
26081
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
25984
26082
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26083
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26084
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
25985
26085
|
: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
|
|
25986
26086
|
: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
|
|
25987
26087
|
'''
|
|
@@ -25995,6 +26095,8 @@ class StageBase(
|
|
|
25995
26095
|
label=label,
|
|
25996
26096
|
period=period,
|
|
25997
26097
|
region=region,
|
|
26098
|
+
stack_account=stack_account,
|
|
26099
|
+
stack_region=stack_region,
|
|
25998
26100
|
statistic=statistic,
|
|
25999
26101
|
unit=unit,
|
|
26000
26102
|
)
|
|
@@ -26011,6 +26113,8 @@ class StageBase(
|
|
|
26011
26113
|
label: typing.Optional[builtins.str] = None,
|
|
26012
26114
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26013
26115
|
region: typing.Optional[builtins.str] = None,
|
|
26116
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26117
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26014
26118
|
statistic: typing.Optional[builtins.str] = None,
|
|
26015
26119
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26016
26120
|
) -> _Metric_e396a4dc:
|
|
@@ -26022,6 +26126,8 @@ class StageBase(
|
|
|
26022
26126
|
: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
|
|
26023
26127
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26024
26128
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26129
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26130
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26025
26131
|
: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
|
|
26026
26132
|
: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
|
|
26027
26133
|
|
|
@@ -26034,6 +26140,8 @@ class StageBase(
|
|
|
26034
26140
|
label=label,
|
|
26035
26141
|
period=period,
|
|
26036
26142
|
region=region,
|
|
26143
|
+
stack_account=stack_account,
|
|
26144
|
+
stack_region=stack_region,
|
|
26037
26145
|
statistic=statistic,
|
|
26038
26146
|
unit=unit,
|
|
26039
26147
|
)
|
|
@@ -26050,6 +26158,8 @@ class StageBase(
|
|
|
26050
26158
|
label: typing.Optional[builtins.str] = None,
|
|
26051
26159
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26052
26160
|
region: typing.Optional[builtins.str] = None,
|
|
26161
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26162
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26053
26163
|
statistic: typing.Optional[builtins.str] = None,
|
|
26054
26164
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26055
26165
|
) -> _Metric_e396a4dc:
|
|
@@ -26061,6 +26171,8 @@ class StageBase(
|
|
|
26061
26171
|
: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
|
|
26062
26172
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26063
26173
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26174
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26175
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26064
26176
|
: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
|
|
26065
26177
|
: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
|
|
26066
26178
|
|
|
@@ -26073,6 +26185,8 @@ class StageBase(
|
|
|
26073
26185
|
label=label,
|
|
26074
26186
|
period=period,
|
|
26075
26187
|
region=region,
|
|
26188
|
+
stack_account=stack_account,
|
|
26189
|
+
stack_region=stack_region,
|
|
26076
26190
|
statistic=statistic,
|
|
26077
26191
|
unit=unit,
|
|
26078
26192
|
)
|
|
@@ -26089,6 +26203,8 @@ class StageBase(
|
|
|
26089
26203
|
label: typing.Optional[builtins.str] = None,
|
|
26090
26204
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26091
26205
|
region: typing.Optional[builtins.str] = None,
|
|
26206
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26207
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26092
26208
|
statistic: typing.Optional[builtins.str] = None,
|
|
26093
26209
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26094
26210
|
) -> _Metric_e396a4dc:
|
|
@@ -26100,6 +26216,8 @@ class StageBase(
|
|
|
26100
26216
|
: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
|
|
26101
26217
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26102
26218
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26219
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26220
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26103
26221
|
: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
|
|
26104
26222
|
: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
|
|
26105
26223
|
|
|
@@ -26112,6 +26230,8 @@ class StageBase(
|
|
|
26112
26230
|
label=label,
|
|
26113
26231
|
period=period,
|
|
26114
26232
|
region=region,
|
|
26233
|
+
stack_account=stack_account,
|
|
26234
|
+
stack_region=stack_region,
|
|
26115
26235
|
statistic=statistic,
|
|
26116
26236
|
unit=unit,
|
|
26117
26237
|
)
|
|
@@ -26128,6 +26248,8 @@ class StageBase(
|
|
|
26128
26248
|
label: typing.Optional[builtins.str] = None,
|
|
26129
26249
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26130
26250
|
region: typing.Optional[builtins.str] = None,
|
|
26251
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26252
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26131
26253
|
statistic: typing.Optional[builtins.str] = None,
|
|
26132
26254
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26133
26255
|
) -> _Metric_e396a4dc:
|
|
@@ -26139,6 +26261,8 @@ class StageBase(
|
|
|
26139
26261
|
: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
|
|
26140
26262
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26141
26263
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26264
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26265
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26142
26266
|
: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
|
|
26143
26267
|
: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
|
|
26144
26268
|
|
|
@@ -26151,6 +26275,8 @@ class StageBase(
|
|
|
26151
26275
|
label=label,
|
|
26152
26276
|
period=period,
|
|
26153
26277
|
region=region,
|
|
26278
|
+
stack_account=stack_account,
|
|
26279
|
+
stack_region=stack_region,
|
|
26154
26280
|
statistic=statistic,
|
|
26155
26281
|
unit=unit,
|
|
26156
26282
|
)
|
|
@@ -26167,6 +26293,8 @@ class StageBase(
|
|
|
26167
26293
|
label: typing.Optional[builtins.str] = None,
|
|
26168
26294
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26169
26295
|
region: typing.Optional[builtins.str] = None,
|
|
26296
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26297
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26170
26298
|
statistic: typing.Optional[builtins.str] = None,
|
|
26171
26299
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26172
26300
|
) -> _Metric_e396a4dc:
|
|
@@ -26178,6 +26306,8 @@ class StageBase(
|
|
|
26178
26306
|
: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
|
|
26179
26307
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26180
26308
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26309
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26310
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26181
26311
|
: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
|
|
26182
26312
|
: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
|
|
26183
26313
|
|
|
@@ -26190,6 +26320,8 @@ class StageBase(
|
|
|
26190
26320
|
label=label,
|
|
26191
26321
|
period=period,
|
|
26192
26322
|
region=region,
|
|
26323
|
+
stack_account=stack_account,
|
|
26324
|
+
stack_region=stack_region,
|
|
26193
26325
|
statistic=statistic,
|
|
26194
26326
|
unit=unit,
|
|
26195
26327
|
)
|
|
@@ -26206,6 +26338,8 @@ class StageBase(
|
|
|
26206
26338
|
label: typing.Optional[builtins.str] = None,
|
|
26207
26339
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26208
26340
|
region: typing.Optional[builtins.str] = None,
|
|
26341
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26342
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26209
26343
|
statistic: typing.Optional[builtins.str] = None,
|
|
26210
26344
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26211
26345
|
) -> _Metric_e396a4dc:
|
|
@@ -26219,6 +26353,8 @@ class StageBase(
|
|
|
26219
26353
|
: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
|
|
26220
26354
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26221
26355
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26356
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26357
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26222
26358
|
: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
|
|
26223
26359
|
: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
|
|
26224
26360
|
|
|
@@ -26231,6 +26367,8 @@ class StageBase(
|
|
|
26231
26367
|
label=label,
|
|
26232
26368
|
period=period,
|
|
26233
26369
|
region=region,
|
|
26370
|
+
stack_account=stack_account,
|
|
26371
|
+
stack_region=stack_region,
|
|
26234
26372
|
statistic=statistic,
|
|
26235
26373
|
unit=unit,
|
|
26236
26374
|
)
|
|
@@ -26247,6 +26385,8 @@ class StageBase(
|
|
|
26247
26385
|
label: typing.Optional[builtins.str] = None,
|
|
26248
26386
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26249
26387
|
region: typing.Optional[builtins.str] = None,
|
|
26388
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26389
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26250
26390
|
statistic: typing.Optional[builtins.str] = None,
|
|
26251
26391
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26252
26392
|
) -> _Metric_e396a4dc:
|
|
@@ -26258,6 +26398,8 @@ class StageBase(
|
|
|
26258
26398
|
: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
|
|
26259
26399
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26260
26400
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26401
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26402
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26261
26403
|
: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
|
|
26262
26404
|
: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
|
|
26263
26405
|
|
|
@@ -26270,6 +26412,8 @@ class StageBase(
|
|
|
26270
26412
|
label=label,
|
|
26271
26413
|
period=period,
|
|
26272
26414
|
region=region,
|
|
26415
|
+
stack_account=stack_account,
|
|
26416
|
+
stack_region=stack_region,
|
|
26273
26417
|
statistic=statistic,
|
|
26274
26418
|
unit=unit,
|
|
26275
26419
|
)
|
|
@@ -35391,6 +35535,8 @@ def _typecheckingstub__5673792ec70e78f31bd42c8b5fa76d95f3d27fb475ced2b715241422b
|
|
|
35391
35535
|
label: typing.Optional[builtins.str] = None,
|
|
35392
35536
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
35393
35537
|
region: typing.Optional[builtins.str] = None,
|
|
35538
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
35539
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
35394
35540
|
statistic: typing.Optional[builtins.str] = None,
|
|
35395
35541
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
35396
35542
|
) -> None:
|
|
@@ -35406,6 +35552,8 @@ def _typecheckingstub__64ac2608c9f1609b3b980aa9e9605f3bd74f2569716d2fa90b1409dd7
|
|
|
35406
35552
|
label: typing.Optional[builtins.str] = None,
|
|
35407
35553
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
35408
35554
|
region: typing.Optional[builtins.str] = None,
|
|
35555
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
35556
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
35409
35557
|
statistic: typing.Optional[builtins.str] = None,
|
|
35410
35558
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
35411
35559
|
) -> None:
|
|
@@ -35421,6 +35569,8 @@ def _typecheckingstub__2cf284ffe8f66028e735d60b6ecd9664dc929e5cd71b9b7ce14143816
|
|
|
35421
35569
|
label: typing.Optional[builtins.str] = None,
|
|
35422
35570
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
35423
35571
|
region: typing.Optional[builtins.str] = None,
|
|
35572
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
35573
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
35424
35574
|
statistic: typing.Optional[builtins.str] = None,
|
|
35425
35575
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
35426
35576
|
) -> None:
|
|
@@ -35436,6 +35586,8 @@ def _typecheckingstub__0493ec2c246530b5b05f1be196bdc153e1978bea6c8f269860b366eda
|
|
|
35436
35586
|
label: typing.Optional[builtins.str] = None,
|
|
35437
35587
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
35438
35588
|
region: typing.Optional[builtins.str] = None,
|
|
35589
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
35590
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
35439
35591
|
statistic: typing.Optional[builtins.str] = None,
|
|
35440
35592
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
35441
35593
|
) -> None:
|
|
@@ -35451,6 +35603,8 @@ def _typecheckingstub__001b2bf8bfa27908da0580fb4246b555f3e30524cd2601928dd174bcc
|
|
|
35451
35603
|
label: typing.Optional[builtins.str] = None,
|
|
35452
35604
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
35453
35605
|
region: typing.Optional[builtins.str] = None,
|
|
35606
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
35607
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
35454
35608
|
statistic: typing.Optional[builtins.str] = None,
|
|
35455
35609
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
35456
35610
|
) -> None:
|
|
@@ -35466,6 +35620,8 @@ def _typecheckingstub__bade8cd8b8758f071556fa580f6b28b70f2f6440e36b36dc871b3306d
|
|
|
35466
35620
|
label: typing.Optional[builtins.str] = None,
|
|
35467
35621
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
35468
35622
|
region: typing.Optional[builtins.str] = None,
|
|
35623
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
35624
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
35469
35625
|
statistic: typing.Optional[builtins.str] = None,
|
|
35470
35626
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
35471
35627
|
) -> None:
|
|
@@ -35481,6 +35637,8 @@ def _typecheckingstub__967d05990ceae877a7b59ca744da0bf2c478639cc36a703b76a49213c
|
|
|
35481
35637
|
label: typing.Optional[builtins.str] = None,
|
|
35482
35638
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
35483
35639
|
region: typing.Optional[builtins.str] = None,
|
|
35640
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
35641
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
35484
35642
|
statistic: typing.Optional[builtins.str] = None,
|
|
35485
35643
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
35486
35644
|
) -> None:
|
|
@@ -35496,6 +35654,8 @@ def _typecheckingstub__d41d28c85cd25934abfd3bd4223f1dfd9b5d6c8dbd0ceb1869a97c090
|
|
|
35496
35654
|
label: typing.Optional[builtins.str] = None,
|
|
35497
35655
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
35498
35656
|
region: typing.Optional[builtins.str] = None,
|
|
35657
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
35658
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
35499
35659
|
statistic: typing.Optional[builtins.str] = None,
|
|
35500
35660
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
35501
35661
|
) -> None:
|
|
@@ -35895,6 +36055,8 @@ def _typecheckingstub__83e0007c5bc1aeac14243c8f05dab576ffb55853642cfe1f4a1352b59
|
|
|
35895
36055
|
label: typing.Optional[builtins.str] = None,
|
|
35896
36056
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
35897
36057
|
region: typing.Optional[builtins.str] = None,
|
|
36058
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
36059
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
35898
36060
|
statistic: typing.Optional[builtins.str] = None,
|
|
35899
36061
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
35900
36062
|
) -> None:
|
|
@@ -36088,6 +36250,8 @@ def _typecheckingstub__e7aa140ce28102f6291e54fab42702aec75e06eb4ff034ae6897a3606
|
|
|
36088
36250
|
label: typing.Optional[builtins.str] = None,
|
|
36089
36251
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
36090
36252
|
region: typing.Optional[builtins.str] = None,
|
|
36253
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
36254
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
36091
36255
|
statistic: typing.Optional[builtins.str] = None,
|
|
36092
36256
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
36093
36257
|
) -> None:
|