aws-cdk-lib 2.174.1__py3-none-any.whl → 2.175.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.174.1.jsii.tgz → aws-cdk-lib@2.175.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +248 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
- aws_cdk/aws_autoscaling/__init__.py +8 -8
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cloudfront/__init__.py +92 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudwatch/__init__.py +146 -0
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dynamodb/__init__.py +300 -0
- aws_cdk/aws_ec2/__init__.py +97 -0
- aws_cdk/aws_ecs/__init__.py +351 -110
- aws_cdk/aws_ecs_patterns/__init__.py +77 -42
- aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kms/__init__.py +197 -0
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_rds/__init__.py +384 -0
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +42 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/RECORD +36 -36
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_logs/__init__.py
CHANGED
|
@@ -9981,6 +9981,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
9981
9981
|
label: typing.Optional[builtins.str] = None,
|
|
9982
9982
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9983
9983
|
region: typing.Optional[builtins.str] = None,
|
|
9984
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
9985
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
9984
9986
|
statistic: typing.Optional[builtins.str] = None,
|
|
9985
9987
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9986
9988
|
) -> _Metric_e396a4dc:
|
|
@@ -9993,6 +9995,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
9993
9995
|
: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
|
|
9994
9996
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9995
9997
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
9998
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
9999
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9996
10000
|
: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
|
|
9997
10001
|
: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
|
|
9998
10002
|
'''
|
|
@@ -10008,6 +10012,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
10008
10012
|
label: typing.Optional[builtins.str] = None,
|
|
10009
10013
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10010
10014
|
region: typing.Optional[builtins.str] = None,
|
|
10015
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10016
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10011
10017
|
statistic: typing.Optional[builtins.str] = None,
|
|
10012
10018
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10013
10019
|
) -> _Metric_e396a4dc:
|
|
@@ -10022,6 +10028,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
10022
10028
|
: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
|
|
10023
10029
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10024
10030
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10031
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10032
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10025
10033
|
: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
|
|
10026
10034
|
: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
|
|
10027
10035
|
'''
|
|
@@ -10037,6 +10045,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
10037
10045
|
label: typing.Optional[builtins.str] = None,
|
|
10038
10046
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10039
10047
|
region: typing.Optional[builtins.str] = None,
|
|
10048
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10049
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10040
10050
|
statistic: typing.Optional[builtins.str] = None,
|
|
10041
10051
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10042
10052
|
) -> _Metric_e396a4dc:
|
|
@@ -10051,6 +10061,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
10051
10061
|
: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
|
|
10052
10062
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10053
10063
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10064
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10065
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10054
10066
|
: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
|
|
10055
10067
|
: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
|
|
10056
10068
|
'''
|
|
@@ -10254,6 +10266,8 @@ class _ILogGroupProxy(
|
|
|
10254
10266
|
label: typing.Optional[builtins.str] = None,
|
|
10255
10267
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10256
10268
|
region: typing.Optional[builtins.str] = None,
|
|
10269
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10270
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10257
10271
|
statistic: typing.Optional[builtins.str] = None,
|
|
10258
10272
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10259
10273
|
) -> _Metric_e396a4dc:
|
|
@@ -10266,6 +10280,8 @@ class _ILogGroupProxy(
|
|
|
10266
10280
|
: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
|
|
10267
10281
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10268
10282
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10283
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10284
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10269
10285
|
: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
|
|
10270
10286
|
: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
|
|
10271
10287
|
'''
|
|
@@ -10279,6 +10295,8 @@ class _ILogGroupProxy(
|
|
|
10279
10295
|
label=label,
|
|
10280
10296
|
period=period,
|
|
10281
10297
|
region=region,
|
|
10298
|
+
stack_account=stack_account,
|
|
10299
|
+
stack_region=stack_region,
|
|
10282
10300
|
statistic=statistic,
|
|
10283
10301
|
unit=unit,
|
|
10284
10302
|
)
|
|
@@ -10295,6 +10313,8 @@ class _ILogGroupProxy(
|
|
|
10295
10313
|
label: typing.Optional[builtins.str] = None,
|
|
10296
10314
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10297
10315
|
region: typing.Optional[builtins.str] = None,
|
|
10316
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10317
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10298
10318
|
statistic: typing.Optional[builtins.str] = None,
|
|
10299
10319
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10300
10320
|
) -> _Metric_e396a4dc:
|
|
@@ -10309,6 +10329,8 @@ class _ILogGroupProxy(
|
|
|
10309
10329
|
: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
|
|
10310
10330
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10311
10331
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10332
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10333
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10312
10334
|
: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
|
|
10313
10335
|
: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
|
|
10314
10336
|
'''
|
|
@@ -10319,6 +10341,8 @@ class _ILogGroupProxy(
|
|
|
10319
10341
|
label=label,
|
|
10320
10342
|
period=period,
|
|
10321
10343
|
region=region,
|
|
10344
|
+
stack_account=stack_account,
|
|
10345
|
+
stack_region=stack_region,
|
|
10322
10346
|
statistic=statistic,
|
|
10323
10347
|
unit=unit,
|
|
10324
10348
|
)
|
|
@@ -10335,6 +10359,8 @@ class _ILogGroupProxy(
|
|
|
10335
10359
|
label: typing.Optional[builtins.str] = None,
|
|
10336
10360
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10337
10361
|
region: typing.Optional[builtins.str] = None,
|
|
10362
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10363
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10338
10364
|
statistic: typing.Optional[builtins.str] = None,
|
|
10339
10365
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10340
10366
|
) -> _Metric_e396a4dc:
|
|
@@ -10349,6 +10375,8 @@ class _ILogGroupProxy(
|
|
|
10349
10375
|
: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
|
|
10350
10376
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10351
10377
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10378
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10379
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10352
10380
|
: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
|
|
10353
10381
|
: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
|
|
10354
10382
|
'''
|
|
@@ -10359,6 +10387,8 @@ class _ILogGroupProxy(
|
|
|
10359
10387
|
label=label,
|
|
10360
10388
|
period=period,
|
|
10361
10389
|
region=region,
|
|
10390
|
+
stack_account=stack_account,
|
|
10391
|
+
stack_region=stack_region,
|
|
10362
10392
|
statistic=statistic,
|
|
10363
10393
|
unit=unit,
|
|
10364
10394
|
)
|
|
@@ -10814,6 +10844,8 @@ class LogGroup(
|
|
|
10814
10844
|
label: typing.Optional[builtins.str] = None,
|
|
10815
10845
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10816
10846
|
region: typing.Optional[builtins.str] = None,
|
|
10847
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10848
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10817
10849
|
statistic: typing.Optional[builtins.str] = None,
|
|
10818
10850
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10819
10851
|
) -> _Metric_e396a4dc:
|
|
@@ -10826,6 +10858,8 @@ class LogGroup(
|
|
|
10826
10858
|
: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
|
|
10827
10859
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10828
10860
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10861
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10862
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10829
10863
|
: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
|
|
10830
10864
|
: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
|
|
10831
10865
|
|
|
@@ -10855,6 +10889,8 @@ class LogGroup(
|
|
|
10855
10889
|
label=label,
|
|
10856
10890
|
period=period,
|
|
10857
10891
|
region=region,
|
|
10892
|
+
stack_account=stack_account,
|
|
10893
|
+
stack_region=stack_region,
|
|
10858
10894
|
statistic=statistic,
|
|
10859
10895
|
unit=unit,
|
|
10860
10896
|
)
|
|
@@ -10871,6 +10907,8 @@ class LogGroup(
|
|
|
10871
10907
|
label: typing.Optional[builtins.str] = None,
|
|
10872
10908
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10873
10909
|
region: typing.Optional[builtins.str] = None,
|
|
10910
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10911
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10874
10912
|
statistic: typing.Optional[builtins.str] = None,
|
|
10875
10913
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10876
10914
|
) -> _Metric_e396a4dc:
|
|
@@ -10882,6 +10920,8 @@ class LogGroup(
|
|
|
10882
10920
|
: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
|
|
10883
10921
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10884
10922
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10923
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10924
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10885
10925
|
: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
|
|
10886
10926
|
: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
|
|
10887
10927
|
|
|
@@ -10908,6 +10948,8 @@ class LogGroup(
|
|
|
10908
10948
|
label=label,
|
|
10909
10949
|
period=period,
|
|
10910
10950
|
region=region,
|
|
10951
|
+
stack_account=stack_account,
|
|
10952
|
+
stack_region=stack_region,
|
|
10911
10953
|
statistic=statistic,
|
|
10912
10954
|
unit=unit,
|
|
10913
10955
|
)
|
|
@@ -10924,6 +10966,8 @@ class LogGroup(
|
|
|
10924
10966
|
label: typing.Optional[builtins.str] = None,
|
|
10925
10967
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10926
10968
|
region: typing.Optional[builtins.str] = None,
|
|
10969
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10970
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10927
10971
|
statistic: typing.Optional[builtins.str] = None,
|
|
10928
10972
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10929
10973
|
) -> _Metric_e396a4dc:
|
|
@@ -10935,6 +10979,8 @@ class LogGroup(
|
|
|
10935
10979
|
: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
|
|
10936
10980
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10937
10981
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10982
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10983
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10938
10984
|
: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
|
|
10939
10985
|
: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
|
|
10940
10986
|
|
|
@@ -10961,6 +11007,8 @@ class LogGroup(
|
|
|
10961
11007
|
label=label,
|
|
10962
11008
|
period=period,
|
|
10963
11009
|
region=region,
|
|
11010
|
+
stack_account=stack_account,
|
|
11011
|
+
stack_region=stack_region,
|
|
10964
11012
|
statistic=statistic,
|
|
10965
11013
|
unit=unit,
|
|
10966
11014
|
)
|
|
@@ -11793,6 +11841,8 @@ class MetricFilter(
|
|
|
11793
11841
|
label: typing.Optional[builtins.str] = None,
|
|
11794
11842
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11795
11843
|
region: typing.Optional[builtins.str] = None,
|
|
11844
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11845
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11796
11846
|
statistic: typing.Optional[builtins.str] = None,
|
|
11797
11847
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11798
11848
|
) -> _Metric_e396a4dc:
|
|
@@ -11804,6 +11854,8 @@ class MetricFilter(
|
|
|
11804
11854
|
: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
|
|
11805
11855
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11806
11856
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11857
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11858
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11807
11859
|
: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
|
|
11808
11860
|
: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
|
|
11809
11861
|
|
|
@@ -11816,6 +11868,8 @@ class MetricFilter(
|
|
|
11816
11868
|
label=label,
|
|
11817
11869
|
period=period,
|
|
11818
11870
|
region=region,
|
|
11871
|
+
stack_account=stack_account,
|
|
11872
|
+
stack_region=stack_region,
|
|
11819
11873
|
statistic=statistic,
|
|
11820
11874
|
unit=unit,
|
|
11821
11875
|
)
|
|
@@ -14917,6 +14971,8 @@ def _typecheckingstub__e63ab70f8bacc728cdbf61171dfc0b89720bb794e34d29336b9486edb
|
|
|
14917
14971
|
label: typing.Optional[builtins.str] = None,
|
|
14918
14972
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14919
14973
|
region: typing.Optional[builtins.str] = None,
|
|
14974
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14975
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14920
14976
|
statistic: typing.Optional[builtins.str] = None,
|
|
14921
14977
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14922
14978
|
) -> None:
|
|
@@ -15042,6 +15098,8 @@ def _typecheckingstub__afd13314ef52ff283429f1992d9ab29ab14998262e884015dc1d0af12
|
|
|
15042
15098
|
label: typing.Optional[builtins.str] = None,
|
|
15043
15099
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
15044
15100
|
region: typing.Optional[builtins.str] = None,
|
|
15101
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
15102
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
15045
15103
|
statistic: typing.Optional[builtins.str] = None,
|
|
15046
15104
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
15047
15105
|
) -> None:
|