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
aws_cdk/aws_chatbot/__init__.py
CHANGED
|
@@ -1916,6 +1916,7 @@ class ISlackChannelConfiguration(
|
|
|
1916
1916
|
account: typing.Optional[builtins.str] = None,
|
|
1917
1917
|
color: typing.Optional[builtins.str] = None,
|
|
1918
1918
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1919
|
+
id: typing.Optional[builtins.str] = None,
|
|
1919
1920
|
label: typing.Optional[builtins.str] = None,
|
|
1920
1921
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
1921
1922
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1923,6 +1924,7 @@ class ISlackChannelConfiguration(
|
|
|
1923
1924
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1924
1925
|
statistic: typing.Optional[builtins.str] = None,
|
|
1925
1926
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
1927
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1926
1928
|
) -> _Metric_e396a4dc:
|
|
1927
1929
|
'''Return the given named metric for this SlackChannelConfiguration.
|
|
1928
1930
|
|
|
@@ -1930,6 +1932,7 @@ class ISlackChannelConfiguration(
|
|
|
1930
1932
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1931
1933
|
: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
|
|
1932
1934
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1935
|
+
: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
|
|
1933
1936
|
: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
|
|
1934
1937
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1935
1938
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1937,6 +1940,7 @@ class ISlackChannelConfiguration(
|
|
|
1937
1940
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1938
1941
|
: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
|
|
1939
1942
|
: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
|
|
1943
|
+
: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
|
|
1940
1944
|
'''
|
|
1941
1945
|
...
|
|
1942
1946
|
|
|
@@ -1998,6 +2002,7 @@ class _ISlackChannelConfigurationProxy(
|
|
|
1998
2002
|
account: typing.Optional[builtins.str] = None,
|
|
1999
2003
|
color: typing.Optional[builtins.str] = None,
|
|
2000
2004
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2005
|
+
id: typing.Optional[builtins.str] = None,
|
|
2001
2006
|
label: typing.Optional[builtins.str] = None,
|
|
2002
2007
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2003
2008
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2005,6 +2010,7 @@ class _ISlackChannelConfigurationProxy(
|
|
|
2005
2010
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2006
2011
|
statistic: typing.Optional[builtins.str] = None,
|
|
2007
2012
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2013
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2008
2014
|
) -> _Metric_e396a4dc:
|
|
2009
2015
|
'''Return the given named metric for this SlackChannelConfiguration.
|
|
2010
2016
|
|
|
@@ -2012,6 +2018,7 @@ class _ISlackChannelConfigurationProxy(
|
|
|
2012
2018
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2013
2019
|
: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
|
|
2014
2020
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2021
|
+
: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
|
|
2015
2022
|
: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
|
|
2016
2023
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2017
2024
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2019,6 +2026,7 @@ class _ISlackChannelConfigurationProxy(
|
|
|
2019
2026
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2020
2027
|
: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
|
|
2021
2028
|
: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
|
|
2029
|
+
: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
|
|
2022
2030
|
'''
|
|
2023
2031
|
if __debug__:
|
|
2024
2032
|
type_hints = typing.get_type_hints(_typecheckingstub__36f008bf41135b7a58422d2b7c9fd93227d05029491e965085b315e66c8b2dc7)
|
|
@@ -2027,6 +2035,7 @@ class _ISlackChannelConfigurationProxy(
|
|
|
2027
2035
|
account=account,
|
|
2028
2036
|
color=color,
|
|
2029
2037
|
dimensions_map=dimensions_map,
|
|
2038
|
+
id=id,
|
|
2030
2039
|
label=label,
|
|
2031
2040
|
period=period,
|
|
2032
2041
|
region=region,
|
|
@@ -2034,6 +2043,7 @@ class _ISlackChannelConfigurationProxy(
|
|
|
2034
2043
|
stack_region=stack_region,
|
|
2035
2044
|
statistic=statistic,
|
|
2036
2045
|
unit=unit,
|
|
2046
|
+
visible=visible,
|
|
2037
2047
|
)
|
|
2038
2048
|
|
|
2039
2049
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -2164,6 +2174,7 @@ class SlackChannelConfiguration(
|
|
|
2164
2174
|
account: typing.Optional[builtins.str] = None,
|
|
2165
2175
|
color: typing.Optional[builtins.str] = None,
|
|
2166
2176
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2177
|
+
id: typing.Optional[builtins.str] = None,
|
|
2167
2178
|
label: typing.Optional[builtins.str] = None,
|
|
2168
2179
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2169
2180
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2171,6 +2182,7 @@ class SlackChannelConfiguration(
|
|
|
2171
2182
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2172
2183
|
statistic: typing.Optional[builtins.str] = None,
|
|
2173
2184
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2185
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2174
2186
|
) -> _Metric_e396a4dc:
|
|
2175
2187
|
'''Return the given named metric for All SlackChannelConfigurations.
|
|
2176
2188
|
|
|
@@ -2178,6 +2190,7 @@ class SlackChannelConfiguration(
|
|
|
2178
2190
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2179
2191
|
: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
|
|
2180
2192
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2193
|
+
: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
|
|
2181
2194
|
: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
|
|
2182
2195
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2183
2196
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2185,6 +2198,7 @@ class SlackChannelConfiguration(
|
|
|
2185
2198
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2186
2199
|
: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
|
|
2187
2200
|
: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
|
|
2201
|
+
: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
|
|
2188
2202
|
'''
|
|
2189
2203
|
if __debug__:
|
|
2190
2204
|
type_hints = typing.get_type_hints(_typecheckingstub__12b8814a68917d1077846377a05d9a9cfd41105cef24a78340753723cc2a1bba)
|
|
@@ -2193,6 +2207,7 @@ class SlackChannelConfiguration(
|
|
|
2193
2207
|
account=account,
|
|
2194
2208
|
color=color,
|
|
2195
2209
|
dimensions_map=dimensions_map,
|
|
2210
|
+
id=id,
|
|
2196
2211
|
label=label,
|
|
2197
2212
|
period=period,
|
|
2198
2213
|
region=region,
|
|
@@ -2200,6 +2215,7 @@ class SlackChannelConfiguration(
|
|
|
2200
2215
|
stack_region=stack_region,
|
|
2201
2216
|
statistic=statistic,
|
|
2202
2217
|
unit=unit,
|
|
2218
|
+
visible=visible,
|
|
2203
2219
|
)
|
|
2204
2220
|
|
|
2205
2221
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAll", [metric_name, props]))
|
|
@@ -2248,6 +2264,7 @@ class SlackChannelConfiguration(
|
|
|
2248
2264
|
account: typing.Optional[builtins.str] = None,
|
|
2249
2265
|
color: typing.Optional[builtins.str] = None,
|
|
2250
2266
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2267
|
+
id: typing.Optional[builtins.str] = None,
|
|
2251
2268
|
label: typing.Optional[builtins.str] = None,
|
|
2252
2269
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2253
2270
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2255,6 +2272,7 @@ class SlackChannelConfiguration(
|
|
|
2255
2272
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2256
2273
|
statistic: typing.Optional[builtins.str] = None,
|
|
2257
2274
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2275
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2258
2276
|
) -> _Metric_e396a4dc:
|
|
2259
2277
|
'''Return the given named metric for this SlackChannelConfiguration.
|
|
2260
2278
|
|
|
@@ -2262,6 +2280,7 @@ class SlackChannelConfiguration(
|
|
|
2262
2280
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2263
2281
|
: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
|
|
2264
2282
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2283
|
+
: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
|
|
2265
2284
|
: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
|
|
2266
2285
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2267
2286
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2269,6 +2288,7 @@ class SlackChannelConfiguration(
|
|
|
2269
2288
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2270
2289
|
: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
|
|
2271
2290
|
: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
|
|
2291
|
+
: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
|
|
2272
2292
|
'''
|
|
2273
2293
|
if __debug__:
|
|
2274
2294
|
type_hints = typing.get_type_hints(_typecheckingstub__73a006622b0f5bc2a3fc133c38aeeb0fffe167bf0457064024d2adc8ffe005ff)
|
|
@@ -2277,6 +2297,7 @@ class SlackChannelConfiguration(
|
|
|
2277
2297
|
account=account,
|
|
2278
2298
|
color=color,
|
|
2279
2299
|
dimensions_map=dimensions_map,
|
|
2300
|
+
id=id,
|
|
2280
2301
|
label=label,
|
|
2281
2302
|
period=period,
|
|
2282
2303
|
region=region,
|
|
@@ -2284,6 +2305,7 @@ class SlackChannelConfiguration(
|
|
|
2284
2305
|
stack_region=stack_region,
|
|
2285
2306
|
statistic=statistic,
|
|
2286
2307
|
unit=unit,
|
|
2308
|
+
visible=visible,
|
|
2287
2309
|
)
|
|
2288
2310
|
|
|
2289
2311
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -2895,6 +2917,7 @@ def _typecheckingstub__36f008bf41135b7a58422d2b7c9fd93227d05029491e965085b315e66
|
|
|
2895
2917
|
account: typing.Optional[builtins.str] = None,
|
|
2896
2918
|
color: typing.Optional[builtins.str] = None,
|
|
2897
2919
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2920
|
+
id: typing.Optional[builtins.str] = None,
|
|
2898
2921
|
label: typing.Optional[builtins.str] = None,
|
|
2899
2922
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2900
2923
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2902,6 +2925,7 @@ def _typecheckingstub__36f008bf41135b7a58422d2b7c9fd93227d05029491e965085b315e66
|
|
|
2902
2925
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2903
2926
|
statistic: typing.Optional[builtins.str] = None,
|
|
2904
2927
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2928
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2905
2929
|
) -> None:
|
|
2906
2930
|
"""Type checking stubs"""
|
|
2907
2931
|
pass
|
|
@@ -2939,6 +2963,7 @@ def _typecheckingstub__12b8814a68917d1077846377a05d9a9cfd41105cef24a78340753723c
|
|
|
2939
2963
|
account: typing.Optional[builtins.str] = None,
|
|
2940
2964
|
color: typing.Optional[builtins.str] = None,
|
|
2941
2965
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2966
|
+
id: typing.Optional[builtins.str] = None,
|
|
2942
2967
|
label: typing.Optional[builtins.str] = None,
|
|
2943
2968
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2944
2969
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2946,6 +2971,7 @@ def _typecheckingstub__12b8814a68917d1077846377a05d9a9cfd41105cef24a78340753723c
|
|
|
2946
2971
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2947
2972
|
statistic: typing.Optional[builtins.str] = None,
|
|
2948
2973
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2974
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2949
2975
|
) -> None:
|
|
2950
2976
|
"""Type checking stubs"""
|
|
2951
2977
|
pass
|
|
@@ -2974,6 +3000,7 @@ def _typecheckingstub__73a006622b0f5bc2a3fc133c38aeeb0fffe167bf0457064024d2adc8f
|
|
|
2974
3000
|
account: typing.Optional[builtins.str] = None,
|
|
2975
3001
|
color: typing.Optional[builtins.str] = None,
|
|
2976
3002
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3003
|
+
id: typing.Optional[builtins.str] = None,
|
|
2977
3004
|
label: typing.Optional[builtins.str] = None,
|
|
2978
3005
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2979
3006
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2981,6 +3008,7 @@ def _typecheckingstub__73a006622b0f5bc2a3fc133c38aeeb0fffe167bf0457064024d2adc8f
|
|
|
2981
3008
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2982
3009
|
statistic: typing.Optional[builtins.str] = None,
|
|
2983
3010
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3011
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2984
3012
|
) -> None:
|
|
2985
3013
|
"""Type checking stubs"""
|
|
2986
3014
|
pass
|