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_logs/__init__.py
CHANGED
|
@@ -9981,6 +9981,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
9981
9981
|
label: typing.Optional[builtins.str] = None,
|
|
9982
9982
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9983
9983
|
region: typing.Optional[builtins.str] = None,
|
|
9984
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
9985
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
9984
9986
|
statistic: typing.Optional[builtins.str] = None,
|
|
9985
9987
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9986
9988
|
) -> _Metric_e396a4dc:
|
|
@@ -9993,6 +9995,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
9993
9995
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
9994
9996
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9995
9997
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
9998
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
9999
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9996
10000
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
9997
10001
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
9998
10002
|
'''
|
|
@@ -10008,6 +10012,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
10008
10012
|
label: typing.Optional[builtins.str] = None,
|
|
10009
10013
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10010
10014
|
region: typing.Optional[builtins.str] = None,
|
|
10015
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10016
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10011
10017
|
statistic: typing.Optional[builtins.str] = None,
|
|
10012
10018
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10013
10019
|
) -> _Metric_e396a4dc:
|
|
@@ -10022,6 +10028,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
10022
10028
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10023
10029
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10024
10030
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10031
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10032
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10025
10033
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10026
10034
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10027
10035
|
'''
|
|
@@ -10037,6 +10045,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
10037
10045
|
label: typing.Optional[builtins.str] = None,
|
|
10038
10046
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10039
10047
|
region: typing.Optional[builtins.str] = None,
|
|
10048
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10049
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10040
10050
|
statistic: typing.Optional[builtins.str] = None,
|
|
10041
10051
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10042
10052
|
) -> _Metric_e396a4dc:
|
|
@@ -10051,6 +10061,8 @@ class ILogGroup(_IResourceWithPolicy_720d64fc, typing_extensions.Protocol):
|
|
|
10051
10061
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10052
10062
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10053
10063
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10064
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10065
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10054
10066
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10055
10067
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10056
10068
|
'''
|
|
@@ -10254,6 +10266,8 @@ class _ILogGroupProxy(
|
|
|
10254
10266
|
label: typing.Optional[builtins.str] = None,
|
|
10255
10267
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10256
10268
|
region: typing.Optional[builtins.str] = None,
|
|
10269
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10270
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10257
10271
|
statistic: typing.Optional[builtins.str] = None,
|
|
10258
10272
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10259
10273
|
) -> _Metric_e396a4dc:
|
|
@@ -10266,6 +10280,8 @@ class _ILogGroupProxy(
|
|
|
10266
10280
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10267
10281
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10268
10282
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10283
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10284
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10269
10285
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10270
10286
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10271
10287
|
'''
|
|
@@ -10279,6 +10295,8 @@ class _ILogGroupProxy(
|
|
|
10279
10295
|
label=label,
|
|
10280
10296
|
period=period,
|
|
10281
10297
|
region=region,
|
|
10298
|
+
stack_account=stack_account,
|
|
10299
|
+
stack_region=stack_region,
|
|
10282
10300
|
statistic=statistic,
|
|
10283
10301
|
unit=unit,
|
|
10284
10302
|
)
|
|
@@ -10295,6 +10313,8 @@ class _ILogGroupProxy(
|
|
|
10295
10313
|
label: typing.Optional[builtins.str] = None,
|
|
10296
10314
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10297
10315
|
region: typing.Optional[builtins.str] = None,
|
|
10316
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10317
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10298
10318
|
statistic: typing.Optional[builtins.str] = None,
|
|
10299
10319
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10300
10320
|
) -> _Metric_e396a4dc:
|
|
@@ -10309,6 +10329,8 @@ class _ILogGroupProxy(
|
|
|
10309
10329
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10310
10330
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10311
10331
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10332
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10333
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10312
10334
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10313
10335
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10314
10336
|
'''
|
|
@@ -10319,6 +10341,8 @@ class _ILogGroupProxy(
|
|
|
10319
10341
|
label=label,
|
|
10320
10342
|
period=period,
|
|
10321
10343
|
region=region,
|
|
10344
|
+
stack_account=stack_account,
|
|
10345
|
+
stack_region=stack_region,
|
|
10322
10346
|
statistic=statistic,
|
|
10323
10347
|
unit=unit,
|
|
10324
10348
|
)
|
|
@@ -10335,6 +10359,8 @@ class _ILogGroupProxy(
|
|
|
10335
10359
|
label: typing.Optional[builtins.str] = None,
|
|
10336
10360
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10337
10361
|
region: typing.Optional[builtins.str] = None,
|
|
10362
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10363
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10338
10364
|
statistic: typing.Optional[builtins.str] = None,
|
|
10339
10365
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10340
10366
|
) -> _Metric_e396a4dc:
|
|
@@ -10349,6 +10375,8 @@ class _ILogGroupProxy(
|
|
|
10349
10375
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10350
10376
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10351
10377
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10378
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10379
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10352
10380
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10353
10381
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10354
10382
|
'''
|
|
@@ -10359,6 +10387,8 @@ class _ILogGroupProxy(
|
|
|
10359
10387
|
label=label,
|
|
10360
10388
|
period=period,
|
|
10361
10389
|
region=region,
|
|
10390
|
+
stack_account=stack_account,
|
|
10391
|
+
stack_region=stack_region,
|
|
10362
10392
|
statistic=statistic,
|
|
10363
10393
|
unit=unit,
|
|
10364
10394
|
)
|
|
@@ -10814,6 +10844,8 @@ class LogGroup(
|
|
|
10814
10844
|
label: typing.Optional[builtins.str] = None,
|
|
10815
10845
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10816
10846
|
region: typing.Optional[builtins.str] = None,
|
|
10847
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10848
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10817
10849
|
statistic: typing.Optional[builtins.str] = None,
|
|
10818
10850
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10819
10851
|
) -> _Metric_e396a4dc:
|
|
@@ -10826,6 +10858,8 @@ class LogGroup(
|
|
|
10826
10858
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10827
10859
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10828
10860
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10861
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10862
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10829
10863
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10830
10864
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10831
10865
|
|
|
@@ -10855,6 +10889,8 @@ class LogGroup(
|
|
|
10855
10889
|
label=label,
|
|
10856
10890
|
period=period,
|
|
10857
10891
|
region=region,
|
|
10892
|
+
stack_account=stack_account,
|
|
10893
|
+
stack_region=stack_region,
|
|
10858
10894
|
statistic=statistic,
|
|
10859
10895
|
unit=unit,
|
|
10860
10896
|
)
|
|
@@ -10871,6 +10907,8 @@ class LogGroup(
|
|
|
10871
10907
|
label: typing.Optional[builtins.str] = None,
|
|
10872
10908
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10873
10909
|
region: typing.Optional[builtins.str] = None,
|
|
10910
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10911
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10874
10912
|
statistic: typing.Optional[builtins.str] = None,
|
|
10875
10913
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10876
10914
|
) -> _Metric_e396a4dc:
|
|
@@ -10882,6 +10920,8 @@ class LogGroup(
|
|
|
10882
10920
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10883
10921
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10884
10922
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10923
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10924
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10885
10925
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10886
10926
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10887
10927
|
|
|
@@ -10908,6 +10948,8 @@ class LogGroup(
|
|
|
10908
10948
|
label=label,
|
|
10909
10949
|
period=period,
|
|
10910
10950
|
region=region,
|
|
10951
|
+
stack_account=stack_account,
|
|
10952
|
+
stack_region=stack_region,
|
|
10911
10953
|
statistic=statistic,
|
|
10912
10954
|
unit=unit,
|
|
10913
10955
|
)
|
|
@@ -10924,6 +10966,8 @@ class LogGroup(
|
|
|
10924
10966
|
label: typing.Optional[builtins.str] = None,
|
|
10925
10967
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10926
10968
|
region: typing.Optional[builtins.str] = None,
|
|
10969
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
10970
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
10927
10971
|
statistic: typing.Optional[builtins.str] = None,
|
|
10928
10972
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10929
10973
|
) -> _Metric_e396a4dc:
|
|
@@ -10935,6 +10979,8 @@ class LogGroup(
|
|
|
10935
10979
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10936
10980
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10937
10981
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
10982
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
10983
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10938
10984
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10939
10985
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10940
10986
|
|
|
@@ -10961,6 +11007,8 @@ class LogGroup(
|
|
|
10961
11007
|
label=label,
|
|
10962
11008
|
period=period,
|
|
10963
11009
|
region=region,
|
|
11010
|
+
stack_account=stack_account,
|
|
11011
|
+
stack_region=stack_region,
|
|
10964
11012
|
statistic=statistic,
|
|
10965
11013
|
unit=unit,
|
|
10966
11014
|
)
|
|
@@ -11793,6 +11841,8 @@ class MetricFilter(
|
|
|
11793
11841
|
label: typing.Optional[builtins.str] = None,
|
|
11794
11842
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11795
11843
|
region: typing.Optional[builtins.str] = None,
|
|
11844
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
11845
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
11796
11846
|
statistic: typing.Optional[builtins.str] = None,
|
|
11797
11847
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11798
11848
|
) -> _Metric_e396a4dc:
|
|
@@ -11804,6 +11854,8 @@ class MetricFilter(
|
|
|
11804
11854
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11805
11855
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11806
11856
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
11857
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
11858
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11807
11859
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11808
11860
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11809
11861
|
|
|
@@ -11816,6 +11868,8 @@ class MetricFilter(
|
|
|
11816
11868
|
label=label,
|
|
11817
11869
|
period=period,
|
|
11818
11870
|
region=region,
|
|
11871
|
+
stack_account=stack_account,
|
|
11872
|
+
stack_region=stack_region,
|
|
11819
11873
|
statistic=statistic,
|
|
11820
11874
|
unit=unit,
|
|
11821
11875
|
)
|
|
@@ -14917,6 +14971,8 @@ def _typecheckingstub__e63ab70f8bacc728cdbf61171dfc0b89720bb794e34d29336b9486edb
|
|
|
14917
14971
|
label: typing.Optional[builtins.str] = None,
|
|
14918
14972
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
14919
14973
|
region: typing.Optional[builtins.str] = None,
|
|
14974
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
14975
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
14920
14976
|
statistic: typing.Optional[builtins.str] = None,
|
|
14921
14977
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
14922
14978
|
) -> None:
|
|
@@ -15042,6 +15098,8 @@ def _typecheckingstub__afd13314ef52ff283429f1992d9ab29ab14998262e884015dc1d0af12
|
|
|
15042
15098
|
label: typing.Optional[builtins.str] = None,
|
|
15043
15099
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
15044
15100
|
region: typing.Optional[builtins.str] = None,
|
|
15101
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
15102
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
15045
15103
|
statistic: typing.Optional[builtins.str] = None,
|
|
15046
15104
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
15047
15105
|
) -> None:
|
|
@@ -1153,6 +1153,7 @@ class CfnQueue(
|
|
|
1153
1153
|
# tags: Any
|
|
1154
1154
|
|
|
1155
1155
|
cfn_queue = mediaconvert.CfnQueue(self, "MyCfnQueue",
|
|
1156
|
+
concurrent_jobs=123,
|
|
1156
1157
|
description="description",
|
|
1157
1158
|
name="name",
|
|
1158
1159
|
pricing_plan="pricingPlan",
|
|
@@ -1166,6 +1167,7 @@ class CfnQueue(
|
|
|
1166
1167
|
scope: _constructs_77d1e7e8.Construct,
|
|
1167
1168
|
id: builtins.str,
|
|
1168
1169
|
*,
|
|
1170
|
+
concurrent_jobs: typing.Optional[jsii.Number] = None,
|
|
1169
1171
|
description: typing.Optional[builtins.str] = None,
|
|
1170
1172
|
name: typing.Optional[builtins.str] = None,
|
|
1171
1173
|
pricing_plan: typing.Optional[builtins.str] = None,
|
|
@@ -1175,6 +1177,7 @@ class CfnQueue(
|
|
|
1175
1177
|
'''
|
|
1176
1178
|
:param scope: Scope in which this resource is defined.
|
|
1177
1179
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1180
|
+
:param concurrent_jobs:
|
|
1178
1181
|
:param description: Optional. A description of the queue that you are creating.
|
|
1179
1182
|
:param name: The name of the queue that you are creating.
|
|
1180
1183
|
:param pricing_plan: When you use AWS CloudFormation , you can create only on-demand queues. Therefore, always set ``PricingPlan`` to the value "ON_DEMAND" when declaring an AWS::MediaConvert::Queue in your AWS CloudFormation template. To create a reserved queue, use the AWS Elemental MediaConvert console at https://console.aws.amazon.com/mediaconvert to set up a contract. For more information, see `Working with AWS Elemental MediaConvert Queues <https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html>`_ in the ** .
|
|
@@ -1186,6 +1189,7 @@ class CfnQueue(
|
|
|
1186
1189
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
1187
1190
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
1188
1191
|
props = CfnQueueProps(
|
|
1192
|
+
concurrent_jobs=concurrent_jobs,
|
|
1189
1193
|
description=description,
|
|
1190
1194
|
name=name,
|
|
1191
1195
|
pricing_plan=pricing_plan,
|
|
@@ -1262,6 +1266,18 @@ class CfnQueue(
|
|
|
1262
1266
|
'''Tag Manager which manages the tags for this resource.'''
|
|
1263
1267
|
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
|
|
1264
1268
|
|
|
1269
|
+
@builtins.property
|
|
1270
|
+
@jsii.member(jsii_name="concurrentJobs")
|
|
1271
|
+
def concurrent_jobs(self) -> typing.Optional[jsii.Number]:
|
|
1272
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "concurrentJobs"))
|
|
1273
|
+
|
|
1274
|
+
@concurrent_jobs.setter
|
|
1275
|
+
def concurrent_jobs(self, value: typing.Optional[jsii.Number]) -> None:
|
|
1276
|
+
if __debug__:
|
|
1277
|
+
type_hints = typing.get_type_hints(_typecheckingstub__993fd95d91379114b61414ca4c663149a086fb421eb4dca35dd60e83c0abae78)
|
|
1278
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1279
|
+
jsii.set(self, "concurrentJobs", value) # pyright: ignore[reportArgumentType]
|
|
1280
|
+
|
|
1265
1281
|
@builtins.property
|
|
1266
1282
|
@jsii.member(jsii_name="description")
|
|
1267
1283
|
def description(self) -> typing.Optional[builtins.str]:
|
|
@@ -1332,6 +1348,7 @@ class CfnQueue(
|
|
|
1332
1348
|
jsii_type="aws-cdk-lib.aws_mediaconvert.CfnQueueProps",
|
|
1333
1349
|
jsii_struct_bases=[],
|
|
1334
1350
|
name_mapping={
|
|
1351
|
+
"concurrent_jobs": "concurrentJobs",
|
|
1335
1352
|
"description": "description",
|
|
1336
1353
|
"name": "name",
|
|
1337
1354
|
"pricing_plan": "pricingPlan",
|
|
@@ -1343,6 +1360,7 @@ class CfnQueueProps:
|
|
|
1343
1360
|
def __init__(
|
|
1344
1361
|
self,
|
|
1345
1362
|
*,
|
|
1363
|
+
concurrent_jobs: typing.Optional[jsii.Number] = None,
|
|
1346
1364
|
description: typing.Optional[builtins.str] = None,
|
|
1347
1365
|
name: typing.Optional[builtins.str] = None,
|
|
1348
1366
|
pricing_plan: typing.Optional[builtins.str] = None,
|
|
@@ -1351,6 +1369,7 @@ class CfnQueueProps:
|
|
|
1351
1369
|
) -> None:
|
|
1352
1370
|
'''Properties for defining a ``CfnQueue``.
|
|
1353
1371
|
|
|
1372
|
+
:param concurrent_jobs:
|
|
1354
1373
|
:param description: Optional. A description of the queue that you are creating.
|
|
1355
1374
|
:param name: The name of the queue that you are creating.
|
|
1356
1375
|
:param pricing_plan: When you use AWS CloudFormation , you can create only on-demand queues. Therefore, always set ``PricingPlan`` to the value "ON_DEMAND" when declaring an AWS::MediaConvert::Queue in your AWS CloudFormation template. To create a reserved queue, use the AWS Elemental MediaConvert console at https://console.aws.amazon.com/mediaconvert to set up a contract. For more information, see `Working with AWS Elemental MediaConvert Queues <https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html>`_ in the ** .
|
|
@@ -1369,6 +1388,7 @@ class CfnQueueProps:
|
|
|
1369
1388
|
# tags: Any
|
|
1370
1389
|
|
|
1371
1390
|
cfn_queue_props = mediaconvert.CfnQueueProps(
|
|
1391
|
+
concurrent_jobs=123,
|
|
1372
1392
|
description="description",
|
|
1373
1393
|
name="name",
|
|
1374
1394
|
pricing_plan="pricingPlan",
|
|
@@ -1378,12 +1398,15 @@ class CfnQueueProps:
|
|
|
1378
1398
|
'''
|
|
1379
1399
|
if __debug__:
|
|
1380
1400
|
type_hints = typing.get_type_hints(_typecheckingstub__7730e4d3d27bc8cf5ac3d6866a9c8915fd8e55a6c574e02bd2a03f4318d68f05)
|
|
1401
|
+
check_type(argname="argument concurrent_jobs", value=concurrent_jobs, expected_type=type_hints["concurrent_jobs"])
|
|
1381
1402
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
1382
1403
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
1383
1404
|
check_type(argname="argument pricing_plan", value=pricing_plan, expected_type=type_hints["pricing_plan"])
|
|
1384
1405
|
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
1385
1406
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
1386
1407
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1408
|
+
if concurrent_jobs is not None:
|
|
1409
|
+
self._values["concurrent_jobs"] = concurrent_jobs
|
|
1387
1410
|
if description is not None:
|
|
1388
1411
|
self._values["description"] = description
|
|
1389
1412
|
if name is not None:
|
|
@@ -1395,6 +1418,14 @@ class CfnQueueProps:
|
|
|
1395
1418
|
if tags is not None:
|
|
1396
1419
|
self._values["tags"] = tags
|
|
1397
1420
|
|
|
1421
|
+
@builtins.property
|
|
1422
|
+
def concurrent_jobs(self) -> typing.Optional[jsii.Number]:
|
|
1423
|
+
'''
|
|
1424
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-concurrentjobs
|
|
1425
|
+
'''
|
|
1426
|
+
result = self._values.get("concurrent_jobs")
|
|
1427
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1428
|
+
|
|
1398
1429
|
@builtins.property
|
|
1399
1430
|
def description(self) -> typing.Optional[builtins.str]:
|
|
1400
1431
|
'''Optional.
|
|
@@ -1665,6 +1696,7 @@ def _typecheckingstub__ce85d095c93254b82e67ee70a5cae96a78ca7b1fbb86f6494f48602d8
|
|
|
1665
1696
|
scope: _constructs_77d1e7e8.Construct,
|
|
1666
1697
|
id: builtins.str,
|
|
1667
1698
|
*,
|
|
1699
|
+
concurrent_jobs: typing.Optional[jsii.Number] = None,
|
|
1668
1700
|
description: typing.Optional[builtins.str] = None,
|
|
1669
1701
|
name: typing.Optional[builtins.str] = None,
|
|
1670
1702
|
pricing_plan: typing.Optional[builtins.str] = None,
|
|
@@ -1686,6 +1718,12 @@ def _typecheckingstub__35c318d1b3afa3029c00b3041ce2990e84ecd612460683bdfc3995e4f
|
|
|
1686
1718
|
"""Type checking stubs"""
|
|
1687
1719
|
pass
|
|
1688
1720
|
|
|
1721
|
+
def _typecheckingstub__993fd95d91379114b61414ca4c663149a086fb421eb4dca35dd60e83c0abae78(
|
|
1722
|
+
value: typing.Optional[jsii.Number],
|
|
1723
|
+
) -> None:
|
|
1724
|
+
"""Type checking stubs"""
|
|
1725
|
+
pass
|
|
1726
|
+
|
|
1689
1727
|
def _typecheckingstub__e85c7cbaa4ed5f47efbb96c65b1b5f493c2811227a36b5f2af1c323b91af1598(
|
|
1690
1728
|
value: typing.Optional[builtins.str],
|
|
1691
1729
|
) -> None:
|
|
@@ -1718,6 +1756,7 @@ def _typecheckingstub__0f40a2466cbcd54418fd8402f9b79ae297cbdc53819c461dd9bde5aa9
|
|
|
1718
1756
|
|
|
1719
1757
|
def _typecheckingstub__7730e4d3d27bc8cf5ac3d6866a9c8915fd8e55a6c574e02bd2a03f4318d68f05(
|
|
1720
1758
|
*,
|
|
1759
|
+
concurrent_jobs: typing.Optional[jsii.Number] = None,
|
|
1721
1760
|
description: typing.Optional[builtins.str] = None,
|
|
1722
1761
|
name: typing.Optional[builtins.str] = None,
|
|
1723
1762
|
pricing_plan: typing.Optional[builtins.str] = None,
|