aws-cdk-lib 2.203.1__py3-none-any.whl → 2.205.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +208 -92
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.203.1.jsii.tgz → aws-cdk-lib@2.205.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +89 -39
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +412 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +2 -2
- aws_cdk/aws_arczonalshift/__init__.py +4 -1
- aws_cdk/aws_b2bi/__init__.py +32 -16
- aws_cdk/aws_bedrock/__init__.py +198 -10
- aws_cdk/aws_cassandra/__init__.py +156 -0
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cloudformation/__init__.py +74 -72
- aws_cdk/aws_cloudfront/__init__.py +1273 -485
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +26 -21
- aws_cdk/aws_cloudwatch/__init__.py +278 -23
- aws_cdk/aws_codebuild/__init__.py +300 -36
- aws_cdk/aws_datasync/__init__.py +2 -2
- aws_cdk/aws_docdb/__init__.py +78 -0
- aws_cdk/aws_dynamodb/__init__.py +523 -37
- aws_cdk/aws_ec2/__init__.py +126 -30
- aws_cdk/aws_ecs/__init__.py +64 -19
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_emrserverless/__init__.py +5 -5
- aws_cdk/aws_events/__init__.py +58 -3
- aws_cdk/aws_events_targets/__init__.py +7 -2
- aws_cdk/aws_evs/__init__.py +7 -7
- aws_cdk/aws_fsx/__init__.py +138 -78
- aws_cdk/aws_gamelift/__init__.py +19 -0
- aws_cdk/aws_glue/__init__.py +3 -3
- aws_cdk/aws_iot/__init__.py +1 -1
- aws_cdk/aws_kinesis/__init__.py +391 -13
- aws_cdk/aws_kinesisfirehose/__init__.py +128 -1
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_lex/__init__.py +36 -19
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_neptune/__init__.py +12 -12
- aws_cdk/aws_odb/__init__.py +4049 -0
- aws_cdk/aws_omics/__init__.py +1 -1
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_qbusiness/__init__.py +471 -4
- aws_cdk/aws_quicksight/__init__.py +185 -16
- aws_cdk/aws_rds/__init__.py +553 -17
- aws_cdk/aws_redshiftserverless/__init__.py +72 -45
- aws_cdk/aws_route53/__init__.py +41 -19
- aws_cdk/aws_s3tables/__init__.py +1005 -0
- aws_cdk/aws_sagemaker/__init__.py +20 -0
- aws_cdk/aws_scheduler/__init__.py +210 -0
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +159 -37
- aws_cdk/aws_transfer/__init__.py +23 -1
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/RECORD +62 -61
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/top_level.txt +0 -0
|
@@ -105,11 +105,14 @@ will be used for files successfully delivered to S3. `errorOutputPrefix` will be
|
|
|
105
105
|
failed records before writing them to S3.
|
|
106
106
|
|
|
107
107
|
```python
|
|
108
|
+
from aws_cdk import TimeZone
|
|
108
109
|
# bucket: s3.Bucket
|
|
109
110
|
|
|
110
111
|
s3_destination = firehose.S3Bucket(bucket,
|
|
111
112
|
data_output_prefix="myFirehose/DeliveredYear=!{timestamp:yyyy}/anyMonth/rand=!{firehose:random-string}",
|
|
112
|
-
error_output_prefix="myFirehoseFailures/!{firehose:error-output-type}/!{timestamp:yyyy}/anyMonth/!{timestamp:dd}"
|
|
113
|
+
error_output_prefix="myFirehoseFailures/!{firehose:error-output-type}/!{timestamp:yyyy}/anyMonth/!{timestamp:dd}",
|
|
114
|
+
# The time zone of timestamps (default UTC)
|
|
115
|
+
time_zone=TimeZone.ASIA_TOKYO
|
|
113
116
|
)
|
|
114
117
|
```
|
|
115
118
|
|
|
@@ -500,6 +503,7 @@ delivery_stream = firehose.DeliveryStream(stack, "DeliveryStream",
|
|
|
500
503
|
data_output_prefix="regularPrefix",
|
|
501
504
|
error_output_prefix="errorPrefix",
|
|
502
505
|
file_extension=".log.gz",
|
|
506
|
+
time_zone=cdk.TimeZone.ASIA_TOKYO,
|
|
503
507
|
buffering_interval=cdk.Duration.seconds(60),
|
|
504
508
|
buffering_size=cdk.Size.mebibytes(1),
|
|
505
509
|
encryption_key=key,
|
|
@@ -689,6 +693,7 @@ from .. import (
|
|
|
689
693
|
Resource as _Resource_45bc6135,
|
|
690
694
|
Size as _Size_7b441c34,
|
|
691
695
|
TagManager as _TagManager_0a598cb3,
|
|
696
|
+
TimeZone as _TimeZone_cdd72ac9,
|
|
692
697
|
TreeInspector as _TreeInspector_488e0dd5,
|
|
693
698
|
)
|
|
694
699
|
from ..aws_cloudwatch import (
|
|
@@ -10869,6 +10874,7 @@ class IDeliveryStream(
|
|
|
10869
10874
|
account: typing.Optional[builtins.str] = None,
|
|
10870
10875
|
color: typing.Optional[builtins.str] = None,
|
|
10871
10876
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10877
|
+
id: typing.Optional[builtins.str] = None,
|
|
10872
10878
|
label: typing.Optional[builtins.str] = None,
|
|
10873
10879
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10874
10880
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10876,6 +10882,7 @@ class IDeliveryStream(
|
|
|
10876
10882
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10877
10883
|
statistic: typing.Optional[builtins.str] = None,
|
|
10878
10884
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10885
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10879
10886
|
) -> _Metric_e396a4dc:
|
|
10880
10887
|
'''Return the given named metric for this delivery stream.
|
|
10881
10888
|
|
|
@@ -10883,6 +10890,7 @@ class IDeliveryStream(
|
|
|
10883
10890
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10884
10891
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
10885
10892
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10893
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
10886
10894
|
: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
|
|
10887
10895
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10888
10896
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10890,6 +10898,7 @@ class IDeliveryStream(
|
|
|
10890
10898
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10891
10899
|
: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
|
|
10892
10900
|
: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
|
|
10901
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
10893
10902
|
'''
|
|
10894
10903
|
...
|
|
10895
10904
|
|
|
@@ -10900,6 +10909,7 @@ class IDeliveryStream(
|
|
|
10900
10909
|
account: typing.Optional[builtins.str] = None,
|
|
10901
10910
|
color: typing.Optional[builtins.str] = None,
|
|
10902
10911
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10912
|
+
id: typing.Optional[builtins.str] = None,
|
|
10903
10913
|
label: typing.Optional[builtins.str] = None,
|
|
10904
10914
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10905
10915
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10907,6 +10917,7 @@ class IDeliveryStream(
|
|
|
10907
10917
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10908
10918
|
statistic: typing.Optional[builtins.str] = None,
|
|
10909
10919
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10920
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10910
10921
|
) -> _Metric_e396a4dc:
|
|
10911
10922
|
'''Metric for the number of bytes delivered to Amazon S3 for backup over the specified time period.
|
|
10912
10923
|
|
|
@@ -10915,6 +10926,7 @@ class IDeliveryStream(
|
|
|
10915
10926
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10916
10927
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
10917
10928
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10929
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
10918
10930
|
: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
|
|
10919
10931
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10920
10932
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10922,6 +10934,7 @@ class IDeliveryStream(
|
|
|
10922
10934
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10923
10935
|
: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
|
|
10924
10936
|
: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
|
|
10937
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
10925
10938
|
'''
|
|
10926
10939
|
...
|
|
10927
10940
|
|
|
@@ -10932,6 +10945,7 @@ class IDeliveryStream(
|
|
|
10932
10945
|
account: typing.Optional[builtins.str] = None,
|
|
10933
10946
|
color: typing.Optional[builtins.str] = None,
|
|
10934
10947
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10948
|
+
id: typing.Optional[builtins.str] = None,
|
|
10935
10949
|
label: typing.Optional[builtins.str] = None,
|
|
10936
10950
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10937
10951
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10939,6 +10953,7 @@ class IDeliveryStream(
|
|
|
10939
10953
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10940
10954
|
statistic: typing.Optional[builtins.str] = None,
|
|
10941
10955
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10956
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10942
10957
|
) -> _Metric_e396a4dc:
|
|
10943
10958
|
'''Metric for the age (from getting into Amazon Data Firehose to now) of the oldest record in Amazon Data Firehose.
|
|
10944
10959
|
|
|
@@ -10949,6 +10964,7 @@ class IDeliveryStream(
|
|
|
10949
10964
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10950
10965
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
10951
10966
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10967
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
10952
10968
|
: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
|
|
10953
10969
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10954
10970
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10956,6 +10972,7 @@ class IDeliveryStream(
|
|
|
10956
10972
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10957
10973
|
: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
|
|
10958
10974
|
: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
|
|
10975
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
10959
10976
|
'''
|
|
10960
10977
|
...
|
|
10961
10978
|
|
|
@@ -10966,6 +10983,7 @@ class IDeliveryStream(
|
|
|
10966
10983
|
account: typing.Optional[builtins.str] = None,
|
|
10967
10984
|
color: typing.Optional[builtins.str] = None,
|
|
10968
10985
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10986
|
+
id: typing.Optional[builtins.str] = None,
|
|
10969
10987
|
label: typing.Optional[builtins.str] = None,
|
|
10970
10988
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10971
10989
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10973,6 +10991,7 @@ class IDeliveryStream(
|
|
|
10973
10991
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10974
10992
|
statistic: typing.Optional[builtins.str] = None,
|
|
10975
10993
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10994
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10976
10995
|
) -> _Metric_e396a4dc:
|
|
10977
10996
|
'''Metric for the number of records delivered to Amazon S3 for backup over the specified time period.
|
|
10978
10997
|
|
|
@@ -10981,6 +11000,7 @@ class IDeliveryStream(
|
|
|
10981
11000
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10982
11001
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
10983
11002
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11003
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
10984
11004
|
: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
|
|
10985
11005
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10986
11006
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10988,6 +11008,7 @@ class IDeliveryStream(
|
|
|
10988
11008
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10989
11009
|
: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
|
|
10990
11010
|
: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
|
|
11011
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
10991
11012
|
'''
|
|
10992
11013
|
...
|
|
10993
11014
|
|
|
@@ -10998,6 +11019,7 @@ class IDeliveryStream(
|
|
|
10998
11019
|
account: typing.Optional[builtins.str] = None,
|
|
10999
11020
|
color: typing.Optional[builtins.str] = None,
|
|
11000
11021
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11022
|
+
id: typing.Optional[builtins.str] = None,
|
|
11001
11023
|
label: typing.Optional[builtins.str] = None,
|
|
11002
11024
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11003
11025
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11005,6 +11027,7 @@ class IDeliveryStream(
|
|
|
11005
11027
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11006
11028
|
statistic: typing.Optional[builtins.str] = None,
|
|
11007
11029
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11030
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11008
11031
|
) -> _Metric_e396a4dc:
|
|
11009
11032
|
'''Metric for the number of bytes ingested successfully into the delivery stream over the specified time period after throttling.
|
|
11010
11033
|
|
|
@@ -11013,6 +11036,7 @@ class IDeliveryStream(
|
|
|
11013
11036
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11014
11037
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
11015
11038
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11039
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
11016
11040
|
: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
|
|
11017
11041
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11018
11042
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11020,6 +11044,7 @@ class IDeliveryStream(
|
|
|
11020
11044
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11021
11045
|
: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
|
|
11022
11046
|
: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
|
|
11047
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
11023
11048
|
'''
|
|
11024
11049
|
...
|
|
11025
11050
|
|
|
@@ -11030,6 +11055,7 @@ class IDeliveryStream(
|
|
|
11030
11055
|
account: typing.Optional[builtins.str] = None,
|
|
11031
11056
|
color: typing.Optional[builtins.str] = None,
|
|
11032
11057
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11058
|
+
id: typing.Optional[builtins.str] = None,
|
|
11033
11059
|
label: typing.Optional[builtins.str] = None,
|
|
11034
11060
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11035
11061
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11037,6 +11063,7 @@ class IDeliveryStream(
|
|
|
11037
11063
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11038
11064
|
statistic: typing.Optional[builtins.str] = None,
|
|
11039
11065
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11066
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11040
11067
|
) -> _Metric_e396a4dc:
|
|
11041
11068
|
'''Metric for the number of records ingested successfully into the delivery stream over the specified time period after throttling.
|
|
11042
11069
|
|
|
@@ -11045,6 +11072,7 @@ class IDeliveryStream(
|
|
|
11045
11072
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11046
11073
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
11047
11074
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11075
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
11048
11076
|
: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
|
|
11049
11077
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11050
11078
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11052,6 +11080,7 @@ class IDeliveryStream(
|
|
|
11052
11080
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11053
11081
|
: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
|
|
11054
11082
|
: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
|
|
11083
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
11055
11084
|
'''
|
|
11056
11085
|
...
|
|
11057
11086
|
|
|
@@ -11119,6 +11148,7 @@ class _IDeliveryStreamProxy(
|
|
|
11119
11148
|
account: typing.Optional[builtins.str] = None,
|
|
11120
11149
|
color: typing.Optional[builtins.str] = None,
|
|
11121
11150
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11151
|
+
id: typing.Optional[builtins.str] = None,
|
|
11122
11152
|
label: typing.Optional[builtins.str] = None,
|
|
11123
11153
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11124
11154
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11126,6 +11156,7 @@ class _IDeliveryStreamProxy(
|
|
|
11126
11156
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11127
11157
|
statistic: typing.Optional[builtins.str] = None,
|
|
11128
11158
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11159
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11129
11160
|
) -> _Metric_e396a4dc:
|
|
11130
11161
|
'''Return the given named metric for this delivery stream.
|
|
11131
11162
|
|
|
@@ -11133,6 +11164,7 @@ class _IDeliveryStreamProxy(
|
|
|
11133
11164
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11134
11165
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
11135
11166
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11167
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
11136
11168
|
: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
|
|
11137
11169
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11138
11170
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11140,6 +11172,7 @@ class _IDeliveryStreamProxy(
|
|
|
11140
11172
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11141
11173
|
: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
|
|
11142
11174
|
: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
|
|
11175
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
11143
11176
|
'''
|
|
11144
11177
|
if __debug__:
|
|
11145
11178
|
type_hints = typing.get_type_hints(_typecheckingstub__25d98802194f172640833e51b398adf85ca294da7e2a4a6dfb45bfe99dfdb071)
|
|
@@ -11148,6 +11181,7 @@ class _IDeliveryStreamProxy(
|
|
|
11148
11181
|
account=account,
|
|
11149
11182
|
color=color,
|
|
11150
11183
|
dimensions_map=dimensions_map,
|
|
11184
|
+
id=id,
|
|
11151
11185
|
label=label,
|
|
11152
11186
|
period=period,
|
|
11153
11187
|
region=region,
|
|
@@ -11155,6 +11189,7 @@ class _IDeliveryStreamProxy(
|
|
|
11155
11189
|
stack_region=stack_region,
|
|
11156
11190
|
statistic=statistic,
|
|
11157
11191
|
unit=unit,
|
|
11192
|
+
visible=visible,
|
|
11158
11193
|
)
|
|
11159
11194
|
|
|
11160
11195
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -11166,6 +11201,7 @@ class _IDeliveryStreamProxy(
|
|
|
11166
11201
|
account: typing.Optional[builtins.str] = None,
|
|
11167
11202
|
color: typing.Optional[builtins.str] = None,
|
|
11168
11203
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11204
|
+
id: typing.Optional[builtins.str] = None,
|
|
11169
11205
|
label: typing.Optional[builtins.str] = None,
|
|
11170
11206
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11171
11207
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11173,6 +11209,7 @@ class _IDeliveryStreamProxy(
|
|
|
11173
11209
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11174
11210
|
statistic: typing.Optional[builtins.str] = None,
|
|
11175
11211
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11212
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11176
11213
|
) -> _Metric_e396a4dc:
|
|
11177
11214
|
'''Metric for the number of bytes delivered to Amazon S3 for backup over the specified time period.
|
|
11178
11215
|
|
|
@@ -11181,6 +11218,7 @@ class _IDeliveryStreamProxy(
|
|
|
11181
11218
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11182
11219
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
11183
11220
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11221
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
11184
11222
|
: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
|
|
11185
11223
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11186
11224
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11188,11 +11226,13 @@ class _IDeliveryStreamProxy(
|
|
|
11188
11226
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11189
11227
|
: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
|
|
11190
11228
|
: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
|
|
11229
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
11191
11230
|
'''
|
|
11192
11231
|
props = _MetricOptions_1788b62f(
|
|
11193
11232
|
account=account,
|
|
11194
11233
|
color=color,
|
|
11195
11234
|
dimensions_map=dimensions_map,
|
|
11235
|
+
id=id,
|
|
11196
11236
|
label=label,
|
|
11197
11237
|
period=period,
|
|
11198
11238
|
region=region,
|
|
@@ -11200,6 +11240,7 @@ class _IDeliveryStreamProxy(
|
|
|
11200
11240
|
stack_region=stack_region,
|
|
11201
11241
|
statistic=statistic,
|
|
11202
11242
|
unit=unit,
|
|
11243
|
+
visible=visible,
|
|
11203
11244
|
)
|
|
11204
11245
|
|
|
11205
11246
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricBackupToS3Bytes", [props]))
|
|
@@ -11211,6 +11252,7 @@ class _IDeliveryStreamProxy(
|
|
|
11211
11252
|
account: typing.Optional[builtins.str] = None,
|
|
11212
11253
|
color: typing.Optional[builtins.str] = None,
|
|
11213
11254
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11255
|
+
id: typing.Optional[builtins.str] = None,
|
|
11214
11256
|
label: typing.Optional[builtins.str] = None,
|
|
11215
11257
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11216
11258
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11218,6 +11260,7 @@ class _IDeliveryStreamProxy(
|
|
|
11218
11260
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11219
11261
|
statistic: typing.Optional[builtins.str] = None,
|
|
11220
11262
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11263
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11221
11264
|
) -> _Metric_e396a4dc:
|
|
11222
11265
|
'''Metric for the age (from getting into Amazon Data Firehose to now) of the oldest record in Amazon Data Firehose.
|
|
11223
11266
|
|
|
@@ -11228,6 +11271,7 @@ class _IDeliveryStreamProxy(
|
|
|
11228
11271
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11229
11272
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
11230
11273
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11274
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
11231
11275
|
: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
|
|
11232
11276
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11233
11277
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11235,11 +11279,13 @@ class _IDeliveryStreamProxy(
|
|
|
11235
11279
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11236
11280
|
: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
|
|
11237
11281
|
: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
|
|
11282
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
11238
11283
|
'''
|
|
11239
11284
|
props = _MetricOptions_1788b62f(
|
|
11240
11285
|
account=account,
|
|
11241
11286
|
color=color,
|
|
11242
11287
|
dimensions_map=dimensions_map,
|
|
11288
|
+
id=id,
|
|
11243
11289
|
label=label,
|
|
11244
11290
|
period=period,
|
|
11245
11291
|
region=region,
|
|
@@ -11247,6 +11293,7 @@ class _IDeliveryStreamProxy(
|
|
|
11247
11293
|
stack_region=stack_region,
|
|
11248
11294
|
statistic=statistic,
|
|
11249
11295
|
unit=unit,
|
|
11296
|
+
visible=visible,
|
|
11250
11297
|
)
|
|
11251
11298
|
|
|
11252
11299
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricBackupToS3DataFreshness", [props]))
|
|
@@ -11258,6 +11305,7 @@ class _IDeliveryStreamProxy(
|
|
|
11258
11305
|
account: typing.Optional[builtins.str] = None,
|
|
11259
11306
|
color: typing.Optional[builtins.str] = None,
|
|
11260
11307
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11308
|
+
id: typing.Optional[builtins.str] = None,
|
|
11261
11309
|
label: typing.Optional[builtins.str] = None,
|
|
11262
11310
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11263
11311
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11265,6 +11313,7 @@ class _IDeliveryStreamProxy(
|
|
|
11265
11313
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11266
11314
|
statistic: typing.Optional[builtins.str] = None,
|
|
11267
11315
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11316
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11268
11317
|
) -> _Metric_e396a4dc:
|
|
11269
11318
|
'''Metric for the number of records delivered to Amazon S3 for backup over the specified time period.
|
|
11270
11319
|
|
|
@@ -11273,6 +11322,7 @@ class _IDeliveryStreamProxy(
|
|
|
11273
11322
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11274
11323
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
11275
11324
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11325
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
11276
11326
|
: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
|
|
11277
11327
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11278
11328
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11280,11 +11330,13 @@ class _IDeliveryStreamProxy(
|
|
|
11280
11330
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11281
11331
|
: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
|
|
11282
11332
|
: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
|
|
11333
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
11283
11334
|
'''
|
|
11284
11335
|
props = _MetricOptions_1788b62f(
|
|
11285
11336
|
account=account,
|
|
11286
11337
|
color=color,
|
|
11287
11338
|
dimensions_map=dimensions_map,
|
|
11339
|
+
id=id,
|
|
11288
11340
|
label=label,
|
|
11289
11341
|
period=period,
|
|
11290
11342
|
region=region,
|
|
@@ -11292,6 +11344,7 @@ class _IDeliveryStreamProxy(
|
|
|
11292
11344
|
stack_region=stack_region,
|
|
11293
11345
|
statistic=statistic,
|
|
11294
11346
|
unit=unit,
|
|
11347
|
+
visible=visible,
|
|
11295
11348
|
)
|
|
11296
11349
|
|
|
11297
11350
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricBackupToS3Records", [props]))
|
|
@@ -11303,6 +11356,7 @@ class _IDeliveryStreamProxy(
|
|
|
11303
11356
|
account: typing.Optional[builtins.str] = None,
|
|
11304
11357
|
color: typing.Optional[builtins.str] = None,
|
|
11305
11358
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11359
|
+
id: typing.Optional[builtins.str] = None,
|
|
11306
11360
|
label: typing.Optional[builtins.str] = None,
|
|
11307
11361
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11308
11362
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11310,6 +11364,7 @@ class _IDeliveryStreamProxy(
|
|
|
11310
11364
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11311
11365
|
statistic: typing.Optional[builtins.str] = None,
|
|
11312
11366
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11367
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11313
11368
|
) -> _Metric_e396a4dc:
|
|
11314
11369
|
'''Metric for the number of bytes ingested successfully into the delivery stream over the specified time period after throttling.
|
|
11315
11370
|
|
|
@@ -11318,6 +11373,7 @@ class _IDeliveryStreamProxy(
|
|
|
11318
11373
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11319
11374
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
11320
11375
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11376
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
11321
11377
|
: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
|
|
11322
11378
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11323
11379
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11325,11 +11381,13 @@ class _IDeliveryStreamProxy(
|
|
|
11325
11381
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11326
11382
|
: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
|
|
11327
11383
|
: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
|
|
11384
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
11328
11385
|
'''
|
|
11329
11386
|
props = _MetricOptions_1788b62f(
|
|
11330
11387
|
account=account,
|
|
11331
11388
|
color=color,
|
|
11332
11389
|
dimensions_map=dimensions_map,
|
|
11390
|
+
id=id,
|
|
11333
11391
|
label=label,
|
|
11334
11392
|
period=period,
|
|
11335
11393
|
region=region,
|
|
@@ -11337,6 +11395,7 @@ class _IDeliveryStreamProxy(
|
|
|
11337
11395
|
stack_region=stack_region,
|
|
11338
11396
|
statistic=statistic,
|
|
11339
11397
|
unit=unit,
|
|
11398
|
+
visible=visible,
|
|
11340
11399
|
)
|
|
11341
11400
|
|
|
11342
11401
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIncomingBytes", [props]))
|
|
@@ -11348,6 +11407,7 @@ class _IDeliveryStreamProxy(
|
|
|
11348
11407
|
account: typing.Optional[builtins.str] = None,
|
|
11349
11408
|
color: typing.Optional[builtins.str] = None,
|
|
11350
11409
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11410
|
+
id: typing.Optional[builtins.str] = None,
|
|
11351
11411
|
label: typing.Optional[builtins.str] = None,
|
|
11352
11412
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11353
11413
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11355,6 +11415,7 @@ class _IDeliveryStreamProxy(
|
|
|
11355
11415
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11356
11416
|
statistic: typing.Optional[builtins.str] = None,
|
|
11357
11417
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11418
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11358
11419
|
) -> _Metric_e396a4dc:
|
|
11359
11420
|
'''Metric for the number of records ingested successfully into the delivery stream over the specified time period after throttling.
|
|
11360
11421
|
|
|
@@ -11363,6 +11424,7 @@ class _IDeliveryStreamProxy(
|
|
|
11363
11424
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11364
11425
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
11365
11426
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11427
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
11366
11428
|
: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
11429
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11368
11430
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11370,11 +11432,13 @@ class _IDeliveryStreamProxy(
|
|
|
11370
11432
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11371
11433
|
: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
|
|
11372
11434
|
: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
|
|
11435
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
11373
11436
|
'''
|
|
11374
11437
|
props = _MetricOptions_1788b62f(
|
|
11375
11438
|
account=account,
|
|
11376
11439
|
color=color,
|
|
11377
11440
|
dimensions_map=dimensions_map,
|
|
11441
|
+
id=id,
|
|
11378
11442
|
label=label,
|
|
11379
11443
|
period=period,
|
|
11380
11444
|
region=region,
|
|
@@ -11382,6 +11446,7 @@ class _IDeliveryStreamProxy(
|
|
|
11382
11446
|
stack_region=stack_region,
|
|
11383
11447
|
statistic=statistic,
|
|
11384
11448
|
unit=unit,
|
|
11449
|
+
visible=visible,
|
|
11385
11450
|
)
|
|
11386
11451
|
|
|
11387
11452
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIncomingRecords", [props]))
|
|
@@ -11691,6 +11756,7 @@ class S3Bucket(
|
|
|
11691
11756
|
bucket: _IBucket_42e086fd,
|
|
11692
11757
|
*,
|
|
11693
11758
|
file_extension: typing.Optional[builtins.str] = None,
|
|
11759
|
+
time_zone: typing.Optional[_TimeZone_cdd72ac9] = None,
|
|
11694
11760
|
buffering_interval: typing.Optional[_Duration_4839e8c3] = None,
|
|
11695
11761
|
buffering_size: typing.Optional[_Size_7b441c34] = None,
|
|
11696
11762
|
compression: typing.Optional[Compression] = None,
|
|
@@ -11705,6 +11771,7 @@ class S3Bucket(
|
|
|
11705
11771
|
'''
|
|
11706
11772
|
:param bucket: -
|
|
11707
11773
|
:param file_extension: Specify a file extension. It will override the default file extension appended by Data Format Conversion or S3 compression features such as ``.parquet`` or ``.gz``. File extension must start with a period (``.``) and can contain allowed characters: ``0-9a-z!-_.*'()``. Default: - The default file extension appended by Data Format Conversion or S3 compression features
|
|
11774
|
+
:param time_zone: The time zone you prefer. Default: - UTC
|
|
11708
11775
|
:param buffering_interval: The length of time that Firehose buffers incoming data before delivering it to the S3 bucket. Minimum: Duration.seconds(0) Maximum: Duration.seconds(900) Default: Duration.seconds(300)
|
|
11709
11776
|
:param buffering_size: The size of the buffer that Amazon Data Firehose uses for incoming data before delivering it to the S3 bucket. Minimum: Size.mebibytes(1) Maximum: Size.mebibytes(128) Default: Size.mebibytes(5)
|
|
11710
11777
|
:param compression: The type of compression that Amazon Data Firehose uses to compress the data that it delivers to the Amazon S3 bucket. The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket. Default: - UNCOMPRESSED
|
|
@@ -11721,6 +11788,7 @@ class S3Bucket(
|
|
|
11721
11788
|
check_type(argname="argument bucket", value=bucket, expected_type=type_hints["bucket"])
|
|
11722
11789
|
props = S3BucketProps(
|
|
11723
11790
|
file_extension=file_extension,
|
|
11791
|
+
time_zone=time_zone,
|
|
11724
11792
|
buffering_interval=buffering_interval,
|
|
11725
11793
|
buffering_size=buffering_size,
|
|
11726
11794
|
compression=compression,
|
|
@@ -11766,6 +11834,7 @@ class S3Bucket(
|
|
|
11766
11834
|
"role": "role",
|
|
11767
11835
|
"s3_backup": "s3Backup",
|
|
11768
11836
|
"file_extension": "fileExtension",
|
|
11837
|
+
"time_zone": "timeZone",
|
|
11769
11838
|
},
|
|
11770
11839
|
)
|
|
11771
11840
|
class S3BucketProps(CommonDestinationS3Props, CommonDestinationProps):
|
|
@@ -11783,6 +11852,7 @@ class S3BucketProps(CommonDestinationS3Props, CommonDestinationProps):
|
|
|
11783
11852
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
11784
11853
|
s3_backup: typing.Optional[typing.Union[DestinationS3BackupProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
11785
11854
|
file_extension: typing.Optional[builtins.str] = None,
|
|
11855
|
+
time_zone: typing.Optional[_TimeZone_cdd72ac9] = None,
|
|
11786
11856
|
) -> None:
|
|
11787
11857
|
'''Props for defining an S3 destination of an Amazon Data Firehose delivery stream.
|
|
11788
11858
|
|
|
@@ -11797,6 +11867,7 @@ class S3BucketProps(CommonDestinationS3Props, CommonDestinationProps):
|
|
|
11797
11867
|
:param role: The IAM role associated with this destination. Assumed by Amazon Data Firehose to invoke processors and write to destinations Default: - a role will be created with default permissions.
|
|
11798
11868
|
:param s3_backup: The configuration for backing up source records to S3. Default: - source records will not be backed up to S3.
|
|
11799
11869
|
:param file_extension: Specify a file extension. It will override the default file extension appended by Data Format Conversion or S3 compression features such as ``.parquet`` or ``.gz``. File extension must start with a period (``.``) and can contain allowed characters: ``0-9a-z!-_.*'()``. Default: - The default file extension appended by Data Format Conversion or S3 compression features
|
|
11870
|
+
:param time_zone: The time zone you prefer. Default: - UTC
|
|
11800
11871
|
|
|
11801
11872
|
:exampleMetadata: infused
|
|
11802
11873
|
|
|
@@ -11837,6 +11908,7 @@ class S3BucketProps(CommonDestinationS3Props, CommonDestinationProps):
|
|
|
11837
11908
|
check_type(argname="argument role", value=role, expected_type=type_hints["role"])
|
|
11838
11909
|
check_type(argname="argument s3_backup", value=s3_backup, expected_type=type_hints["s3_backup"])
|
|
11839
11910
|
check_type(argname="argument file_extension", value=file_extension, expected_type=type_hints["file_extension"])
|
|
11911
|
+
check_type(argname="argument time_zone", value=time_zone, expected_type=type_hints["time_zone"])
|
|
11840
11912
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
11841
11913
|
if buffering_interval is not None:
|
|
11842
11914
|
self._values["buffering_interval"] = buffering_interval
|
|
@@ -11860,6 +11932,8 @@ class S3BucketProps(CommonDestinationS3Props, CommonDestinationProps):
|
|
|
11860
11932
|
self._values["s3_backup"] = s3_backup
|
|
11861
11933
|
if file_extension is not None:
|
|
11862
11934
|
self._values["file_extension"] = file_extension
|
|
11935
|
+
if time_zone is not None:
|
|
11936
|
+
self._values["time_zone"] = time_zone
|
|
11863
11937
|
|
|
11864
11938
|
@builtins.property
|
|
11865
11939
|
def buffering_interval(self) -> typing.Optional[_Duration_4839e8c3]:
|
|
@@ -11986,6 +12060,17 @@ class S3BucketProps(CommonDestinationS3Props, CommonDestinationProps):
|
|
|
11986
12060
|
result = self._values.get("file_extension")
|
|
11987
12061
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
11988
12062
|
|
|
12063
|
+
@builtins.property
|
|
12064
|
+
def time_zone(self) -> typing.Optional[_TimeZone_cdd72ac9]:
|
|
12065
|
+
'''The time zone you prefer.
|
|
12066
|
+
|
|
12067
|
+
:default: - UTC
|
|
12068
|
+
|
|
12069
|
+
:see: https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html#timestamp-namespace
|
|
12070
|
+
'''
|
|
12071
|
+
result = self._values.get("time_zone")
|
|
12072
|
+
return typing.cast(typing.Optional[_TimeZone_cdd72ac9], result)
|
|
12073
|
+
|
|
11989
12074
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
11990
12075
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
11991
12076
|
|
|
@@ -12265,6 +12350,7 @@ class DeliveryStream(
|
|
|
12265
12350
|
account: typing.Optional[builtins.str] = None,
|
|
12266
12351
|
color: typing.Optional[builtins.str] = None,
|
|
12267
12352
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12353
|
+
id: typing.Optional[builtins.str] = None,
|
|
12268
12354
|
label: typing.Optional[builtins.str] = None,
|
|
12269
12355
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12270
12356
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -12272,6 +12358,7 @@ class DeliveryStream(
|
|
|
12272
12358
|
stack_region: typing.Optional[builtins.str] = None,
|
|
12273
12359
|
statistic: typing.Optional[builtins.str] = None,
|
|
12274
12360
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12361
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
12275
12362
|
) -> _Metric_e396a4dc:
|
|
12276
12363
|
'''Return the given named metric for this delivery stream.
|
|
12277
12364
|
|
|
@@ -12279,6 +12366,7 @@ class DeliveryStream(
|
|
|
12279
12366
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
12280
12367
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
12281
12368
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12369
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
12282
12370
|
: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
|
|
12283
12371
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12284
12372
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -12286,6 +12374,7 @@ class DeliveryStream(
|
|
|
12286
12374
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12287
12375
|
: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
|
|
12288
12376
|
: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
|
|
12377
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
12289
12378
|
'''
|
|
12290
12379
|
if __debug__:
|
|
12291
12380
|
type_hints = typing.get_type_hints(_typecheckingstub__86f3b1e63c4046b14a20d8f095529962a56cb82f03a0f9a310b5c1b707bc0f5f)
|
|
@@ -12294,6 +12383,7 @@ class DeliveryStream(
|
|
|
12294
12383
|
account=account,
|
|
12295
12384
|
color=color,
|
|
12296
12385
|
dimensions_map=dimensions_map,
|
|
12386
|
+
id=id,
|
|
12297
12387
|
label=label,
|
|
12298
12388
|
period=period,
|
|
12299
12389
|
region=region,
|
|
@@ -12301,6 +12391,7 @@ class DeliveryStream(
|
|
|
12301
12391
|
stack_region=stack_region,
|
|
12302
12392
|
statistic=statistic,
|
|
12303
12393
|
unit=unit,
|
|
12394
|
+
visible=visible,
|
|
12304
12395
|
)
|
|
12305
12396
|
|
|
12306
12397
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -12312,6 +12403,7 @@ class DeliveryStream(
|
|
|
12312
12403
|
account: typing.Optional[builtins.str] = None,
|
|
12313
12404
|
color: typing.Optional[builtins.str] = None,
|
|
12314
12405
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12406
|
+
id: typing.Optional[builtins.str] = None,
|
|
12315
12407
|
label: typing.Optional[builtins.str] = None,
|
|
12316
12408
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12317
12409
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -12319,6 +12411,7 @@ class DeliveryStream(
|
|
|
12319
12411
|
stack_region: typing.Optional[builtins.str] = None,
|
|
12320
12412
|
statistic: typing.Optional[builtins.str] = None,
|
|
12321
12413
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12414
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
12322
12415
|
) -> _Metric_e396a4dc:
|
|
12323
12416
|
'''Metric for the number of bytes delivered to Amazon S3 for backup over the specified time period.
|
|
12324
12417
|
|
|
@@ -12327,6 +12420,7 @@ class DeliveryStream(
|
|
|
12327
12420
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
12328
12421
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
12329
12422
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12423
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
12330
12424
|
: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
|
|
12331
12425
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12332
12426
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -12334,11 +12428,13 @@ class DeliveryStream(
|
|
|
12334
12428
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12335
12429
|
: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
|
|
12336
12430
|
: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
|
|
12431
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
12337
12432
|
'''
|
|
12338
12433
|
props = _MetricOptions_1788b62f(
|
|
12339
12434
|
account=account,
|
|
12340
12435
|
color=color,
|
|
12341
12436
|
dimensions_map=dimensions_map,
|
|
12437
|
+
id=id,
|
|
12342
12438
|
label=label,
|
|
12343
12439
|
period=period,
|
|
12344
12440
|
region=region,
|
|
@@ -12346,6 +12442,7 @@ class DeliveryStream(
|
|
|
12346
12442
|
stack_region=stack_region,
|
|
12347
12443
|
statistic=statistic,
|
|
12348
12444
|
unit=unit,
|
|
12445
|
+
visible=visible,
|
|
12349
12446
|
)
|
|
12350
12447
|
|
|
12351
12448
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricBackupToS3Bytes", [props]))
|
|
@@ -12357,6 +12454,7 @@ class DeliveryStream(
|
|
|
12357
12454
|
account: typing.Optional[builtins.str] = None,
|
|
12358
12455
|
color: typing.Optional[builtins.str] = None,
|
|
12359
12456
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12457
|
+
id: typing.Optional[builtins.str] = None,
|
|
12360
12458
|
label: typing.Optional[builtins.str] = None,
|
|
12361
12459
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12362
12460
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -12364,6 +12462,7 @@ class DeliveryStream(
|
|
|
12364
12462
|
stack_region: typing.Optional[builtins.str] = None,
|
|
12365
12463
|
statistic: typing.Optional[builtins.str] = None,
|
|
12366
12464
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12465
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
12367
12466
|
) -> _Metric_e396a4dc:
|
|
12368
12467
|
'''Metric for the age (from getting into Amazon Data Firehose to now) of the oldest record in Amazon Data Firehose.
|
|
12369
12468
|
|
|
@@ -12374,6 +12473,7 @@ class DeliveryStream(
|
|
|
12374
12473
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
12375
12474
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
12376
12475
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12476
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
12377
12477
|
: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
|
|
12378
12478
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12379
12479
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -12381,11 +12481,13 @@ class DeliveryStream(
|
|
|
12381
12481
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12382
12482
|
: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
|
|
12383
12483
|
: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
|
|
12484
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
12384
12485
|
'''
|
|
12385
12486
|
props = _MetricOptions_1788b62f(
|
|
12386
12487
|
account=account,
|
|
12387
12488
|
color=color,
|
|
12388
12489
|
dimensions_map=dimensions_map,
|
|
12490
|
+
id=id,
|
|
12389
12491
|
label=label,
|
|
12390
12492
|
period=period,
|
|
12391
12493
|
region=region,
|
|
@@ -12393,6 +12495,7 @@ class DeliveryStream(
|
|
|
12393
12495
|
stack_region=stack_region,
|
|
12394
12496
|
statistic=statistic,
|
|
12395
12497
|
unit=unit,
|
|
12498
|
+
visible=visible,
|
|
12396
12499
|
)
|
|
12397
12500
|
|
|
12398
12501
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricBackupToS3DataFreshness", [props]))
|
|
@@ -12404,6 +12507,7 @@ class DeliveryStream(
|
|
|
12404
12507
|
account: typing.Optional[builtins.str] = None,
|
|
12405
12508
|
color: typing.Optional[builtins.str] = None,
|
|
12406
12509
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12510
|
+
id: typing.Optional[builtins.str] = None,
|
|
12407
12511
|
label: typing.Optional[builtins.str] = None,
|
|
12408
12512
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12409
12513
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -12411,6 +12515,7 @@ class DeliveryStream(
|
|
|
12411
12515
|
stack_region: typing.Optional[builtins.str] = None,
|
|
12412
12516
|
statistic: typing.Optional[builtins.str] = None,
|
|
12413
12517
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12518
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
12414
12519
|
) -> _Metric_e396a4dc:
|
|
12415
12520
|
'''Metric for the number of records delivered to Amazon S3 for backup over the specified time period.
|
|
12416
12521
|
|
|
@@ -12419,6 +12524,7 @@ class DeliveryStream(
|
|
|
12419
12524
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
12420
12525
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
12421
12526
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12527
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
12422
12528
|
: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
|
|
12423
12529
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12424
12530
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -12426,11 +12532,13 @@ class DeliveryStream(
|
|
|
12426
12532
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12427
12533
|
: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
|
|
12428
12534
|
: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
|
|
12535
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
12429
12536
|
'''
|
|
12430
12537
|
props = _MetricOptions_1788b62f(
|
|
12431
12538
|
account=account,
|
|
12432
12539
|
color=color,
|
|
12433
12540
|
dimensions_map=dimensions_map,
|
|
12541
|
+
id=id,
|
|
12434
12542
|
label=label,
|
|
12435
12543
|
period=period,
|
|
12436
12544
|
region=region,
|
|
@@ -12438,6 +12546,7 @@ class DeliveryStream(
|
|
|
12438
12546
|
stack_region=stack_region,
|
|
12439
12547
|
statistic=statistic,
|
|
12440
12548
|
unit=unit,
|
|
12549
|
+
visible=visible,
|
|
12441
12550
|
)
|
|
12442
12551
|
|
|
12443
12552
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricBackupToS3Records", [props]))
|
|
@@ -12449,6 +12558,7 @@ class DeliveryStream(
|
|
|
12449
12558
|
account: typing.Optional[builtins.str] = None,
|
|
12450
12559
|
color: typing.Optional[builtins.str] = None,
|
|
12451
12560
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12561
|
+
id: typing.Optional[builtins.str] = None,
|
|
12452
12562
|
label: typing.Optional[builtins.str] = None,
|
|
12453
12563
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12454
12564
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -12456,6 +12566,7 @@ class DeliveryStream(
|
|
|
12456
12566
|
stack_region: typing.Optional[builtins.str] = None,
|
|
12457
12567
|
statistic: typing.Optional[builtins.str] = None,
|
|
12458
12568
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12569
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
12459
12570
|
) -> _Metric_e396a4dc:
|
|
12460
12571
|
'''Metric for the number of bytes ingested successfully into the delivery stream over the specified time period after throttling.
|
|
12461
12572
|
|
|
@@ -12464,6 +12575,7 @@ class DeliveryStream(
|
|
|
12464
12575
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
12465
12576
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
12466
12577
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12578
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
12467
12579
|
: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
|
|
12468
12580
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12469
12581
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -12471,11 +12583,13 @@ class DeliveryStream(
|
|
|
12471
12583
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12472
12584
|
: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
|
|
12473
12585
|
: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
|
|
12586
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
12474
12587
|
'''
|
|
12475
12588
|
props = _MetricOptions_1788b62f(
|
|
12476
12589
|
account=account,
|
|
12477
12590
|
color=color,
|
|
12478
12591
|
dimensions_map=dimensions_map,
|
|
12592
|
+
id=id,
|
|
12479
12593
|
label=label,
|
|
12480
12594
|
period=period,
|
|
12481
12595
|
region=region,
|
|
@@ -12483,6 +12597,7 @@ class DeliveryStream(
|
|
|
12483
12597
|
stack_region=stack_region,
|
|
12484
12598
|
statistic=statistic,
|
|
12485
12599
|
unit=unit,
|
|
12600
|
+
visible=visible,
|
|
12486
12601
|
)
|
|
12487
12602
|
|
|
12488
12603
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIncomingBytes", [props]))
|
|
@@ -12494,6 +12609,7 @@ class DeliveryStream(
|
|
|
12494
12609
|
account: typing.Optional[builtins.str] = None,
|
|
12495
12610
|
color: typing.Optional[builtins.str] = None,
|
|
12496
12611
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12612
|
+
id: typing.Optional[builtins.str] = None,
|
|
12497
12613
|
label: typing.Optional[builtins.str] = None,
|
|
12498
12614
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
12499
12615
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -12501,6 +12617,7 @@ class DeliveryStream(
|
|
|
12501
12617
|
stack_region: typing.Optional[builtins.str] = None,
|
|
12502
12618
|
statistic: typing.Optional[builtins.str] = None,
|
|
12503
12619
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12620
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
12504
12621
|
) -> _Metric_e396a4dc:
|
|
12505
12622
|
'''Metric for the number of records ingested successfully into the delivery stream over the specified time period after throttling.
|
|
12506
12623
|
|
|
@@ -12509,6 +12626,7 @@ class DeliveryStream(
|
|
|
12509
12626
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
12510
12627
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
12511
12628
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12629
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
12512
12630
|
: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
|
|
12513
12631
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
12514
12632
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -12516,11 +12634,13 @@ class DeliveryStream(
|
|
|
12516
12634
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
12517
12635
|
: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
|
|
12518
12636
|
: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
|
|
12637
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
12519
12638
|
'''
|
|
12520
12639
|
props = _MetricOptions_1788b62f(
|
|
12521
12640
|
account=account,
|
|
12522
12641
|
color=color,
|
|
12523
12642
|
dimensions_map=dimensions_map,
|
|
12643
|
+
id=id,
|
|
12524
12644
|
label=label,
|
|
12525
12645
|
period=period,
|
|
12526
12646
|
region=region,
|
|
@@ -12528,6 +12648,7 @@ class DeliveryStream(
|
|
|
12528
12648
|
stack_region=stack_region,
|
|
12529
12649
|
statistic=statistic,
|
|
12530
12650
|
unit=unit,
|
|
12651
|
+
visible=visible,
|
|
12531
12652
|
)
|
|
12532
12653
|
|
|
12533
12654
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIncomingRecords", [props]))
|
|
@@ -13611,6 +13732,7 @@ def _typecheckingstub__25d98802194f172640833e51b398adf85ca294da7e2a4a6dfb45bfe99
|
|
|
13611
13732
|
account: typing.Optional[builtins.str] = None,
|
|
13612
13733
|
color: typing.Optional[builtins.str] = None,
|
|
13613
13734
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
13735
|
+
id: typing.Optional[builtins.str] = None,
|
|
13614
13736
|
label: typing.Optional[builtins.str] = None,
|
|
13615
13737
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13616
13738
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -13618,6 +13740,7 @@ def _typecheckingstub__25d98802194f172640833e51b398adf85ca294da7e2a4a6dfb45bfe99
|
|
|
13618
13740
|
stack_region: typing.Optional[builtins.str] = None,
|
|
13619
13741
|
statistic: typing.Optional[builtins.str] = None,
|
|
13620
13742
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13743
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
13621
13744
|
) -> None:
|
|
13622
13745
|
"""Type checking stubs"""
|
|
13623
13746
|
pass
|
|
@@ -13668,6 +13791,7 @@ def _typecheckingstub__a2eaf455255fc260033aa24d456779f4b21172e8b4cf2c51f6355f415
|
|
|
13668
13791
|
bucket: _IBucket_42e086fd,
|
|
13669
13792
|
*,
|
|
13670
13793
|
file_extension: typing.Optional[builtins.str] = None,
|
|
13794
|
+
time_zone: typing.Optional[_TimeZone_cdd72ac9] = None,
|
|
13671
13795
|
buffering_interval: typing.Optional[_Duration_4839e8c3] = None,
|
|
13672
13796
|
buffering_size: typing.Optional[_Size_7b441c34] = None,
|
|
13673
13797
|
compression: typing.Optional[Compression] = None,
|
|
@@ -13701,6 +13825,7 @@ def _typecheckingstub__04b12dc503479d22af2396c4df8d38c37536719187eef6ddd01c18b52
|
|
|
13701
13825
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
13702
13826
|
s3_backup: typing.Optional[typing.Union[DestinationS3BackupProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
13703
13827
|
file_extension: typing.Optional[builtins.str] = None,
|
|
13828
|
+
time_zone: typing.Optional[_TimeZone_cdd72ac9] = None,
|
|
13704
13829
|
) -> None:
|
|
13705
13830
|
"""Type checking stubs"""
|
|
13706
13831
|
pass
|
|
@@ -13770,6 +13895,7 @@ def _typecheckingstub__86f3b1e63c4046b14a20d8f095529962a56cb82f03a0f9a310b5c1b70
|
|
|
13770
13895
|
account: typing.Optional[builtins.str] = None,
|
|
13771
13896
|
color: typing.Optional[builtins.str] = None,
|
|
13772
13897
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
13898
|
+
id: typing.Optional[builtins.str] = None,
|
|
13773
13899
|
label: typing.Optional[builtins.str] = None,
|
|
13774
13900
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
13775
13901
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -13777,6 +13903,7 @@ def _typecheckingstub__86f3b1e63c4046b14a20d8f095529962a56cb82f03a0f9a310b5c1b70
|
|
|
13777
13903
|
stack_region: typing.Optional[builtins.str] = None,
|
|
13778
13904
|
statistic: typing.Optional[builtins.str] = None,
|
|
13779
13905
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
13906
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
13780
13907
|
) -> None:
|
|
13781
13908
|
"""Type checking stubs"""
|
|
13782
13909
|
pass
|