aws-cdk-lib 2.174.0__py3-none-any.whl → 2.175.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.174.0.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +18 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +248 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
- aws_cdk/aws_autoscaling/__init__.py +8 -8
- aws_cdk/aws_batch/__init__.py +32 -458
- aws_cdk/aws_bedrock/__init__.py +7 -4
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cleanrooms/__init__.py +683 -2
- aws_cdk/aws_cloudfront/__init__.py +92 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudwatch/__init__.py +146 -0
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dms/__init__.py +49 -27
- aws_cdk/aws_docdb/__init__.py +134 -0
- aws_cdk/aws_dynamodb/__init__.py +300 -0
- aws_cdk/aws_ec2/__init__.py +97 -0
- aws_cdk/aws_ecs/__init__.py +351 -110
- aws_cdk/aws_ecs_patterns/__init__.py +77 -42
- aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kms/__init__.py +197 -0
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_mediaconvert/__init__.py +39 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_quicksight/__init__.py +1422 -859
- aws_cdk/aws_rds/__init__.py +386 -7
- aws_cdk/aws_sagemaker/__init__.py +6 -6
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +42 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +45 -45
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_bedrock/__init__.py
CHANGED
|
@@ -19965,8 +19965,9 @@ class CfnPrompt(
|
|
|
19965
19965
|
)
|
|
19966
19966
|
class SpecificToolChoiceProperty:
|
|
19967
19967
|
def __init__(self, *, name: builtins.str) -> None:
|
|
19968
|
-
'''The model must request a specific tool.
|
|
19968
|
+
'''The model must request a specific tool.
|
|
19969
19969
|
|
|
19970
|
+
For example, ``{"tool" : {"name" : "Your tool name"}}`` . For more information, see `Call a tool with the Converse API <https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html>`_ in the Amazon Bedrock User Guide
|
|
19970
19971
|
.. epigraph::
|
|
19971
19972
|
|
|
19972
19973
|
This field is only supported by Anthropic Claude 3 models.
|
|
@@ -20274,7 +20275,7 @@ class CfnPrompt(
|
|
|
20274
20275
|
) -> None:
|
|
20275
20276
|
'''Determines which tools the model should request in a call to ``Converse`` or ``ConverseStream`` .
|
|
20276
20277
|
|
|
20277
|
-
``ToolChoice`` is only supported by Anthropic Claude 3 models and by Mistral AI Mistral Large.
|
|
20278
|
+
``ToolChoice`` is only supported by Anthropic Claude 3 models and by Mistral AI Mistral Large. For more information, see `Call a tool with the Converse API <https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html>`_ in the Amazon Bedrock User Guide.
|
|
20278
20279
|
|
|
20279
20280
|
:param any: The model must request at least one tool (no text is generated).
|
|
20280
20281
|
:param auto: (Default). The Model automatically decides if a tool should be called or whether to generate text instead.
|
|
@@ -20465,7 +20466,7 @@ class CfnPrompt(
|
|
|
20465
20466
|
def __init__(self, *, json: typing.Any) -> None:
|
|
20466
20467
|
'''The schema for the tool.
|
|
20467
20468
|
|
|
20468
|
-
The top level schema type must be ``object`` .
|
|
20469
|
+
The top level schema type must be ``object`` . For more information, see `Call a tool with the Converse API <https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html>`_ in the Amazon Bedrock User Guide.
|
|
20469
20470
|
|
|
20470
20471
|
:param json: The JSON schema for the tool. For more information, see `JSON Schema Reference <https://docs.aws.amazon.com/https://json-schema.org/understanding-json-schema/reference>`_ .
|
|
20471
20472
|
|
|
@@ -20527,7 +20528,7 @@ class CfnPrompt(
|
|
|
20527
20528
|
) -> None:
|
|
20528
20529
|
'''Information about a tool that you can use with the Converse API.
|
|
20529
20530
|
|
|
20530
|
-
For more information, see `
|
|
20531
|
+
For more information, see `Call a tool with the Converse API <https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html>`_ in the Amazon Bedrock User Guide.
|
|
20531
20532
|
|
|
20532
20533
|
:param tool_spec: The specfication for the tool.
|
|
20533
20534
|
|
|
@@ -20603,6 +20604,8 @@ class CfnPrompt(
|
|
|
20603
20604
|
) -> None:
|
|
20604
20605
|
'''The specification for the tool.
|
|
20605
20606
|
|
|
20607
|
+
For more information, see `Call a tool with the Converse API <https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html>`_ in the Amazon Bedrock User Guide.
|
|
20608
|
+
|
|
20606
20609
|
:param input_schema: The input schema for the tool in JSON format.
|
|
20607
20610
|
:param name: The name for the tool.
|
|
20608
20611
|
:param description: The description for the tool.
|
|
@@ -1745,6 +1745,8 @@ class ICertificate(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
1745
1745
|
label: typing.Optional[builtins.str] = None,
|
|
1746
1746
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
1747
1747
|
region: typing.Optional[builtins.str] = None,
|
|
1748
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1749
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1748
1750
|
statistic: typing.Optional[builtins.str] = None,
|
|
1749
1751
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
1750
1752
|
) -> _Metric_e396a4dc:
|
|
@@ -1760,6 +1762,8 @@ class ICertificate(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
1760
1762
|
: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
|
|
1761
1763
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1762
1764
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1765
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1766
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1763
1767
|
: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
|
|
1764
1768
|
: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
|
|
1765
1769
|
'''
|
|
@@ -1792,6 +1796,8 @@ class _ICertificateProxy(
|
|
|
1792
1796
|
label: typing.Optional[builtins.str] = None,
|
|
1793
1797
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
1794
1798
|
region: typing.Optional[builtins.str] = None,
|
|
1799
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1800
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1795
1801
|
statistic: typing.Optional[builtins.str] = None,
|
|
1796
1802
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
1797
1803
|
) -> _Metric_e396a4dc:
|
|
@@ -1807,6 +1813,8 @@ class _ICertificateProxy(
|
|
|
1807
1813
|
: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
|
|
1808
1814
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1809
1815
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1816
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1817
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1810
1818
|
: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
|
|
1811
1819
|
: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
|
|
1812
1820
|
'''
|
|
@@ -1817,6 +1825,8 @@ class _ICertificateProxy(
|
|
|
1817
1825
|
label=label,
|
|
1818
1826
|
period=period,
|
|
1819
1827
|
region=region,
|
|
1828
|
+
stack_account=stack_account,
|
|
1829
|
+
stack_region=stack_region,
|
|
1820
1830
|
statistic=statistic,
|
|
1821
1831
|
unit=unit,
|
|
1822
1832
|
)
|
|
@@ -1972,6 +1982,8 @@ class PrivateCertificate(
|
|
|
1972
1982
|
label: typing.Optional[builtins.str] = None,
|
|
1973
1983
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
1974
1984
|
region: typing.Optional[builtins.str] = None,
|
|
1985
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1986
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1975
1987
|
statistic: typing.Optional[builtins.str] = None,
|
|
1976
1988
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
1977
1989
|
) -> _Metric_e396a4dc:
|
|
@@ -1987,6 +1999,8 @@ class PrivateCertificate(
|
|
|
1987
1999
|
: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
|
|
1988
2000
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1989
2001
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2002
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2003
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1990
2004
|
: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
|
|
1991
2005
|
: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
|
|
1992
2006
|
'''
|
|
@@ -1997,6 +2011,8 @@ class PrivateCertificate(
|
|
|
1997
2011
|
label=label,
|
|
1998
2012
|
period=period,
|
|
1999
2013
|
region=region,
|
|
2014
|
+
stack_account=stack_account,
|
|
2015
|
+
stack_region=stack_region,
|
|
2000
2016
|
statistic=statistic,
|
|
2001
2017
|
unit=unit,
|
|
2002
2018
|
)
|
|
@@ -2240,6 +2256,8 @@ class Certificate(
|
|
|
2240
2256
|
label: typing.Optional[builtins.str] = None,
|
|
2241
2257
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2242
2258
|
region: typing.Optional[builtins.str] = None,
|
|
2259
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2260
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2243
2261
|
statistic: typing.Optional[builtins.str] = None,
|
|
2244
2262
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2245
2263
|
) -> _Metric_e396a4dc:
|
|
@@ -2255,6 +2273,8 @@ class Certificate(
|
|
|
2255
2273
|
: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
|
|
2256
2274
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2257
2275
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2276
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2277
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2258
2278
|
: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
|
|
2259
2279
|
: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
|
|
2260
2280
|
'''
|
|
@@ -2265,6 +2285,8 @@ class Certificate(
|
|
|
2265
2285
|
label=label,
|
|
2266
2286
|
period=period,
|
|
2267
2287
|
region=region,
|
|
2288
|
+
stack_account=stack_account,
|
|
2289
|
+
stack_region=stack_region,
|
|
2268
2290
|
statistic=statistic,
|
|
2269
2291
|
unit=unit,
|
|
2270
2292
|
)
|
|
@@ -2416,6 +2438,8 @@ class DnsValidatedCertificate(
|
|
|
2416
2438
|
label: typing.Optional[builtins.str] = None,
|
|
2417
2439
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2418
2440
|
region: typing.Optional[builtins.str] = None,
|
|
2441
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2442
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2419
2443
|
statistic: typing.Optional[builtins.str] = None,
|
|
2420
2444
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2421
2445
|
) -> _Metric_e396a4dc:
|
|
@@ -2431,6 +2455,8 @@ class DnsValidatedCertificate(
|
|
|
2431
2455
|
: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
|
|
2432
2456
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2433
2457
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2458
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2459
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2434
2460
|
: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
|
|
2435
2461
|
: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
|
|
2436
2462
|
|
|
@@ -2443,6 +2469,8 @@ class DnsValidatedCertificate(
|
|
|
2443
2469
|
label=label,
|
|
2444
2470
|
period=period,
|
|
2445
2471
|
region=region,
|
|
2472
|
+
stack_account=stack_account,
|
|
2473
|
+
stack_region=stack_region,
|
|
2446
2474
|
statistic=statistic,
|
|
2447
2475
|
unit=unit,
|
|
2448
2476
|
)
|
aws_cdk/aws_chatbot/__init__.py
CHANGED
|
@@ -1859,6 +1859,8 @@ class ISlackChannelConfiguration(
|
|
|
1859
1859
|
label: typing.Optional[builtins.str] = None,
|
|
1860
1860
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
1861
1861
|
region: typing.Optional[builtins.str] = None,
|
|
1862
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1863
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1862
1864
|
statistic: typing.Optional[builtins.str] = None,
|
|
1863
1865
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
1864
1866
|
) -> _Metric_e396a4dc:
|
|
@@ -1871,6 +1873,8 @@ class ISlackChannelConfiguration(
|
|
|
1871
1873
|
: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
|
|
1872
1874
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1873
1875
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1876
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1877
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1874
1878
|
: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
|
|
1875
1879
|
: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
|
|
1876
1880
|
'''
|
|
@@ -1937,6 +1941,8 @@ class _ISlackChannelConfigurationProxy(
|
|
|
1937
1941
|
label: typing.Optional[builtins.str] = None,
|
|
1938
1942
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
1939
1943
|
region: typing.Optional[builtins.str] = None,
|
|
1944
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1945
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1940
1946
|
statistic: typing.Optional[builtins.str] = None,
|
|
1941
1947
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
1942
1948
|
) -> _Metric_e396a4dc:
|
|
@@ -1949,6 +1955,8 @@ class _ISlackChannelConfigurationProxy(
|
|
|
1949
1955
|
: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
|
|
1950
1956
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1951
1957
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1958
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1959
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1952
1960
|
: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
|
|
1953
1961
|
: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
|
|
1954
1962
|
'''
|
|
@@ -1962,6 +1970,8 @@ class _ISlackChannelConfigurationProxy(
|
|
|
1962
1970
|
label=label,
|
|
1963
1971
|
period=period,
|
|
1964
1972
|
region=region,
|
|
1973
|
+
stack_account=stack_account,
|
|
1974
|
+
stack_region=stack_region,
|
|
1965
1975
|
statistic=statistic,
|
|
1966
1976
|
unit=unit,
|
|
1967
1977
|
)
|
|
@@ -2097,6 +2107,8 @@ class SlackChannelConfiguration(
|
|
|
2097
2107
|
label: typing.Optional[builtins.str] = None,
|
|
2098
2108
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2099
2109
|
region: typing.Optional[builtins.str] = None,
|
|
2110
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2111
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2100
2112
|
statistic: typing.Optional[builtins.str] = None,
|
|
2101
2113
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2102
2114
|
) -> _Metric_e396a4dc:
|
|
@@ -2109,6 +2121,8 @@ class SlackChannelConfiguration(
|
|
|
2109
2121
|
: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
|
|
2110
2122
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2111
2123
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2124
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2125
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2112
2126
|
: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
|
|
2113
2127
|
: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
|
|
2114
2128
|
'''
|
|
@@ -2122,6 +2136,8 @@ class SlackChannelConfiguration(
|
|
|
2122
2136
|
label=label,
|
|
2123
2137
|
period=period,
|
|
2124
2138
|
region=region,
|
|
2139
|
+
stack_account=stack_account,
|
|
2140
|
+
stack_region=stack_region,
|
|
2125
2141
|
statistic=statistic,
|
|
2126
2142
|
unit=unit,
|
|
2127
2143
|
)
|
|
@@ -2175,6 +2191,8 @@ class SlackChannelConfiguration(
|
|
|
2175
2191
|
label: typing.Optional[builtins.str] = None,
|
|
2176
2192
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2177
2193
|
region: typing.Optional[builtins.str] = None,
|
|
2194
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2195
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2178
2196
|
statistic: typing.Optional[builtins.str] = None,
|
|
2179
2197
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2180
2198
|
) -> _Metric_e396a4dc:
|
|
@@ -2187,6 +2205,8 @@ class SlackChannelConfiguration(
|
|
|
2187
2205
|
: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
|
|
2188
2206
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2189
2207
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2208
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2209
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2190
2210
|
: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
|
|
2191
2211
|
: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
|
|
2192
2212
|
'''
|
|
@@ -2200,6 +2220,8 @@ class SlackChannelConfiguration(
|
|
|
2200
2220
|
label=label,
|
|
2201
2221
|
period=period,
|
|
2202
2222
|
region=region,
|
|
2223
|
+
stack_account=stack_account,
|
|
2224
|
+
stack_region=stack_region,
|
|
2203
2225
|
statistic=statistic,
|
|
2204
2226
|
unit=unit,
|
|
2205
2227
|
)
|
|
@@ -2802,6 +2824,8 @@ def _typecheckingstub__36f008bf41135b7a58422d2b7c9fd93227d05029491e965085b315e66
|
|
|
2802
2824
|
label: typing.Optional[builtins.str] = None,
|
|
2803
2825
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2804
2826
|
region: typing.Optional[builtins.str] = None,
|
|
2827
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2828
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2805
2829
|
statistic: typing.Optional[builtins.str] = None,
|
|
2806
2830
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2807
2831
|
) -> None:
|
|
@@ -2844,6 +2868,8 @@ def _typecheckingstub__12b8814a68917d1077846377a05d9a9cfd41105cef24a78340753723c
|
|
|
2844
2868
|
label: typing.Optional[builtins.str] = None,
|
|
2845
2869
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2846
2870
|
region: typing.Optional[builtins.str] = None,
|
|
2871
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2872
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2847
2873
|
statistic: typing.Optional[builtins.str] = None,
|
|
2848
2874
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2849
2875
|
) -> None:
|
|
@@ -2877,6 +2903,8 @@ def _typecheckingstub__73a006622b0f5bc2a3fc133c38aeeb0fffe167bf0457064024d2adc8f
|
|
|
2877
2903
|
label: typing.Optional[builtins.str] = None,
|
|
2878
2904
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2879
2905
|
region: typing.Optional[builtins.str] = None,
|
|
2906
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2907
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2880
2908
|
statistic: typing.Optional[builtins.str] = None,
|
|
2881
2909
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2882
2910
|
) -> None:
|