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
|
@@ -6393,6 +6393,8 @@ class IStateMachine(
|
|
|
6393
6393
|
label: typing.Optional[builtins.str] = None,
|
|
6394
6394
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6395
6395
|
region: typing.Optional[builtins.str] = None,
|
|
6396
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6397
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6396
6398
|
statistic: typing.Optional[builtins.str] = None,
|
|
6397
6399
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6398
6400
|
) -> _Metric_e396a4dc:
|
|
@@ -6405,6 +6407,8 @@ class IStateMachine(
|
|
|
6405
6407
|
: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
|
|
6406
6408
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6407
6409
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6410
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6411
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6408
6412
|
: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
|
|
6409
6413
|
: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
|
|
6410
6414
|
|
|
@@ -6422,6 +6426,8 @@ class IStateMachine(
|
|
|
6422
6426
|
label: typing.Optional[builtins.str] = None,
|
|
6423
6427
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6424
6428
|
region: typing.Optional[builtins.str] = None,
|
|
6429
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6430
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6425
6431
|
statistic: typing.Optional[builtins.str] = None,
|
|
6426
6432
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6427
6433
|
) -> _Metric_e396a4dc:
|
|
@@ -6433,6 +6439,8 @@ class IStateMachine(
|
|
|
6433
6439
|
: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
|
|
6434
6440
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6435
6441
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6442
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6443
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6436
6444
|
: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
|
|
6437
6445
|
: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
|
|
6438
6446
|
|
|
@@ -6450,6 +6458,8 @@ class IStateMachine(
|
|
|
6450
6458
|
label: typing.Optional[builtins.str] = None,
|
|
6451
6459
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6452
6460
|
region: typing.Optional[builtins.str] = None,
|
|
6461
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6462
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6453
6463
|
statistic: typing.Optional[builtins.str] = None,
|
|
6454
6464
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6455
6465
|
) -> _Metric_e396a4dc:
|
|
@@ -6461,6 +6471,8 @@ class IStateMachine(
|
|
|
6461
6471
|
: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
|
|
6462
6472
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6463
6473
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6474
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6475
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6464
6476
|
: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
|
|
6465
6477
|
: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
|
|
6466
6478
|
|
|
@@ -6478,6 +6490,8 @@ class IStateMachine(
|
|
|
6478
6490
|
label: typing.Optional[builtins.str] = None,
|
|
6479
6491
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6480
6492
|
region: typing.Optional[builtins.str] = None,
|
|
6493
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6494
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6481
6495
|
statistic: typing.Optional[builtins.str] = None,
|
|
6482
6496
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6483
6497
|
) -> _Metric_e396a4dc:
|
|
@@ -6489,6 +6503,8 @@ class IStateMachine(
|
|
|
6489
6503
|
: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
|
|
6490
6504
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6491
6505
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6506
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6507
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6492
6508
|
: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
|
|
6493
6509
|
: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
|
|
6494
6510
|
|
|
@@ -6506,6 +6522,8 @@ class IStateMachine(
|
|
|
6506
6522
|
label: typing.Optional[builtins.str] = None,
|
|
6507
6523
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6508
6524
|
region: typing.Optional[builtins.str] = None,
|
|
6525
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6526
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6509
6527
|
statistic: typing.Optional[builtins.str] = None,
|
|
6510
6528
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6511
6529
|
) -> _Metric_e396a4dc:
|
|
@@ -6517,6 +6535,8 @@ class IStateMachine(
|
|
|
6517
6535
|
: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
|
|
6518
6536
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6519
6537
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6538
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6539
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6520
6540
|
: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
|
|
6521
6541
|
: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
|
|
6522
6542
|
|
|
@@ -6534,6 +6554,8 @@ class IStateMachine(
|
|
|
6534
6554
|
label: typing.Optional[builtins.str] = None,
|
|
6535
6555
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6536
6556
|
region: typing.Optional[builtins.str] = None,
|
|
6557
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6558
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6537
6559
|
statistic: typing.Optional[builtins.str] = None,
|
|
6538
6560
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6539
6561
|
) -> _Metric_e396a4dc:
|
|
@@ -6545,6 +6567,8 @@ class IStateMachine(
|
|
|
6545
6567
|
: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
|
|
6546
6568
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6547
6569
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6570
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6571
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6548
6572
|
: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
|
|
6549
6573
|
: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
|
|
6550
6574
|
|
|
@@ -6562,6 +6586,8 @@ class IStateMachine(
|
|
|
6562
6586
|
label: typing.Optional[builtins.str] = None,
|
|
6563
6587
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6564
6588
|
region: typing.Optional[builtins.str] = None,
|
|
6589
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6590
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6565
6591
|
statistic: typing.Optional[builtins.str] = None,
|
|
6566
6592
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6567
6593
|
) -> _Metric_e396a4dc:
|
|
@@ -6573,6 +6599,8 @@ class IStateMachine(
|
|
|
6573
6599
|
: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
|
|
6574
6600
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6575
6601
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6602
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6603
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6576
6604
|
: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
|
|
6577
6605
|
: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
|
|
6578
6606
|
|
|
@@ -6590,6 +6618,8 @@ class IStateMachine(
|
|
|
6590
6618
|
label: typing.Optional[builtins.str] = None,
|
|
6591
6619
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6592
6620
|
region: typing.Optional[builtins.str] = None,
|
|
6621
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6622
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6593
6623
|
statistic: typing.Optional[builtins.str] = None,
|
|
6594
6624
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6595
6625
|
) -> _Metric_e396a4dc:
|
|
@@ -6601,6 +6631,8 @@ class IStateMachine(
|
|
|
6601
6631
|
: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
|
|
6602
6632
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6603
6633
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6634
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6635
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6604
6636
|
: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
|
|
6605
6637
|
: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
|
|
6606
6638
|
|
|
@@ -6718,6 +6750,8 @@ class _IStateMachineProxy(
|
|
|
6718
6750
|
label: typing.Optional[builtins.str] = None,
|
|
6719
6751
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6720
6752
|
region: typing.Optional[builtins.str] = None,
|
|
6753
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6754
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6721
6755
|
statistic: typing.Optional[builtins.str] = None,
|
|
6722
6756
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6723
6757
|
) -> _Metric_e396a4dc:
|
|
@@ -6730,6 +6764,8 @@ class _IStateMachineProxy(
|
|
|
6730
6764
|
: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
|
|
6731
6765
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6732
6766
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6767
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6768
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6733
6769
|
: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
|
|
6734
6770
|
: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
|
|
6735
6771
|
|
|
@@ -6745,6 +6781,8 @@ class _IStateMachineProxy(
|
|
|
6745
6781
|
label=label,
|
|
6746
6782
|
period=period,
|
|
6747
6783
|
region=region,
|
|
6784
|
+
stack_account=stack_account,
|
|
6785
|
+
stack_region=stack_region,
|
|
6748
6786
|
statistic=statistic,
|
|
6749
6787
|
unit=unit,
|
|
6750
6788
|
)
|
|
@@ -6761,6 +6799,8 @@ class _IStateMachineProxy(
|
|
|
6761
6799
|
label: typing.Optional[builtins.str] = None,
|
|
6762
6800
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6763
6801
|
region: typing.Optional[builtins.str] = None,
|
|
6802
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6803
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6764
6804
|
statistic: typing.Optional[builtins.str] = None,
|
|
6765
6805
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6766
6806
|
) -> _Metric_e396a4dc:
|
|
@@ -6772,6 +6812,8 @@ class _IStateMachineProxy(
|
|
|
6772
6812
|
: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
|
|
6773
6813
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6774
6814
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6815
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6816
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6775
6817
|
: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
|
|
6776
6818
|
: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
|
|
6777
6819
|
|
|
@@ -6784,6 +6826,8 @@ class _IStateMachineProxy(
|
|
|
6784
6826
|
label=label,
|
|
6785
6827
|
period=period,
|
|
6786
6828
|
region=region,
|
|
6829
|
+
stack_account=stack_account,
|
|
6830
|
+
stack_region=stack_region,
|
|
6787
6831
|
statistic=statistic,
|
|
6788
6832
|
unit=unit,
|
|
6789
6833
|
)
|
|
@@ -6800,6 +6844,8 @@ class _IStateMachineProxy(
|
|
|
6800
6844
|
label: typing.Optional[builtins.str] = None,
|
|
6801
6845
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6802
6846
|
region: typing.Optional[builtins.str] = None,
|
|
6847
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6848
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6803
6849
|
statistic: typing.Optional[builtins.str] = None,
|
|
6804
6850
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6805
6851
|
) -> _Metric_e396a4dc:
|
|
@@ -6811,6 +6857,8 @@ class _IStateMachineProxy(
|
|
|
6811
6857
|
: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
|
|
6812
6858
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6813
6859
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6860
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6861
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6814
6862
|
: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
|
|
6815
6863
|
: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
|
|
6816
6864
|
|
|
@@ -6823,6 +6871,8 @@ class _IStateMachineProxy(
|
|
|
6823
6871
|
label=label,
|
|
6824
6872
|
period=period,
|
|
6825
6873
|
region=region,
|
|
6874
|
+
stack_account=stack_account,
|
|
6875
|
+
stack_region=stack_region,
|
|
6826
6876
|
statistic=statistic,
|
|
6827
6877
|
unit=unit,
|
|
6828
6878
|
)
|
|
@@ -6839,6 +6889,8 @@ class _IStateMachineProxy(
|
|
|
6839
6889
|
label: typing.Optional[builtins.str] = None,
|
|
6840
6890
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6841
6891
|
region: typing.Optional[builtins.str] = None,
|
|
6892
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6893
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6842
6894
|
statistic: typing.Optional[builtins.str] = None,
|
|
6843
6895
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6844
6896
|
) -> _Metric_e396a4dc:
|
|
@@ -6850,6 +6902,8 @@ class _IStateMachineProxy(
|
|
|
6850
6902
|
: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
|
|
6851
6903
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6852
6904
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6905
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6906
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6853
6907
|
: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
|
|
6854
6908
|
: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
|
|
6855
6909
|
|
|
@@ -6862,6 +6916,8 @@ class _IStateMachineProxy(
|
|
|
6862
6916
|
label=label,
|
|
6863
6917
|
period=period,
|
|
6864
6918
|
region=region,
|
|
6919
|
+
stack_account=stack_account,
|
|
6920
|
+
stack_region=stack_region,
|
|
6865
6921
|
statistic=statistic,
|
|
6866
6922
|
unit=unit,
|
|
6867
6923
|
)
|
|
@@ -6878,6 +6934,8 @@ class _IStateMachineProxy(
|
|
|
6878
6934
|
label: typing.Optional[builtins.str] = None,
|
|
6879
6935
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6880
6936
|
region: typing.Optional[builtins.str] = None,
|
|
6937
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6938
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6881
6939
|
statistic: typing.Optional[builtins.str] = None,
|
|
6882
6940
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6883
6941
|
) -> _Metric_e396a4dc:
|
|
@@ -6889,6 +6947,8 @@ class _IStateMachineProxy(
|
|
|
6889
6947
|
: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
|
|
6890
6948
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6891
6949
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6950
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6951
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6892
6952
|
: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
|
|
6893
6953
|
: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
|
|
6894
6954
|
|
|
@@ -6901,6 +6961,8 @@ class _IStateMachineProxy(
|
|
|
6901
6961
|
label=label,
|
|
6902
6962
|
period=period,
|
|
6903
6963
|
region=region,
|
|
6964
|
+
stack_account=stack_account,
|
|
6965
|
+
stack_region=stack_region,
|
|
6904
6966
|
statistic=statistic,
|
|
6905
6967
|
unit=unit,
|
|
6906
6968
|
)
|
|
@@ -6917,6 +6979,8 @@ class _IStateMachineProxy(
|
|
|
6917
6979
|
label: typing.Optional[builtins.str] = None,
|
|
6918
6980
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6919
6981
|
region: typing.Optional[builtins.str] = None,
|
|
6982
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
6983
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6920
6984
|
statistic: typing.Optional[builtins.str] = None,
|
|
6921
6985
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6922
6986
|
) -> _Metric_e396a4dc:
|
|
@@ -6928,6 +6992,8 @@ class _IStateMachineProxy(
|
|
|
6928
6992
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
6929
6993
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6930
6994
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
6995
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
6996
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6931
6997
|
: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
|
|
6932
6998
|
: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
|
|
6933
6999
|
|
|
@@ -6940,6 +7006,8 @@ class _IStateMachineProxy(
|
|
|
6940
7006
|
label=label,
|
|
6941
7007
|
period=period,
|
|
6942
7008
|
region=region,
|
|
7009
|
+
stack_account=stack_account,
|
|
7010
|
+
stack_region=stack_region,
|
|
6943
7011
|
statistic=statistic,
|
|
6944
7012
|
unit=unit,
|
|
6945
7013
|
)
|
|
@@ -6956,6 +7024,8 @@ class _IStateMachineProxy(
|
|
|
6956
7024
|
label: typing.Optional[builtins.str] = None,
|
|
6957
7025
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6958
7026
|
region: typing.Optional[builtins.str] = None,
|
|
7027
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
7028
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6959
7029
|
statistic: typing.Optional[builtins.str] = None,
|
|
6960
7030
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6961
7031
|
) -> _Metric_e396a4dc:
|
|
@@ -6967,6 +7037,8 @@ class _IStateMachineProxy(
|
|
|
6967
7037
|
: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
|
|
6968
7038
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
6969
7039
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
7040
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
7041
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
6970
7042
|
: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
|
|
6971
7043
|
: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
|
|
6972
7044
|
|
|
@@ -6979,6 +7051,8 @@ class _IStateMachineProxy(
|
|
|
6979
7051
|
label=label,
|
|
6980
7052
|
period=period,
|
|
6981
7053
|
region=region,
|
|
7054
|
+
stack_account=stack_account,
|
|
7055
|
+
stack_region=stack_region,
|
|
6982
7056
|
statistic=statistic,
|
|
6983
7057
|
unit=unit,
|
|
6984
7058
|
)
|
|
@@ -6995,6 +7069,8 @@ class _IStateMachineProxy(
|
|
|
6995
7069
|
label: typing.Optional[builtins.str] = None,
|
|
6996
7070
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6997
7071
|
region: typing.Optional[builtins.str] = None,
|
|
7072
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
7073
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
6998
7074
|
statistic: typing.Optional[builtins.str] = None,
|
|
6999
7075
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
7000
7076
|
) -> _Metric_e396a4dc:
|
|
@@ -7006,6 +7082,8 @@ class _IStateMachineProxy(
|
|
|
7006
7082
|
: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
|
|
7007
7083
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
7008
7084
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
7085
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
7086
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
7009
7087
|
: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
|
|
7010
7088
|
: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
|
|
7011
7089
|
|
|
@@ -7018,6 +7096,8 @@ class _IStateMachineProxy(
|
|
|
7018
7096
|
label=label,
|
|
7019
7097
|
period=period,
|
|
7020
7098
|
region=region,
|
|
7099
|
+
stack_account=stack_account,
|
|
7100
|
+
stack_region=stack_region,
|
|
7021
7101
|
statistic=statistic,
|
|
7022
7102
|
unit=unit,
|
|
7023
7103
|
)
|
|
@@ -11195,6 +11275,8 @@ class StateMachine(
|
|
|
11195
11275
|
label: typing.Optional[builtins.str] = None,
|
|
11196
11276
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11197
11277
|
region: typing.Optional[builtins.str] = None,
|
|
11278
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11279
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11198
11280
|
statistic: typing.Optional[builtins.str] = None,
|
|
11199
11281
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11200
11282
|
) -> _Metric_e396a4dc:
|
|
@@ -11207,6 +11289,8 @@ class StateMachine(
|
|
|
11207
11289
|
: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
|
|
11208
11290
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11209
11291
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11292
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11293
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11210
11294
|
: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
|
|
11211
11295
|
: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
|
|
11212
11296
|
|
|
@@ -11222,6 +11306,8 @@ class StateMachine(
|
|
|
11222
11306
|
label=label,
|
|
11223
11307
|
period=period,
|
|
11224
11308
|
region=region,
|
|
11309
|
+
stack_account=stack_account,
|
|
11310
|
+
stack_region=stack_region,
|
|
11225
11311
|
statistic=statistic,
|
|
11226
11312
|
unit=unit,
|
|
11227
11313
|
)
|
|
@@ -11238,6 +11324,8 @@ class StateMachine(
|
|
|
11238
11324
|
label: typing.Optional[builtins.str] = None,
|
|
11239
11325
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11240
11326
|
region: typing.Optional[builtins.str] = None,
|
|
11327
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11328
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11241
11329
|
statistic: typing.Optional[builtins.str] = None,
|
|
11242
11330
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11243
11331
|
) -> _Metric_e396a4dc:
|
|
@@ -11249,6 +11337,8 @@ class StateMachine(
|
|
|
11249
11337
|
: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
|
|
11250
11338
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11251
11339
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11340
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11341
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11252
11342
|
: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
|
|
11253
11343
|
: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
|
|
11254
11344
|
|
|
@@ -11261,6 +11351,8 @@ class StateMachine(
|
|
|
11261
11351
|
label=label,
|
|
11262
11352
|
period=period,
|
|
11263
11353
|
region=region,
|
|
11354
|
+
stack_account=stack_account,
|
|
11355
|
+
stack_region=stack_region,
|
|
11264
11356
|
statistic=statistic,
|
|
11265
11357
|
unit=unit,
|
|
11266
11358
|
)
|
|
@@ -11277,6 +11369,8 @@ class StateMachine(
|
|
|
11277
11369
|
label: typing.Optional[builtins.str] = None,
|
|
11278
11370
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11279
11371
|
region: typing.Optional[builtins.str] = None,
|
|
11372
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11373
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11280
11374
|
statistic: typing.Optional[builtins.str] = None,
|
|
11281
11375
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11282
11376
|
) -> _Metric_e396a4dc:
|
|
@@ -11288,6 +11382,8 @@ class StateMachine(
|
|
|
11288
11382
|
: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
|
|
11289
11383
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11290
11384
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11385
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11386
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11291
11387
|
: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
|
|
11292
11388
|
: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
|
|
11293
11389
|
|
|
@@ -11300,6 +11396,8 @@ class StateMachine(
|
|
|
11300
11396
|
label=label,
|
|
11301
11397
|
period=period,
|
|
11302
11398
|
region=region,
|
|
11399
|
+
stack_account=stack_account,
|
|
11400
|
+
stack_region=stack_region,
|
|
11303
11401
|
statistic=statistic,
|
|
11304
11402
|
unit=unit,
|
|
11305
11403
|
)
|
|
@@ -11316,6 +11414,8 @@ class StateMachine(
|
|
|
11316
11414
|
label: typing.Optional[builtins.str] = None,
|
|
11317
11415
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11318
11416
|
region: typing.Optional[builtins.str] = None,
|
|
11417
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11418
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11319
11419
|
statistic: typing.Optional[builtins.str] = None,
|
|
11320
11420
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11321
11421
|
) -> _Metric_e396a4dc:
|
|
@@ -11327,6 +11427,8 @@ class StateMachine(
|
|
|
11327
11427
|
: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
|
|
11328
11428
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11329
11429
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11430
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11431
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11330
11432
|
: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
|
|
11331
11433
|
: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
|
|
11332
11434
|
|
|
@@ -11339,6 +11441,8 @@ class StateMachine(
|
|
|
11339
11441
|
label=label,
|
|
11340
11442
|
period=period,
|
|
11341
11443
|
region=region,
|
|
11444
|
+
stack_account=stack_account,
|
|
11445
|
+
stack_region=stack_region,
|
|
11342
11446
|
statistic=statistic,
|
|
11343
11447
|
unit=unit,
|
|
11344
11448
|
)
|
|
@@ -11355,6 +11459,8 @@ class StateMachine(
|
|
|
11355
11459
|
label: typing.Optional[builtins.str] = None,
|
|
11356
11460
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11357
11461
|
region: typing.Optional[builtins.str] = None,
|
|
11462
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11463
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11358
11464
|
statistic: typing.Optional[builtins.str] = None,
|
|
11359
11465
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11360
11466
|
) -> _Metric_e396a4dc:
|
|
@@ -11366,6 +11472,8 @@ class StateMachine(
|
|
|
11366
11472
|
: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
|
|
11367
11473
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11368
11474
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11475
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11476
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11369
11477
|
: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
|
|
11370
11478
|
: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
|
|
11371
11479
|
|
|
@@ -11378,6 +11486,8 @@ class StateMachine(
|
|
|
11378
11486
|
label=label,
|
|
11379
11487
|
period=period,
|
|
11380
11488
|
region=region,
|
|
11489
|
+
stack_account=stack_account,
|
|
11490
|
+
stack_region=stack_region,
|
|
11381
11491
|
statistic=statistic,
|
|
11382
11492
|
unit=unit,
|
|
11383
11493
|
)
|
|
@@ -11394,6 +11504,8 @@ class StateMachine(
|
|
|
11394
11504
|
label: typing.Optional[builtins.str] = None,
|
|
11395
11505
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11396
11506
|
region: typing.Optional[builtins.str] = None,
|
|
11507
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11508
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11397
11509
|
statistic: typing.Optional[builtins.str] = None,
|
|
11398
11510
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11399
11511
|
) -> _Metric_e396a4dc:
|
|
@@ -11405,6 +11517,8 @@ class StateMachine(
|
|
|
11405
11517
|
: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
|
|
11406
11518
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11407
11519
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11520
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11521
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11408
11522
|
: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
|
|
11409
11523
|
: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
|
|
11410
11524
|
|
|
@@ -11417,6 +11531,8 @@ class StateMachine(
|
|
|
11417
11531
|
label=label,
|
|
11418
11532
|
period=period,
|
|
11419
11533
|
region=region,
|
|
11534
|
+
stack_account=stack_account,
|
|
11535
|
+
stack_region=stack_region,
|
|
11420
11536
|
statistic=statistic,
|
|
11421
11537
|
unit=unit,
|
|
11422
11538
|
)
|
|
@@ -11433,6 +11549,8 @@ class StateMachine(
|
|
|
11433
11549
|
label: typing.Optional[builtins.str] = None,
|
|
11434
11550
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11435
11551
|
region: typing.Optional[builtins.str] = None,
|
|
11552
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11553
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11436
11554
|
statistic: typing.Optional[builtins.str] = None,
|
|
11437
11555
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11438
11556
|
) -> _Metric_e396a4dc:
|
|
@@ -11444,6 +11562,8 @@ class StateMachine(
|
|
|
11444
11562
|
: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
|
|
11445
11563
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11446
11564
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11565
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11566
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11447
11567
|
: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
|
|
11448
11568
|
: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
|
|
11449
11569
|
|
|
@@ -11456,6 +11576,8 @@ class StateMachine(
|
|
|
11456
11576
|
label=label,
|
|
11457
11577
|
period=period,
|
|
11458
11578
|
region=region,
|
|
11579
|
+
stack_account=stack_account,
|
|
11580
|
+
stack_region=stack_region,
|
|
11459
11581
|
statistic=statistic,
|
|
11460
11582
|
unit=unit,
|
|
11461
11583
|
)
|
|
@@ -11472,6 +11594,8 @@ class StateMachine(
|
|
|
11472
11594
|
label: typing.Optional[builtins.str] = None,
|
|
11473
11595
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11474
11596
|
region: typing.Optional[builtins.str] = None,
|
|
11597
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11598
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11475
11599
|
statistic: typing.Optional[builtins.str] = None,
|
|
11476
11600
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11477
11601
|
) -> _Metric_e396a4dc:
|
|
@@ -11483,6 +11607,8 @@ class StateMachine(
|
|
|
11483
11607
|
: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
|
|
11484
11608
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11485
11609
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11610
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11611
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11486
11612
|
: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
|
|
11487
11613
|
: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
|
|
11488
11614
|
|
|
@@ -11495,6 +11621,8 @@ class StateMachine(
|
|
|
11495
11621
|
label=label,
|
|
11496
11622
|
period=period,
|
|
11497
11623
|
region=region,
|
|
11624
|
+
stack_account=stack_account,
|
|
11625
|
+
stack_region=stack_region,
|
|
11498
11626
|
statistic=statistic,
|
|
11499
11627
|
unit=unit,
|
|
11500
11628
|
)
|
|
@@ -12184,6 +12312,8 @@ class StateTransitionMetric(
|
|
|
12184
12312
|
label: typing.Optional[builtins.str] = None,
|
|
12185
12313
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12186
12314
|
region: typing.Optional[builtins.str] = None,
|
|
12315
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
12316
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
12187
12317
|
statistic: typing.Optional[builtins.str] = None,
|
|
12188
12318
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12189
12319
|
) -> _Metric_e396a4dc:
|
|
@@ -12196,6 +12326,8 @@ class StateTransitionMetric(
|
|
|
12196
12326
|
: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
|
|
12197
12327
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12198
12328
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
12329
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
12330
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12199
12331
|
: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
|
|
12200
12332
|
: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
|
|
12201
12333
|
|
|
@@ -12211,6 +12343,8 @@ class StateTransitionMetric(
|
|
|
12211
12343
|
label=label,
|
|
12212
12344
|
period=period,
|
|
12213
12345
|
region=region,
|
|
12346
|
+
stack_account=stack_account,
|
|
12347
|
+
stack_region=stack_region,
|
|
12214
12348
|
statistic=statistic,
|
|
12215
12349
|
unit=unit,
|
|
12216
12350
|
)
|
|
@@ -12228,6 +12362,8 @@ class StateTransitionMetric(
|
|
|
12228
12362
|
label: typing.Optional[builtins.str] = None,
|
|
12229
12363
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12230
12364
|
region: typing.Optional[builtins.str] = None,
|
|
12365
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
12366
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
12231
12367
|
statistic: typing.Optional[builtins.str] = None,
|
|
12232
12368
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12233
12369
|
) -> _Metric_e396a4dc:
|
|
@@ -12239,6 +12375,8 @@ class StateTransitionMetric(
|
|
|
12239
12375
|
: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
|
|
12240
12376
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12241
12377
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
12378
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
12379
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12242
12380
|
: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
|
|
12243
12381
|
: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
|
|
12244
12382
|
|
|
@@ -12251,6 +12389,8 @@ class StateTransitionMetric(
|
|
|
12251
12389
|
label=label,
|
|
12252
12390
|
period=period,
|
|
12253
12391
|
region=region,
|
|
12392
|
+
stack_account=stack_account,
|
|
12393
|
+
stack_region=stack_region,
|
|
12254
12394
|
statistic=statistic,
|
|
12255
12395
|
unit=unit,
|
|
12256
12396
|
)
|
|
@@ -12268,6 +12408,8 @@ class StateTransitionMetric(
|
|
|
12268
12408
|
label: typing.Optional[builtins.str] = None,
|
|
12269
12409
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12270
12410
|
region: typing.Optional[builtins.str] = None,
|
|
12411
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
12412
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
12271
12413
|
statistic: typing.Optional[builtins.str] = None,
|
|
12272
12414
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12273
12415
|
) -> _Metric_e396a4dc:
|
|
@@ -12279,6 +12421,8 @@ class StateTransitionMetric(
|
|
|
12279
12421
|
: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
|
|
12280
12422
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12281
12423
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
12424
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
12425
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12282
12426
|
: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
|
|
12283
12427
|
: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
|
|
12284
12428
|
|
|
@@ -12291,6 +12435,8 @@ class StateTransitionMetric(
|
|
|
12291
12435
|
label=label,
|
|
12292
12436
|
period=period,
|
|
12293
12437
|
region=region,
|
|
12438
|
+
stack_account=stack_account,
|
|
12439
|
+
stack_region=stack_region,
|
|
12294
12440
|
statistic=statistic,
|
|
12295
12441
|
unit=unit,
|
|
12296
12442
|
)
|
|
@@ -12308,6 +12454,8 @@ class StateTransitionMetric(
|
|
|
12308
12454
|
label: typing.Optional[builtins.str] = None,
|
|
12309
12455
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12310
12456
|
region: typing.Optional[builtins.str] = None,
|
|
12457
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
12458
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
12311
12459
|
statistic: typing.Optional[builtins.str] = None,
|
|
12312
12460
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12313
12461
|
) -> _Metric_e396a4dc:
|
|
@@ -12319,6 +12467,8 @@ class StateTransitionMetric(
|
|
|
12319
12467
|
: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
|
|
12320
12468
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12321
12469
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
12470
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
12471
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12322
12472
|
: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
|
|
12323
12473
|
: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
|
|
12324
12474
|
|
|
@@ -12331,6 +12481,8 @@ class StateTransitionMetric(
|
|
|
12331
12481
|
label=label,
|
|
12332
12482
|
period=period,
|
|
12333
12483
|
region=region,
|
|
12484
|
+
stack_account=stack_account,
|
|
12485
|
+
stack_region=stack_region,
|
|
12334
12486
|
statistic=statistic,
|
|
12335
12487
|
unit=unit,
|
|
12336
12488
|
)
|
|
@@ -12348,6 +12500,8 @@ class StateTransitionMetric(
|
|
|
12348
12500
|
label: typing.Optional[builtins.str] = None,
|
|
12349
12501
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12350
12502
|
region: typing.Optional[builtins.str] = None,
|
|
12503
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
12504
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
12351
12505
|
statistic: typing.Optional[builtins.str] = None,
|
|
12352
12506
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12353
12507
|
) -> _Metric_e396a4dc:
|
|
@@ -12359,6 +12513,8 @@ class StateTransitionMetric(
|
|
|
12359
12513
|
: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
|
|
12360
12514
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12361
12515
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
12516
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
12517
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12362
12518
|
: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
|
|
12363
12519
|
: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
|
|
12364
12520
|
|
|
@@ -12371,6 +12527,8 @@ class StateTransitionMetric(
|
|
|
12371
12527
|
label=label,
|
|
12372
12528
|
period=period,
|
|
12373
12529
|
region=region,
|
|
12530
|
+
stack_account=stack_account,
|
|
12531
|
+
stack_region=stack_region,
|
|
12374
12532
|
statistic=statistic,
|
|
12375
12533
|
unit=unit,
|
|
12376
12534
|
)
|
|
@@ -13016,6 +13174,8 @@ class TaskStateBase(
|
|
|
13016
13174
|
label: typing.Optional[builtins.str] = None,
|
|
13017
13175
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13018
13176
|
region: typing.Optional[builtins.str] = None,
|
|
13177
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13178
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13019
13179
|
statistic: typing.Optional[builtins.str] = None,
|
|
13020
13180
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13021
13181
|
) -> _Metric_e396a4dc:
|
|
@@ -13028,6 +13188,8 @@ class TaskStateBase(
|
|
|
13028
13188
|
: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
|
|
13029
13189
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13030
13190
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13191
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13192
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13031
13193
|
: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
|
|
13032
13194
|
: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
|
|
13033
13195
|
|
|
@@ -13043,6 +13205,8 @@ class TaskStateBase(
|
|
|
13043
13205
|
label=label,
|
|
13044
13206
|
period=period,
|
|
13045
13207
|
region=region,
|
|
13208
|
+
stack_account=stack_account,
|
|
13209
|
+
stack_region=stack_region,
|
|
13046
13210
|
statistic=statistic,
|
|
13047
13211
|
unit=unit,
|
|
13048
13212
|
)
|
|
@@ -13059,6 +13223,8 @@ class TaskStateBase(
|
|
|
13059
13223
|
label: typing.Optional[builtins.str] = None,
|
|
13060
13224
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13061
13225
|
region: typing.Optional[builtins.str] = None,
|
|
13226
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13227
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13062
13228
|
statistic: typing.Optional[builtins.str] = None,
|
|
13063
13229
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13064
13230
|
) -> _Metric_e396a4dc:
|
|
@@ -13070,6 +13236,8 @@ class TaskStateBase(
|
|
|
13070
13236
|
: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
|
|
13071
13237
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13072
13238
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13239
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13240
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13073
13241
|
: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
|
|
13074
13242
|
: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
|
|
13075
13243
|
|
|
@@ -13082,6 +13250,8 @@ class TaskStateBase(
|
|
|
13082
13250
|
label=label,
|
|
13083
13251
|
period=period,
|
|
13084
13252
|
region=region,
|
|
13253
|
+
stack_account=stack_account,
|
|
13254
|
+
stack_region=stack_region,
|
|
13085
13255
|
statistic=statistic,
|
|
13086
13256
|
unit=unit,
|
|
13087
13257
|
)
|
|
@@ -13098,6 +13268,8 @@ class TaskStateBase(
|
|
|
13098
13268
|
label: typing.Optional[builtins.str] = None,
|
|
13099
13269
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13100
13270
|
region: typing.Optional[builtins.str] = None,
|
|
13271
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13272
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13101
13273
|
statistic: typing.Optional[builtins.str] = None,
|
|
13102
13274
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13103
13275
|
) -> _Metric_e396a4dc:
|
|
@@ -13109,6 +13281,8 @@ class TaskStateBase(
|
|
|
13109
13281
|
: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
|
|
13110
13282
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13111
13283
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13284
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13285
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13112
13286
|
: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
|
|
13113
13287
|
: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
|
|
13114
13288
|
|
|
@@ -13121,6 +13295,8 @@ class TaskStateBase(
|
|
|
13121
13295
|
label=label,
|
|
13122
13296
|
period=period,
|
|
13123
13297
|
region=region,
|
|
13298
|
+
stack_account=stack_account,
|
|
13299
|
+
stack_region=stack_region,
|
|
13124
13300
|
statistic=statistic,
|
|
13125
13301
|
unit=unit,
|
|
13126
13302
|
)
|
|
@@ -13137,6 +13313,8 @@ class TaskStateBase(
|
|
|
13137
13313
|
label: typing.Optional[builtins.str] = None,
|
|
13138
13314
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13139
13315
|
region: typing.Optional[builtins.str] = None,
|
|
13316
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13317
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13140
13318
|
statistic: typing.Optional[builtins.str] = None,
|
|
13141
13319
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13142
13320
|
) -> _Metric_e396a4dc:
|
|
@@ -13148,6 +13326,8 @@ class TaskStateBase(
|
|
|
13148
13326
|
: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
|
|
13149
13327
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13150
13328
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13329
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13330
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13151
13331
|
: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
|
|
13152
13332
|
: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
|
|
13153
13333
|
|
|
@@ -13160,6 +13340,8 @@ class TaskStateBase(
|
|
|
13160
13340
|
label=label,
|
|
13161
13341
|
period=period,
|
|
13162
13342
|
region=region,
|
|
13343
|
+
stack_account=stack_account,
|
|
13344
|
+
stack_region=stack_region,
|
|
13163
13345
|
statistic=statistic,
|
|
13164
13346
|
unit=unit,
|
|
13165
13347
|
)
|
|
@@ -13176,6 +13358,8 @@ class TaskStateBase(
|
|
|
13176
13358
|
label: typing.Optional[builtins.str] = None,
|
|
13177
13359
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13178
13360
|
region: typing.Optional[builtins.str] = None,
|
|
13361
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13362
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13179
13363
|
statistic: typing.Optional[builtins.str] = None,
|
|
13180
13364
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13181
13365
|
) -> _Metric_e396a4dc:
|
|
@@ -13187,6 +13371,8 @@ class TaskStateBase(
|
|
|
13187
13371
|
: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
|
|
13188
13372
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13189
13373
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13374
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13375
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13190
13376
|
: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
|
|
13191
13377
|
: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
|
|
13192
13378
|
|
|
@@ -13199,6 +13385,8 @@ class TaskStateBase(
|
|
|
13199
13385
|
label=label,
|
|
13200
13386
|
period=period,
|
|
13201
13387
|
region=region,
|
|
13388
|
+
stack_account=stack_account,
|
|
13389
|
+
stack_region=stack_region,
|
|
13202
13390
|
statistic=statistic,
|
|
13203
13391
|
unit=unit,
|
|
13204
13392
|
)
|
|
@@ -13215,6 +13403,8 @@ class TaskStateBase(
|
|
|
13215
13403
|
label: typing.Optional[builtins.str] = None,
|
|
13216
13404
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13217
13405
|
region: typing.Optional[builtins.str] = None,
|
|
13406
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13407
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13218
13408
|
statistic: typing.Optional[builtins.str] = None,
|
|
13219
13409
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13220
13410
|
) -> _Metric_e396a4dc:
|
|
@@ -13226,6 +13416,8 @@ class TaskStateBase(
|
|
|
13226
13416
|
: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
|
|
13227
13417
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13228
13418
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13419
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13420
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13229
13421
|
: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
|
|
13230
13422
|
: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
|
|
13231
13423
|
|
|
@@ -13238,6 +13430,8 @@ class TaskStateBase(
|
|
|
13238
13430
|
label=label,
|
|
13239
13431
|
period=period,
|
|
13240
13432
|
region=region,
|
|
13433
|
+
stack_account=stack_account,
|
|
13434
|
+
stack_region=stack_region,
|
|
13241
13435
|
statistic=statistic,
|
|
13242
13436
|
unit=unit,
|
|
13243
13437
|
)
|
|
@@ -13254,6 +13448,8 @@ class TaskStateBase(
|
|
|
13254
13448
|
label: typing.Optional[builtins.str] = None,
|
|
13255
13449
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13256
13450
|
region: typing.Optional[builtins.str] = None,
|
|
13451
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13452
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13257
13453
|
statistic: typing.Optional[builtins.str] = None,
|
|
13258
13454
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13259
13455
|
) -> _Metric_e396a4dc:
|
|
@@ -13265,6 +13461,8 @@ class TaskStateBase(
|
|
|
13265
13461
|
: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
|
|
13266
13462
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13267
13463
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13464
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13465
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13268
13466
|
: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
|
|
13269
13467
|
: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
|
|
13270
13468
|
|
|
@@ -13277,6 +13475,8 @@ class TaskStateBase(
|
|
|
13277
13475
|
label=label,
|
|
13278
13476
|
period=period,
|
|
13279
13477
|
region=region,
|
|
13478
|
+
stack_account=stack_account,
|
|
13479
|
+
stack_region=stack_region,
|
|
13280
13480
|
statistic=statistic,
|
|
13281
13481
|
unit=unit,
|
|
13282
13482
|
)
|
|
@@ -13293,6 +13493,8 @@ class TaskStateBase(
|
|
|
13293
13493
|
label: typing.Optional[builtins.str] = None,
|
|
13294
13494
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13295
13495
|
region: typing.Optional[builtins.str] = None,
|
|
13496
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13497
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13296
13498
|
statistic: typing.Optional[builtins.str] = None,
|
|
13297
13499
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13298
13500
|
) -> _Metric_e396a4dc:
|
|
@@ -13304,6 +13506,8 @@ class TaskStateBase(
|
|
|
13304
13506
|
: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
|
|
13305
13507
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13306
13508
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13509
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13510
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13307
13511
|
: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
|
|
13308
13512
|
: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
|
|
13309
13513
|
|
|
@@ -13316,6 +13520,8 @@ class TaskStateBase(
|
|
|
13316
13520
|
label=label,
|
|
13317
13521
|
period=period,
|
|
13318
13522
|
region=region,
|
|
13523
|
+
stack_account=stack_account,
|
|
13524
|
+
stack_region=stack_region,
|
|
13319
13525
|
statistic=statistic,
|
|
13320
13526
|
unit=unit,
|
|
13321
13527
|
)
|
|
@@ -13332,6 +13538,8 @@ class TaskStateBase(
|
|
|
13332
13538
|
label: typing.Optional[builtins.str] = None,
|
|
13333
13539
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13334
13540
|
region: typing.Optional[builtins.str] = None,
|
|
13541
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13542
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13335
13543
|
statistic: typing.Optional[builtins.str] = None,
|
|
13336
13544
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13337
13545
|
) -> _Metric_e396a4dc:
|
|
@@ -13343,6 +13551,8 @@ class TaskStateBase(
|
|
|
13343
13551
|
: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
|
|
13344
13552
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13345
13553
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13554
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13555
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13346
13556
|
: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
|
|
13347
13557
|
: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
|
|
13348
13558
|
|
|
@@ -13355,6 +13565,8 @@ class TaskStateBase(
|
|
|
13355
13565
|
label=label,
|
|
13356
13566
|
period=period,
|
|
13357
13567
|
region=region,
|
|
13568
|
+
stack_account=stack_account,
|
|
13569
|
+
stack_region=stack_region,
|
|
13358
13570
|
statistic=statistic,
|
|
13359
13571
|
unit=unit,
|
|
13360
13572
|
)
|
|
@@ -13371,6 +13583,8 @@ class TaskStateBase(
|
|
|
13371
13583
|
label: typing.Optional[builtins.str] = None,
|
|
13372
13584
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13373
13585
|
region: typing.Optional[builtins.str] = None,
|
|
13586
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
13587
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
13374
13588
|
statistic: typing.Optional[builtins.str] = None,
|
|
13375
13589
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13376
13590
|
) -> _Metric_e396a4dc:
|
|
@@ -13382,6 +13596,8 @@ class TaskStateBase(
|
|
|
13382
13596
|
: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
|
|
13383
13597
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
13384
13598
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
13599
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
13600
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
13385
13601
|
: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
|
|
13386
13602
|
: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
|
|
13387
13603
|
|
|
@@ -13394,6 +13610,8 @@ class TaskStateBase(
|
|
|
13394
13610
|
label=label,
|
|
13395
13611
|
period=period,
|
|
13396
13612
|
region=region,
|
|
13613
|
+
stack_account=stack_account,
|
|
13614
|
+
stack_region=stack_region,
|
|
13397
13615
|
statistic=statistic,
|
|
13398
13616
|
unit=unit,
|
|
13399
13617
|
)
|
|
@@ -14234,6 +14452,8 @@ class Activity(
|
|
|
14234
14452
|
label: typing.Optional[builtins.str] = None,
|
|
14235
14453
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14236
14454
|
region: typing.Optional[builtins.str] = None,
|
|
14455
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14456
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14237
14457
|
statistic: typing.Optional[builtins.str] = None,
|
|
14238
14458
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14239
14459
|
) -> _Metric_e396a4dc:
|
|
@@ -14246,6 +14466,8 @@ class Activity(
|
|
|
14246
14466
|
: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
|
|
14247
14467
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14248
14468
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14469
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14470
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14249
14471
|
: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
|
|
14250
14472
|
: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
|
|
14251
14473
|
|
|
@@ -14261,6 +14483,8 @@ class Activity(
|
|
|
14261
14483
|
label=label,
|
|
14262
14484
|
period=period,
|
|
14263
14485
|
region=region,
|
|
14486
|
+
stack_account=stack_account,
|
|
14487
|
+
stack_region=stack_region,
|
|
14264
14488
|
statistic=statistic,
|
|
14265
14489
|
unit=unit,
|
|
14266
14490
|
)
|
|
@@ -14277,6 +14501,8 @@ class Activity(
|
|
|
14277
14501
|
label: typing.Optional[builtins.str] = None,
|
|
14278
14502
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14279
14503
|
region: typing.Optional[builtins.str] = None,
|
|
14504
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14505
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14280
14506
|
statistic: typing.Optional[builtins.str] = None,
|
|
14281
14507
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14282
14508
|
) -> _Metric_e396a4dc:
|
|
@@ -14288,6 +14514,8 @@ class Activity(
|
|
|
14288
14514
|
: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
|
|
14289
14515
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14290
14516
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14517
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14518
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14291
14519
|
: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
|
|
14292
14520
|
: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
|
|
14293
14521
|
|
|
@@ -14300,6 +14528,8 @@ class Activity(
|
|
|
14300
14528
|
label=label,
|
|
14301
14529
|
period=period,
|
|
14302
14530
|
region=region,
|
|
14531
|
+
stack_account=stack_account,
|
|
14532
|
+
stack_region=stack_region,
|
|
14303
14533
|
statistic=statistic,
|
|
14304
14534
|
unit=unit,
|
|
14305
14535
|
)
|
|
@@ -14316,6 +14546,8 @@ class Activity(
|
|
|
14316
14546
|
label: typing.Optional[builtins.str] = None,
|
|
14317
14547
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14318
14548
|
region: typing.Optional[builtins.str] = None,
|
|
14549
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14550
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14319
14551
|
statistic: typing.Optional[builtins.str] = None,
|
|
14320
14552
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14321
14553
|
) -> _Metric_e396a4dc:
|
|
@@ -14327,6 +14559,8 @@ class Activity(
|
|
|
14327
14559
|
: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
|
|
14328
14560
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14329
14561
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14562
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14563
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14330
14564
|
: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
|
|
14331
14565
|
: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
|
|
14332
14566
|
|
|
@@ -14339,6 +14573,8 @@ class Activity(
|
|
|
14339
14573
|
label=label,
|
|
14340
14574
|
period=period,
|
|
14341
14575
|
region=region,
|
|
14576
|
+
stack_account=stack_account,
|
|
14577
|
+
stack_region=stack_region,
|
|
14342
14578
|
statistic=statistic,
|
|
14343
14579
|
unit=unit,
|
|
14344
14580
|
)
|
|
@@ -14355,6 +14591,8 @@ class Activity(
|
|
|
14355
14591
|
label: typing.Optional[builtins.str] = None,
|
|
14356
14592
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14357
14593
|
region: typing.Optional[builtins.str] = None,
|
|
14594
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14595
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14358
14596
|
statistic: typing.Optional[builtins.str] = None,
|
|
14359
14597
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14360
14598
|
) -> _Metric_e396a4dc:
|
|
@@ -14366,6 +14604,8 @@ class Activity(
|
|
|
14366
14604
|
: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
|
|
14367
14605
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14368
14606
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14607
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14608
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14369
14609
|
: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
|
|
14370
14610
|
: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
|
|
14371
14611
|
|
|
@@ -14378,6 +14618,8 @@ class Activity(
|
|
|
14378
14618
|
label=label,
|
|
14379
14619
|
period=period,
|
|
14380
14620
|
region=region,
|
|
14621
|
+
stack_account=stack_account,
|
|
14622
|
+
stack_region=stack_region,
|
|
14381
14623
|
statistic=statistic,
|
|
14382
14624
|
unit=unit,
|
|
14383
14625
|
)
|
|
@@ -14394,6 +14636,8 @@ class Activity(
|
|
|
14394
14636
|
label: typing.Optional[builtins.str] = None,
|
|
14395
14637
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14396
14638
|
region: typing.Optional[builtins.str] = None,
|
|
14639
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14640
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14397
14641
|
statistic: typing.Optional[builtins.str] = None,
|
|
14398
14642
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14399
14643
|
) -> _Metric_e396a4dc:
|
|
@@ -14405,6 +14649,8 @@ class Activity(
|
|
|
14405
14649
|
: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
|
|
14406
14650
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14407
14651
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14652
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14653
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14408
14654
|
: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
|
|
14409
14655
|
: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
|
|
14410
14656
|
|
|
@@ -14417,6 +14663,8 @@ class Activity(
|
|
|
14417
14663
|
label=label,
|
|
14418
14664
|
period=period,
|
|
14419
14665
|
region=region,
|
|
14666
|
+
stack_account=stack_account,
|
|
14667
|
+
stack_region=stack_region,
|
|
14420
14668
|
statistic=statistic,
|
|
14421
14669
|
unit=unit,
|
|
14422
14670
|
)
|
|
@@ -14433,6 +14681,8 @@ class Activity(
|
|
|
14433
14681
|
label: typing.Optional[builtins.str] = None,
|
|
14434
14682
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14435
14683
|
region: typing.Optional[builtins.str] = None,
|
|
14684
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14685
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14436
14686
|
statistic: typing.Optional[builtins.str] = None,
|
|
14437
14687
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14438
14688
|
) -> _Metric_e396a4dc:
|
|
@@ -14444,6 +14694,8 @@ class Activity(
|
|
|
14444
14694
|
: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
|
|
14445
14695
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14446
14696
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14697
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14698
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14447
14699
|
: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
|
|
14448
14700
|
: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
|
|
14449
14701
|
|
|
@@ -14456,6 +14708,8 @@ class Activity(
|
|
|
14456
14708
|
label=label,
|
|
14457
14709
|
period=period,
|
|
14458
14710
|
region=region,
|
|
14711
|
+
stack_account=stack_account,
|
|
14712
|
+
stack_region=stack_region,
|
|
14459
14713
|
statistic=statistic,
|
|
14460
14714
|
unit=unit,
|
|
14461
14715
|
)
|
|
@@ -14472,6 +14726,8 @@ class Activity(
|
|
|
14472
14726
|
label: typing.Optional[builtins.str] = None,
|
|
14473
14727
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14474
14728
|
region: typing.Optional[builtins.str] = None,
|
|
14729
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14730
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14475
14731
|
statistic: typing.Optional[builtins.str] = None,
|
|
14476
14732
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14477
14733
|
) -> _Metric_e396a4dc:
|
|
@@ -14483,6 +14739,8 @@ class Activity(
|
|
|
14483
14739
|
: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
|
|
14484
14740
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14485
14741
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14742
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14743
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14486
14744
|
: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
|
|
14487
14745
|
: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
|
|
14488
14746
|
|
|
@@ -14495,6 +14753,8 @@ class Activity(
|
|
|
14495
14753
|
label=label,
|
|
14496
14754
|
period=period,
|
|
14497
14755
|
region=region,
|
|
14756
|
+
stack_account=stack_account,
|
|
14757
|
+
stack_region=stack_region,
|
|
14498
14758
|
statistic=statistic,
|
|
14499
14759
|
unit=unit,
|
|
14500
14760
|
)
|
|
@@ -14511,6 +14771,8 @@ class Activity(
|
|
|
14511
14771
|
label: typing.Optional[builtins.str] = None,
|
|
14512
14772
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14513
14773
|
region: typing.Optional[builtins.str] = None,
|
|
14774
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14775
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14514
14776
|
statistic: typing.Optional[builtins.str] = None,
|
|
14515
14777
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14516
14778
|
) -> _Metric_e396a4dc:
|
|
@@ -14522,6 +14784,8 @@ class Activity(
|
|
|
14522
14784
|
: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
|
|
14523
14785
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14524
14786
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14787
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14788
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14525
14789
|
: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
|
|
14526
14790
|
: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
|
|
14527
14791
|
|
|
@@ -14534,6 +14798,8 @@ class Activity(
|
|
|
14534
14798
|
label=label,
|
|
14535
14799
|
period=period,
|
|
14536
14800
|
region=region,
|
|
14801
|
+
stack_account=stack_account,
|
|
14802
|
+
stack_region=stack_region,
|
|
14537
14803
|
statistic=statistic,
|
|
14538
14804
|
unit=unit,
|
|
14539
14805
|
)
|
|
@@ -14550,6 +14816,8 @@ class Activity(
|
|
|
14550
14816
|
label: typing.Optional[builtins.str] = None,
|
|
14551
14817
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14552
14818
|
region: typing.Optional[builtins.str] = None,
|
|
14819
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14820
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14553
14821
|
statistic: typing.Optional[builtins.str] = None,
|
|
14554
14822
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14555
14823
|
) -> _Metric_e396a4dc:
|
|
@@ -14561,6 +14829,8 @@ class Activity(
|
|
|
14561
14829
|
: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
|
|
14562
14830
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14563
14831
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14832
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14833
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14564
14834
|
: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
|
|
14565
14835
|
: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
|
|
14566
14836
|
|
|
@@ -14573,6 +14843,8 @@ class Activity(
|
|
|
14573
14843
|
label=label,
|
|
14574
14844
|
period=period,
|
|
14575
14845
|
region=region,
|
|
14846
|
+
stack_account=stack_account,
|
|
14847
|
+
stack_region=stack_region,
|
|
14576
14848
|
statistic=statistic,
|
|
14577
14849
|
unit=unit,
|
|
14578
14850
|
)
|
|
@@ -14589,6 +14861,8 @@ class Activity(
|
|
|
14589
14861
|
label: typing.Optional[builtins.str] = None,
|
|
14590
14862
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14591
14863
|
region: typing.Optional[builtins.str] = None,
|
|
14864
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14865
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14592
14866
|
statistic: typing.Optional[builtins.str] = None,
|
|
14593
14867
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14594
14868
|
) -> _Metric_e396a4dc:
|
|
@@ -14600,6 +14874,8 @@ class Activity(
|
|
|
14600
14874
|
: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
|
|
14601
14875
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
14602
14876
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
14877
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
14878
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
14603
14879
|
: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
|
|
14604
14880
|
: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
|
|
14605
14881
|
|
|
@@ -14612,6 +14888,8 @@ class Activity(
|
|
|
14612
14888
|
label=label,
|
|
14613
14889
|
period=period,
|
|
14614
14890
|
region=region,
|
|
14891
|
+
stack_account=stack_account,
|
|
14892
|
+
stack_region=stack_region,
|
|
14615
14893
|
statistic=statistic,
|
|
14616
14894
|
unit=unit,
|
|
14617
14895
|
)
|
|
@@ -17661,6 +17939,8 @@ def _typecheckingstub__2cab371f4587948afe28a72a9dde908f44a64ec26dee050808f7b1236
|
|
|
17661
17939
|
label: typing.Optional[builtins.str] = None,
|
|
17662
17940
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17663
17941
|
region: typing.Optional[builtins.str] = None,
|
|
17942
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
17943
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
17664
17944
|
statistic: typing.Optional[builtins.str] = None,
|
|
17665
17945
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17666
17946
|
) -> None:
|
|
@@ -18255,6 +18535,8 @@ def _typecheckingstub__e00f442fc4f33cd6bcc931ba95c9117d241aef41be5171c27548e74d9
|
|
|
18255
18535
|
label: typing.Optional[builtins.str] = None,
|
|
18256
18536
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18257
18537
|
region: typing.Optional[builtins.str] = None,
|
|
18538
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18539
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18258
18540
|
statistic: typing.Optional[builtins.str] = None,
|
|
18259
18541
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18260
18542
|
) -> None:
|
|
@@ -18320,6 +18602,8 @@ def _typecheckingstub__01d556c15cb7d46dea75f4d4d5be455df4181351677d04c896b3cece7
|
|
|
18320
18602
|
label: typing.Optional[builtins.str] = None,
|
|
18321
18603
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18322
18604
|
region: typing.Optional[builtins.str] = None,
|
|
18605
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18606
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18323
18607
|
statistic: typing.Optional[builtins.str] = None,
|
|
18324
18608
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18325
18609
|
) -> None:
|
|
@@ -18440,6 +18724,8 @@ def _typecheckingstub__9e107390a3e2550b832e771f6471431f1576a6bdab08445ca9d4fef45
|
|
|
18440
18724
|
label: typing.Optional[builtins.str] = None,
|
|
18441
18725
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18442
18726
|
region: typing.Optional[builtins.str] = None,
|
|
18727
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18728
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18443
18729
|
statistic: typing.Optional[builtins.str] = None,
|
|
18444
18730
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18445
18731
|
) -> None:
|
|
@@ -18580,6 +18866,8 @@ def _typecheckingstub__7f960b5875dcb81c7f4b6e91c03015375df2e5c6bb3da84f476bf59c2
|
|
|
18580
18866
|
label: typing.Optional[builtins.str] = None,
|
|
18581
18867
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
18582
18868
|
region: typing.Optional[builtins.str] = None,
|
|
18869
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
18870
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
18583
18871
|
statistic: typing.Optional[builtins.str] = None,
|
|
18584
18872
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
18585
18873
|
) -> None:
|