aws-cdk-lib 2.174.1__py3-none-any.whl → 2.175.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.174.1.jsii.tgz → aws-cdk-lib@2.175.1.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.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/RECORD +36 -36
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_lambda/__init__.py
CHANGED
|
@@ -17940,6 +17940,8 @@ class IFunction(
|
|
|
17940
17940
|
label: typing.Optional[builtins.str] = None,
|
|
17941
17941
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17942
17942
|
region: typing.Optional[builtins.str] = None,
|
|
17943
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17944
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17943
17945
|
statistic: typing.Optional[builtins.str] = None,
|
|
17944
17946
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17945
17947
|
) -> _Metric_e396a4dc:
|
|
@@ -17952,6 +17954,8 @@ class IFunction(
|
|
|
17952
17954
|
: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
|
|
17953
17955
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17954
17956
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17957
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17958
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17955
17959
|
: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
|
|
17956
17960
|
: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
|
|
17957
17961
|
'''
|
|
@@ -17967,6 +17971,8 @@ class IFunction(
|
|
|
17967
17971
|
label: typing.Optional[builtins.str] = None,
|
|
17968
17972
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17969
17973
|
region: typing.Optional[builtins.str] = None,
|
|
17974
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17975
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17970
17976
|
statistic: typing.Optional[builtins.str] = None,
|
|
17971
17977
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17972
17978
|
) -> _Metric_e396a4dc:
|
|
@@ -17980,6 +17986,8 @@ class IFunction(
|
|
|
17980
17986
|
: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
|
|
17981
17987
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17982
17988
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17989
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17990
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17983
17991
|
: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
|
|
17984
17992
|
: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
|
|
17985
17993
|
|
|
@@ -17997,6 +18005,8 @@ class IFunction(
|
|
|
17997
18005
|
label: typing.Optional[builtins.str] = None,
|
|
17998
18006
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17999
18007
|
region: typing.Optional[builtins.str] = None,
|
|
18008
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18009
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18000
18010
|
statistic: typing.Optional[builtins.str] = None,
|
|
18001
18011
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18002
18012
|
) -> _Metric_e396a4dc:
|
|
@@ -18010,6 +18020,8 @@ class IFunction(
|
|
|
18010
18020
|
: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
|
|
18011
18021
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18012
18022
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18023
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18024
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18013
18025
|
: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
|
|
18014
18026
|
: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
|
|
18015
18027
|
'''
|
|
@@ -18025,6 +18037,8 @@ class IFunction(
|
|
|
18025
18037
|
label: typing.Optional[builtins.str] = None,
|
|
18026
18038
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18027
18039
|
region: typing.Optional[builtins.str] = None,
|
|
18040
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18041
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18028
18042
|
statistic: typing.Optional[builtins.str] = None,
|
|
18029
18043
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18030
18044
|
) -> _Metric_e396a4dc:
|
|
@@ -18038,6 +18052,8 @@ class IFunction(
|
|
|
18038
18052
|
: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
|
|
18039
18053
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18040
18054
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18055
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18056
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18041
18057
|
: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
|
|
18042
18058
|
: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
|
|
18043
18059
|
|
|
@@ -18055,6 +18071,8 @@ class IFunction(
|
|
|
18055
18071
|
label: typing.Optional[builtins.str] = None,
|
|
18056
18072
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18057
18073
|
region: typing.Optional[builtins.str] = None,
|
|
18074
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18075
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18058
18076
|
statistic: typing.Optional[builtins.str] = None,
|
|
18059
18077
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18060
18078
|
) -> _Metric_e396a4dc:
|
|
@@ -18068,6 +18086,8 @@ class IFunction(
|
|
|
18068
18086
|
: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
|
|
18069
18087
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18070
18088
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18089
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18090
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18071
18091
|
: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
|
|
18072
18092
|
: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
|
|
18073
18093
|
|
|
@@ -18435,6 +18455,8 @@ class _IFunctionProxy(
|
|
|
18435
18455
|
label: typing.Optional[builtins.str] = None,
|
|
18436
18456
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18437
18457
|
region: typing.Optional[builtins.str] = None,
|
|
18458
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18459
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18438
18460
|
statistic: typing.Optional[builtins.str] = None,
|
|
18439
18461
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18440
18462
|
) -> _Metric_e396a4dc:
|
|
@@ -18447,6 +18469,8 @@ class _IFunctionProxy(
|
|
|
18447
18469
|
: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
|
|
18448
18470
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18449
18471
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18472
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18473
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18450
18474
|
: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
|
|
18451
18475
|
: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
|
|
18452
18476
|
'''
|
|
@@ -18460,6 +18484,8 @@ class _IFunctionProxy(
|
|
|
18460
18484
|
label=label,
|
|
18461
18485
|
period=period,
|
|
18462
18486
|
region=region,
|
|
18487
|
+
stack_account=stack_account,
|
|
18488
|
+
stack_region=stack_region,
|
|
18463
18489
|
statistic=statistic,
|
|
18464
18490
|
unit=unit,
|
|
18465
18491
|
)
|
|
@@ -18476,6 +18502,8 @@ class _IFunctionProxy(
|
|
|
18476
18502
|
label: typing.Optional[builtins.str] = None,
|
|
18477
18503
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18478
18504
|
region: typing.Optional[builtins.str] = None,
|
|
18505
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18506
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18479
18507
|
statistic: typing.Optional[builtins.str] = None,
|
|
18480
18508
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18481
18509
|
) -> _Metric_e396a4dc:
|
|
@@ -18489,6 +18517,8 @@ class _IFunctionProxy(
|
|
|
18489
18517
|
: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
|
|
18490
18518
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18491
18519
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18520
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18521
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18492
18522
|
: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
|
|
18493
18523
|
: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
|
|
18494
18524
|
|
|
@@ -18501,6 +18531,8 @@ class _IFunctionProxy(
|
|
|
18501
18531
|
label=label,
|
|
18502
18532
|
period=period,
|
|
18503
18533
|
region=region,
|
|
18534
|
+
stack_account=stack_account,
|
|
18535
|
+
stack_region=stack_region,
|
|
18504
18536
|
statistic=statistic,
|
|
18505
18537
|
unit=unit,
|
|
18506
18538
|
)
|
|
@@ -18517,6 +18549,8 @@ class _IFunctionProxy(
|
|
|
18517
18549
|
label: typing.Optional[builtins.str] = None,
|
|
18518
18550
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18519
18551
|
region: typing.Optional[builtins.str] = None,
|
|
18552
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18553
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18520
18554
|
statistic: typing.Optional[builtins.str] = None,
|
|
18521
18555
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18522
18556
|
) -> _Metric_e396a4dc:
|
|
@@ -18530,6 +18564,8 @@ class _IFunctionProxy(
|
|
|
18530
18564
|
: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
|
|
18531
18565
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18532
18566
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18567
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18568
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18533
18569
|
: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
|
|
18534
18570
|
: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
|
|
18535
18571
|
'''
|
|
@@ -18540,6 +18576,8 @@ class _IFunctionProxy(
|
|
|
18540
18576
|
label=label,
|
|
18541
18577
|
period=period,
|
|
18542
18578
|
region=region,
|
|
18579
|
+
stack_account=stack_account,
|
|
18580
|
+
stack_region=stack_region,
|
|
18543
18581
|
statistic=statistic,
|
|
18544
18582
|
unit=unit,
|
|
18545
18583
|
)
|
|
@@ -18556,6 +18594,8 @@ class _IFunctionProxy(
|
|
|
18556
18594
|
label: typing.Optional[builtins.str] = None,
|
|
18557
18595
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18558
18596
|
region: typing.Optional[builtins.str] = None,
|
|
18597
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18598
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18559
18599
|
statistic: typing.Optional[builtins.str] = None,
|
|
18560
18600
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18561
18601
|
) -> _Metric_e396a4dc:
|
|
@@ -18569,6 +18609,8 @@ class _IFunctionProxy(
|
|
|
18569
18609
|
: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
|
|
18570
18610
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18571
18611
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18612
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18613
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18572
18614
|
: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
|
|
18573
18615
|
: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
|
|
18574
18616
|
|
|
@@ -18581,6 +18623,8 @@ class _IFunctionProxy(
|
|
|
18581
18623
|
label=label,
|
|
18582
18624
|
period=period,
|
|
18583
18625
|
region=region,
|
|
18626
|
+
stack_account=stack_account,
|
|
18627
|
+
stack_region=stack_region,
|
|
18584
18628
|
statistic=statistic,
|
|
18585
18629
|
unit=unit,
|
|
18586
18630
|
)
|
|
@@ -18597,6 +18641,8 @@ class _IFunctionProxy(
|
|
|
18597
18641
|
label: typing.Optional[builtins.str] = None,
|
|
18598
18642
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18599
18643
|
region: typing.Optional[builtins.str] = None,
|
|
18644
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18645
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18600
18646
|
statistic: typing.Optional[builtins.str] = None,
|
|
18601
18647
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18602
18648
|
) -> _Metric_e396a4dc:
|
|
@@ -18610,6 +18656,8 @@ class _IFunctionProxy(
|
|
|
18610
18656
|
: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
|
|
18611
18657
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18612
18658
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18659
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18660
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18613
18661
|
: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
|
|
18614
18662
|
: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
|
|
18615
18663
|
|
|
@@ -18622,6 +18670,8 @@ class _IFunctionProxy(
|
|
|
18622
18670
|
label=label,
|
|
18623
18671
|
period=period,
|
|
18624
18672
|
region=region,
|
|
18673
|
+
stack_account=stack_account,
|
|
18674
|
+
stack_region=stack_region,
|
|
18625
18675
|
statistic=statistic,
|
|
18626
18676
|
unit=unit,
|
|
18627
18677
|
)
|
|
@@ -26182,6 +26232,8 @@ class FunctionBase(
|
|
|
26182
26232
|
label: typing.Optional[builtins.str] = None,
|
|
26183
26233
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26184
26234
|
region: typing.Optional[builtins.str] = None,
|
|
26235
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26236
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26185
26237
|
statistic: typing.Optional[builtins.str] = None,
|
|
26186
26238
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26187
26239
|
) -> _Metric_e396a4dc:
|
|
@@ -26194,6 +26246,8 @@ class FunctionBase(
|
|
|
26194
26246
|
: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
|
|
26195
26247
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26196
26248
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26249
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26250
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26197
26251
|
: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
|
|
26198
26252
|
: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
|
|
26199
26253
|
'''
|
|
@@ -26207,6 +26261,8 @@ class FunctionBase(
|
|
|
26207
26261
|
label=label,
|
|
26208
26262
|
period=period,
|
|
26209
26263
|
region=region,
|
|
26264
|
+
stack_account=stack_account,
|
|
26265
|
+
stack_region=stack_region,
|
|
26210
26266
|
statistic=statistic,
|
|
26211
26267
|
unit=unit,
|
|
26212
26268
|
)
|
|
@@ -26223,6 +26279,8 @@ class FunctionBase(
|
|
|
26223
26279
|
label: typing.Optional[builtins.str] = None,
|
|
26224
26280
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26225
26281
|
region: typing.Optional[builtins.str] = None,
|
|
26282
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26283
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26226
26284
|
statistic: typing.Optional[builtins.str] = None,
|
|
26227
26285
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26228
26286
|
) -> _Metric_e396a4dc:
|
|
@@ -26236,6 +26294,8 @@ class FunctionBase(
|
|
|
26236
26294
|
: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
|
|
26237
26295
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26238
26296
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26297
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26298
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26239
26299
|
: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
|
|
26240
26300
|
: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
|
|
26241
26301
|
'''
|
|
@@ -26246,6 +26306,8 @@ class FunctionBase(
|
|
|
26246
26306
|
label=label,
|
|
26247
26307
|
period=period,
|
|
26248
26308
|
region=region,
|
|
26309
|
+
stack_account=stack_account,
|
|
26310
|
+
stack_region=stack_region,
|
|
26249
26311
|
statistic=statistic,
|
|
26250
26312
|
unit=unit,
|
|
26251
26313
|
)
|
|
@@ -26262,6 +26324,8 @@ class FunctionBase(
|
|
|
26262
26324
|
label: typing.Optional[builtins.str] = None,
|
|
26263
26325
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26264
26326
|
region: typing.Optional[builtins.str] = None,
|
|
26327
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26328
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26265
26329
|
statistic: typing.Optional[builtins.str] = None,
|
|
26266
26330
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26267
26331
|
) -> _Metric_e396a4dc:
|
|
@@ -26275,6 +26339,8 @@ class FunctionBase(
|
|
|
26275
26339
|
: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
|
|
26276
26340
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26277
26341
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26342
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26343
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26278
26344
|
: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
|
|
26279
26345
|
: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
|
|
26280
26346
|
'''
|
|
@@ -26285,6 +26351,8 @@ class FunctionBase(
|
|
|
26285
26351
|
label=label,
|
|
26286
26352
|
period=period,
|
|
26287
26353
|
region=region,
|
|
26354
|
+
stack_account=stack_account,
|
|
26355
|
+
stack_region=stack_region,
|
|
26288
26356
|
statistic=statistic,
|
|
26289
26357
|
unit=unit,
|
|
26290
26358
|
)
|
|
@@ -26301,6 +26369,8 @@ class FunctionBase(
|
|
|
26301
26369
|
label: typing.Optional[builtins.str] = None,
|
|
26302
26370
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26303
26371
|
region: typing.Optional[builtins.str] = None,
|
|
26372
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26373
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26304
26374
|
statistic: typing.Optional[builtins.str] = None,
|
|
26305
26375
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26306
26376
|
) -> _Metric_e396a4dc:
|
|
@@ -26314,6 +26384,8 @@ class FunctionBase(
|
|
|
26314
26384
|
: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
|
|
26315
26385
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26316
26386
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26387
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26388
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26317
26389
|
: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
|
|
26318
26390
|
: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
|
|
26319
26391
|
'''
|
|
@@ -26324,6 +26396,8 @@ class FunctionBase(
|
|
|
26324
26396
|
label=label,
|
|
26325
26397
|
period=period,
|
|
26326
26398
|
region=region,
|
|
26399
|
+
stack_account=stack_account,
|
|
26400
|
+
stack_region=stack_region,
|
|
26327
26401
|
statistic=statistic,
|
|
26328
26402
|
unit=unit,
|
|
26329
26403
|
)
|
|
@@ -26340,6 +26414,8 @@ class FunctionBase(
|
|
|
26340
26414
|
label: typing.Optional[builtins.str] = None,
|
|
26341
26415
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
26342
26416
|
region: typing.Optional[builtins.str] = None,
|
|
26417
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
26418
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
26343
26419
|
statistic: typing.Optional[builtins.str] = None,
|
|
26344
26420
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
26345
26421
|
) -> _Metric_e396a4dc:
|
|
@@ -26353,6 +26429,8 @@ class FunctionBase(
|
|
|
26353
26429
|
: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
|
|
26354
26430
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
26355
26431
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
26432
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
26433
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
26356
26434
|
: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
|
|
26357
26435
|
: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
|
|
26358
26436
|
'''
|
|
@@ -26363,6 +26441,8 @@ class FunctionBase(
|
|
|
26363
26441
|
label=label,
|
|
26364
26442
|
period=period,
|
|
26365
26443
|
region=region,
|
|
26444
|
+
stack_account=stack_account,
|
|
26445
|
+
stack_region=stack_region,
|
|
26366
26446
|
statistic=statistic,
|
|
26367
26447
|
unit=unit,
|
|
26368
26448
|
)
|
|
@@ -27464,6 +27544,8 @@ class Version(
|
|
|
27464
27544
|
label: typing.Optional[builtins.str] = None,
|
|
27465
27545
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27466
27546
|
region: typing.Optional[builtins.str] = None,
|
|
27547
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27548
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27467
27549
|
statistic: typing.Optional[builtins.str] = None,
|
|
27468
27550
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27469
27551
|
) -> _Metric_e396a4dc:
|
|
@@ -27476,6 +27558,8 @@ class Version(
|
|
|
27476
27558
|
: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
|
|
27477
27559
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27478
27560
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27561
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27562
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27479
27563
|
: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
|
|
27480
27564
|
: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
|
|
27481
27565
|
'''
|
|
@@ -27489,6 +27573,8 @@ class Version(
|
|
|
27489
27573
|
label=label,
|
|
27490
27574
|
period=period,
|
|
27491
27575
|
region=region,
|
|
27576
|
+
stack_account=stack_account,
|
|
27577
|
+
stack_region=stack_region,
|
|
27492
27578
|
statistic=statistic,
|
|
27493
27579
|
unit=unit,
|
|
27494
27580
|
)
|
|
@@ -27699,6 +27785,8 @@ class Alias(
|
|
|
27699
27785
|
label: typing.Optional[builtins.str] = None,
|
|
27700
27786
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27701
27787
|
region: typing.Optional[builtins.str] = None,
|
|
27788
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27789
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27702
27790
|
statistic: typing.Optional[builtins.str] = None,
|
|
27703
27791
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27704
27792
|
) -> _Metric_e396a4dc:
|
|
@@ -27711,6 +27799,8 @@ class Alias(
|
|
|
27711
27799
|
: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
|
|
27712
27800
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27713
27801
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27802
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27803
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27714
27804
|
: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
|
|
27715
27805
|
: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
|
|
27716
27806
|
'''
|
|
@@ -27724,6 +27814,8 @@ class Alias(
|
|
|
27724
27814
|
label=label,
|
|
27725
27815
|
period=period,
|
|
27726
27816
|
region=region,
|
|
27817
|
+
stack_account=stack_account,
|
|
27818
|
+
stack_region=stack_region,
|
|
27727
27819
|
statistic=statistic,
|
|
27728
27820
|
unit=unit,
|
|
27729
27821
|
)
|
|
@@ -28145,6 +28237,8 @@ class Function(
|
|
|
28145
28237
|
label: typing.Optional[builtins.str] = None,
|
|
28146
28238
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28147
28239
|
region: typing.Optional[builtins.str] = None,
|
|
28240
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28241
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28148
28242
|
statistic: typing.Optional[builtins.str] = None,
|
|
28149
28243
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28150
28244
|
) -> _Metric_e396a4dc:
|
|
@@ -28157,6 +28251,8 @@ class Function(
|
|
|
28157
28251
|
: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
|
|
28158
28252
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28159
28253
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28254
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28255
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28160
28256
|
: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
|
|
28161
28257
|
: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
|
|
28162
28258
|
'''
|
|
@@ -28170,6 +28266,8 @@ class Function(
|
|
|
28170
28266
|
label=label,
|
|
28171
28267
|
period=period,
|
|
28172
28268
|
region=region,
|
|
28269
|
+
stack_account=stack_account,
|
|
28270
|
+
stack_region=stack_region,
|
|
28173
28271
|
statistic=statistic,
|
|
28174
28272
|
unit=unit,
|
|
28175
28273
|
)
|
|
@@ -28187,6 +28285,8 @@ class Function(
|
|
|
28187
28285
|
label: typing.Optional[builtins.str] = None,
|
|
28188
28286
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28189
28287
|
region: typing.Optional[builtins.str] = None,
|
|
28288
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28289
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28190
28290
|
statistic: typing.Optional[builtins.str] = None,
|
|
28191
28291
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28192
28292
|
) -> _Metric_e396a4dc:
|
|
@@ -28198,6 +28298,8 @@ class Function(
|
|
|
28198
28298
|
: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
|
|
28199
28299
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28200
28300
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28301
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28302
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28201
28303
|
: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
|
|
28202
28304
|
: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
|
|
28203
28305
|
|
|
@@ -28210,6 +28312,8 @@ class Function(
|
|
|
28210
28312
|
label=label,
|
|
28211
28313
|
period=period,
|
|
28212
28314
|
region=region,
|
|
28315
|
+
stack_account=stack_account,
|
|
28316
|
+
stack_region=stack_region,
|
|
28213
28317
|
statistic=statistic,
|
|
28214
28318
|
unit=unit,
|
|
28215
28319
|
)
|
|
@@ -28227,6 +28331,8 @@ class Function(
|
|
|
28227
28331
|
label: typing.Optional[builtins.str] = None,
|
|
28228
28332
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28229
28333
|
region: typing.Optional[builtins.str] = None,
|
|
28334
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28335
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28230
28336
|
statistic: typing.Optional[builtins.str] = None,
|
|
28231
28337
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28232
28338
|
) -> _Metric_e396a4dc:
|
|
@@ -28238,6 +28344,8 @@ class Function(
|
|
|
28238
28344
|
: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
|
|
28239
28345
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28240
28346
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28347
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28348
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28241
28349
|
: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
|
|
28242
28350
|
: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
|
|
28243
28351
|
|
|
@@ -28250,6 +28358,8 @@ class Function(
|
|
|
28250
28358
|
label=label,
|
|
28251
28359
|
period=period,
|
|
28252
28360
|
region=region,
|
|
28361
|
+
stack_account=stack_account,
|
|
28362
|
+
stack_region=stack_region,
|
|
28253
28363
|
statistic=statistic,
|
|
28254
28364
|
unit=unit,
|
|
28255
28365
|
)
|
|
@@ -28267,6 +28377,8 @@ class Function(
|
|
|
28267
28377
|
label: typing.Optional[builtins.str] = None,
|
|
28268
28378
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28269
28379
|
region: typing.Optional[builtins.str] = None,
|
|
28380
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28381
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28270
28382
|
statistic: typing.Optional[builtins.str] = None,
|
|
28271
28383
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28272
28384
|
) -> _Metric_e396a4dc:
|
|
@@ -28278,6 +28390,8 @@ class Function(
|
|
|
28278
28390
|
: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
|
|
28279
28391
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28280
28392
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28393
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28394
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28281
28395
|
: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
|
|
28282
28396
|
: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
|
|
28283
28397
|
|
|
@@ -28290,6 +28404,8 @@ class Function(
|
|
|
28290
28404
|
label=label,
|
|
28291
28405
|
period=period,
|
|
28292
28406
|
region=region,
|
|
28407
|
+
stack_account=stack_account,
|
|
28408
|
+
stack_region=stack_region,
|
|
28293
28409
|
statistic=statistic,
|
|
28294
28410
|
unit=unit,
|
|
28295
28411
|
)
|
|
@@ -28307,6 +28423,8 @@ class Function(
|
|
|
28307
28423
|
label: typing.Optional[builtins.str] = None,
|
|
28308
28424
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28309
28425
|
region: typing.Optional[builtins.str] = None,
|
|
28426
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28427
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28310
28428
|
statistic: typing.Optional[builtins.str] = None,
|
|
28311
28429
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28312
28430
|
) -> _Metric_e396a4dc:
|
|
@@ -28318,6 +28436,8 @@ class Function(
|
|
|
28318
28436
|
: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
|
|
28319
28437
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28320
28438
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28439
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28440
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28321
28441
|
: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
|
|
28322
28442
|
: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
|
|
28323
28443
|
|
|
@@ -28330,6 +28450,8 @@ class Function(
|
|
|
28330
28450
|
label=label,
|
|
28331
28451
|
period=period,
|
|
28332
28452
|
region=region,
|
|
28453
|
+
stack_account=stack_account,
|
|
28454
|
+
stack_region=stack_region,
|
|
28333
28455
|
statistic=statistic,
|
|
28334
28456
|
unit=unit,
|
|
28335
28457
|
)
|
|
@@ -28347,6 +28469,8 @@ class Function(
|
|
|
28347
28469
|
label: typing.Optional[builtins.str] = None,
|
|
28348
28470
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28349
28471
|
region: typing.Optional[builtins.str] = None,
|
|
28472
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28473
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28350
28474
|
statistic: typing.Optional[builtins.str] = None,
|
|
28351
28475
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28352
28476
|
) -> _Metric_e396a4dc:
|
|
@@ -28358,6 +28482,8 @@ class Function(
|
|
|
28358
28482
|
: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
|
|
28359
28483
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28360
28484
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28485
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28486
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28361
28487
|
: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
|
|
28362
28488
|
: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
|
|
28363
28489
|
|
|
@@ -28370,6 +28496,8 @@ class Function(
|
|
|
28370
28496
|
label=label,
|
|
28371
28497
|
period=period,
|
|
28372
28498
|
region=region,
|
|
28499
|
+
stack_account=stack_account,
|
|
28500
|
+
stack_region=stack_region,
|
|
28373
28501
|
statistic=statistic,
|
|
28374
28502
|
unit=unit,
|
|
28375
28503
|
)
|
|
@@ -28387,6 +28515,8 @@ class Function(
|
|
|
28387
28515
|
label: typing.Optional[builtins.str] = None,
|
|
28388
28516
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28389
28517
|
region: typing.Optional[builtins.str] = None,
|
|
28518
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28519
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28390
28520
|
statistic: typing.Optional[builtins.str] = None,
|
|
28391
28521
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28392
28522
|
) -> _Metric_e396a4dc:
|
|
@@ -28398,6 +28528,8 @@ class Function(
|
|
|
28398
28528
|
: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
|
|
28399
28529
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28400
28530
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28531
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28532
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28401
28533
|
: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
|
|
28402
28534
|
: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
|
|
28403
28535
|
|
|
@@ -28410,6 +28542,8 @@ class Function(
|
|
|
28410
28542
|
label=label,
|
|
28411
28543
|
period=period,
|
|
28412
28544
|
region=region,
|
|
28545
|
+
stack_account=stack_account,
|
|
28546
|
+
stack_region=stack_region,
|
|
28413
28547
|
statistic=statistic,
|
|
28414
28548
|
unit=unit,
|
|
28415
28549
|
)
|
|
@@ -31144,6 +31278,8 @@ def _typecheckingstub__e51ed953937811fd98427961afbaf8299c3abf178e0c6044c8712d503
|
|
|
31144
31278
|
label: typing.Optional[builtins.str] = None,
|
|
31145
31279
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
31146
31280
|
region: typing.Optional[builtins.str] = None,
|
|
31281
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
31282
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
31147
31283
|
statistic: typing.Optional[builtins.str] = None,
|
|
31148
31284
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
31149
31285
|
) -> None:
|
|
@@ -31921,6 +32057,8 @@ def _typecheckingstub__06d3e951175cb3e949d91bfc243ef1f86cf676c9e64f1d67f410dbe5d
|
|
|
31921
32057
|
label: typing.Optional[builtins.str] = None,
|
|
31922
32058
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
31923
32059
|
region: typing.Optional[builtins.str] = None,
|
|
32060
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
32061
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
31924
32062
|
statistic: typing.Optional[builtins.str] = None,
|
|
31925
32063
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
31926
32064
|
) -> None:
|
|
@@ -32142,6 +32280,8 @@ def _typecheckingstub__443bc00c048cff544d1b9157c685f2bee9d441bcf7ce0880c8c977ef8
|
|
|
32142
32280
|
label: typing.Optional[builtins.str] = None,
|
|
32143
32281
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
32144
32282
|
region: typing.Optional[builtins.str] = None,
|
|
32283
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
32284
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
32145
32285
|
statistic: typing.Optional[builtins.str] = None,
|
|
32146
32286
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
32147
32287
|
) -> None:
|
|
@@ -32184,6 +32324,8 @@ def _typecheckingstub__389b21392780e7843878816b2a43e6df8aa6beeb978ecb884e16204e6
|
|
|
32184
32324
|
label: typing.Optional[builtins.str] = None,
|
|
32185
32325
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
32186
32326
|
region: typing.Optional[builtins.str] = None,
|
|
32327
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
32328
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
32187
32329
|
statistic: typing.Optional[builtins.str] = None,
|
|
32188
32330
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
32189
32331
|
) -> None:
|
|
@@ -32296,6 +32438,8 @@ def _typecheckingstub__8e44aa6e60e48acf4d280c3549506eac956ae1ca0c7dbcaca07c90a26
|
|
|
32296
32438
|
label: typing.Optional[builtins.str] = None,
|
|
32297
32439
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
32298
32440
|
region: typing.Optional[builtins.str] = None,
|
|
32441
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
32442
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
32299
32443
|
statistic: typing.Optional[builtins.str] = None,
|
|
32300
32444
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
32301
32445
|
) -> None:
|