aws-cdk-lib 2.174.0__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.0.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +18 -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_batch/__init__.py +32 -458
- aws_cdk/aws_bedrock/__init__.py +7 -4
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cleanrooms/__init__.py +683 -2
- 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_dms/__init__.py +49 -27
- aws_cdk/aws_docdb/__init__.py +134 -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_mediaconvert/__init__.py +39 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_quicksight/__init__.py +1422 -859
- aws_cdk/aws_rds/__init__.py +386 -7
- aws_cdk/aws_sagemaker/__init__.py +6 -6
- 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.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +45 -45
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
|
@@ -10639,6 +10639,8 @@ class IApi(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
10639
10639
|
label: typing.Optional[builtins.str] = None,
|
|
10640
10640
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10641
10641
|
region: typing.Optional[builtins.str] = None,
|
|
10642
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10643
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10642
10644
|
statistic: typing.Optional[builtins.str] = None,
|
|
10643
10645
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10644
10646
|
) -> _Metric_e396a4dc:
|
|
@@ -10651,6 +10653,8 @@ class IApi(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
10651
10653
|
: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
|
|
10652
10654
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10653
10655
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10656
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10657
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10654
10658
|
: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
|
|
10655
10659
|
: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
|
|
10656
10660
|
|
|
@@ -10695,6 +10699,8 @@ class _IApiProxy(
|
|
|
10695
10699
|
label: typing.Optional[builtins.str] = None,
|
|
10696
10700
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10697
10701
|
region: typing.Optional[builtins.str] = None,
|
|
10702
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10703
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10698
10704
|
statistic: typing.Optional[builtins.str] = None,
|
|
10699
10705
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10700
10706
|
) -> _Metric_e396a4dc:
|
|
@@ -10707,6 +10713,8 @@ class _IApiProxy(
|
|
|
10707
10713
|
: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
|
|
10708
10714
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10709
10715
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10716
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10717
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10710
10718
|
: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
|
|
10711
10719
|
: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
|
|
10712
10720
|
|
|
@@ -10722,6 +10730,8 @@ class _IApiProxy(
|
|
|
10722
10730
|
label=label,
|
|
10723
10731
|
period=period,
|
|
10724
10732
|
region=region,
|
|
10733
|
+
stack_account=stack_account,
|
|
10734
|
+
stack_region=stack_region,
|
|
10725
10735
|
statistic=statistic,
|
|
10726
10736
|
unit=unit,
|
|
10727
10737
|
)
|
|
@@ -10965,6 +10975,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
10965
10975
|
label: typing.Optional[builtins.str] = None,
|
|
10966
10976
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10967
10977
|
region: typing.Optional[builtins.str] = None,
|
|
10978
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10979
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10968
10980
|
statistic: typing.Optional[builtins.str] = None,
|
|
10969
10981
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10970
10982
|
) -> _Metric_e396a4dc:
|
|
@@ -10976,6 +10988,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
10976
10988
|
: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
|
|
10977
10989
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10978
10990
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10991
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10992
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10979
10993
|
: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
|
|
10980
10994
|
: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
|
|
10981
10995
|
|
|
@@ -10993,6 +11007,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
10993
11007
|
label: typing.Optional[builtins.str] = None,
|
|
10994
11008
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10995
11009
|
region: typing.Optional[builtins.str] = None,
|
|
11010
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11011
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10996
11012
|
statistic: typing.Optional[builtins.str] = None,
|
|
10997
11013
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10998
11014
|
) -> _Metric_e396a4dc:
|
|
@@ -11004,6 +11020,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
11004
11020
|
: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
|
|
11005
11021
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11006
11022
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11023
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11024
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11007
11025
|
: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
|
|
11008
11026
|
: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
|
|
11009
11027
|
|
|
@@ -11021,6 +11039,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
11021
11039
|
label: typing.Optional[builtins.str] = None,
|
|
11022
11040
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11023
11041
|
region: typing.Optional[builtins.str] = None,
|
|
11042
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11043
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11024
11044
|
statistic: typing.Optional[builtins.str] = None,
|
|
11025
11045
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11026
11046
|
) -> _Metric_e396a4dc:
|
|
@@ -11032,6 +11052,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
11032
11052
|
: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
|
|
11033
11053
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11034
11054
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11055
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11056
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11035
11057
|
: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
|
|
11036
11058
|
: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
|
|
11037
11059
|
|
|
@@ -11049,6 +11071,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
11049
11071
|
label: typing.Optional[builtins.str] = None,
|
|
11050
11072
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11051
11073
|
region: typing.Optional[builtins.str] = None,
|
|
11074
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11075
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11052
11076
|
statistic: typing.Optional[builtins.str] = None,
|
|
11053
11077
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11054
11078
|
) -> _Metric_e396a4dc:
|
|
@@ -11060,6 +11084,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
11060
11084
|
: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
|
|
11061
11085
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11062
11086
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11087
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11088
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11063
11089
|
: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
|
|
11064
11090
|
: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
|
|
11065
11091
|
|
|
@@ -11077,6 +11103,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
11077
11103
|
label: typing.Optional[builtins.str] = None,
|
|
11078
11104
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11079
11105
|
region: typing.Optional[builtins.str] = None,
|
|
11106
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11107
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11080
11108
|
statistic: typing.Optional[builtins.str] = None,
|
|
11081
11109
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11082
11110
|
) -> _Metric_e396a4dc:
|
|
@@ -11090,6 +11118,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
11090
11118
|
: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
|
|
11091
11119
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11092
11120
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11121
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11122
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11093
11123
|
: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
|
|
11094
11124
|
: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
|
|
11095
11125
|
|
|
@@ -11107,6 +11137,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
11107
11137
|
label: typing.Optional[builtins.str] = None,
|
|
11108
11138
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11109
11139
|
region: typing.Optional[builtins.str] = None,
|
|
11140
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11141
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11110
11142
|
statistic: typing.Optional[builtins.str] = None,
|
|
11111
11143
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11112
11144
|
) -> _Metric_e396a4dc:
|
|
@@ -11118,6 +11150,8 @@ class IHttpApi(IApi, typing_extensions.Protocol):
|
|
|
11118
11150
|
: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
|
|
11119
11151
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11120
11152
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11153
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11154
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11121
11155
|
: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
|
|
11122
11156
|
: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
|
|
11123
11157
|
|
|
@@ -11224,6 +11258,8 @@ class _IHttpApiProxy(
|
|
|
11224
11258
|
label: typing.Optional[builtins.str] = None,
|
|
11225
11259
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11226
11260
|
region: typing.Optional[builtins.str] = None,
|
|
11261
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11262
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11227
11263
|
statistic: typing.Optional[builtins.str] = None,
|
|
11228
11264
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11229
11265
|
) -> _Metric_e396a4dc:
|
|
@@ -11235,6 +11271,8 @@ class _IHttpApiProxy(
|
|
|
11235
11271
|
: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
|
|
11236
11272
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11237
11273
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11274
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11275
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11238
11276
|
: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
|
|
11239
11277
|
: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
|
|
11240
11278
|
|
|
@@ -11247,6 +11285,8 @@ class _IHttpApiProxy(
|
|
|
11247
11285
|
label=label,
|
|
11248
11286
|
period=period,
|
|
11249
11287
|
region=region,
|
|
11288
|
+
stack_account=stack_account,
|
|
11289
|
+
stack_region=stack_region,
|
|
11250
11290
|
statistic=statistic,
|
|
11251
11291
|
unit=unit,
|
|
11252
11292
|
)
|
|
@@ -11263,6 +11303,8 @@ class _IHttpApiProxy(
|
|
|
11263
11303
|
label: typing.Optional[builtins.str] = None,
|
|
11264
11304
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11265
11305
|
region: typing.Optional[builtins.str] = None,
|
|
11306
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11307
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11266
11308
|
statistic: typing.Optional[builtins.str] = None,
|
|
11267
11309
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11268
11310
|
) -> _Metric_e396a4dc:
|
|
@@ -11274,6 +11316,8 @@ class _IHttpApiProxy(
|
|
|
11274
11316
|
: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
|
|
11275
11317
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11276
11318
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11319
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11320
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11277
11321
|
: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
|
|
11278
11322
|
: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
|
|
11279
11323
|
|
|
@@ -11286,6 +11330,8 @@ class _IHttpApiProxy(
|
|
|
11286
11330
|
label=label,
|
|
11287
11331
|
period=period,
|
|
11288
11332
|
region=region,
|
|
11333
|
+
stack_account=stack_account,
|
|
11334
|
+
stack_region=stack_region,
|
|
11289
11335
|
statistic=statistic,
|
|
11290
11336
|
unit=unit,
|
|
11291
11337
|
)
|
|
@@ -11302,6 +11348,8 @@ class _IHttpApiProxy(
|
|
|
11302
11348
|
label: typing.Optional[builtins.str] = None,
|
|
11303
11349
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11304
11350
|
region: typing.Optional[builtins.str] = None,
|
|
11351
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11352
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11305
11353
|
statistic: typing.Optional[builtins.str] = None,
|
|
11306
11354
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11307
11355
|
) -> _Metric_e396a4dc:
|
|
@@ -11313,6 +11361,8 @@ class _IHttpApiProxy(
|
|
|
11313
11361
|
: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
|
|
11314
11362
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11315
11363
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11364
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11365
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11316
11366
|
: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
|
|
11317
11367
|
: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
|
|
11318
11368
|
|
|
@@ -11325,6 +11375,8 @@ class _IHttpApiProxy(
|
|
|
11325
11375
|
label=label,
|
|
11326
11376
|
period=period,
|
|
11327
11377
|
region=region,
|
|
11378
|
+
stack_account=stack_account,
|
|
11379
|
+
stack_region=stack_region,
|
|
11328
11380
|
statistic=statistic,
|
|
11329
11381
|
unit=unit,
|
|
11330
11382
|
)
|
|
@@ -11341,6 +11393,8 @@ class _IHttpApiProxy(
|
|
|
11341
11393
|
label: typing.Optional[builtins.str] = None,
|
|
11342
11394
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11343
11395
|
region: typing.Optional[builtins.str] = None,
|
|
11396
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11397
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11344
11398
|
statistic: typing.Optional[builtins.str] = None,
|
|
11345
11399
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11346
11400
|
) -> _Metric_e396a4dc:
|
|
@@ -11352,6 +11406,8 @@ class _IHttpApiProxy(
|
|
|
11352
11406
|
: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
|
|
11353
11407
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11354
11408
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11409
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11410
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11355
11411
|
: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
|
|
11356
11412
|
: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
|
|
11357
11413
|
|
|
@@ -11364,6 +11420,8 @@ class _IHttpApiProxy(
|
|
|
11364
11420
|
label=label,
|
|
11365
11421
|
period=period,
|
|
11366
11422
|
region=region,
|
|
11423
|
+
stack_account=stack_account,
|
|
11424
|
+
stack_region=stack_region,
|
|
11367
11425
|
statistic=statistic,
|
|
11368
11426
|
unit=unit,
|
|
11369
11427
|
)
|
|
@@ -11380,6 +11438,8 @@ class _IHttpApiProxy(
|
|
|
11380
11438
|
label: typing.Optional[builtins.str] = None,
|
|
11381
11439
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11382
11440
|
region: typing.Optional[builtins.str] = None,
|
|
11441
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11442
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11383
11443
|
statistic: typing.Optional[builtins.str] = None,
|
|
11384
11444
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11385
11445
|
) -> _Metric_e396a4dc:
|
|
@@ -11393,6 +11453,8 @@ class _IHttpApiProxy(
|
|
|
11393
11453
|
: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
|
|
11394
11454
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11395
11455
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11456
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11457
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11396
11458
|
: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
|
|
11397
11459
|
: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
|
|
11398
11460
|
|
|
@@ -11405,6 +11467,8 @@ class _IHttpApiProxy(
|
|
|
11405
11467
|
label=label,
|
|
11406
11468
|
period=period,
|
|
11407
11469
|
region=region,
|
|
11470
|
+
stack_account=stack_account,
|
|
11471
|
+
stack_region=stack_region,
|
|
11408
11472
|
statistic=statistic,
|
|
11409
11473
|
unit=unit,
|
|
11410
11474
|
)
|
|
@@ -11421,6 +11485,8 @@ class _IHttpApiProxy(
|
|
|
11421
11485
|
label: typing.Optional[builtins.str] = None,
|
|
11422
11486
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11423
11487
|
region: typing.Optional[builtins.str] = None,
|
|
11488
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11489
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11424
11490
|
statistic: typing.Optional[builtins.str] = None,
|
|
11425
11491
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11426
11492
|
) -> _Metric_e396a4dc:
|
|
@@ -11432,6 +11498,8 @@ class _IHttpApiProxy(
|
|
|
11432
11498
|
: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
|
|
11433
11499
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11434
11500
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11501
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11502
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11435
11503
|
: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
|
|
11436
11504
|
: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
|
|
11437
11505
|
|
|
@@ -11444,6 +11512,8 @@ class _IHttpApiProxy(
|
|
|
11444
11512
|
label=label,
|
|
11445
11513
|
period=period,
|
|
11446
11514
|
region=region,
|
|
11515
|
+
stack_account=stack_account,
|
|
11516
|
+
stack_region=stack_region,
|
|
11447
11517
|
statistic=statistic,
|
|
11448
11518
|
unit=unit,
|
|
11449
11519
|
)
|
|
@@ -11643,6 +11713,8 @@ class IStage(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
11643
11713
|
label: typing.Optional[builtins.str] = None,
|
|
11644
11714
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11645
11715
|
region: typing.Optional[builtins.str] = None,
|
|
11716
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11717
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11646
11718
|
statistic: typing.Optional[builtins.str] = None,
|
|
11647
11719
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11648
11720
|
) -> _Metric_e396a4dc:
|
|
@@ -11655,6 +11727,8 @@ class IStage(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
11655
11727
|
: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
|
|
11656
11728
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11657
11729
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11730
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11731
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11658
11732
|
: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
|
|
11659
11733
|
: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
|
|
11660
11734
|
|
|
@@ -11698,6 +11772,8 @@ class _IStageProxy(
|
|
|
11698
11772
|
label: typing.Optional[builtins.str] = None,
|
|
11699
11773
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11700
11774
|
region: typing.Optional[builtins.str] = None,
|
|
11775
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11776
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11701
11777
|
statistic: typing.Optional[builtins.str] = None,
|
|
11702
11778
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11703
11779
|
) -> _Metric_e396a4dc:
|
|
@@ -11710,6 +11786,8 @@ class _IStageProxy(
|
|
|
11710
11786
|
: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
|
|
11711
11787
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11712
11788
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11789
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11790
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11713
11791
|
: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
|
|
11714
11792
|
: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
|
|
11715
11793
|
|
|
@@ -11725,6 +11803,8 @@ class _IStageProxy(
|
|
|
11725
11803
|
label=label,
|
|
11726
11804
|
period=period,
|
|
11727
11805
|
region=region,
|
|
11806
|
+
stack_account=stack_account,
|
|
11807
|
+
stack_region=stack_region,
|
|
11728
11808
|
statistic=statistic,
|
|
11729
11809
|
unit=unit,
|
|
11730
11810
|
)
|
|
@@ -13220,6 +13300,8 @@ class WebSocketApi(
|
|
|
13220
13300
|
label: typing.Optional[builtins.str] = None,
|
|
13221
13301
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13222
13302
|
region: typing.Optional[builtins.str] = None,
|
|
13303
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13304
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13223
13305
|
statistic: typing.Optional[builtins.str] = None,
|
|
13224
13306
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13225
13307
|
) -> _Metric_e396a4dc:
|
|
@@ -13232,6 +13314,8 @@ class WebSocketApi(
|
|
|
13232
13314
|
: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
|
|
13233
13315
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13234
13316
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13317
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13318
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13235
13319
|
: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
|
|
13236
13320
|
: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
|
|
13237
13321
|
'''
|
|
@@ -13245,6 +13329,8 @@ class WebSocketApi(
|
|
|
13245
13329
|
label=label,
|
|
13246
13330
|
period=period,
|
|
13247
13331
|
region=region,
|
|
13332
|
+
stack_account=stack_account,
|
|
13333
|
+
stack_region=stack_region,
|
|
13248
13334
|
statistic=statistic,
|
|
13249
13335
|
unit=unit,
|
|
13250
13336
|
)
|
|
@@ -15202,6 +15288,8 @@ class WebSocketStage(
|
|
|
15202
15288
|
label: typing.Optional[builtins.str] = None,
|
|
15203
15289
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
15204
15290
|
region: typing.Optional[builtins.str] = None,
|
|
15291
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
15292
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
15205
15293
|
statistic: typing.Optional[builtins.str] = None,
|
|
15206
15294
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
15207
15295
|
) -> _Metric_e396a4dc:
|
|
@@ -15214,6 +15302,8 @@ class WebSocketStage(
|
|
|
15214
15302
|
: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
|
|
15215
15303
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
15216
15304
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
15305
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
15306
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
15217
15307
|
: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
|
|
15218
15308
|
: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
|
|
15219
15309
|
'''
|
|
@@ -15227,6 +15317,8 @@ class WebSocketStage(
|
|
|
15227
15317
|
label=label,
|
|
15228
15318
|
period=period,
|
|
15229
15319
|
region=region,
|
|
15320
|
+
stack_account=stack_account,
|
|
15321
|
+
stack_region=stack_region,
|
|
15230
15322
|
statistic=statistic,
|
|
15231
15323
|
unit=unit,
|
|
15232
15324
|
)
|
|
@@ -16242,6 +16334,8 @@ class HttpApi(
|
|
|
16242
16334
|
label: typing.Optional[builtins.str] = None,
|
|
16243
16335
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
16244
16336
|
region: typing.Optional[builtins.str] = None,
|
|
16337
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
16338
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
16245
16339
|
statistic: typing.Optional[builtins.str] = None,
|
|
16246
16340
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
16247
16341
|
) -> _Metric_e396a4dc:
|
|
@@ -16254,6 +16348,8 @@ class HttpApi(
|
|
|
16254
16348
|
: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
|
|
16255
16349
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
16256
16350
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
16351
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
16352
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
16257
16353
|
: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
|
|
16258
16354
|
: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
|
|
16259
16355
|
'''
|
|
@@ -16267,6 +16363,8 @@ class HttpApi(
|
|
|
16267
16363
|
label=label,
|
|
16268
16364
|
period=period,
|
|
16269
16365
|
region=region,
|
|
16366
|
+
stack_account=stack_account,
|
|
16367
|
+
stack_region=stack_region,
|
|
16270
16368
|
statistic=statistic,
|
|
16271
16369
|
unit=unit,
|
|
16272
16370
|
)
|
|
@@ -16283,6 +16381,8 @@ class HttpApi(
|
|
|
16283
16381
|
label: typing.Optional[builtins.str] = None,
|
|
16284
16382
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
16285
16383
|
region: typing.Optional[builtins.str] = None,
|
|
16384
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
16385
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
16286
16386
|
statistic: typing.Optional[builtins.str] = None,
|
|
16287
16387
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
16288
16388
|
) -> _Metric_e396a4dc:
|
|
@@ -16294,6 +16394,8 @@ class HttpApi(
|
|
|
16294
16394
|
: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
|
|
16295
16395
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
16296
16396
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
16397
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
16398
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
16297
16399
|
: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
|
|
16298
16400
|
: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
|
|
16299
16401
|
'''
|
|
@@ -16304,6 +16406,8 @@ class HttpApi(
|
|
|
16304
16406
|
label=label,
|
|
16305
16407
|
period=period,
|
|
16306
16408
|
region=region,
|
|
16409
|
+
stack_account=stack_account,
|
|
16410
|
+
stack_region=stack_region,
|
|
16307
16411
|
statistic=statistic,
|
|
16308
16412
|
unit=unit,
|
|
16309
16413
|
)
|
|
@@ -16320,6 +16424,8 @@ class HttpApi(
|
|
|
16320
16424
|
label: typing.Optional[builtins.str] = None,
|
|
16321
16425
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
16322
16426
|
region: typing.Optional[builtins.str] = None,
|
|
16427
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
16428
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
16323
16429
|
statistic: typing.Optional[builtins.str] = None,
|
|
16324
16430
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
16325
16431
|
) -> _Metric_e396a4dc:
|
|
@@ -16331,6 +16437,8 @@ class HttpApi(
|
|
|
16331
16437
|
: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
|
|
16332
16438
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
16333
16439
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
16440
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
16441
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
16334
16442
|
: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
|
|
16335
16443
|
: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
|
|
16336
16444
|
'''
|
|
@@ -16341,6 +16449,8 @@ class HttpApi(
|
|
|
16341
16449
|
label=label,
|
|
16342
16450
|
period=period,
|
|
16343
16451
|
region=region,
|
|
16452
|
+
stack_account=stack_account,
|
|
16453
|
+
stack_region=stack_region,
|
|
16344
16454
|
statistic=statistic,
|
|
16345
16455
|
unit=unit,
|
|
16346
16456
|
)
|
|
@@ -16357,6 +16467,8 @@ class HttpApi(
|
|
|
16357
16467
|
label: typing.Optional[builtins.str] = None,
|
|
16358
16468
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
16359
16469
|
region: typing.Optional[builtins.str] = None,
|
|
16470
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
16471
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
16360
16472
|
statistic: typing.Optional[builtins.str] = None,
|
|
16361
16473
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
16362
16474
|
) -> _Metric_e396a4dc:
|
|
@@ -16368,6 +16480,8 @@ class HttpApi(
|
|
|
16368
16480
|
: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
|
|
16369
16481
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
16370
16482
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
16483
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
16484
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
16371
16485
|
: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
|
|
16372
16486
|
: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
|
|
16373
16487
|
'''
|
|
@@ -16378,6 +16492,8 @@ class HttpApi(
|
|
|
16378
16492
|
label=label,
|
|
16379
16493
|
period=period,
|
|
16380
16494
|
region=region,
|
|
16495
|
+
stack_account=stack_account,
|
|
16496
|
+
stack_region=stack_region,
|
|
16381
16497
|
statistic=statistic,
|
|
16382
16498
|
unit=unit,
|
|
16383
16499
|
)
|
|
@@ -16394,6 +16510,8 @@ class HttpApi(
|
|
|
16394
16510
|
label: typing.Optional[builtins.str] = None,
|
|
16395
16511
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
16396
16512
|
region: typing.Optional[builtins.str] = None,
|
|
16513
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
16514
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
16397
16515
|
statistic: typing.Optional[builtins.str] = None,
|
|
16398
16516
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
16399
16517
|
) -> _Metric_e396a4dc:
|
|
@@ -16405,6 +16523,8 @@ class HttpApi(
|
|
|
16405
16523
|
: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
|
|
16406
16524
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
16407
16525
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
16526
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
16527
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
16408
16528
|
: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
|
|
16409
16529
|
: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
|
|
16410
16530
|
'''
|
|
@@ -16415,6 +16535,8 @@ class HttpApi(
|
|
|
16415
16535
|
label=label,
|
|
16416
16536
|
period=period,
|
|
16417
16537
|
region=region,
|
|
16538
|
+
stack_account=stack_account,
|
|
16539
|
+
stack_region=stack_region,
|
|
16418
16540
|
statistic=statistic,
|
|
16419
16541
|
unit=unit,
|
|
16420
16542
|
)
|
|
@@ -16431,6 +16553,8 @@ class HttpApi(
|
|
|
16431
16553
|
label: typing.Optional[builtins.str] = None,
|
|
16432
16554
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
16433
16555
|
region: typing.Optional[builtins.str] = None,
|
|
16556
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
16557
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
16434
16558
|
statistic: typing.Optional[builtins.str] = None,
|
|
16435
16559
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
16436
16560
|
) -> _Metric_e396a4dc:
|
|
@@ -16444,6 +16568,8 @@ class HttpApi(
|
|
|
16444
16568
|
: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
|
|
16445
16569
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
16446
16570
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
16571
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
16572
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
16447
16573
|
: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
|
|
16448
16574
|
: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
|
|
16449
16575
|
'''
|
|
@@ -16454,6 +16580,8 @@ class HttpApi(
|
|
|
16454
16580
|
label=label,
|
|
16455
16581
|
period=period,
|
|
16456
16582
|
region=region,
|
|
16583
|
+
stack_account=stack_account,
|
|
16584
|
+
stack_region=stack_region,
|
|
16457
16585
|
statistic=statistic,
|
|
16458
16586
|
unit=unit,
|
|
16459
16587
|
)
|
|
@@ -16470,6 +16598,8 @@ class HttpApi(
|
|
|
16470
16598
|
label: typing.Optional[builtins.str] = None,
|
|
16471
16599
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
16472
16600
|
region: typing.Optional[builtins.str] = None,
|
|
16601
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
16602
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
16473
16603
|
statistic: typing.Optional[builtins.str] = None,
|
|
16474
16604
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
16475
16605
|
) -> _Metric_e396a4dc:
|
|
@@ -16481,6 +16611,8 @@ class HttpApi(
|
|
|
16481
16611
|
: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
|
|
16482
16612
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
16483
16613
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
16614
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
16615
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
16484
16616
|
: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
|
|
16485
16617
|
: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
|
|
16486
16618
|
'''
|
|
@@ -16491,6 +16623,8 @@ class HttpApi(
|
|
|
16491
16623
|
label=label,
|
|
16492
16624
|
period=period,
|
|
16493
16625
|
region=region,
|
|
16626
|
+
stack_account=stack_account,
|
|
16627
|
+
stack_region=stack_region,
|
|
16494
16628
|
statistic=statistic,
|
|
16495
16629
|
unit=unit,
|
|
16496
16630
|
)
|
|
@@ -17242,6 +17376,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17242
17376
|
label: typing.Optional[builtins.str] = None,
|
|
17243
17377
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17244
17378
|
region: typing.Optional[builtins.str] = None,
|
|
17379
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17380
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17245
17381
|
statistic: typing.Optional[builtins.str] = None,
|
|
17246
17382
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17247
17383
|
) -> _Metric_e396a4dc:
|
|
@@ -17253,6 +17389,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17253
17389
|
: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
|
|
17254
17390
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17255
17391
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17392
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17393
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17256
17394
|
: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
|
|
17257
17395
|
: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
|
|
17258
17396
|
|
|
@@ -17270,6 +17408,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17270
17408
|
label: typing.Optional[builtins.str] = None,
|
|
17271
17409
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17272
17410
|
region: typing.Optional[builtins.str] = None,
|
|
17411
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17412
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17273
17413
|
statistic: typing.Optional[builtins.str] = None,
|
|
17274
17414
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17275
17415
|
) -> _Metric_e396a4dc:
|
|
@@ -17281,6 +17421,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17281
17421
|
: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
|
|
17282
17422
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17283
17423
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17424
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17425
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17284
17426
|
: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
|
|
17285
17427
|
: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
|
|
17286
17428
|
|
|
@@ -17298,6 +17440,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17298
17440
|
label: typing.Optional[builtins.str] = None,
|
|
17299
17441
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17300
17442
|
region: typing.Optional[builtins.str] = None,
|
|
17443
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17444
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17301
17445
|
statistic: typing.Optional[builtins.str] = None,
|
|
17302
17446
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17303
17447
|
) -> _Metric_e396a4dc:
|
|
@@ -17309,6 +17453,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17309
17453
|
: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
|
|
17310
17454
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17311
17455
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17456
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17457
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17312
17458
|
: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
|
|
17313
17459
|
: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
|
|
17314
17460
|
|
|
@@ -17326,6 +17472,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17326
17472
|
label: typing.Optional[builtins.str] = None,
|
|
17327
17473
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17328
17474
|
region: typing.Optional[builtins.str] = None,
|
|
17475
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17476
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17329
17477
|
statistic: typing.Optional[builtins.str] = None,
|
|
17330
17478
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17331
17479
|
) -> _Metric_e396a4dc:
|
|
@@ -17337,6 +17485,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17337
17485
|
: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
|
|
17338
17486
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17339
17487
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17488
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17489
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17340
17490
|
: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
|
|
17341
17491
|
: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
|
|
17342
17492
|
|
|
@@ -17354,6 +17504,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17354
17504
|
label: typing.Optional[builtins.str] = None,
|
|
17355
17505
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17356
17506
|
region: typing.Optional[builtins.str] = None,
|
|
17507
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17508
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17357
17509
|
statistic: typing.Optional[builtins.str] = None,
|
|
17358
17510
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17359
17511
|
) -> _Metric_e396a4dc:
|
|
@@ -17367,6 +17519,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17367
17519
|
: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
|
|
17368
17520
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17369
17521
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17522
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17523
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17370
17524
|
: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
|
|
17371
17525
|
: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
|
|
17372
17526
|
|
|
@@ -17384,6 +17538,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17384
17538
|
label: typing.Optional[builtins.str] = None,
|
|
17385
17539
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17386
17540
|
region: typing.Optional[builtins.str] = None,
|
|
17541
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17542
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17387
17543
|
statistic: typing.Optional[builtins.str] = None,
|
|
17388
17544
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17389
17545
|
) -> _Metric_e396a4dc:
|
|
@@ -17395,6 +17551,8 @@ class IHttpStage(IStage, typing_extensions.Protocol):
|
|
|
17395
17551
|
: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
|
|
17396
17552
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17397
17553
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17554
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17555
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17398
17556
|
: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
|
|
17399
17557
|
: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
|
|
17400
17558
|
|
|
@@ -17432,6 +17590,8 @@ class _IHttpStageProxy(
|
|
|
17432
17590
|
label: typing.Optional[builtins.str] = None,
|
|
17433
17591
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17434
17592
|
region: typing.Optional[builtins.str] = None,
|
|
17593
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17594
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17435
17595
|
statistic: typing.Optional[builtins.str] = None,
|
|
17436
17596
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17437
17597
|
) -> _Metric_e396a4dc:
|
|
@@ -17443,6 +17603,8 @@ class _IHttpStageProxy(
|
|
|
17443
17603
|
: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
|
|
17444
17604
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17445
17605
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17606
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17607
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17446
17608
|
: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
|
|
17447
17609
|
: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
|
|
17448
17610
|
|
|
@@ -17455,6 +17617,8 @@ class _IHttpStageProxy(
|
|
|
17455
17617
|
label=label,
|
|
17456
17618
|
period=period,
|
|
17457
17619
|
region=region,
|
|
17620
|
+
stack_account=stack_account,
|
|
17621
|
+
stack_region=stack_region,
|
|
17458
17622
|
statistic=statistic,
|
|
17459
17623
|
unit=unit,
|
|
17460
17624
|
)
|
|
@@ -17471,6 +17635,8 @@ class _IHttpStageProxy(
|
|
|
17471
17635
|
label: typing.Optional[builtins.str] = None,
|
|
17472
17636
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17473
17637
|
region: typing.Optional[builtins.str] = None,
|
|
17638
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17639
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17474
17640
|
statistic: typing.Optional[builtins.str] = None,
|
|
17475
17641
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17476
17642
|
) -> _Metric_e396a4dc:
|
|
@@ -17482,6 +17648,8 @@ class _IHttpStageProxy(
|
|
|
17482
17648
|
: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
|
|
17483
17649
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17484
17650
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17651
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17652
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17485
17653
|
: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
|
|
17486
17654
|
: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
|
|
17487
17655
|
|
|
@@ -17494,6 +17662,8 @@ class _IHttpStageProxy(
|
|
|
17494
17662
|
label=label,
|
|
17495
17663
|
period=period,
|
|
17496
17664
|
region=region,
|
|
17665
|
+
stack_account=stack_account,
|
|
17666
|
+
stack_region=stack_region,
|
|
17497
17667
|
statistic=statistic,
|
|
17498
17668
|
unit=unit,
|
|
17499
17669
|
)
|
|
@@ -17510,6 +17680,8 @@ class _IHttpStageProxy(
|
|
|
17510
17680
|
label: typing.Optional[builtins.str] = None,
|
|
17511
17681
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17512
17682
|
region: typing.Optional[builtins.str] = None,
|
|
17683
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17684
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17513
17685
|
statistic: typing.Optional[builtins.str] = None,
|
|
17514
17686
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17515
17687
|
) -> _Metric_e396a4dc:
|
|
@@ -17521,6 +17693,8 @@ class _IHttpStageProxy(
|
|
|
17521
17693
|
: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
|
|
17522
17694
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17523
17695
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17696
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17697
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17524
17698
|
: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
|
|
17525
17699
|
: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
|
|
17526
17700
|
|
|
@@ -17533,6 +17707,8 @@ class _IHttpStageProxy(
|
|
|
17533
17707
|
label=label,
|
|
17534
17708
|
period=period,
|
|
17535
17709
|
region=region,
|
|
17710
|
+
stack_account=stack_account,
|
|
17711
|
+
stack_region=stack_region,
|
|
17536
17712
|
statistic=statistic,
|
|
17537
17713
|
unit=unit,
|
|
17538
17714
|
)
|
|
@@ -17549,6 +17725,8 @@ class _IHttpStageProxy(
|
|
|
17549
17725
|
label: typing.Optional[builtins.str] = None,
|
|
17550
17726
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17551
17727
|
region: typing.Optional[builtins.str] = None,
|
|
17728
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17729
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17552
17730
|
statistic: typing.Optional[builtins.str] = None,
|
|
17553
17731
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17554
17732
|
) -> _Metric_e396a4dc:
|
|
@@ -17560,6 +17738,8 @@ class _IHttpStageProxy(
|
|
|
17560
17738
|
: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
|
|
17561
17739
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17562
17740
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17741
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17742
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17563
17743
|
: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
|
|
17564
17744
|
: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
|
|
17565
17745
|
|
|
@@ -17572,6 +17752,8 @@ class _IHttpStageProxy(
|
|
|
17572
17752
|
label=label,
|
|
17573
17753
|
period=period,
|
|
17574
17754
|
region=region,
|
|
17755
|
+
stack_account=stack_account,
|
|
17756
|
+
stack_region=stack_region,
|
|
17575
17757
|
statistic=statistic,
|
|
17576
17758
|
unit=unit,
|
|
17577
17759
|
)
|
|
@@ -17588,6 +17770,8 @@ class _IHttpStageProxy(
|
|
|
17588
17770
|
label: typing.Optional[builtins.str] = None,
|
|
17589
17771
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17590
17772
|
region: typing.Optional[builtins.str] = None,
|
|
17773
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17774
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17591
17775
|
statistic: typing.Optional[builtins.str] = None,
|
|
17592
17776
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17593
17777
|
) -> _Metric_e396a4dc:
|
|
@@ -17601,6 +17785,8 @@ class _IHttpStageProxy(
|
|
|
17601
17785
|
: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
|
|
17602
17786
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17603
17787
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17788
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17789
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17604
17790
|
: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
|
|
17605
17791
|
: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
|
|
17606
17792
|
|
|
@@ -17613,6 +17799,8 @@ class _IHttpStageProxy(
|
|
|
17613
17799
|
label=label,
|
|
17614
17800
|
period=period,
|
|
17615
17801
|
region=region,
|
|
17802
|
+
stack_account=stack_account,
|
|
17803
|
+
stack_region=stack_region,
|
|
17616
17804
|
statistic=statistic,
|
|
17617
17805
|
unit=unit,
|
|
17618
17806
|
)
|
|
@@ -17629,6 +17817,8 @@ class _IHttpStageProxy(
|
|
|
17629
17817
|
label: typing.Optional[builtins.str] = None,
|
|
17630
17818
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17631
17819
|
region: typing.Optional[builtins.str] = None,
|
|
17820
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17821
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17632
17822
|
statistic: typing.Optional[builtins.str] = None,
|
|
17633
17823
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17634
17824
|
) -> _Metric_e396a4dc:
|
|
@@ -17640,6 +17830,8 @@ class _IHttpStageProxy(
|
|
|
17640
17830
|
: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
|
|
17641
17831
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17642
17832
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
17833
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
17834
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17643
17835
|
: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
|
|
17644
17836
|
: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
|
|
17645
17837
|
|
|
@@ -17652,6 +17844,8 @@ class _IHttpStageProxy(
|
|
|
17652
17844
|
label=label,
|
|
17653
17845
|
period=period,
|
|
17654
17846
|
region=region,
|
|
17847
|
+
stack_account=stack_account,
|
|
17848
|
+
stack_region=stack_region,
|
|
17655
17849
|
statistic=statistic,
|
|
17656
17850
|
unit=unit,
|
|
17657
17851
|
)
|
|
@@ -17981,6 +18175,8 @@ class HttpStage(
|
|
|
17981
18175
|
label: typing.Optional[builtins.str] = None,
|
|
17982
18176
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17983
18177
|
region: typing.Optional[builtins.str] = None,
|
|
18178
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18179
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17984
18180
|
statistic: typing.Optional[builtins.str] = None,
|
|
17985
18181
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17986
18182
|
) -> _Metric_e396a4dc:
|
|
@@ -17993,6 +18189,8 @@ class HttpStage(
|
|
|
17993
18189
|
: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
|
|
17994
18190
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
17995
18191
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18192
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18193
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
17996
18194
|
: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
|
|
17997
18195
|
: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
|
|
17998
18196
|
'''
|
|
@@ -18006,6 +18204,8 @@ class HttpStage(
|
|
|
18006
18204
|
label=label,
|
|
18007
18205
|
period=period,
|
|
18008
18206
|
region=region,
|
|
18207
|
+
stack_account=stack_account,
|
|
18208
|
+
stack_region=stack_region,
|
|
18009
18209
|
statistic=statistic,
|
|
18010
18210
|
unit=unit,
|
|
18011
18211
|
)
|
|
@@ -18022,6 +18222,8 @@ class HttpStage(
|
|
|
18022
18222
|
label: typing.Optional[builtins.str] = None,
|
|
18023
18223
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18024
18224
|
region: typing.Optional[builtins.str] = None,
|
|
18225
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18226
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18025
18227
|
statistic: typing.Optional[builtins.str] = None,
|
|
18026
18228
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18027
18229
|
) -> _Metric_e396a4dc:
|
|
@@ -18033,6 +18235,8 @@ class HttpStage(
|
|
|
18033
18235
|
: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
|
|
18034
18236
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18035
18237
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18238
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18239
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18036
18240
|
: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
|
|
18037
18241
|
: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
|
|
18038
18242
|
'''
|
|
@@ -18043,6 +18247,8 @@ class HttpStage(
|
|
|
18043
18247
|
label=label,
|
|
18044
18248
|
period=period,
|
|
18045
18249
|
region=region,
|
|
18250
|
+
stack_account=stack_account,
|
|
18251
|
+
stack_region=stack_region,
|
|
18046
18252
|
statistic=statistic,
|
|
18047
18253
|
unit=unit,
|
|
18048
18254
|
)
|
|
@@ -18059,6 +18265,8 @@ class HttpStage(
|
|
|
18059
18265
|
label: typing.Optional[builtins.str] = None,
|
|
18060
18266
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18061
18267
|
region: typing.Optional[builtins.str] = None,
|
|
18268
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18269
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18062
18270
|
statistic: typing.Optional[builtins.str] = None,
|
|
18063
18271
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18064
18272
|
) -> _Metric_e396a4dc:
|
|
@@ -18070,6 +18278,8 @@ class HttpStage(
|
|
|
18070
18278
|
: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
|
|
18071
18279
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18072
18280
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18281
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18282
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18073
18283
|
: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
|
|
18074
18284
|
: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
|
|
18075
18285
|
'''
|
|
@@ -18080,6 +18290,8 @@ class HttpStage(
|
|
|
18080
18290
|
label=label,
|
|
18081
18291
|
period=period,
|
|
18082
18292
|
region=region,
|
|
18293
|
+
stack_account=stack_account,
|
|
18294
|
+
stack_region=stack_region,
|
|
18083
18295
|
statistic=statistic,
|
|
18084
18296
|
unit=unit,
|
|
18085
18297
|
)
|
|
@@ -18096,6 +18308,8 @@ class HttpStage(
|
|
|
18096
18308
|
label: typing.Optional[builtins.str] = None,
|
|
18097
18309
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18098
18310
|
region: typing.Optional[builtins.str] = None,
|
|
18311
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18312
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18099
18313
|
statistic: typing.Optional[builtins.str] = None,
|
|
18100
18314
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18101
18315
|
) -> _Metric_e396a4dc:
|
|
@@ -18107,6 +18321,8 @@ class HttpStage(
|
|
|
18107
18321
|
: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
|
|
18108
18322
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18109
18323
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18324
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18325
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18110
18326
|
: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
|
|
18111
18327
|
: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
|
|
18112
18328
|
'''
|
|
@@ -18117,6 +18333,8 @@ class HttpStage(
|
|
|
18117
18333
|
label=label,
|
|
18118
18334
|
period=period,
|
|
18119
18335
|
region=region,
|
|
18336
|
+
stack_account=stack_account,
|
|
18337
|
+
stack_region=stack_region,
|
|
18120
18338
|
statistic=statistic,
|
|
18121
18339
|
unit=unit,
|
|
18122
18340
|
)
|
|
@@ -18133,6 +18351,8 @@ class HttpStage(
|
|
|
18133
18351
|
label: typing.Optional[builtins.str] = None,
|
|
18134
18352
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18135
18353
|
region: typing.Optional[builtins.str] = None,
|
|
18354
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18355
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18136
18356
|
statistic: typing.Optional[builtins.str] = None,
|
|
18137
18357
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18138
18358
|
) -> _Metric_e396a4dc:
|
|
@@ -18144,6 +18364,8 @@ class HttpStage(
|
|
|
18144
18364
|
: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
|
|
18145
18365
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18146
18366
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18367
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18368
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18147
18369
|
: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
|
|
18148
18370
|
: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
|
|
18149
18371
|
'''
|
|
@@ -18154,6 +18376,8 @@ class HttpStage(
|
|
|
18154
18376
|
label=label,
|
|
18155
18377
|
period=period,
|
|
18156
18378
|
region=region,
|
|
18379
|
+
stack_account=stack_account,
|
|
18380
|
+
stack_region=stack_region,
|
|
18157
18381
|
statistic=statistic,
|
|
18158
18382
|
unit=unit,
|
|
18159
18383
|
)
|
|
@@ -18170,6 +18394,8 @@ class HttpStage(
|
|
|
18170
18394
|
label: typing.Optional[builtins.str] = None,
|
|
18171
18395
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18172
18396
|
region: typing.Optional[builtins.str] = None,
|
|
18397
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18398
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18173
18399
|
statistic: typing.Optional[builtins.str] = None,
|
|
18174
18400
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18175
18401
|
) -> _Metric_e396a4dc:
|
|
@@ -18183,6 +18409,8 @@ class HttpStage(
|
|
|
18183
18409
|
: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
|
|
18184
18410
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18185
18411
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18412
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18413
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18186
18414
|
: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
|
|
18187
18415
|
: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
|
|
18188
18416
|
'''
|
|
@@ -18193,6 +18421,8 @@ class HttpStage(
|
|
|
18193
18421
|
label=label,
|
|
18194
18422
|
period=period,
|
|
18195
18423
|
region=region,
|
|
18424
|
+
stack_account=stack_account,
|
|
18425
|
+
stack_region=stack_region,
|
|
18196
18426
|
statistic=statistic,
|
|
18197
18427
|
unit=unit,
|
|
18198
18428
|
)
|
|
@@ -18209,6 +18439,8 @@ class HttpStage(
|
|
|
18209
18439
|
label: typing.Optional[builtins.str] = None,
|
|
18210
18440
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18211
18441
|
region: typing.Optional[builtins.str] = None,
|
|
18442
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18443
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18212
18444
|
statistic: typing.Optional[builtins.str] = None,
|
|
18213
18445
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18214
18446
|
) -> _Metric_e396a4dc:
|
|
@@ -18220,6 +18452,8 @@ class HttpStage(
|
|
|
18220
18452
|
: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
|
|
18221
18453
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
18222
18454
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
18455
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
18456
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
18223
18457
|
: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
|
|
18224
18458
|
: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
|
|
18225
18459
|
'''
|
|
@@ -18230,6 +18464,8 @@ class HttpStage(
|
|
|
18230
18464
|
label=label,
|
|
18231
18465
|
period=period,
|
|
18232
18466
|
region=region,
|
|
18467
|
+
stack_account=stack_account,
|
|
18468
|
+
stack_region=stack_region,
|
|
18233
18469
|
statistic=statistic,
|
|
18234
18470
|
unit=unit,
|
|
18235
18471
|
)
|
|
@@ -19968,6 +20204,8 @@ def _typecheckingstub__c88a55b08f170ef03ef7ee65891d47150923f5d517c30630b947b1c74
|
|
|
19968
20204
|
label: typing.Optional[builtins.str] = None,
|
|
19969
20205
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19970
20206
|
region: typing.Optional[builtins.str] = None,
|
|
20207
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
20208
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19971
20209
|
statistic: typing.Optional[builtins.str] = None,
|
|
19972
20210
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19973
20211
|
) -> None:
|
|
@@ -19991,6 +20229,8 @@ def _typecheckingstub__d4b9c7a822660da49cf87c3fc29340609a45b07f2b21e9c3832e9a550
|
|
|
19991
20229
|
label: typing.Optional[builtins.str] = None,
|
|
19992
20230
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
19993
20231
|
region: typing.Optional[builtins.str] = None,
|
|
20232
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
20233
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
19994
20234
|
statistic: typing.Optional[builtins.str] = None,
|
|
19995
20235
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
19996
20236
|
) -> None:
|
|
@@ -20260,6 +20500,8 @@ def _typecheckingstub__8ea2af8d6aef7e127f3feb093668fe567793f3442bb0838c12dde2c9a
|
|
|
20260
20500
|
label: typing.Optional[builtins.str] = None,
|
|
20261
20501
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
20262
20502
|
region: typing.Optional[builtins.str] = None,
|
|
20503
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
20504
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
20263
20505
|
statistic: typing.Optional[builtins.str] = None,
|
|
20264
20506
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
20265
20507
|
) -> None:
|
|
@@ -20491,6 +20733,8 @@ def _typecheckingstub__ce6a35c70788359cc1bb6c49bb69e812f1a7d395b852c2430a0a6dac3
|
|
|
20491
20733
|
label: typing.Optional[builtins.str] = None,
|
|
20492
20734
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
20493
20735
|
region: typing.Optional[builtins.str] = None,
|
|
20736
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
20737
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
20494
20738
|
statistic: typing.Optional[builtins.str] = None,
|
|
20495
20739
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
20496
20740
|
) -> None:
|
|
@@ -20645,6 +20889,8 @@ def _typecheckingstub__31e154e9541eb25c25b2ca77a4523aa38748dc392dd466816c178cb31
|
|
|
20645
20889
|
label: typing.Optional[builtins.str] = None,
|
|
20646
20890
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
20647
20891
|
region: typing.Optional[builtins.str] = None,
|
|
20892
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
20893
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
20648
20894
|
statistic: typing.Optional[builtins.str] = None,
|
|
20649
20895
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
20650
20896
|
) -> None:
|
|
@@ -20792,6 +21038,8 @@ def _typecheckingstub__500452af5f3368ca0335b3b0a1f3ad3606a8d42f9416ce2e98f133fb0
|
|
|
20792
21038
|
label: typing.Optional[builtins.str] = None,
|
|
20793
21039
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
20794
21040
|
region: typing.Optional[builtins.str] = None,
|
|
21041
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
21042
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
20795
21043
|
statistic: typing.Optional[builtins.str] = None,
|
|
20796
21044
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
20797
21045
|
) -> None:
|