aws-cdk-lib 2.203.0__py3-none-any.whl → 2.204.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/__init__.py +38 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.203.0.jsii.tgz → aws-cdk-lib@2.204.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +412 -0
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cloudfront/__init__.py +92 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudwatch/__init__.py +217 -23
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dynamodb/__init__.py +316 -2
- aws_cdk/aws_ec2/__init__.py +94 -0
- aws_cdk/aws_ecs/__init__.py +52 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +100 -0
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_rds/__init__.py +384 -0
- aws_cdk/aws_scheduler/__init__.py +210 -0
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +18 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/RECORD +33 -33
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/top_level.txt +0 -0
|
@@ -6881,6 +6881,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6881
6881
|
account: typing.Optional[builtins.str] = None,
|
|
6882
6882
|
color: typing.Optional[builtins.str] = None,
|
|
6883
6883
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6884
|
+
id: typing.Optional[builtins.str] = None,
|
|
6884
6885
|
label: typing.Optional[builtins.str] = None,
|
|
6885
6886
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6886
6887
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6888,6 +6889,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6888
6889
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6889
6890
|
statistic: typing.Optional[builtins.str] = None,
|
|
6890
6891
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6892
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6891
6893
|
) -> _Metric_e396a4dc:
|
|
6892
6894
|
'''Return the given named metric for this domain.
|
|
6893
6895
|
|
|
@@ -6895,6 +6897,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6895
6897
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
6896
6898
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
6897
6899
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
6900
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
6898
6901
|
: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
|
|
6899
6902
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6900
6903
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -6902,6 +6905,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6902
6905
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6903
6906
|
: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
|
|
6904
6907
|
: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
|
|
6908
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
6905
6909
|
'''
|
|
6906
6910
|
...
|
|
6907
6911
|
|
|
@@ -6912,6 +6916,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6912
6916
|
account: typing.Optional[builtins.str] = None,
|
|
6913
6917
|
color: typing.Optional[builtins.str] = None,
|
|
6914
6918
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6919
|
+
id: typing.Optional[builtins.str] = None,
|
|
6915
6920
|
label: typing.Optional[builtins.str] = None,
|
|
6916
6921
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6917
6922
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6919,12 +6924,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6919
6924
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6920
6925
|
statistic: typing.Optional[builtins.str] = None,
|
|
6921
6926
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6927
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6922
6928
|
) -> _Metric_e396a4dc:
|
|
6923
6929
|
'''Metric for automated snapshot failures.
|
|
6924
6930
|
|
|
6925
6931
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
6926
6932
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
6927
6933
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
6934
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
6928
6935
|
: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
|
|
6929
6936
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6930
6937
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -6932,6 +6939,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6932
6939
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6933
6940
|
: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
|
|
6934
6941
|
: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
|
|
6942
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
6935
6943
|
|
|
6936
6944
|
:default: maximum over 5 minutes
|
|
6937
6945
|
'''
|
|
@@ -6944,6 +6952,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6944
6952
|
account: typing.Optional[builtins.str] = None,
|
|
6945
6953
|
color: typing.Optional[builtins.str] = None,
|
|
6946
6954
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6955
|
+
id: typing.Optional[builtins.str] = None,
|
|
6947
6956
|
label: typing.Optional[builtins.str] = None,
|
|
6948
6957
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6949
6958
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6951,12 +6960,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6951
6960
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6952
6961
|
statistic: typing.Optional[builtins.str] = None,
|
|
6953
6962
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6963
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6954
6964
|
) -> _Metric_e396a4dc:
|
|
6955
6965
|
'''Metric for the cluster blocking index writes.
|
|
6956
6966
|
|
|
6957
6967
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
6958
6968
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
6959
6969
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
6970
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
6960
6971
|
: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
|
|
6961
6972
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6962
6973
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -6964,6 +6975,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6964
6975
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6965
6976
|
: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
|
|
6966
6977
|
: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
|
|
6978
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
6967
6979
|
|
|
6968
6980
|
:default: maximum over 1 minute
|
|
6969
6981
|
'''
|
|
@@ -6976,6 +6988,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6976
6988
|
account: typing.Optional[builtins.str] = None,
|
|
6977
6989
|
color: typing.Optional[builtins.str] = None,
|
|
6978
6990
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6991
|
+
id: typing.Optional[builtins.str] = None,
|
|
6979
6992
|
label: typing.Optional[builtins.str] = None,
|
|
6980
6993
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6981
6994
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6983,12 +6996,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6983
6996
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6984
6997
|
statistic: typing.Optional[builtins.str] = None,
|
|
6985
6998
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6999
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6986
7000
|
) -> _Metric_e396a4dc:
|
|
6987
7001
|
'''Metric for the time the cluster status is red.
|
|
6988
7002
|
|
|
6989
7003
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
6990
7004
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
6991
7005
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7006
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
6992
7007
|
: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
|
|
6993
7008
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6994
7009
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -6996,6 +7011,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
6996
7011
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6997
7012
|
: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
|
|
6998
7013
|
: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
|
|
7014
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
6999
7015
|
|
|
7000
7016
|
:default: maximum over 5 minutes
|
|
7001
7017
|
'''
|
|
@@ -7008,6 +7024,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7008
7024
|
account: typing.Optional[builtins.str] = None,
|
|
7009
7025
|
color: typing.Optional[builtins.str] = None,
|
|
7010
7026
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7027
|
+
id: typing.Optional[builtins.str] = None,
|
|
7011
7028
|
label: typing.Optional[builtins.str] = None,
|
|
7012
7029
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7013
7030
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7015,12 +7032,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7015
7032
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7016
7033
|
statistic: typing.Optional[builtins.str] = None,
|
|
7017
7034
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7035
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7018
7036
|
) -> _Metric_e396a4dc:
|
|
7019
7037
|
'''Metric for the time the cluster status is yellow.
|
|
7020
7038
|
|
|
7021
7039
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7022
7040
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7023
7041
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7042
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7024
7043
|
: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
|
|
7025
7044
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7026
7045
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7028,6 +7047,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7028
7047
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7029
7048
|
: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
|
|
7030
7049
|
: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
|
|
7050
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7031
7051
|
|
|
7032
7052
|
:default: maximum over 5 minutes
|
|
7033
7053
|
'''
|
|
@@ -7040,6 +7060,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7040
7060
|
account: typing.Optional[builtins.str] = None,
|
|
7041
7061
|
color: typing.Optional[builtins.str] = None,
|
|
7042
7062
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7063
|
+
id: typing.Optional[builtins.str] = None,
|
|
7043
7064
|
label: typing.Optional[builtins.str] = None,
|
|
7044
7065
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7045
7066
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7047,12 +7068,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7047
7068
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7048
7069
|
statistic: typing.Optional[builtins.str] = None,
|
|
7049
7070
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7071
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7050
7072
|
) -> _Metric_e396a4dc:
|
|
7051
7073
|
'''Metric for CPU utilization.
|
|
7052
7074
|
|
|
7053
7075
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7054
7076
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7055
7077
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7078
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7056
7079
|
: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
|
|
7057
7080
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7058
7081
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7060,6 +7083,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7060
7083
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7061
7084
|
: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
|
|
7062
7085
|
: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
|
|
7086
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7063
7087
|
|
|
7064
7088
|
:default: maximum over 5 minutes
|
|
7065
7089
|
'''
|
|
@@ -7072,6 +7096,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7072
7096
|
account: typing.Optional[builtins.str] = None,
|
|
7073
7097
|
color: typing.Optional[builtins.str] = None,
|
|
7074
7098
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7099
|
+
id: typing.Optional[builtins.str] = None,
|
|
7075
7100
|
label: typing.Optional[builtins.str] = None,
|
|
7076
7101
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7077
7102
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7079,12 +7104,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7079
7104
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7080
7105
|
statistic: typing.Optional[builtins.str] = None,
|
|
7081
7106
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7107
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7082
7108
|
) -> _Metric_e396a4dc:
|
|
7083
7109
|
'''Metric for the storage space of nodes in the cluster.
|
|
7084
7110
|
|
|
7085
7111
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7086
7112
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7087
7113
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7114
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7088
7115
|
: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
|
|
7089
7116
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7090
7117
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7092,6 +7119,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7092
7119
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7093
7120
|
: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
|
|
7094
7121
|
: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
|
|
7122
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7095
7123
|
|
|
7096
7124
|
:default: minimum over 5 minutes
|
|
7097
7125
|
'''
|
|
@@ -7104,6 +7132,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7104
7132
|
account: typing.Optional[builtins.str] = None,
|
|
7105
7133
|
color: typing.Optional[builtins.str] = None,
|
|
7106
7134
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7135
|
+
id: typing.Optional[builtins.str] = None,
|
|
7107
7136
|
label: typing.Optional[builtins.str] = None,
|
|
7108
7137
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7109
7138
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7111,12 +7140,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7111
7140
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7112
7141
|
statistic: typing.Optional[builtins.str] = None,
|
|
7113
7142
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7143
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7114
7144
|
) -> _Metric_e396a4dc:
|
|
7115
7145
|
'''Metric for indexing latency.
|
|
7116
7146
|
|
|
7117
7147
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7118
7148
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7119
7149
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7150
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7120
7151
|
: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
|
|
7121
7152
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7122
7153
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7124,6 +7155,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7124
7155
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7125
7156
|
: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
|
|
7126
7157
|
: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
|
|
7158
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7127
7159
|
|
|
7128
7160
|
:default: p99 over 5 minutes
|
|
7129
7161
|
'''
|
|
@@ -7136,6 +7168,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7136
7168
|
account: typing.Optional[builtins.str] = None,
|
|
7137
7169
|
color: typing.Optional[builtins.str] = None,
|
|
7138
7170
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7171
|
+
id: typing.Optional[builtins.str] = None,
|
|
7139
7172
|
label: typing.Optional[builtins.str] = None,
|
|
7140
7173
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7141
7174
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7143,12 +7176,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7143
7176
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7144
7177
|
statistic: typing.Optional[builtins.str] = None,
|
|
7145
7178
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7179
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7146
7180
|
) -> _Metric_e396a4dc:
|
|
7147
7181
|
'''Metric for JVM memory pressure.
|
|
7148
7182
|
|
|
7149
7183
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7150
7184
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7151
7185
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7186
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7152
7187
|
: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
|
|
7153
7188
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7154
7189
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7156,6 +7191,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7156
7191
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7157
7192
|
: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
|
|
7158
7193
|
: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
|
|
7194
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7159
7195
|
|
|
7160
7196
|
:default: maximum over 5 minutes
|
|
7161
7197
|
'''
|
|
@@ -7168,6 +7204,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7168
7204
|
account: typing.Optional[builtins.str] = None,
|
|
7169
7205
|
color: typing.Optional[builtins.str] = None,
|
|
7170
7206
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7207
|
+
id: typing.Optional[builtins.str] = None,
|
|
7171
7208
|
label: typing.Optional[builtins.str] = None,
|
|
7172
7209
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7173
7210
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7175,12 +7212,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7175
7212
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7176
7213
|
statistic: typing.Optional[builtins.str] = None,
|
|
7177
7214
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7215
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7178
7216
|
) -> _Metric_e396a4dc:
|
|
7179
7217
|
'''Metric for KMS key errors.
|
|
7180
7218
|
|
|
7181
7219
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7182
7220
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7183
7221
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7222
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7184
7223
|
: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
|
|
7185
7224
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7186
7225
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7188,6 +7227,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7188
7227
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7189
7228
|
: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
|
|
7190
7229
|
: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
|
|
7230
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7191
7231
|
|
|
7192
7232
|
:default: maximum over 5 minutes
|
|
7193
7233
|
'''
|
|
@@ -7200,6 +7240,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7200
7240
|
account: typing.Optional[builtins.str] = None,
|
|
7201
7241
|
color: typing.Optional[builtins.str] = None,
|
|
7202
7242
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7243
|
+
id: typing.Optional[builtins.str] = None,
|
|
7203
7244
|
label: typing.Optional[builtins.str] = None,
|
|
7204
7245
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7205
7246
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7207,12 +7248,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7207
7248
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7208
7249
|
statistic: typing.Optional[builtins.str] = None,
|
|
7209
7250
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7251
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7210
7252
|
) -> _Metric_e396a4dc:
|
|
7211
7253
|
'''Metric for KMS key being inaccessible.
|
|
7212
7254
|
|
|
7213
7255
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7214
7256
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7215
7257
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7258
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7216
7259
|
: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
|
|
7217
7260
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7218
7261
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7220,6 +7263,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7220
7263
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7221
7264
|
: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
|
|
7222
7265
|
: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
|
|
7266
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7223
7267
|
|
|
7224
7268
|
:default: maximum over 5 minutes
|
|
7225
7269
|
'''
|
|
@@ -7232,6 +7276,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7232
7276
|
account: typing.Optional[builtins.str] = None,
|
|
7233
7277
|
color: typing.Optional[builtins.str] = None,
|
|
7234
7278
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7279
|
+
id: typing.Optional[builtins.str] = None,
|
|
7235
7280
|
label: typing.Optional[builtins.str] = None,
|
|
7236
7281
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7237
7282
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7239,12 +7284,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7239
7284
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7240
7285
|
statistic: typing.Optional[builtins.str] = None,
|
|
7241
7286
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7287
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7242
7288
|
) -> _Metric_e396a4dc:
|
|
7243
7289
|
'''Metric for master CPU utilization.
|
|
7244
7290
|
|
|
7245
7291
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7246
7292
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7247
7293
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7294
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7248
7295
|
: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
|
|
7249
7296
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7250
7297
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7252,6 +7299,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7252
7299
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7253
7300
|
: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
|
|
7254
7301
|
: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
|
|
7302
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7255
7303
|
|
|
7256
7304
|
:default: maximum over 5 minutes
|
|
7257
7305
|
'''
|
|
@@ -7264,6 +7312,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7264
7312
|
account: typing.Optional[builtins.str] = None,
|
|
7265
7313
|
color: typing.Optional[builtins.str] = None,
|
|
7266
7314
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7315
|
+
id: typing.Optional[builtins.str] = None,
|
|
7267
7316
|
label: typing.Optional[builtins.str] = None,
|
|
7268
7317
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7269
7318
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7271,12 +7320,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7271
7320
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7272
7321
|
statistic: typing.Optional[builtins.str] = None,
|
|
7273
7322
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7323
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7274
7324
|
) -> _Metric_e396a4dc:
|
|
7275
7325
|
'''Metric for master JVM memory pressure.
|
|
7276
7326
|
|
|
7277
7327
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7278
7328
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7279
7329
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7330
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7280
7331
|
: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
|
|
7281
7332
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7282
7333
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7284,6 +7335,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7284
7335
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7285
7336
|
: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
|
|
7286
7337
|
: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
|
|
7338
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7287
7339
|
|
|
7288
7340
|
:default: maximum over 5 minutes
|
|
7289
7341
|
'''
|
|
@@ -7296,6 +7348,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7296
7348
|
account: typing.Optional[builtins.str] = None,
|
|
7297
7349
|
color: typing.Optional[builtins.str] = None,
|
|
7298
7350
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7351
|
+
id: typing.Optional[builtins.str] = None,
|
|
7299
7352
|
label: typing.Optional[builtins.str] = None,
|
|
7300
7353
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7301
7354
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7303,12 +7356,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7303
7356
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7304
7357
|
statistic: typing.Optional[builtins.str] = None,
|
|
7305
7358
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7359
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7306
7360
|
) -> _Metric_e396a4dc:
|
|
7307
7361
|
'''Metric for the number of nodes.
|
|
7308
7362
|
|
|
7309
7363
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7310
7364
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7311
7365
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7366
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7312
7367
|
: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
|
|
7313
7368
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7314
7369
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7316,6 +7371,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7316
7371
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7317
7372
|
: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
|
|
7318
7373
|
: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
|
|
7374
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7319
7375
|
|
|
7320
7376
|
:default: minimum over 1 hour
|
|
7321
7377
|
'''
|
|
@@ -7328,6 +7384,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7328
7384
|
account: typing.Optional[builtins.str] = None,
|
|
7329
7385
|
color: typing.Optional[builtins.str] = None,
|
|
7330
7386
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7387
|
+
id: typing.Optional[builtins.str] = None,
|
|
7331
7388
|
label: typing.Optional[builtins.str] = None,
|
|
7332
7389
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7333
7390
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7335,12 +7392,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7335
7392
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7336
7393
|
statistic: typing.Optional[builtins.str] = None,
|
|
7337
7394
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7395
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7338
7396
|
) -> _Metric_e396a4dc:
|
|
7339
7397
|
'''Metric for number of searchable documents.
|
|
7340
7398
|
|
|
7341
7399
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7342
7400
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7343
7401
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7402
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7344
7403
|
: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
|
|
7345
7404
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7346
7405
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7348,6 +7407,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7348
7407
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7349
7408
|
: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
|
|
7350
7409
|
: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
|
|
7410
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7351
7411
|
|
|
7352
7412
|
:default: maximum over 5 minutes
|
|
7353
7413
|
'''
|
|
@@ -7360,6 +7420,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7360
7420
|
account: typing.Optional[builtins.str] = None,
|
|
7361
7421
|
color: typing.Optional[builtins.str] = None,
|
|
7362
7422
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7423
|
+
id: typing.Optional[builtins.str] = None,
|
|
7363
7424
|
label: typing.Optional[builtins.str] = None,
|
|
7364
7425
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7365
7426
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7367,12 +7428,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7367
7428
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7368
7429
|
statistic: typing.Optional[builtins.str] = None,
|
|
7369
7430
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7431
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7370
7432
|
) -> _Metric_e396a4dc:
|
|
7371
7433
|
'''Metric for search latency.
|
|
7372
7434
|
|
|
7373
7435
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7374
7436
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7375
7437
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7438
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7376
7439
|
: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
|
|
7377
7440
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7378
7441
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7380,6 +7443,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7380
7443
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7381
7444
|
: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
|
|
7382
7445
|
: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
|
|
7446
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7383
7447
|
|
|
7384
7448
|
:default: p99 over 5 minutes
|
|
7385
7449
|
'''
|
|
@@ -7572,6 +7636,7 @@ class _IDomainProxy(
|
|
|
7572
7636
|
account: typing.Optional[builtins.str] = None,
|
|
7573
7637
|
color: typing.Optional[builtins.str] = None,
|
|
7574
7638
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7639
|
+
id: typing.Optional[builtins.str] = None,
|
|
7575
7640
|
label: typing.Optional[builtins.str] = None,
|
|
7576
7641
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7577
7642
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7579,6 +7644,7 @@ class _IDomainProxy(
|
|
|
7579
7644
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7580
7645
|
statistic: typing.Optional[builtins.str] = None,
|
|
7581
7646
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7647
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7582
7648
|
) -> _Metric_e396a4dc:
|
|
7583
7649
|
'''Return the given named metric for this domain.
|
|
7584
7650
|
|
|
@@ -7586,6 +7652,7 @@ class _IDomainProxy(
|
|
|
7586
7652
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7587
7653
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7588
7654
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7655
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7589
7656
|
: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
|
|
7590
7657
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7591
7658
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7593,6 +7660,7 @@ class _IDomainProxy(
|
|
|
7593
7660
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7594
7661
|
: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
|
|
7595
7662
|
: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
|
|
7663
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7596
7664
|
'''
|
|
7597
7665
|
if __debug__:
|
|
7598
7666
|
type_hints = typing.get_type_hints(_typecheckingstub__ed477ecf16b0f23884f9eb3a0a90df530d2486e08c8dd662432a14ff4837bd08)
|
|
@@ -7601,6 +7669,7 @@ class _IDomainProxy(
|
|
|
7601
7669
|
account=account,
|
|
7602
7670
|
color=color,
|
|
7603
7671
|
dimensions_map=dimensions_map,
|
|
7672
|
+
id=id,
|
|
7604
7673
|
label=label,
|
|
7605
7674
|
period=period,
|
|
7606
7675
|
region=region,
|
|
@@ -7608,6 +7677,7 @@ class _IDomainProxy(
|
|
|
7608
7677
|
stack_region=stack_region,
|
|
7609
7678
|
statistic=statistic,
|
|
7610
7679
|
unit=unit,
|
|
7680
|
+
visible=visible,
|
|
7611
7681
|
)
|
|
7612
7682
|
|
|
7613
7683
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -7619,6 +7689,7 @@ class _IDomainProxy(
|
|
|
7619
7689
|
account: typing.Optional[builtins.str] = None,
|
|
7620
7690
|
color: typing.Optional[builtins.str] = None,
|
|
7621
7691
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7692
|
+
id: typing.Optional[builtins.str] = None,
|
|
7622
7693
|
label: typing.Optional[builtins.str] = None,
|
|
7623
7694
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7624
7695
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7626,12 +7697,14 @@ class _IDomainProxy(
|
|
|
7626
7697
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7627
7698
|
statistic: typing.Optional[builtins.str] = None,
|
|
7628
7699
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7700
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7629
7701
|
) -> _Metric_e396a4dc:
|
|
7630
7702
|
'''Metric for automated snapshot failures.
|
|
7631
7703
|
|
|
7632
7704
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7633
7705
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7634
7706
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7707
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7635
7708
|
: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
|
|
7636
7709
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7637
7710
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7639,6 +7712,7 @@ class _IDomainProxy(
|
|
|
7639
7712
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7640
7713
|
: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
|
|
7641
7714
|
: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
|
|
7715
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7642
7716
|
|
|
7643
7717
|
:default: maximum over 5 minutes
|
|
7644
7718
|
'''
|
|
@@ -7646,6 +7720,7 @@ class _IDomainProxy(
|
|
|
7646
7720
|
account=account,
|
|
7647
7721
|
color=color,
|
|
7648
7722
|
dimensions_map=dimensions_map,
|
|
7723
|
+
id=id,
|
|
7649
7724
|
label=label,
|
|
7650
7725
|
period=period,
|
|
7651
7726
|
region=region,
|
|
@@ -7653,6 +7728,7 @@ class _IDomainProxy(
|
|
|
7653
7728
|
stack_region=stack_region,
|
|
7654
7729
|
statistic=statistic,
|
|
7655
7730
|
unit=unit,
|
|
7731
|
+
visible=visible,
|
|
7656
7732
|
)
|
|
7657
7733
|
|
|
7658
7734
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricAutomatedSnapshotFailure", [props]))
|
|
@@ -7664,6 +7740,7 @@ class _IDomainProxy(
|
|
|
7664
7740
|
account: typing.Optional[builtins.str] = None,
|
|
7665
7741
|
color: typing.Optional[builtins.str] = None,
|
|
7666
7742
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7743
|
+
id: typing.Optional[builtins.str] = None,
|
|
7667
7744
|
label: typing.Optional[builtins.str] = None,
|
|
7668
7745
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7669
7746
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7671,12 +7748,14 @@ class _IDomainProxy(
|
|
|
7671
7748
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7672
7749
|
statistic: typing.Optional[builtins.str] = None,
|
|
7673
7750
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7751
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7674
7752
|
) -> _Metric_e396a4dc:
|
|
7675
7753
|
'''Metric for the cluster blocking index writes.
|
|
7676
7754
|
|
|
7677
7755
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7678
7756
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7679
7757
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7758
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7680
7759
|
: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
|
|
7681
7760
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7682
7761
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7684,6 +7763,7 @@ class _IDomainProxy(
|
|
|
7684
7763
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7685
7764
|
: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
|
|
7686
7765
|
: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
|
|
7766
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7687
7767
|
|
|
7688
7768
|
:default: maximum over 1 minute
|
|
7689
7769
|
'''
|
|
@@ -7691,6 +7771,7 @@ class _IDomainProxy(
|
|
|
7691
7771
|
account=account,
|
|
7692
7772
|
color=color,
|
|
7693
7773
|
dimensions_map=dimensions_map,
|
|
7774
|
+
id=id,
|
|
7694
7775
|
label=label,
|
|
7695
7776
|
period=period,
|
|
7696
7777
|
region=region,
|
|
@@ -7698,6 +7779,7 @@ class _IDomainProxy(
|
|
|
7698
7779
|
stack_region=stack_region,
|
|
7699
7780
|
statistic=statistic,
|
|
7700
7781
|
unit=unit,
|
|
7782
|
+
visible=visible,
|
|
7701
7783
|
)
|
|
7702
7784
|
|
|
7703
7785
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterIndexWritesBlocked", [props]))
|
|
@@ -7709,6 +7791,7 @@ class _IDomainProxy(
|
|
|
7709
7791
|
account: typing.Optional[builtins.str] = None,
|
|
7710
7792
|
color: typing.Optional[builtins.str] = None,
|
|
7711
7793
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7794
|
+
id: typing.Optional[builtins.str] = None,
|
|
7712
7795
|
label: typing.Optional[builtins.str] = None,
|
|
7713
7796
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7714
7797
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7716,12 +7799,14 @@ class _IDomainProxy(
|
|
|
7716
7799
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7717
7800
|
statistic: typing.Optional[builtins.str] = None,
|
|
7718
7801
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7802
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7719
7803
|
) -> _Metric_e396a4dc:
|
|
7720
7804
|
'''Metric for the time the cluster status is red.
|
|
7721
7805
|
|
|
7722
7806
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7723
7807
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7724
7808
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7809
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7725
7810
|
: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
|
|
7726
7811
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7727
7812
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7729,6 +7814,7 @@ class _IDomainProxy(
|
|
|
7729
7814
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7730
7815
|
: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
|
|
7731
7816
|
: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
|
|
7817
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7732
7818
|
|
|
7733
7819
|
:default: maximum over 5 minutes
|
|
7734
7820
|
'''
|
|
@@ -7736,6 +7822,7 @@ class _IDomainProxy(
|
|
|
7736
7822
|
account=account,
|
|
7737
7823
|
color=color,
|
|
7738
7824
|
dimensions_map=dimensions_map,
|
|
7825
|
+
id=id,
|
|
7739
7826
|
label=label,
|
|
7740
7827
|
period=period,
|
|
7741
7828
|
region=region,
|
|
@@ -7743,6 +7830,7 @@ class _IDomainProxy(
|
|
|
7743
7830
|
stack_region=stack_region,
|
|
7744
7831
|
statistic=statistic,
|
|
7745
7832
|
unit=unit,
|
|
7833
|
+
visible=visible,
|
|
7746
7834
|
)
|
|
7747
7835
|
|
|
7748
7836
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterStatusRed", [props]))
|
|
@@ -7754,6 +7842,7 @@ class _IDomainProxy(
|
|
|
7754
7842
|
account: typing.Optional[builtins.str] = None,
|
|
7755
7843
|
color: typing.Optional[builtins.str] = None,
|
|
7756
7844
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7845
|
+
id: typing.Optional[builtins.str] = None,
|
|
7757
7846
|
label: typing.Optional[builtins.str] = None,
|
|
7758
7847
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7759
7848
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7761,12 +7850,14 @@ class _IDomainProxy(
|
|
|
7761
7850
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7762
7851
|
statistic: typing.Optional[builtins.str] = None,
|
|
7763
7852
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7853
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7764
7854
|
) -> _Metric_e396a4dc:
|
|
7765
7855
|
'''Metric for the time the cluster status is yellow.
|
|
7766
7856
|
|
|
7767
7857
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7768
7858
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7769
7859
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7860
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7770
7861
|
: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
|
|
7771
7862
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7772
7863
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7774,6 +7865,7 @@ class _IDomainProxy(
|
|
|
7774
7865
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7775
7866
|
: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
|
|
7776
7867
|
: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
|
|
7868
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7777
7869
|
|
|
7778
7870
|
:default: maximum over 5 minutes
|
|
7779
7871
|
'''
|
|
@@ -7781,6 +7873,7 @@ class _IDomainProxy(
|
|
|
7781
7873
|
account=account,
|
|
7782
7874
|
color=color,
|
|
7783
7875
|
dimensions_map=dimensions_map,
|
|
7876
|
+
id=id,
|
|
7784
7877
|
label=label,
|
|
7785
7878
|
period=period,
|
|
7786
7879
|
region=region,
|
|
@@ -7788,6 +7881,7 @@ class _IDomainProxy(
|
|
|
7788
7881
|
stack_region=stack_region,
|
|
7789
7882
|
statistic=statistic,
|
|
7790
7883
|
unit=unit,
|
|
7884
|
+
visible=visible,
|
|
7791
7885
|
)
|
|
7792
7886
|
|
|
7793
7887
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterStatusYellow", [props]))
|
|
@@ -7799,6 +7893,7 @@ class _IDomainProxy(
|
|
|
7799
7893
|
account: typing.Optional[builtins.str] = None,
|
|
7800
7894
|
color: typing.Optional[builtins.str] = None,
|
|
7801
7895
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7896
|
+
id: typing.Optional[builtins.str] = None,
|
|
7802
7897
|
label: typing.Optional[builtins.str] = None,
|
|
7803
7898
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7804
7899
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7806,12 +7901,14 @@ class _IDomainProxy(
|
|
|
7806
7901
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7807
7902
|
statistic: typing.Optional[builtins.str] = None,
|
|
7808
7903
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7904
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7809
7905
|
) -> _Metric_e396a4dc:
|
|
7810
7906
|
'''Metric for CPU utilization.
|
|
7811
7907
|
|
|
7812
7908
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7813
7909
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7814
7910
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7911
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7815
7912
|
: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
|
|
7816
7913
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7817
7914
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7819,6 +7916,7 @@ class _IDomainProxy(
|
|
|
7819
7916
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7820
7917
|
: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
|
|
7821
7918
|
: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
|
|
7919
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7822
7920
|
|
|
7823
7921
|
:default: maximum over 5 minutes
|
|
7824
7922
|
'''
|
|
@@ -7826,6 +7924,7 @@ class _IDomainProxy(
|
|
|
7826
7924
|
account=account,
|
|
7827
7925
|
color=color,
|
|
7828
7926
|
dimensions_map=dimensions_map,
|
|
7927
|
+
id=id,
|
|
7829
7928
|
label=label,
|
|
7830
7929
|
period=period,
|
|
7831
7930
|
region=region,
|
|
@@ -7833,6 +7932,7 @@ class _IDomainProxy(
|
|
|
7833
7932
|
stack_region=stack_region,
|
|
7834
7933
|
statistic=statistic,
|
|
7835
7934
|
unit=unit,
|
|
7935
|
+
visible=visible,
|
|
7836
7936
|
)
|
|
7837
7937
|
|
|
7838
7938
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
|
|
@@ -7844,6 +7944,7 @@ class _IDomainProxy(
|
|
|
7844
7944
|
account: typing.Optional[builtins.str] = None,
|
|
7845
7945
|
color: typing.Optional[builtins.str] = None,
|
|
7846
7946
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7947
|
+
id: typing.Optional[builtins.str] = None,
|
|
7847
7948
|
label: typing.Optional[builtins.str] = None,
|
|
7848
7949
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7849
7950
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7851,12 +7952,14 @@ class _IDomainProxy(
|
|
|
7851
7952
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7852
7953
|
statistic: typing.Optional[builtins.str] = None,
|
|
7853
7954
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7955
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7854
7956
|
) -> _Metric_e396a4dc:
|
|
7855
7957
|
'''Metric for the storage space of nodes in the cluster.
|
|
7856
7958
|
|
|
7857
7959
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7858
7960
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7859
7961
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
7962
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7860
7963
|
: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
|
|
7861
7964
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7862
7965
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7864,6 +7967,7 @@ class _IDomainProxy(
|
|
|
7864
7967
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7865
7968
|
: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
|
|
7866
7969
|
: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
|
|
7970
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7867
7971
|
|
|
7868
7972
|
:default: minimum over 5 minutes
|
|
7869
7973
|
'''
|
|
@@ -7871,6 +7975,7 @@ class _IDomainProxy(
|
|
|
7871
7975
|
account=account,
|
|
7872
7976
|
color=color,
|
|
7873
7977
|
dimensions_map=dimensions_map,
|
|
7978
|
+
id=id,
|
|
7874
7979
|
label=label,
|
|
7875
7980
|
period=period,
|
|
7876
7981
|
region=region,
|
|
@@ -7878,6 +7983,7 @@ class _IDomainProxy(
|
|
|
7878
7983
|
stack_region=stack_region,
|
|
7879
7984
|
statistic=statistic,
|
|
7880
7985
|
unit=unit,
|
|
7986
|
+
visible=visible,
|
|
7881
7987
|
)
|
|
7882
7988
|
|
|
7883
7989
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeStorageSpace", [props]))
|
|
@@ -7889,6 +7995,7 @@ class _IDomainProxy(
|
|
|
7889
7995
|
account: typing.Optional[builtins.str] = None,
|
|
7890
7996
|
color: typing.Optional[builtins.str] = None,
|
|
7891
7997
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
7998
|
+
id: typing.Optional[builtins.str] = None,
|
|
7892
7999
|
label: typing.Optional[builtins.str] = None,
|
|
7893
8000
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7894
8001
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7896,12 +8003,14 @@ class _IDomainProxy(
|
|
|
7896
8003
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7897
8004
|
statistic: typing.Optional[builtins.str] = None,
|
|
7898
8005
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8006
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7899
8007
|
) -> _Metric_e396a4dc:
|
|
7900
8008
|
'''Metric for indexing latency.
|
|
7901
8009
|
|
|
7902
8010
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7903
8011
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7904
8012
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8013
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7905
8014
|
: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
|
|
7906
8015
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7907
8016
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7909,6 +8018,7 @@ class _IDomainProxy(
|
|
|
7909
8018
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7910
8019
|
: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
|
|
7911
8020
|
: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
|
|
8021
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7912
8022
|
|
|
7913
8023
|
:default: p99 over 5 minutes
|
|
7914
8024
|
'''
|
|
@@ -7916,6 +8026,7 @@ class _IDomainProxy(
|
|
|
7916
8026
|
account=account,
|
|
7917
8027
|
color=color,
|
|
7918
8028
|
dimensions_map=dimensions_map,
|
|
8029
|
+
id=id,
|
|
7919
8030
|
label=label,
|
|
7920
8031
|
period=period,
|
|
7921
8032
|
region=region,
|
|
@@ -7923,6 +8034,7 @@ class _IDomainProxy(
|
|
|
7923
8034
|
stack_region=stack_region,
|
|
7924
8035
|
statistic=statistic,
|
|
7925
8036
|
unit=unit,
|
|
8037
|
+
visible=visible,
|
|
7926
8038
|
)
|
|
7927
8039
|
|
|
7928
8040
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIndexingLatency", [props]))
|
|
@@ -7934,6 +8046,7 @@ class _IDomainProxy(
|
|
|
7934
8046
|
account: typing.Optional[builtins.str] = None,
|
|
7935
8047
|
color: typing.Optional[builtins.str] = None,
|
|
7936
8048
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8049
|
+
id: typing.Optional[builtins.str] = None,
|
|
7937
8050
|
label: typing.Optional[builtins.str] = None,
|
|
7938
8051
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7939
8052
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7941,12 +8054,14 @@ class _IDomainProxy(
|
|
|
7941
8054
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7942
8055
|
statistic: typing.Optional[builtins.str] = None,
|
|
7943
8056
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8057
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7944
8058
|
) -> _Metric_e396a4dc:
|
|
7945
8059
|
'''Metric for JVM memory pressure.
|
|
7946
8060
|
|
|
7947
8061
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7948
8062
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7949
8063
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8064
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7950
8065
|
: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
|
|
7951
8066
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7952
8067
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7954,6 +8069,7 @@ class _IDomainProxy(
|
|
|
7954
8069
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7955
8070
|
: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
|
|
7956
8071
|
: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
|
|
8072
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
7957
8073
|
|
|
7958
8074
|
:default: maximum over 5 minutes
|
|
7959
8075
|
'''
|
|
@@ -7961,6 +8077,7 @@ class _IDomainProxy(
|
|
|
7961
8077
|
account=account,
|
|
7962
8078
|
color=color,
|
|
7963
8079
|
dimensions_map=dimensions_map,
|
|
8080
|
+
id=id,
|
|
7964
8081
|
label=label,
|
|
7965
8082
|
period=period,
|
|
7966
8083
|
region=region,
|
|
@@ -7968,6 +8085,7 @@ class _IDomainProxy(
|
|
|
7968
8085
|
stack_region=stack_region,
|
|
7969
8086
|
statistic=statistic,
|
|
7970
8087
|
unit=unit,
|
|
8088
|
+
visible=visible,
|
|
7971
8089
|
)
|
|
7972
8090
|
|
|
7973
8091
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricJVMMemoryPressure", [props]))
|
|
@@ -7979,6 +8097,7 @@ class _IDomainProxy(
|
|
|
7979
8097
|
account: typing.Optional[builtins.str] = None,
|
|
7980
8098
|
color: typing.Optional[builtins.str] = None,
|
|
7981
8099
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8100
|
+
id: typing.Optional[builtins.str] = None,
|
|
7982
8101
|
label: typing.Optional[builtins.str] = None,
|
|
7983
8102
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7984
8103
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -7986,12 +8105,14 @@ class _IDomainProxy(
|
|
|
7986
8105
|
stack_region: typing.Optional[builtins.str] = None,
|
|
7987
8106
|
statistic: typing.Optional[builtins.str] = None,
|
|
7988
8107
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8108
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
7989
8109
|
) -> _Metric_e396a4dc:
|
|
7990
8110
|
'''Metric for KMS key errors.
|
|
7991
8111
|
|
|
7992
8112
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
7993
8113
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
7994
8114
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8115
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
7995
8116
|
: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
|
|
7996
8117
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7997
8118
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -7999,6 +8120,7 @@ class _IDomainProxy(
|
|
|
7999
8120
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8000
8121
|
: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
|
|
8001
8122
|
: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
|
|
8123
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
8002
8124
|
|
|
8003
8125
|
:default: maximum over 5 minutes
|
|
8004
8126
|
'''
|
|
@@ -8006,6 +8128,7 @@ class _IDomainProxy(
|
|
|
8006
8128
|
account=account,
|
|
8007
8129
|
color=color,
|
|
8008
8130
|
dimensions_map=dimensions_map,
|
|
8131
|
+
id=id,
|
|
8009
8132
|
label=label,
|
|
8010
8133
|
period=period,
|
|
8011
8134
|
region=region,
|
|
@@ -8013,6 +8136,7 @@ class _IDomainProxy(
|
|
|
8013
8136
|
stack_region=stack_region,
|
|
8014
8137
|
statistic=statistic,
|
|
8015
8138
|
unit=unit,
|
|
8139
|
+
visible=visible,
|
|
8016
8140
|
)
|
|
8017
8141
|
|
|
8018
8142
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricKMSKeyError", [props]))
|
|
@@ -8024,6 +8148,7 @@ class _IDomainProxy(
|
|
|
8024
8148
|
account: typing.Optional[builtins.str] = None,
|
|
8025
8149
|
color: typing.Optional[builtins.str] = None,
|
|
8026
8150
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8151
|
+
id: typing.Optional[builtins.str] = None,
|
|
8027
8152
|
label: typing.Optional[builtins.str] = None,
|
|
8028
8153
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8029
8154
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8031,12 +8156,14 @@ class _IDomainProxy(
|
|
|
8031
8156
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8032
8157
|
statistic: typing.Optional[builtins.str] = None,
|
|
8033
8158
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8159
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8034
8160
|
) -> _Metric_e396a4dc:
|
|
8035
8161
|
'''Metric for KMS key being inaccessible.
|
|
8036
8162
|
|
|
8037
8163
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8038
8164
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
8039
8165
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8166
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
8040
8167
|
: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
|
|
8041
8168
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8042
8169
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8044,6 +8171,7 @@ class _IDomainProxy(
|
|
|
8044
8171
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8045
8172
|
: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
|
|
8046
8173
|
: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
|
|
8174
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
8047
8175
|
|
|
8048
8176
|
:default: maximum over 5 minutes
|
|
8049
8177
|
'''
|
|
@@ -8051,6 +8179,7 @@ class _IDomainProxy(
|
|
|
8051
8179
|
account=account,
|
|
8052
8180
|
color=color,
|
|
8053
8181
|
dimensions_map=dimensions_map,
|
|
8182
|
+
id=id,
|
|
8054
8183
|
label=label,
|
|
8055
8184
|
period=period,
|
|
8056
8185
|
region=region,
|
|
@@ -8058,6 +8187,7 @@ class _IDomainProxy(
|
|
|
8058
8187
|
stack_region=stack_region,
|
|
8059
8188
|
statistic=statistic,
|
|
8060
8189
|
unit=unit,
|
|
8190
|
+
visible=visible,
|
|
8061
8191
|
)
|
|
8062
8192
|
|
|
8063
8193
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricKMSKeyInaccessible", [props]))
|
|
@@ -8069,6 +8199,7 @@ class _IDomainProxy(
|
|
|
8069
8199
|
account: typing.Optional[builtins.str] = None,
|
|
8070
8200
|
color: typing.Optional[builtins.str] = None,
|
|
8071
8201
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8202
|
+
id: typing.Optional[builtins.str] = None,
|
|
8072
8203
|
label: typing.Optional[builtins.str] = None,
|
|
8073
8204
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8074
8205
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8076,12 +8207,14 @@ class _IDomainProxy(
|
|
|
8076
8207
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8077
8208
|
statistic: typing.Optional[builtins.str] = None,
|
|
8078
8209
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8210
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8079
8211
|
) -> _Metric_e396a4dc:
|
|
8080
8212
|
'''Metric for master CPU utilization.
|
|
8081
8213
|
|
|
8082
8214
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8083
8215
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
8084
8216
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8217
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
8085
8218
|
: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
|
|
8086
8219
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8087
8220
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8089,6 +8222,7 @@ class _IDomainProxy(
|
|
|
8089
8222
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8090
8223
|
: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
|
|
8091
8224
|
: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
|
|
8225
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
8092
8226
|
|
|
8093
8227
|
:default: maximum over 5 minutes
|
|
8094
8228
|
'''
|
|
@@ -8096,6 +8230,7 @@ class _IDomainProxy(
|
|
|
8096
8230
|
account=account,
|
|
8097
8231
|
color=color,
|
|
8098
8232
|
dimensions_map=dimensions_map,
|
|
8233
|
+
id=id,
|
|
8099
8234
|
label=label,
|
|
8100
8235
|
period=period,
|
|
8101
8236
|
region=region,
|
|
@@ -8103,6 +8238,7 @@ class _IDomainProxy(
|
|
|
8103
8238
|
stack_region=stack_region,
|
|
8104
8239
|
statistic=statistic,
|
|
8105
8240
|
unit=unit,
|
|
8241
|
+
visible=visible,
|
|
8106
8242
|
)
|
|
8107
8243
|
|
|
8108
8244
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricMasterCPUUtilization", [props]))
|
|
@@ -8114,6 +8250,7 @@ class _IDomainProxy(
|
|
|
8114
8250
|
account: typing.Optional[builtins.str] = None,
|
|
8115
8251
|
color: typing.Optional[builtins.str] = None,
|
|
8116
8252
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8253
|
+
id: typing.Optional[builtins.str] = None,
|
|
8117
8254
|
label: typing.Optional[builtins.str] = None,
|
|
8118
8255
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8119
8256
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8121,12 +8258,14 @@ class _IDomainProxy(
|
|
|
8121
8258
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8122
8259
|
statistic: typing.Optional[builtins.str] = None,
|
|
8123
8260
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8261
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8124
8262
|
) -> _Metric_e396a4dc:
|
|
8125
8263
|
'''Metric for master JVM memory pressure.
|
|
8126
8264
|
|
|
8127
8265
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8128
8266
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
8129
8267
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8268
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
8130
8269
|
: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
|
|
8131
8270
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8132
8271
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8134,6 +8273,7 @@ class _IDomainProxy(
|
|
|
8134
8273
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8135
8274
|
: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
|
|
8136
8275
|
: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
|
|
8276
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
8137
8277
|
|
|
8138
8278
|
:default: maximum over 5 minutes
|
|
8139
8279
|
'''
|
|
@@ -8141,6 +8281,7 @@ class _IDomainProxy(
|
|
|
8141
8281
|
account=account,
|
|
8142
8282
|
color=color,
|
|
8143
8283
|
dimensions_map=dimensions_map,
|
|
8284
|
+
id=id,
|
|
8144
8285
|
label=label,
|
|
8145
8286
|
period=period,
|
|
8146
8287
|
region=region,
|
|
@@ -8148,6 +8289,7 @@ class _IDomainProxy(
|
|
|
8148
8289
|
stack_region=stack_region,
|
|
8149
8290
|
statistic=statistic,
|
|
8150
8291
|
unit=unit,
|
|
8292
|
+
visible=visible,
|
|
8151
8293
|
)
|
|
8152
8294
|
|
|
8153
8295
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricMasterJVMMemoryPressure", [props]))
|
|
@@ -8159,6 +8301,7 @@ class _IDomainProxy(
|
|
|
8159
8301
|
account: typing.Optional[builtins.str] = None,
|
|
8160
8302
|
color: typing.Optional[builtins.str] = None,
|
|
8161
8303
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8304
|
+
id: typing.Optional[builtins.str] = None,
|
|
8162
8305
|
label: typing.Optional[builtins.str] = None,
|
|
8163
8306
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8164
8307
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8166,12 +8309,14 @@ class _IDomainProxy(
|
|
|
8166
8309
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8167
8310
|
statistic: typing.Optional[builtins.str] = None,
|
|
8168
8311
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8312
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8169
8313
|
) -> _Metric_e396a4dc:
|
|
8170
8314
|
'''Metric for the number of nodes.
|
|
8171
8315
|
|
|
8172
8316
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8173
8317
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
8174
8318
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8319
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
8175
8320
|
: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
|
|
8176
8321
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8177
8322
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8179,6 +8324,7 @@ class _IDomainProxy(
|
|
|
8179
8324
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8180
8325
|
: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
|
|
8181
8326
|
: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
|
|
8327
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
8182
8328
|
|
|
8183
8329
|
:default: minimum over 1 hour
|
|
8184
8330
|
'''
|
|
@@ -8186,6 +8332,7 @@ class _IDomainProxy(
|
|
|
8186
8332
|
account=account,
|
|
8187
8333
|
color=color,
|
|
8188
8334
|
dimensions_map=dimensions_map,
|
|
8335
|
+
id=id,
|
|
8189
8336
|
label=label,
|
|
8190
8337
|
period=period,
|
|
8191
8338
|
region=region,
|
|
@@ -8193,6 +8340,7 @@ class _IDomainProxy(
|
|
|
8193
8340
|
stack_region=stack_region,
|
|
8194
8341
|
statistic=statistic,
|
|
8195
8342
|
unit=unit,
|
|
8343
|
+
visible=visible,
|
|
8196
8344
|
)
|
|
8197
8345
|
|
|
8198
8346
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNodes", [props]))
|
|
@@ -8204,6 +8352,7 @@ class _IDomainProxy(
|
|
|
8204
8352
|
account: typing.Optional[builtins.str] = None,
|
|
8205
8353
|
color: typing.Optional[builtins.str] = None,
|
|
8206
8354
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8355
|
+
id: typing.Optional[builtins.str] = None,
|
|
8207
8356
|
label: typing.Optional[builtins.str] = None,
|
|
8208
8357
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8209
8358
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8211,12 +8360,14 @@ class _IDomainProxy(
|
|
|
8211
8360
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8212
8361
|
statistic: typing.Optional[builtins.str] = None,
|
|
8213
8362
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8363
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8214
8364
|
) -> _Metric_e396a4dc:
|
|
8215
8365
|
'''Metric for number of searchable documents.
|
|
8216
8366
|
|
|
8217
8367
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8218
8368
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
8219
8369
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8370
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
8220
8371
|
: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
|
|
8221
8372
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8222
8373
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8224,6 +8375,7 @@ class _IDomainProxy(
|
|
|
8224
8375
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8225
8376
|
: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
|
|
8226
8377
|
: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
|
|
8378
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
8227
8379
|
|
|
8228
8380
|
:default: maximum over 5 minutes
|
|
8229
8381
|
'''
|
|
@@ -8231,6 +8383,7 @@ class _IDomainProxy(
|
|
|
8231
8383
|
account=account,
|
|
8232
8384
|
color=color,
|
|
8233
8385
|
dimensions_map=dimensions_map,
|
|
8386
|
+
id=id,
|
|
8234
8387
|
label=label,
|
|
8235
8388
|
period=period,
|
|
8236
8389
|
region=region,
|
|
@@ -8238,6 +8391,7 @@ class _IDomainProxy(
|
|
|
8238
8391
|
stack_region=stack_region,
|
|
8239
8392
|
statistic=statistic,
|
|
8240
8393
|
unit=unit,
|
|
8394
|
+
visible=visible,
|
|
8241
8395
|
)
|
|
8242
8396
|
|
|
8243
8397
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchableDocuments", [props]))
|
|
@@ -8249,6 +8403,7 @@ class _IDomainProxy(
|
|
|
8249
8403
|
account: typing.Optional[builtins.str] = None,
|
|
8250
8404
|
color: typing.Optional[builtins.str] = None,
|
|
8251
8405
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8406
|
+
id: typing.Optional[builtins.str] = None,
|
|
8252
8407
|
label: typing.Optional[builtins.str] = None,
|
|
8253
8408
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8254
8409
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8256,12 +8411,14 @@ class _IDomainProxy(
|
|
|
8256
8411
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8257
8412
|
statistic: typing.Optional[builtins.str] = None,
|
|
8258
8413
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8414
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8259
8415
|
) -> _Metric_e396a4dc:
|
|
8260
8416
|
'''Metric for search latency.
|
|
8261
8417
|
|
|
8262
8418
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8263
8419
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
8264
8420
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8421
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
8265
8422
|
: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
|
|
8266
8423
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8267
8424
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8269,6 +8426,7 @@ class _IDomainProxy(
|
|
|
8269
8426
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8270
8427
|
: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
|
|
8271
8428
|
: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
|
|
8429
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
8272
8430
|
|
|
8273
8431
|
:default: p99 over 5 minutes
|
|
8274
8432
|
'''
|
|
@@ -8276,6 +8434,7 @@ class _IDomainProxy(
|
|
|
8276
8434
|
account=account,
|
|
8277
8435
|
color=color,
|
|
8278
8436
|
dimensions_map=dimensions_map,
|
|
8437
|
+
id=id,
|
|
8279
8438
|
label=label,
|
|
8280
8439
|
period=period,
|
|
8281
8440
|
region=region,
|
|
@@ -8283,6 +8442,7 @@ class _IDomainProxy(
|
|
|
8283
8442
|
stack_region=stack_region,
|
|
8284
8443
|
statistic=statistic,
|
|
8285
8444
|
unit=unit,
|
|
8445
|
+
visible=visible,
|
|
8286
8446
|
)
|
|
8287
8447
|
|
|
8288
8448
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchLatency", [props]))
|
|
@@ -9352,6 +9512,7 @@ class Domain(
|
|
|
9352
9512
|
account: typing.Optional[builtins.str] = None,
|
|
9353
9513
|
color: typing.Optional[builtins.str] = None,
|
|
9354
9514
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9515
|
+
id: typing.Optional[builtins.str] = None,
|
|
9355
9516
|
label: typing.Optional[builtins.str] = None,
|
|
9356
9517
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9357
9518
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9359,6 +9520,7 @@ class Domain(
|
|
|
9359
9520
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9360
9521
|
statistic: typing.Optional[builtins.str] = None,
|
|
9361
9522
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9523
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9362
9524
|
) -> _Metric_e396a4dc:
|
|
9363
9525
|
'''Return the given named metric for this domain.
|
|
9364
9526
|
|
|
@@ -9366,6 +9528,7 @@ class Domain(
|
|
|
9366
9528
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9367
9529
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9368
9530
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9531
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9369
9532
|
: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
|
|
9370
9533
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9371
9534
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9373,6 +9536,7 @@ class Domain(
|
|
|
9373
9536
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9374
9537
|
: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
|
|
9375
9538
|
: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
|
|
9539
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9376
9540
|
'''
|
|
9377
9541
|
if __debug__:
|
|
9378
9542
|
type_hints = typing.get_type_hints(_typecheckingstub__f6380e234537911c13695e16580579ea3144cdf17f001286bfce646a753cc3d3)
|
|
@@ -9381,6 +9545,7 @@ class Domain(
|
|
|
9381
9545
|
account=account,
|
|
9382
9546
|
color=color,
|
|
9383
9547
|
dimensions_map=dimensions_map,
|
|
9548
|
+
id=id,
|
|
9384
9549
|
label=label,
|
|
9385
9550
|
period=period,
|
|
9386
9551
|
region=region,
|
|
@@ -9388,6 +9553,7 @@ class Domain(
|
|
|
9388
9553
|
stack_region=stack_region,
|
|
9389
9554
|
statistic=statistic,
|
|
9390
9555
|
unit=unit,
|
|
9556
|
+
visible=visible,
|
|
9391
9557
|
)
|
|
9392
9558
|
|
|
9393
9559
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -9399,6 +9565,7 @@ class Domain(
|
|
|
9399
9565
|
account: typing.Optional[builtins.str] = None,
|
|
9400
9566
|
color: typing.Optional[builtins.str] = None,
|
|
9401
9567
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9568
|
+
id: typing.Optional[builtins.str] = None,
|
|
9402
9569
|
label: typing.Optional[builtins.str] = None,
|
|
9403
9570
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9404
9571
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9406,12 +9573,14 @@ class Domain(
|
|
|
9406
9573
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9407
9574
|
statistic: typing.Optional[builtins.str] = None,
|
|
9408
9575
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9576
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9409
9577
|
) -> _Metric_e396a4dc:
|
|
9410
9578
|
'''Metric for automated snapshot failures.
|
|
9411
9579
|
|
|
9412
9580
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9413
9581
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9414
9582
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9583
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9415
9584
|
: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
|
|
9416
9585
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9417
9586
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9419,6 +9588,7 @@ class Domain(
|
|
|
9419
9588
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9420
9589
|
: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
|
|
9421
9590
|
: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
|
|
9591
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9422
9592
|
|
|
9423
9593
|
:default: maximum over 5 minutes
|
|
9424
9594
|
'''
|
|
@@ -9426,6 +9596,7 @@ class Domain(
|
|
|
9426
9596
|
account=account,
|
|
9427
9597
|
color=color,
|
|
9428
9598
|
dimensions_map=dimensions_map,
|
|
9599
|
+
id=id,
|
|
9429
9600
|
label=label,
|
|
9430
9601
|
period=period,
|
|
9431
9602
|
region=region,
|
|
@@ -9433,6 +9604,7 @@ class Domain(
|
|
|
9433
9604
|
stack_region=stack_region,
|
|
9434
9605
|
statistic=statistic,
|
|
9435
9606
|
unit=unit,
|
|
9607
|
+
visible=visible,
|
|
9436
9608
|
)
|
|
9437
9609
|
|
|
9438
9610
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricAutomatedSnapshotFailure", [props]))
|
|
@@ -9444,6 +9616,7 @@ class Domain(
|
|
|
9444
9616
|
account: typing.Optional[builtins.str] = None,
|
|
9445
9617
|
color: typing.Optional[builtins.str] = None,
|
|
9446
9618
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9619
|
+
id: typing.Optional[builtins.str] = None,
|
|
9447
9620
|
label: typing.Optional[builtins.str] = None,
|
|
9448
9621
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9449
9622
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9451,12 +9624,14 @@ class Domain(
|
|
|
9451
9624
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9452
9625
|
statistic: typing.Optional[builtins.str] = None,
|
|
9453
9626
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9627
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9454
9628
|
) -> _Metric_e396a4dc:
|
|
9455
9629
|
'''Metric for the cluster blocking index writes.
|
|
9456
9630
|
|
|
9457
9631
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9458
9632
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9459
9633
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9634
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9460
9635
|
: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
|
|
9461
9636
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9462
9637
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9464,6 +9639,7 @@ class Domain(
|
|
|
9464
9639
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9465
9640
|
: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
|
|
9466
9641
|
: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
|
|
9642
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9467
9643
|
|
|
9468
9644
|
:default: maximum over 1 minute
|
|
9469
9645
|
'''
|
|
@@ -9471,6 +9647,7 @@ class Domain(
|
|
|
9471
9647
|
account=account,
|
|
9472
9648
|
color=color,
|
|
9473
9649
|
dimensions_map=dimensions_map,
|
|
9650
|
+
id=id,
|
|
9474
9651
|
label=label,
|
|
9475
9652
|
period=period,
|
|
9476
9653
|
region=region,
|
|
@@ -9478,6 +9655,7 @@ class Domain(
|
|
|
9478
9655
|
stack_region=stack_region,
|
|
9479
9656
|
statistic=statistic,
|
|
9480
9657
|
unit=unit,
|
|
9658
|
+
visible=visible,
|
|
9481
9659
|
)
|
|
9482
9660
|
|
|
9483
9661
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterIndexWritesBlocked", [props]))
|
|
@@ -9489,6 +9667,7 @@ class Domain(
|
|
|
9489
9667
|
account: typing.Optional[builtins.str] = None,
|
|
9490
9668
|
color: typing.Optional[builtins.str] = None,
|
|
9491
9669
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9670
|
+
id: typing.Optional[builtins.str] = None,
|
|
9492
9671
|
label: typing.Optional[builtins.str] = None,
|
|
9493
9672
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9494
9673
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9496,12 +9675,14 @@ class Domain(
|
|
|
9496
9675
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9497
9676
|
statistic: typing.Optional[builtins.str] = None,
|
|
9498
9677
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9678
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9499
9679
|
) -> _Metric_e396a4dc:
|
|
9500
9680
|
'''Metric for the time the cluster status is red.
|
|
9501
9681
|
|
|
9502
9682
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9503
9683
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9504
9684
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9685
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9505
9686
|
: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
|
|
9506
9687
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9507
9688
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9509,6 +9690,7 @@ class Domain(
|
|
|
9509
9690
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9510
9691
|
: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
|
|
9511
9692
|
: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
|
|
9693
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9512
9694
|
|
|
9513
9695
|
:default: maximum over 5 minutes
|
|
9514
9696
|
'''
|
|
@@ -9516,6 +9698,7 @@ class Domain(
|
|
|
9516
9698
|
account=account,
|
|
9517
9699
|
color=color,
|
|
9518
9700
|
dimensions_map=dimensions_map,
|
|
9701
|
+
id=id,
|
|
9519
9702
|
label=label,
|
|
9520
9703
|
period=period,
|
|
9521
9704
|
region=region,
|
|
@@ -9523,6 +9706,7 @@ class Domain(
|
|
|
9523
9706
|
stack_region=stack_region,
|
|
9524
9707
|
statistic=statistic,
|
|
9525
9708
|
unit=unit,
|
|
9709
|
+
visible=visible,
|
|
9526
9710
|
)
|
|
9527
9711
|
|
|
9528
9712
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterStatusRed", [props]))
|
|
@@ -9534,6 +9718,7 @@ class Domain(
|
|
|
9534
9718
|
account: typing.Optional[builtins.str] = None,
|
|
9535
9719
|
color: typing.Optional[builtins.str] = None,
|
|
9536
9720
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9721
|
+
id: typing.Optional[builtins.str] = None,
|
|
9537
9722
|
label: typing.Optional[builtins.str] = None,
|
|
9538
9723
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9539
9724
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9541,12 +9726,14 @@ class Domain(
|
|
|
9541
9726
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9542
9727
|
statistic: typing.Optional[builtins.str] = None,
|
|
9543
9728
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9729
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9544
9730
|
) -> _Metric_e396a4dc:
|
|
9545
9731
|
'''Metric for the time the cluster status is yellow.
|
|
9546
9732
|
|
|
9547
9733
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9548
9734
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9549
9735
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9736
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9550
9737
|
: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
|
|
9551
9738
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9552
9739
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9554,6 +9741,7 @@ class Domain(
|
|
|
9554
9741
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9555
9742
|
: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
|
|
9556
9743
|
: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
|
|
9744
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9557
9745
|
|
|
9558
9746
|
:default: maximum over 5 minutes
|
|
9559
9747
|
'''
|
|
@@ -9561,6 +9749,7 @@ class Domain(
|
|
|
9561
9749
|
account=account,
|
|
9562
9750
|
color=color,
|
|
9563
9751
|
dimensions_map=dimensions_map,
|
|
9752
|
+
id=id,
|
|
9564
9753
|
label=label,
|
|
9565
9754
|
period=period,
|
|
9566
9755
|
region=region,
|
|
@@ -9568,6 +9757,7 @@ class Domain(
|
|
|
9568
9757
|
stack_region=stack_region,
|
|
9569
9758
|
statistic=statistic,
|
|
9570
9759
|
unit=unit,
|
|
9760
|
+
visible=visible,
|
|
9571
9761
|
)
|
|
9572
9762
|
|
|
9573
9763
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterStatusYellow", [props]))
|
|
@@ -9579,6 +9769,7 @@ class Domain(
|
|
|
9579
9769
|
account: typing.Optional[builtins.str] = None,
|
|
9580
9770
|
color: typing.Optional[builtins.str] = None,
|
|
9581
9771
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9772
|
+
id: typing.Optional[builtins.str] = None,
|
|
9582
9773
|
label: typing.Optional[builtins.str] = None,
|
|
9583
9774
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9584
9775
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9586,12 +9777,14 @@ class Domain(
|
|
|
9586
9777
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9587
9778
|
statistic: typing.Optional[builtins.str] = None,
|
|
9588
9779
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9780
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9589
9781
|
) -> _Metric_e396a4dc:
|
|
9590
9782
|
'''Metric for CPU utilization.
|
|
9591
9783
|
|
|
9592
9784
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9593
9785
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9594
9786
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9787
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9595
9788
|
: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
|
|
9596
9789
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9597
9790
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9599,6 +9792,7 @@ class Domain(
|
|
|
9599
9792
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9600
9793
|
: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
|
|
9601
9794
|
: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
|
|
9795
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9602
9796
|
|
|
9603
9797
|
:default: maximum over 5 minutes
|
|
9604
9798
|
'''
|
|
@@ -9606,6 +9800,7 @@ class Domain(
|
|
|
9606
9800
|
account=account,
|
|
9607
9801
|
color=color,
|
|
9608
9802
|
dimensions_map=dimensions_map,
|
|
9803
|
+
id=id,
|
|
9609
9804
|
label=label,
|
|
9610
9805
|
period=period,
|
|
9611
9806
|
region=region,
|
|
@@ -9613,6 +9808,7 @@ class Domain(
|
|
|
9613
9808
|
stack_region=stack_region,
|
|
9614
9809
|
statistic=statistic,
|
|
9615
9810
|
unit=unit,
|
|
9811
|
+
visible=visible,
|
|
9616
9812
|
)
|
|
9617
9813
|
|
|
9618
9814
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
|
|
@@ -9624,6 +9820,7 @@ class Domain(
|
|
|
9624
9820
|
account: typing.Optional[builtins.str] = None,
|
|
9625
9821
|
color: typing.Optional[builtins.str] = None,
|
|
9626
9822
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9823
|
+
id: typing.Optional[builtins.str] = None,
|
|
9627
9824
|
label: typing.Optional[builtins.str] = None,
|
|
9628
9825
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9629
9826
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9631,12 +9828,14 @@ class Domain(
|
|
|
9631
9828
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9632
9829
|
statistic: typing.Optional[builtins.str] = None,
|
|
9633
9830
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9831
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9634
9832
|
) -> _Metric_e396a4dc:
|
|
9635
9833
|
'''Metric for the storage space of nodes in the cluster.
|
|
9636
9834
|
|
|
9637
9835
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9638
9836
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9639
9837
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9838
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9640
9839
|
: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
|
|
9641
9840
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9642
9841
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9644,6 +9843,7 @@ class Domain(
|
|
|
9644
9843
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9645
9844
|
: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
|
|
9646
9845
|
: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
|
|
9846
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9647
9847
|
|
|
9648
9848
|
:default: minimum over 5 minutes
|
|
9649
9849
|
'''
|
|
@@ -9651,6 +9851,7 @@ class Domain(
|
|
|
9651
9851
|
account=account,
|
|
9652
9852
|
color=color,
|
|
9653
9853
|
dimensions_map=dimensions_map,
|
|
9854
|
+
id=id,
|
|
9654
9855
|
label=label,
|
|
9655
9856
|
period=period,
|
|
9656
9857
|
region=region,
|
|
@@ -9658,6 +9859,7 @@ class Domain(
|
|
|
9658
9859
|
stack_region=stack_region,
|
|
9659
9860
|
statistic=statistic,
|
|
9660
9861
|
unit=unit,
|
|
9862
|
+
visible=visible,
|
|
9661
9863
|
)
|
|
9662
9864
|
|
|
9663
9865
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeStorageSpace", [props]))
|
|
@@ -9669,6 +9871,7 @@ class Domain(
|
|
|
9669
9871
|
account: typing.Optional[builtins.str] = None,
|
|
9670
9872
|
color: typing.Optional[builtins.str] = None,
|
|
9671
9873
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9874
|
+
id: typing.Optional[builtins.str] = None,
|
|
9672
9875
|
label: typing.Optional[builtins.str] = None,
|
|
9673
9876
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9674
9877
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9676,12 +9879,14 @@ class Domain(
|
|
|
9676
9879
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9677
9880
|
statistic: typing.Optional[builtins.str] = None,
|
|
9678
9881
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9882
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9679
9883
|
) -> _Metric_e396a4dc:
|
|
9680
9884
|
'''Metric for indexing latency.
|
|
9681
9885
|
|
|
9682
9886
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9683
9887
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9684
9888
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9889
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9685
9890
|
: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
|
|
9686
9891
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9687
9892
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9689,6 +9894,7 @@ class Domain(
|
|
|
9689
9894
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9690
9895
|
: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
|
|
9691
9896
|
: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
|
|
9897
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9692
9898
|
|
|
9693
9899
|
:default: p99 over 5 minutes
|
|
9694
9900
|
'''
|
|
@@ -9696,6 +9902,7 @@ class Domain(
|
|
|
9696
9902
|
account=account,
|
|
9697
9903
|
color=color,
|
|
9698
9904
|
dimensions_map=dimensions_map,
|
|
9905
|
+
id=id,
|
|
9699
9906
|
label=label,
|
|
9700
9907
|
period=period,
|
|
9701
9908
|
region=region,
|
|
@@ -9703,6 +9910,7 @@ class Domain(
|
|
|
9703
9910
|
stack_region=stack_region,
|
|
9704
9911
|
statistic=statistic,
|
|
9705
9912
|
unit=unit,
|
|
9913
|
+
visible=visible,
|
|
9706
9914
|
)
|
|
9707
9915
|
|
|
9708
9916
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIndexingLatency", [props]))
|
|
@@ -9714,6 +9922,7 @@ class Domain(
|
|
|
9714
9922
|
account: typing.Optional[builtins.str] = None,
|
|
9715
9923
|
color: typing.Optional[builtins.str] = None,
|
|
9716
9924
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9925
|
+
id: typing.Optional[builtins.str] = None,
|
|
9717
9926
|
label: typing.Optional[builtins.str] = None,
|
|
9718
9927
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9719
9928
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9721,12 +9930,14 @@ class Domain(
|
|
|
9721
9930
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9722
9931
|
statistic: typing.Optional[builtins.str] = None,
|
|
9723
9932
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9933
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9724
9934
|
) -> _Metric_e396a4dc:
|
|
9725
9935
|
'''Metric for JVM memory pressure.
|
|
9726
9936
|
|
|
9727
9937
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9728
9938
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9729
9939
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9940
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9730
9941
|
: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
|
|
9731
9942
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9732
9943
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9734,6 +9945,7 @@ class Domain(
|
|
|
9734
9945
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9735
9946
|
: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
|
|
9736
9947
|
: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
|
|
9948
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9737
9949
|
|
|
9738
9950
|
:default: maximum over 5 minutes
|
|
9739
9951
|
'''
|
|
@@ -9741,6 +9953,7 @@ class Domain(
|
|
|
9741
9953
|
account=account,
|
|
9742
9954
|
color=color,
|
|
9743
9955
|
dimensions_map=dimensions_map,
|
|
9956
|
+
id=id,
|
|
9744
9957
|
label=label,
|
|
9745
9958
|
period=period,
|
|
9746
9959
|
region=region,
|
|
@@ -9748,6 +9961,7 @@ class Domain(
|
|
|
9748
9961
|
stack_region=stack_region,
|
|
9749
9962
|
statistic=statistic,
|
|
9750
9963
|
unit=unit,
|
|
9964
|
+
visible=visible,
|
|
9751
9965
|
)
|
|
9752
9966
|
|
|
9753
9967
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricJVMMemoryPressure", [props]))
|
|
@@ -9759,6 +9973,7 @@ class Domain(
|
|
|
9759
9973
|
account: typing.Optional[builtins.str] = None,
|
|
9760
9974
|
color: typing.Optional[builtins.str] = None,
|
|
9761
9975
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9976
|
+
id: typing.Optional[builtins.str] = None,
|
|
9762
9977
|
label: typing.Optional[builtins.str] = None,
|
|
9763
9978
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9764
9979
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9766,12 +9981,14 @@ class Domain(
|
|
|
9766
9981
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9767
9982
|
statistic: typing.Optional[builtins.str] = None,
|
|
9768
9983
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9984
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9769
9985
|
) -> _Metric_e396a4dc:
|
|
9770
9986
|
'''Metric for KMS key errors.
|
|
9771
9987
|
|
|
9772
9988
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9773
9989
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9774
9990
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9991
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9775
9992
|
: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
|
|
9776
9993
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9777
9994
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9779,6 +9996,7 @@ class Domain(
|
|
|
9779
9996
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9780
9997
|
: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
|
|
9781
9998
|
: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
|
|
9999
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9782
10000
|
|
|
9783
10001
|
:default: maximum over 5 minutes
|
|
9784
10002
|
'''
|
|
@@ -9786,6 +10004,7 @@ class Domain(
|
|
|
9786
10004
|
account=account,
|
|
9787
10005
|
color=color,
|
|
9788
10006
|
dimensions_map=dimensions_map,
|
|
10007
|
+
id=id,
|
|
9789
10008
|
label=label,
|
|
9790
10009
|
period=period,
|
|
9791
10010
|
region=region,
|
|
@@ -9793,6 +10012,7 @@ class Domain(
|
|
|
9793
10012
|
stack_region=stack_region,
|
|
9794
10013
|
statistic=statistic,
|
|
9795
10014
|
unit=unit,
|
|
10015
|
+
visible=visible,
|
|
9796
10016
|
)
|
|
9797
10017
|
|
|
9798
10018
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricKMSKeyError", [props]))
|
|
@@ -9804,6 +10024,7 @@ class Domain(
|
|
|
9804
10024
|
account: typing.Optional[builtins.str] = None,
|
|
9805
10025
|
color: typing.Optional[builtins.str] = None,
|
|
9806
10026
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10027
|
+
id: typing.Optional[builtins.str] = None,
|
|
9807
10028
|
label: typing.Optional[builtins.str] = None,
|
|
9808
10029
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9809
10030
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9811,12 +10032,14 @@ class Domain(
|
|
|
9811
10032
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9812
10033
|
statistic: typing.Optional[builtins.str] = None,
|
|
9813
10034
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10035
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9814
10036
|
) -> _Metric_e396a4dc:
|
|
9815
10037
|
'''Metric for KMS key being inaccessible.
|
|
9816
10038
|
|
|
9817
10039
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9818
10040
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9819
10041
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10042
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9820
10043
|
: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
|
|
9821
10044
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9822
10045
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9824,6 +10047,7 @@ class Domain(
|
|
|
9824
10047
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9825
10048
|
: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
|
|
9826
10049
|
: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
|
|
10050
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9827
10051
|
|
|
9828
10052
|
:default: maximum over 5 minutes
|
|
9829
10053
|
'''
|
|
@@ -9831,6 +10055,7 @@ class Domain(
|
|
|
9831
10055
|
account=account,
|
|
9832
10056
|
color=color,
|
|
9833
10057
|
dimensions_map=dimensions_map,
|
|
10058
|
+
id=id,
|
|
9834
10059
|
label=label,
|
|
9835
10060
|
period=period,
|
|
9836
10061
|
region=region,
|
|
@@ -9838,6 +10063,7 @@ class Domain(
|
|
|
9838
10063
|
stack_region=stack_region,
|
|
9839
10064
|
statistic=statistic,
|
|
9840
10065
|
unit=unit,
|
|
10066
|
+
visible=visible,
|
|
9841
10067
|
)
|
|
9842
10068
|
|
|
9843
10069
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricKMSKeyInaccessible", [props]))
|
|
@@ -9849,6 +10075,7 @@ class Domain(
|
|
|
9849
10075
|
account: typing.Optional[builtins.str] = None,
|
|
9850
10076
|
color: typing.Optional[builtins.str] = None,
|
|
9851
10077
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10078
|
+
id: typing.Optional[builtins.str] = None,
|
|
9852
10079
|
label: typing.Optional[builtins.str] = None,
|
|
9853
10080
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9854
10081
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9856,12 +10083,14 @@ class Domain(
|
|
|
9856
10083
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9857
10084
|
statistic: typing.Optional[builtins.str] = None,
|
|
9858
10085
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10086
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9859
10087
|
) -> _Metric_e396a4dc:
|
|
9860
10088
|
'''Metric for master CPU utilization.
|
|
9861
10089
|
|
|
9862
10090
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9863
10091
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9864
10092
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10093
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9865
10094
|
: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
|
|
9866
10095
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9867
10096
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9869,6 +10098,7 @@ class Domain(
|
|
|
9869
10098
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9870
10099
|
: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
|
|
9871
10100
|
: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
|
|
10101
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9872
10102
|
|
|
9873
10103
|
:default: maximum over 5 minutes
|
|
9874
10104
|
'''
|
|
@@ -9876,6 +10106,7 @@ class Domain(
|
|
|
9876
10106
|
account=account,
|
|
9877
10107
|
color=color,
|
|
9878
10108
|
dimensions_map=dimensions_map,
|
|
10109
|
+
id=id,
|
|
9879
10110
|
label=label,
|
|
9880
10111
|
period=period,
|
|
9881
10112
|
region=region,
|
|
@@ -9883,6 +10114,7 @@ class Domain(
|
|
|
9883
10114
|
stack_region=stack_region,
|
|
9884
10115
|
statistic=statistic,
|
|
9885
10116
|
unit=unit,
|
|
10117
|
+
visible=visible,
|
|
9886
10118
|
)
|
|
9887
10119
|
|
|
9888
10120
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricMasterCPUUtilization", [props]))
|
|
@@ -9894,6 +10126,7 @@ class Domain(
|
|
|
9894
10126
|
account: typing.Optional[builtins.str] = None,
|
|
9895
10127
|
color: typing.Optional[builtins.str] = None,
|
|
9896
10128
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10129
|
+
id: typing.Optional[builtins.str] = None,
|
|
9897
10130
|
label: typing.Optional[builtins.str] = None,
|
|
9898
10131
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9899
10132
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9901,12 +10134,14 @@ class Domain(
|
|
|
9901
10134
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9902
10135
|
statistic: typing.Optional[builtins.str] = None,
|
|
9903
10136
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10137
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9904
10138
|
) -> _Metric_e396a4dc:
|
|
9905
10139
|
'''Metric for master JVM memory pressure.
|
|
9906
10140
|
|
|
9907
10141
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9908
10142
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9909
10143
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10144
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9910
10145
|
: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
|
|
9911
10146
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9912
10147
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9914,6 +10149,7 @@ class Domain(
|
|
|
9914
10149
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9915
10150
|
: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
|
|
9916
10151
|
: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
|
|
10152
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9917
10153
|
|
|
9918
10154
|
:default: maximum over 5 minutes
|
|
9919
10155
|
'''
|
|
@@ -9921,6 +10157,7 @@ class Domain(
|
|
|
9921
10157
|
account=account,
|
|
9922
10158
|
color=color,
|
|
9923
10159
|
dimensions_map=dimensions_map,
|
|
10160
|
+
id=id,
|
|
9924
10161
|
label=label,
|
|
9925
10162
|
period=period,
|
|
9926
10163
|
region=region,
|
|
@@ -9928,6 +10165,7 @@ class Domain(
|
|
|
9928
10165
|
stack_region=stack_region,
|
|
9929
10166
|
statistic=statistic,
|
|
9930
10167
|
unit=unit,
|
|
10168
|
+
visible=visible,
|
|
9931
10169
|
)
|
|
9932
10170
|
|
|
9933
10171
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricMasterJVMMemoryPressure", [props]))
|
|
@@ -9939,6 +10177,7 @@ class Domain(
|
|
|
9939
10177
|
account: typing.Optional[builtins.str] = None,
|
|
9940
10178
|
color: typing.Optional[builtins.str] = None,
|
|
9941
10179
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10180
|
+
id: typing.Optional[builtins.str] = None,
|
|
9942
10181
|
label: typing.Optional[builtins.str] = None,
|
|
9943
10182
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9944
10183
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9946,12 +10185,14 @@ class Domain(
|
|
|
9946
10185
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9947
10186
|
statistic: typing.Optional[builtins.str] = None,
|
|
9948
10187
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10188
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9949
10189
|
) -> _Metric_e396a4dc:
|
|
9950
10190
|
'''Metric for the number of nodes.
|
|
9951
10191
|
|
|
9952
10192
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9953
10193
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9954
10194
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10195
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
9955
10196
|
: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
|
|
9956
10197
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9957
10198
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9959,6 +10200,7 @@ class Domain(
|
|
|
9959
10200
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9960
10201
|
: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
|
|
9961
10202
|
: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
|
|
10203
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
9962
10204
|
|
|
9963
10205
|
:default: minimum over 1 hour
|
|
9964
10206
|
'''
|
|
@@ -9966,6 +10208,7 @@ class Domain(
|
|
|
9966
10208
|
account=account,
|
|
9967
10209
|
color=color,
|
|
9968
10210
|
dimensions_map=dimensions_map,
|
|
10211
|
+
id=id,
|
|
9969
10212
|
label=label,
|
|
9970
10213
|
period=period,
|
|
9971
10214
|
region=region,
|
|
@@ -9973,6 +10216,7 @@ class Domain(
|
|
|
9973
10216
|
stack_region=stack_region,
|
|
9974
10217
|
statistic=statistic,
|
|
9975
10218
|
unit=unit,
|
|
10219
|
+
visible=visible,
|
|
9976
10220
|
)
|
|
9977
10221
|
|
|
9978
10222
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNodes", [props]))
|
|
@@ -9984,6 +10228,7 @@ class Domain(
|
|
|
9984
10228
|
account: typing.Optional[builtins.str] = None,
|
|
9985
10229
|
color: typing.Optional[builtins.str] = None,
|
|
9986
10230
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10231
|
+
id: typing.Optional[builtins.str] = None,
|
|
9987
10232
|
label: typing.Optional[builtins.str] = None,
|
|
9988
10233
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9989
10234
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9991,12 +10236,14 @@ class Domain(
|
|
|
9991
10236
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9992
10237
|
statistic: typing.Optional[builtins.str] = None,
|
|
9993
10238
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10239
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9994
10240
|
) -> _Metric_e396a4dc:
|
|
9995
10241
|
'''Metric for number of searchable documents.
|
|
9996
10242
|
|
|
9997
10243
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9998
10244
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
9999
10245
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10246
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
10000
10247
|
: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
|
|
10001
10248
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10002
10249
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10004,6 +10251,7 @@ class Domain(
|
|
|
10004
10251
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10005
10252
|
: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
|
|
10006
10253
|
: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
|
|
10254
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
10007
10255
|
|
|
10008
10256
|
:default: maximum over 5 minutes
|
|
10009
10257
|
'''
|
|
@@ -10011,6 +10259,7 @@ class Domain(
|
|
|
10011
10259
|
account=account,
|
|
10012
10260
|
color=color,
|
|
10013
10261
|
dimensions_map=dimensions_map,
|
|
10262
|
+
id=id,
|
|
10014
10263
|
label=label,
|
|
10015
10264
|
period=period,
|
|
10016
10265
|
region=region,
|
|
@@ -10018,6 +10267,7 @@ class Domain(
|
|
|
10018
10267
|
stack_region=stack_region,
|
|
10019
10268
|
statistic=statistic,
|
|
10020
10269
|
unit=unit,
|
|
10270
|
+
visible=visible,
|
|
10021
10271
|
)
|
|
10022
10272
|
|
|
10023
10273
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchableDocuments", [props]))
|
|
@@ -10029,6 +10279,7 @@ class Domain(
|
|
|
10029
10279
|
account: typing.Optional[builtins.str] = None,
|
|
10030
10280
|
color: typing.Optional[builtins.str] = None,
|
|
10031
10281
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10282
|
+
id: typing.Optional[builtins.str] = None,
|
|
10032
10283
|
label: typing.Optional[builtins.str] = None,
|
|
10033
10284
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10034
10285
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10036,12 +10287,14 @@ class Domain(
|
|
|
10036
10287
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10037
10288
|
statistic: typing.Optional[builtins.str] = None,
|
|
10038
10289
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10290
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10039
10291
|
) -> _Metric_e396a4dc:
|
|
10040
10292
|
'''Metric for search latency.
|
|
10041
10293
|
|
|
10042
10294
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10043
10295
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
10044
10296
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10297
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
10045
10298
|
: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
|
|
10046
10299
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10047
10300
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10049,6 +10302,7 @@ class Domain(
|
|
|
10049
10302
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10050
10303
|
: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
|
|
10051
10304
|
: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
|
|
10305
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
10052
10306
|
|
|
10053
10307
|
:default: p99 over 5 minutes
|
|
10054
10308
|
'''
|
|
@@ -10056,6 +10310,7 @@ class Domain(
|
|
|
10056
10310
|
account=account,
|
|
10057
10311
|
color=color,
|
|
10058
10312
|
dimensions_map=dimensions_map,
|
|
10313
|
+
id=id,
|
|
10059
10314
|
label=label,
|
|
10060
10315
|
period=period,
|
|
10061
10316
|
region=region,
|
|
@@ -10063,6 +10318,7 @@ class Domain(
|
|
|
10063
10318
|
stack_region=stack_region,
|
|
10064
10319
|
statistic=statistic,
|
|
10065
10320
|
unit=unit,
|
|
10321
|
+
visible=visible,
|
|
10066
10322
|
)
|
|
10067
10323
|
|
|
10068
10324
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchLatency", [props]))
|
|
@@ -10883,6 +11139,7 @@ def _typecheckingstub__ed477ecf16b0f23884f9eb3a0a90df530d2486e08c8dd662432a14ff4
|
|
|
10883
11139
|
account: typing.Optional[builtins.str] = None,
|
|
10884
11140
|
color: typing.Optional[builtins.str] = None,
|
|
10885
11141
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11142
|
+
id: typing.Optional[builtins.str] = None,
|
|
10886
11143
|
label: typing.Optional[builtins.str] = None,
|
|
10887
11144
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10888
11145
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10890,6 +11147,7 @@ def _typecheckingstub__ed477ecf16b0f23884f9eb3a0a90df530d2486e08c8dd662432a14ff4
|
|
|
10890
11147
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10891
11148
|
statistic: typing.Optional[builtins.str] = None,
|
|
10892
11149
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11150
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10893
11151
|
) -> None:
|
|
10894
11152
|
"""Type checking stubs"""
|
|
10895
11153
|
pass
|
|
@@ -11080,6 +11338,7 @@ def _typecheckingstub__f6380e234537911c13695e16580579ea3144cdf17f001286bfce646a7
|
|
|
11080
11338
|
account: typing.Optional[builtins.str] = None,
|
|
11081
11339
|
color: typing.Optional[builtins.str] = None,
|
|
11082
11340
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11341
|
+
id: typing.Optional[builtins.str] = None,
|
|
11083
11342
|
label: typing.Optional[builtins.str] = None,
|
|
11084
11343
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11085
11344
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11087,6 +11346,7 @@ def _typecheckingstub__f6380e234537911c13695e16580579ea3144cdf17f001286bfce646a7
|
|
|
11087
11346
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11088
11347
|
statistic: typing.Optional[builtins.str] = None,
|
|
11089
11348
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11349
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11090
11350
|
) -> None:
|
|
11091
11351
|
"""Type checking stubs"""
|
|
11092
11352
|
pass
|