aws-cdk-lib 2.174.1__py3-none-any.whl → 2.175.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.174.1.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +248 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
- aws_cdk/aws_autoscaling/__init__.py +8 -8
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cloudfront/__init__.py +92 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudwatch/__init__.py +146 -0
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dynamodb/__init__.py +300 -0
- aws_cdk/aws_ec2/__init__.py +97 -0
- aws_cdk/aws_ecs/__init__.py +351 -110
- aws_cdk/aws_ecs_patterns/__init__.py +77 -42
- aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kms/__init__.py +197 -0
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_rds/__init__.py +384 -0
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +42 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +36 -36
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_sns/__init__.py
CHANGED
|
@@ -2767,6 +2767,8 @@ class ITopic(
|
|
|
2767
2767
|
label: typing.Optional[builtins.str] = None,
|
|
2768
2768
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2769
2769
|
region: typing.Optional[builtins.str] = None,
|
|
2770
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2771
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2770
2772
|
statistic: typing.Optional[builtins.str] = None,
|
|
2771
2773
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2772
2774
|
) -> _Metric_e396a4dc:
|
|
@@ -2779,6 +2781,8 @@ class ITopic(
|
|
|
2779
2781
|
: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
|
|
2780
2782
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2781
2783
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2784
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2785
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2782
2786
|
: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
|
|
2783
2787
|
: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
|
|
2784
2788
|
'''
|
|
@@ -2794,6 +2798,8 @@ class ITopic(
|
|
|
2794
2798
|
label: typing.Optional[builtins.str] = None,
|
|
2795
2799
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2796
2800
|
region: typing.Optional[builtins.str] = None,
|
|
2801
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2802
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2797
2803
|
statistic: typing.Optional[builtins.str] = None,
|
|
2798
2804
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2799
2805
|
) -> _Metric_e396a4dc:
|
|
@@ -2807,6 +2813,8 @@ class ITopic(
|
|
|
2807
2813
|
: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
|
|
2808
2814
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2809
2815
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2816
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2817
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2810
2818
|
: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
|
|
2811
2819
|
: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
|
|
2812
2820
|
'''
|
|
@@ -2822,6 +2830,8 @@ class ITopic(
|
|
|
2822
2830
|
label: typing.Optional[builtins.str] = None,
|
|
2823
2831
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2824
2832
|
region: typing.Optional[builtins.str] = None,
|
|
2833
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2834
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2825
2835
|
statistic: typing.Optional[builtins.str] = None,
|
|
2826
2836
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2827
2837
|
) -> _Metric_e396a4dc:
|
|
@@ -2835,6 +2845,8 @@ class ITopic(
|
|
|
2835
2845
|
: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
|
|
2836
2846
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2837
2847
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2848
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2849
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2838
2850
|
: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
|
|
2839
2851
|
: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
|
|
2840
2852
|
'''
|
|
@@ -2850,6 +2862,8 @@ class ITopic(
|
|
|
2850
2862
|
label: typing.Optional[builtins.str] = None,
|
|
2851
2863
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2852
2864
|
region: typing.Optional[builtins.str] = None,
|
|
2865
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2866
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2853
2867
|
statistic: typing.Optional[builtins.str] = None,
|
|
2854
2868
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2855
2869
|
) -> _Metric_e396a4dc:
|
|
@@ -2863,6 +2877,8 @@ class ITopic(
|
|
|
2863
2877
|
: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
|
|
2864
2878
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2865
2879
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2880
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2881
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2866
2882
|
: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
|
|
2867
2883
|
: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
|
|
2868
2884
|
'''
|
|
@@ -2878,6 +2894,8 @@ class ITopic(
|
|
|
2878
2894
|
label: typing.Optional[builtins.str] = None,
|
|
2879
2895
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2880
2896
|
region: typing.Optional[builtins.str] = None,
|
|
2897
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2898
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2881
2899
|
statistic: typing.Optional[builtins.str] = None,
|
|
2882
2900
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2883
2901
|
) -> _Metric_e396a4dc:
|
|
@@ -2891,6 +2909,8 @@ class ITopic(
|
|
|
2891
2909
|
: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
|
|
2892
2910
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2893
2911
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2912
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2913
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2894
2914
|
: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
|
|
2895
2915
|
: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
|
|
2896
2916
|
'''
|
|
@@ -2906,6 +2926,8 @@ class ITopic(
|
|
|
2906
2926
|
label: typing.Optional[builtins.str] = None,
|
|
2907
2927
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2908
2928
|
region: typing.Optional[builtins.str] = None,
|
|
2929
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2930
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2909
2931
|
statistic: typing.Optional[builtins.str] = None,
|
|
2910
2932
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2911
2933
|
) -> _Metric_e396a4dc:
|
|
@@ -2919,6 +2941,8 @@ class ITopic(
|
|
|
2919
2941
|
: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
|
|
2920
2942
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2921
2943
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2944
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2945
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2922
2946
|
: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
|
|
2923
2947
|
: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
|
|
2924
2948
|
'''
|
|
@@ -2934,6 +2958,8 @@ class ITopic(
|
|
|
2934
2958
|
label: typing.Optional[builtins.str] = None,
|
|
2935
2959
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2936
2960
|
region: typing.Optional[builtins.str] = None,
|
|
2961
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2962
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2937
2963
|
statistic: typing.Optional[builtins.str] = None,
|
|
2938
2964
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2939
2965
|
) -> _Metric_e396a4dc:
|
|
@@ -2947,6 +2973,8 @@ class ITopic(
|
|
|
2947
2973
|
: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
|
|
2948
2974
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2949
2975
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2976
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2977
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2950
2978
|
: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
|
|
2951
2979
|
: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
|
|
2952
2980
|
'''
|
|
@@ -2962,6 +2990,8 @@ class ITopic(
|
|
|
2962
2990
|
label: typing.Optional[builtins.str] = None,
|
|
2963
2991
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2964
2992
|
region: typing.Optional[builtins.str] = None,
|
|
2993
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2994
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2965
2995
|
statistic: typing.Optional[builtins.str] = None,
|
|
2966
2996
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2967
2997
|
) -> _Metric_e396a4dc:
|
|
@@ -2975,6 +3005,8 @@ class ITopic(
|
|
|
2975
3005
|
: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
|
|
2976
3006
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2977
3007
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3008
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3009
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2978
3010
|
: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
|
|
2979
3011
|
: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
|
|
2980
3012
|
'''
|
|
@@ -2990,6 +3022,8 @@ class ITopic(
|
|
|
2990
3022
|
label: typing.Optional[builtins.str] = None,
|
|
2991
3023
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2992
3024
|
region: typing.Optional[builtins.str] = None,
|
|
3025
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3026
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2993
3027
|
statistic: typing.Optional[builtins.str] = None,
|
|
2994
3028
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2995
3029
|
) -> _Metric_e396a4dc:
|
|
@@ -3003,6 +3037,8 @@ class ITopic(
|
|
|
3003
3037
|
: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
|
|
3004
3038
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3005
3039
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3040
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3041
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3006
3042
|
: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
|
|
3007
3043
|
: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
|
|
3008
3044
|
'''
|
|
@@ -3018,6 +3054,8 @@ class ITopic(
|
|
|
3018
3054
|
label: typing.Optional[builtins.str] = None,
|
|
3019
3055
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3020
3056
|
region: typing.Optional[builtins.str] = None,
|
|
3057
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3058
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3021
3059
|
statistic: typing.Optional[builtins.str] = None,
|
|
3022
3060
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3023
3061
|
) -> _Metric_e396a4dc:
|
|
@@ -3031,6 +3069,8 @@ class ITopic(
|
|
|
3031
3069
|
: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
|
|
3032
3070
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3033
3071
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3072
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3073
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3034
3074
|
: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
|
|
3035
3075
|
: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
|
|
3036
3076
|
'''
|
|
@@ -3145,6 +3185,8 @@ class _ITopicProxy(
|
|
|
3145
3185
|
label: typing.Optional[builtins.str] = None,
|
|
3146
3186
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3147
3187
|
region: typing.Optional[builtins.str] = None,
|
|
3188
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3189
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3148
3190
|
statistic: typing.Optional[builtins.str] = None,
|
|
3149
3191
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3150
3192
|
) -> _Metric_e396a4dc:
|
|
@@ -3157,6 +3199,8 @@ class _ITopicProxy(
|
|
|
3157
3199
|
: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
|
|
3158
3200
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3159
3201
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3202
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3203
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3160
3204
|
: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
|
|
3161
3205
|
: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
|
|
3162
3206
|
'''
|
|
@@ -3170,6 +3214,8 @@ class _ITopicProxy(
|
|
|
3170
3214
|
label=label,
|
|
3171
3215
|
period=period,
|
|
3172
3216
|
region=region,
|
|
3217
|
+
stack_account=stack_account,
|
|
3218
|
+
stack_region=stack_region,
|
|
3173
3219
|
statistic=statistic,
|
|
3174
3220
|
unit=unit,
|
|
3175
3221
|
)
|
|
@@ -3186,6 +3232,8 @@ class _ITopicProxy(
|
|
|
3186
3232
|
label: typing.Optional[builtins.str] = None,
|
|
3187
3233
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3188
3234
|
region: typing.Optional[builtins.str] = None,
|
|
3235
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3236
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3189
3237
|
statistic: typing.Optional[builtins.str] = None,
|
|
3190
3238
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3191
3239
|
) -> _Metric_e396a4dc:
|
|
@@ -3199,6 +3247,8 @@ class _ITopicProxy(
|
|
|
3199
3247
|
: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
|
|
3200
3248
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3201
3249
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3250
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3251
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3202
3252
|
: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
|
|
3203
3253
|
: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
|
|
3204
3254
|
'''
|
|
@@ -3209,6 +3259,8 @@ class _ITopicProxy(
|
|
|
3209
3259
|
label=label,
|
|
3210
3260
|
period=period,
|
|
3211
3261
|
region=region,
|
|
3262
|
+
stack_account=stack_account,
|
|
3263
|
+
stack_region=stack_region,
|
|
3212
3264
|
statistic=statistic,
|
|
3213
3265
|
unit=unit,
|
|
3214
3266
|
)
|
|
@@ -3225,6 +3277,8 @@ class _ITopicProxy(
|
|
|
3225
3277
|
label: typing.Optional[builtins.str] = None,
|
|
3226
3278
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3227
3279
|
region: typing.Optional[builtins.str] = None,
|
|
3280
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3281
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3228
3282
|
statistic: typing.Optional[builtins.str] = None,
|
|
3229
3283
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3230
3284
|
) -> _Metric_e396a4dc:
|
|
@@ -3238,6 +3292,8 @@ class _ITopicProxy(
|
|
|
3238
3292
|
: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
|
|
3239
3293
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3240
3294
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3295
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3296
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3241
3297
|
: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
|
|
3242
3298
|
: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
|
|
3243
3299
|
'''
|
|
@@ -3248,6 +3304,8 @@ class _ITopicProxy(
|
|
|
3248
3304
|
label=label,
|
|
3249
3305
|
period=period,
|
|
3250
3306
|
region=region,
|
|
3307
|
+
stack_account=stack_account,
|
|
3308
|
+
stack_region=stack_region,
|
|
3251
3309
|
statistic=statistic,
|
|
3252
3310
|
unit=unit,
|
|
3253
3311
|
)
|
|
@@ -3264,6 +3322,8 @@ class _ITopicProxy(
|
|
|
3264
3322
|
label: typing.Optional[builtins.str] = None,
|
|
3265
3323
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3266
3324
|
region: typing.Optional[builtins.str] = None,
|
|
3325
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3326
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3267
3327
|
statistic: typing.Optional[builtins.str] = None,
|
|
3268
3328
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3269
3329
|
) -> _Metric_e396a4dc:
|
|
@@ -3277,6 +3337,8 @@ class _ITopicProxy(
|
|
|
3277
3337
|
: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
|
|
3278
3338
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3279
3339
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3340
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3341
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3280
3342
|
: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
|
|
3281
3343
|
: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
|
|
3282
3344
|
'''
|
|
@@ -3287,6 +3349,8 @@ class _ITopicProxy(
|
|
|
3287
3349
|
label=label,
|
|
3288
3350
|
period=period,
|
|
3289
3351
|
region=region,
|
|
3352
|
+
stack_account=stack_account,
|
|
3353
|
+
stack_region=stack_region,
|
|
3290
3354
|
statistic=statistic,
|
|
3291
3355
|
unit=unit,
|
|
3292
3356
|
)
|
|
@@ -3303,6 +3367,8 @@ class _ITopicProxy(
|
|
|
3303
3367
|
label: typing.Optional[builtins.str] = None,
|
|
3304
3368
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3305
3369
|
region: typing.Optional[builtins.str] = None,
|
|
3370
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3371
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3306
3372
|
statistic: typing.Optional[builtins.str] = None,
|
|
3307
3373
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3308
3374
|
) -> _Metric_e396a4dc:
|
|
@@ -3316,6 +3382,8 @@ class _ITopicProxy(
|
|
|
3316
3382
|
: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
|
|
3317
3383
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3318
3384
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3385
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3386
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3319
3387
|
: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
|
|
3320
3388
|
: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
|
|
3321
3389
|
'''
|
|
@@ -3326,6 +3394,8 @@ class _ITopicProxy(
|
|
|
3326
3394
|
label=label,
|
|
3327
3395
|
period=period,
|
|
3328
3396
|
region=region,
|
|
3397
|
+
stack_account=stack_account,
|
|
3398
|
+
stack_region=stack_region,
|
|
3329
3399
|
statistic=statistic,
|
|
3330
3400
|
unit=unit,
|
|
3331
3401
|
)
|
|
@@ -3342,6 +3412,8 @@ class _ITopicProxy(
|
|
|
3342
3412
|
label: typing.Optional[builtins.str] = None,
|
|
3343
3413
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3344
3414
|
region: typing.Optional[builtins.str] = None,
|
|
3415
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3416
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3345
3417
|
statistic: typing.Optional[builtins.str] = None,
|
|
3346
3418
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3347
3419
|
) -> _Metric_e396a4dc:
|
|
@@ -3355,6 +3427,8 @@ class _ITopicProxy(
|
|
|
3355
3427
|
: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
|
|
3356
3428
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3357
3429
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3430
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3431
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3358
3432
|
: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
|
|
3359
3433
|
: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
|
|
3360
3434
|
'''
|
|
@@ -3365,6 +3439,8 @@ class _ITopicProxy(
|
|
|
3365
3439
|
label=label,
|
|
3366
3440
|
period=period,
|
|
3367
3441
|
region=region,
|
|
3442
|
+
stack_account=stack_account,
|
|
3443
|
+
stack_region=stack_region,
|
|
3368
3444
|
statistic=statistic,
|
|
3369
3445
|
unit=unit,
|
|
3370
3446
|
)
|
|
@@ -3381,6 +3457,8 @@ class _ITopicProxy(
|
|
|
3381
3457
|
label: typing.Optional[builtins.str] = None,
|
|
3382
3458
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3383
3459
|
region: typing.Optional[builtins.str] = None,
|
|
3460
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3461
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3384
3462
|
statistic: typing.Optional[builtins.str] = None,
|
|
3385
3463
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3386
3464
|
) -> _Metric_e396a4dc:
|
|
@@ -3394,6 +3472,8 @@ class _ITopicProxy(
|
|
|
3394
3472
|
: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
|
|
3395
3473
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3396
3474
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3475
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3476
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3397
3477
|
: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
|
|
3398
3478
|
: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
|
|
3399
3479
|
'''
|
|
@@ -3404,6 +3484,8 @@ class _ITopicProxy(
|
|
|
3404
3484
|
label=label,
|
|
3405
3485
|
period=period,
|
|
3406
3486
|
region=region,
|
|
3487
|
+
stack_account=stack_account,
|
|
3488
|
+
stack_region=stack_region,
|
|
3407
3489
|
statistic=statistic,
|
|
3408
3490
|
unit=unit,
|
|
3409
3491
|
)
|
|
@@ -3420,6 +3502,8 @@ class _ITopicProxy(
|
|
|
3420
3502
|
label: typing.Optional[builtins.str] = None,
|
|
3421
3503
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3422
3504
|
region: typing.Optional[builtins.str] = None,
|
|
3505
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3506
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3423
3507
|
statistic: typing.Optional[builtins.str] = None,
|
|
3424
3508
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3425
3509
|
) -> _Metric_e396a4dc:
|
|
@@ -3433,6 +3517,8 @@ class _ITopicProxy(
|
|
|
3433
3517
|
: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
|
|
3434
3518
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3435
3519
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3520
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3521
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3436
3522
|
: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
|
|
3437
3523
|
: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
|
|
3438
3524
|
'''
|
|
@@ -3443,6 +3529,8 @@ class _ITopicProxy(
|
|
|
3443
3529
|
label=label,
|
|
3444
3530
|
period=period,
|
|
3445
3531
|
region=region,
|
|
3532
|
+
stack_account=stack_account,
|
|
3533
|
+
stack_region=stack_region,
|
|
3446
3534
|
statistic=statistic,
|
|
3447
3535
|
unit=unit,
|
|
3448
3536
|
)
|
|
@@ -3459,6 +3547,8 @@ class _ITopicProxy(
|
|
|
3459
3547
|
label: typing.Optional[builtins.str] = None,
|
|
3460
3548
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3461
3549
|
region: typing.Optional[builtins.str] = None,
|
|
3550
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3551
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3462
3552
|
statistic: typing.Optional[builtins.str] = None,
|
|
3463
3553
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3464
3554
|
) -> _Metric_e396a4dc:
|
|
@@ -3472,6 +3562,8 @@ class _ITopicProxy(
|
|
|
3472
3562
|
: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
|
|
3473
3563
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3474
3564
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3565
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3566
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3475
3567
|
: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
|
|
3476
3568
|
: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
|
|
3477
3569
|
'''
|
|
@@ -3482,6 +3574,8 @@ class _ITopicProxy(
|
|
|
3482
3574
|
label=label,
|
|
3483
3575
|
period=period,
|
|
3484
3576
|
region=region,
|
|
3577
|
+
stack_account=stack_account,
|
|
3578
|
+
stack_region=stack_region,
|
|
3485
3579
|
statistic=statistic,
|
|
3486
3580
|
unit=unit,
|
|
3487
3581
|
)
|
|
@@ -3498,6 +3592,8 @@ class _ITopicProxy(
|
|
|
3498
3592
|
label: typing.Optional[builtins.str] = None,
|
|
3499
3593
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3500
3594
|
region: typing.Optional[builtins.str] = None,
|
|
3595
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3596
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3501
3597
|
statistic: typing.Optional[builtins.str] = None,
|
|
3502
3598
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3503
3599
|
) -> _Metric_e396a4dc:
|
|
@@ -3511,6 +3607,8 @@ class _ITopicProxy(
|
|
|
3511
3607
|
: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
|
|
3512
3608
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3513
3609
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3610
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3611
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3514
3612
|
: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
|
|
3515
3613
|
: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
|
|
3516
3614
|
'''
|
|
@@ -3521,6 +3619,8 @@ class _ITopicProxy(
|
|
|
3521
3619
|
label=label,
|
|
3522
3620
|
period=period,
|
|
3523
3621
|
region=region,
|
|
3622
|
+
stack_account=stack_account,
|
|
3623
|
+
stack_region=stack_region,
|
|
3524
3624
|
statistic=statistic,
|
|
3525
3625
|
unit=unit,
|
|
3526
3626
|
)
|
|
@@ -5069,6 +5169,8 @@ class TopicBase(
|
|
|
5069
5169
|
label: typing.Optional[builtins.str] = None,
|
|
5070
5170
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5071
5171
|
region: typing.Optional[builtins.str] = None,
|
|
5172
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5173
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5072
5174
|
statistic: typing.Optional[builtins.str] = None,
|
|
5073
5175
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5074
5176
|
) -> _Metric_e396a4dc:
|
|
@@ -5081,6 +5183,8 @@ class TopicBase(
|
|
|
5081
5183
|
: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
|
|
5082
5184
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5083
5185
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5186
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5187
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5084
5188
|
: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
|
|
5085
5189
|
: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
|
|
5086
5190
|
'''
|
|
@@ -5094,6 +5198,8 @@ class TopicBase(
|
|
|
5094
5198
|
label=label,
|
|
5095
5199
|
period=period,
|
|
5096
5200
|
region=region,
|
|
5201
|
+
stack_account=stack_account,
|
|
5202
|
+
stack_region=stack_region,
|
|
5097
5203
|
statistic=statistic,
|
|
5098
5204
|
unit=unit,
|
|
5099
5205
|
)
|
|
@@ -5110,6 +5216,8 @@ class TopicBase(
|
|
|
5110
5216
|
label: typing.Optional[builtins.str] = None,
|
|
5111
5217
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5112
5218
|
region: typing.Optional[builtins.str] = None,
|
|
5219
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5220
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5113
5221
|
statistic: typing.Optional[builtins.str] = None,
|
|
5114
5222
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5115
5223
|
) -> _Metric_e396a4dc:
|
|
@@ -5123,6 +5231,8 @@ class TopicBase(
|
|
|
5123
5231
|
: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
|
|
5124
5232
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5125
5233
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5234
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5235
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5126
5236
|
: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
|
|
5127
5237
|
: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
|
|
5128
5238
|
'''
|
|
@@ -5133,6 +5243,8 @@ class TopicBase(
|
|
|
5133
5243
|
label=label,
|
|
5134
5244
|
period=period,
|
|
5135
5245
|
region=region,
|
|
5246
|
+
stack_account=stack_account,
|
|
5247
|
+
stack_region=stack_region,
|
|
5136
5248
|
statistic=statistic,
|
|
5137
5249
|
unit=unit,
|
|
5138
5250
|
)
|
|
@@ -5149,6 +5261,8 @@ class TopicBase(
|
|
|
5149
5261
|
label: typing.Optional[builtins.str] = None,
|
|
5150
5262
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5151
5263
|
region: typing.Optional[builtins.str] = None,
|
|
5264
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5265
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5152
5266
|
statistic: typing.Optional[builtins.str] = None,
|
|
5153
5267
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5154
5268
|
) -> _Metric_e396a4dc:
|
|
@@ -5162,6 +5276,8 @@ class TopicBase(
|
|
|
5162
5276
|
: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
|
|
5163
5277
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5164
5278
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5279
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5280
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5165
5281
|
: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
|
|
5166
5282
|
: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
|
|
5167
5283
|
'''
|
|
@@ -5172,6 +5288,8 @@ class TopicBase(
|
|
|
5172
5288
|
label=label,
|
|
5173
5289
|
period=period,
|
|
5174
5290
|
region=region,
|
|
5291
|
+
stack_account=stack_account,
|
|
5292
|
+
stack_region=stack_region,
|
|
5175
5293
|
statistic=statistic,
|
|
5176
5294
|
unit=unit,
|
|
5177
5295
|
)
|
|
@@ -5188,6 +5306,8 @@ class TopicBase(
|
|
|
5188
5306
|
label: typing.Optional[builtins.str] = None,
|
|
5189
5307
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5190
5308
|
region: typing.Optional[builtins.str] = None,
|
|
5309
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5310
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5191
5311
|
statistic: typing.Optional[builtins.str] = None,
|
|
5192
5312
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5193
5313
|
) -> _Metric_e396a4dc:
|
|
@@ -5201,6 +5321,8 @@ class TopicBase(
|
|
|
5201
5321
|
: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
|
|
5202
5322
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5203
5323
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5324
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5325
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5204
5326
|
: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
|
|
5205
5327
|
: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
|
|
5206
5328
|
'''
|
|
@@ -5211,6 +5333,8 @@ class TopicBase(
|
|
|
5211
5333
|
label=label,
|
|
5212
5334
|
period=period,
|
|
5213
5335
|
region=region,
|
|
5336
|
+
stack_account=stack_account,
|
|
5337
|
+
stack_region=stack_region,
|
|
5214
5338
|
statistic=statistic,
|
|
5215
5339
|
unit=unit,
|
|
5216
5340
|
)
|
|
@@ -5227,6 +5351,8 @@ class TopicBase(
|
|
|
5227
5351
|
label: typing.Optional[builtins.str] = None,
|
|
5228
5352
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5229
5353
|
region: typing.Optional[builtins.str] = None,
|
|
5354
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5355
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5230
5356
|
statistic: typing.Optional[builtins.str] = None,
|
|
5231
5357
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5232
5358
|
) -> _Metric_e396a4dc:
|
|
@@ -5240,6 +5366,8 @@ class TopicBase(
|
|
|
5240
5366
|
: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
|
|
5241
5367
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5242
5368
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5369
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5370
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5243
5371
|
: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
|
|
5244
5372
|
: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
|
|
5245
5373
|
'''
|
|
@@ -5250,6 +5378,8 @@ class TopicBase(
|
|
|
5250
5378
|
label=label,
|
|
5251
5379
|
period=period,
|
|
5252
5380
|
region=region,
|
|
5381
|
+
stack_account=stack_account,
|
|
5382
|
+
stack_region=stack_region,
|
|
5253
5383
|
statistic=statistic,
|
|
5254
5384
|
unit=unit,
|
|
5255
5385
|
)
|
|
@@ -5266,6 +5396,8 @@ class TopicBase(
|
|
|
5266
5396
|
label: typing.Optional[builtins.str] = None,
|
|
5267
5397
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5268
5398
|
region: typing.Optional[builtins.str] = None,
|
|
5399
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5400
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5269
5401
|
statistic: typing.Optional[builtins.str] = None,
|
|
5270
5402
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5271
5403
|
) -> _Metric_e396a4dc:
|
|
@@ -5279,6 +5411,8 @@ class TopicBase(
|
|
|
5279
5411
|
: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
|
|
5280
5412
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5281
5413
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5414
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5415
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5282
5416
|
: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
|
|
5283
5417
|
: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
|
|
5284
5418
|
'''
|
|
@@ -5289,6 +5423,8 @@ class TopicBase(
|
|
|
5289
5423
|
label=label,
|
|
5290
5424
|
period=period,
|
|
5291
5425
|
region=region,
|
|
5426
|
+
stack_account=stack_account,
|
|
5427
|
+
stack_region=stack_region,
|
|
5292
5428
|
statistic=statistic,
|
|
5293
5429
|
unit=unit,
|
|
5294
5430
|
)
|
|
@@ -5305,6 +5441,8 @@ class TopicBase(
|
|
|
5305
5441
|
label: typing.Optional[builtins.str] = None,
|
|
5306
5442
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5307
5443
|
region: typing.Optional[builtins.str] = None,
|
|
5444
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5445
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5308
5446
|
statistic: typing.Optional[builtins.str] = None,
|
|
5309
5447
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5310
5448
|
) -> _Metric_e396a4dc:
|
|
@@ -5318,6 +5456,8 @@ class TopicBase(
|
|
|
5318
5456
|
: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
|
|
5319
5457
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5320
5458
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5459
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5460
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5321
5461
|
: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
|
|
5322
5462
|
: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
|
|
5323
5463
|
'''
|
|
@@ -5328,6 +5468,8 @@ class TopicBase(
|
|
|
5328
5468
|
label=label,
|
|
5329
5469
|
period=period,
|
|
5330
5470
|
region=region,
|
|
5471
|
+
stack_account=stack_account,
|
|
5472
|
+
stack_region=stack_region,
|
|
5331
5473
|
statistic=statistic,
|
|
5332
5474
|
unit=unit,
|
|
5333
5475
|
)
|
|
@@ -5344,6 +5486,8 @@ class TopicBase(
|
|
|
5344
5486
|
label: typing.Optional[builtins.str] = None,
|
|
5345
5487
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5346
5488
|
region: typing.Optional[builtins.str] = None,
|
|
5489
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5490
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5347
5491
|
statistic: typing.Optional[builtins.str] = None,
|
|
5348
5492
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5349
5493
|
) -> _Metric_e396a4dc:
|
|
@@ -5357,6 +5501,8 @@ class TopicBase(
|
|
|
5357
5501
|
: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
|
|
5358
5502
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5359
5503
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5504
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5505
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5360
5506
|
: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
|
|
5361
5507
|
: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
|
|
5362
5508
|
'''
|
|
@@ -5367,6 +5513,8 @@ class TopicBase(
|
|
|
5367
5513
|
label=label,
|
|
5368
5514
|
period=period,
|
|
5369
5515
|
region=region,
|
|
5516
|
+
stack_account=stack_account,
|
|
5517
|
+
stack_region=stack_region,
|
|
5370
5518
|
statistic=statistic,
|
|
5371
5519
|
unit=unit,
|
|
5372
5520
|
)
|
|
@@ -5383,6 +5531,8 @@ class TopicBase(
|
|
|
5383
5531
|
label: typing.Optional[builtins.str] = None,
|
|
5384
5532
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5385
5533
|
region: typing.Optional[builtins.str] = None,
|
|
5534
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5535
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5386
5536
|
statistic: typing.Optional[builtins.str] = None,
|
|
5387
5537
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5388
5538
|
) -> _Metric_e396a4dc:
|
|
@@ -5396,6 +5546,8 @@ class TopicBase(
|
|
|
5396
5546
|
: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
|
|
5397
5547
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5398
5548
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5549
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5550
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5399
5551
|
: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
|
|
5400
5552
|
: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
|
|
5401
5553
|
'''
|
|
@@ -5406,6 +5558,8 @@ class TopicBase(
|
|
|
5406
5558
|
label=label,
|
|
5407
5559
|
period=period,
|
|
5408
5560
|
region=region,
|
|
5561
|
+
stack_account=stack_account,
|
|
5562
|
+
stack_region=stack_region,
|
|
5409
5563
|
statistic=statistic,
|
|
5410
5564
|
unit=unit,
|
|
5411
5565
|
)
|
|
@@ -5422,6 +5576,8 @@ class TopicBase(
|
|
|
5422
5576
|
label: typing.Optional[builtins.str] = None,
|
|
5423
5577
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5424
5578
|
region: typing.Optional[builtins.str] = None,
|
|
5579
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5580
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5425
5581
|
statistic: typing.Optional[builtins.str] = None,
|
|
5426
5582
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5427
5583
|
) -> _Metric_e396a4dc:
|
|
@@ -5435,6 +5591,8 @@ class TopicBase(
|
|
|
5435
5591
|
: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
|
|
5436
5592
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5437
5593
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5594
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5595
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5438
5596
|
: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
|
|
5439
5597
|
: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
|
|
5440
5598
|
'''
|
|
@@ -5445,6 +5603,8 @@ class TopicBase(
|
|
|
5445
5603
|
label=label,
|
|
5446
5604
|
period=period,
|
|
5447
5605
|
region=region,
|
|
5606
|
+
stack_account=stack_account,
|
|
5607
|
+
stack_region=stack_region,
|
|
5448
5608
|
statistic=statistic,
|
|
5449
5609
|
unit=unit,
|
|
5450
5610
|
)
|
|
@@ -6935,6 +7095,8 @@ def _typecheckingstub__05c3997edd40866d6774aed03c03e55b6cf80f23f518be34bcdf19adf
|
|
|
6935
7095
|
label: typing.Optional[builtins.str] = None,
|
|
6936
7096
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6937
7097
|
region: typing.Optional[builtins.str] = None,
|
|
7098
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
7099
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6938
7100
|
statistic: typing.Optional[builtins.str] = None,
|
|
6939
7101
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6940
7102
|
) -> None:
|
|
@@ -7114,6 +7276,8 @@ def _typecheckingstub__b07969d7a2c71869715d0fe87d9b0d9d67f663ddecc9d81d353ba532f
|
|
|
7114
7276
|
label: typing.Optional[builtins.str] = None,
|
|
7115
7277
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
7116
7278
|
region: typing.Optional[builtins.str] = None,
|
|
7279
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
7280
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
7117
7281
|
statistic: typing.Optional[builtins.str] = None,
|
|
7118
7282
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7119
7283
|
) -> None:
|