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
|
@@ -527,6 +527,12 @@ class CfnTable(
|
|
|
527
527
|
write_capacity_units=123
|
|
528
528
|
)
|
|
529
529
|
),
|
|
530
|
+
cdc_specification=cassandra.CfnTable.CdcSpecificationProperty(
|
|
531
|
+
status="status",
|
|
532
|
+
|
|
533
|
+
# the properties below are optional
|
|
534
|
+
view_type="viewType"
|
|
535
|
+
),
|
|
530
536
|
client_side_timestamps_enabled=False,
|
|
531
537
|
clustering_key_columns=[cassandra.CfnTable.ClusteringKeyColumnProperty(
|
|
532
538
|
column=cassandra.CfnTable.ColumnProperty(
|
|
@@ -587,6 +593,7 @@ class CfnTable(
|
|
|
587
593
|
partition_key_columns: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.ColumnProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
588
594
|
auto_scaling_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.AutoScalingSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
589
595
|
billing_mode: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.BillingModeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
596
|
+
cdc_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.CdcSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
590
597
|
client_side_timestamps_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
591
598
|
clustering_key_columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.ClusteringKeyColumnProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
592
599
|
default_time_to_live: typing.Optional[jsii.Number] = None,
|
|
@@ -604,6 +611,7 @@ class CfnTable(
|
|
|
604
611
|
:param partition_key_columns: One or more columns that uniquely identify every row in the table. Every table must have a partition key.
|
|
605
612
|
:param auto_scaling_specifications: The optional auto scaling capacity settings for a table in provisioned capacity mode.
|
|
606
613
|
:param billing_mode: The billing mode for the table, which determines how you'll be charged for reads and writes:. - *On-demand mode* (default) - You pay based on the actual reads and writes your application performs. - *Provisioned mode* - Lets you specify the number of reads and writes per second that you need for your application. If you don't specify a value for this property, then the table will use on-demand mode.
|
|
614
|
+
:param cdc_specification: The settings for the CDC stream of a table. For more information about CDC streams, see `Working with change data capture (CDC) streams in Amazon Keyspaces <https://docs.aws.amazon.com/keyspaces/latest/devguide/cdc.html>`_ in the *Amazon Keyspaces Developer Guide* .
|
|
607
615
|
:param client_side_timestamps_enabled: Enables client-side timestamps for the table. By default, the setting is disabled. You can enable client-side timestamps with the following option: - ``status: "enabled"`` After client-side timestamps are enabled for a table, you can't disable this setting.
|
|
608
616
|
:param clustering_key_columns: One or more columns that determine how the table data is sorted.
|
|
609
617
|
:param default_time_to_live: The default Time To Live (TTL) value for all rows in a table in seconds. The maximum configurable value is 630,720,000 seconds, which is the equivalent of 20 years. By default, the TTL value for a table is 0, which means data does not expire. For more information, see `Setting the default TTL value for a table <https://docs.aws.amazon.com/keyspaces/latest/devguide/TTL-how-it-works.html#ttl-howitworks_default_ttl>`_ in the *Amazon Keyspaces Developer Guide* .
|
|
@@ -623,6 +631,7 @@ class CfnTable(
|
|
|
623
631
|
partition_key_columns=partition_key_columns,
|
|
624
632
|
auto_scaling_specifications=auto_scaling_specifications,
|
|
625
633
|
billing_mode=billing_mode,
|
|
634
|
+
cdc_specification=cdc_specification,
|
|
626
635
|
client_side_timestamps_enabled=client_side_timestamps_enabled,
|
|
627
636
|
clustering_key_columns=clustering_key_columns,
|
|
628
637
|
default_time_to_live=default_time_to_live,
|
|
@@ -744,6 +753,24 @@ class CfnTable(
|
|
|
744
753
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
745
754
|
jsii.set(self, "billingMode", value) # pyright: ignore[reportArgumentType]
|
|
746
755
|
|
|
756
|
+
@builtins.property
|
|
757
|
+
@jsii.member(jsii_name="cdcSpecification")
|
|
758
|
+
def cdc_specification(
|
|
759
|
+
self,
|
|
760
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.CdcSpecificationProperty"]]:
|
|
761
|
+
'''The settings for the CDC stream of a table.'''
|
|
762
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.CdcSpecificationProperty"]], jsii.get(self, "cdcSpecification"))
|
|
763
|
+
|
|
764
|
+
@cdc_specification.setter
|
|
765
|
+
def cdc_specification(
|
|
766
|
+
self,
|
|
767
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.CdcSpecificationProperty"]],
|
|
768
|
+
) -> None:
|
|
769
|
+
if __debug__:
|
|
770
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6d6f243fb6b53b3d40f8fc1ed0b3c81e11937e534f5c4e508a4afcf41e5bb3b5)
|
|
771
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
772
|
+
jsii.set(self, "cdcSpecification", value) # pyright: ignore[reportArgumentType]
|
|
773
|
+
|
|
747
774
|
@builtins.property
|
|
748
775
|
@jsii.member(jsii_name="clientSideTimestampsEnabled")
|
|
749
776
|
def client_side_timestamps_enabled(
|
|
@@ -1226,6 +1253,94 @@ class CfnTable(
|
|
|
1226
1253
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1227
1254
|
)
|
|
1228
1255
|
|
|
1256
|
+
@jsii.data_type(
|
|
1257
|
+
jsii_type="aws-cdk-lib.aws_cassandra.CfnTable.CdcSpecificationProperty",
|
|
1258
|
+
jsii_struct_bases=[],
|
|
1259
|
+
name_mapping={"status": "status", "view_type": "viewType"},
|
|
1260
|
+
)
|
|
1261
|
+
class CdcSpecificationProperty:
|
|
1262
|
+
def __init__(
|
|
1263
|
+
self,
|
|
1264
|
+
*,
|
|
1265
|
+
status: builtins.str,
|
|
1266
|
+
view_type: typing.Optional[builtins.str] = None,
|
|
1267
|
+
) -> None:
|
|
1268
|
+
'''The settings for the CDC stream of a table.
|
|
1269
|
+
|
|
1270
|
+
For more information about CDC streams, see `Working with change data capture (CDC) streams in Amazon Keyspaces <https://docs.aws.amazon.com/keyspaces/latest/devguide/cdc.html>`_ in the *Amazon Keyspaces Developer Guide* .
|
|
1271
|
+
|
|
1272
|
+
:param status: The status of the CDC stream. You can enable or disable a stream for a table.
|
|
1273
|
+
:param view_type: The view type specifies the changes Amazon Keyspaces records for each changed row in the stream. After you create the stream, you can't make changes to this selection. The options are: - ``NEW_AND_OLD_IMAGES`` - both versions of the row, before and after the change. This is the default. - ``NEW_IMAGE`` - the version of the row after the change. - ``OLD_IMAGE`` - the version of the row before the change. - ``KEYS_ONLY`` - the partition and clustering keys of the row that was changed. Default: - "NEW_AND_OLD_IMAGES"
|
|
1274
|
+
|
|
1275
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcspecification.html
|
|
1276
|
+
:exampleMetadata: fixture=_generated
|
|
1277
|
+
|
|
1278
|
+
Example::
|
|
1279
|
+
|
|
1280
|
+
# The code below shows an example of how to instantiate this type.
|
|
1281
|
+
# The values are placeholders you should change.
|
|
1282
|
+
from aws_cdk import aws_cassandra as cassandra
|
|
1283
|
+
|
|
1284
|
+
cdc_specification_property = cassandra.CfnTable.CdcSpecificationProperty(
|
|
1285
|
+
status="status",
|
|
1286
|
+
|
|
1287
|
+
# the properties below are optional
|
|
1288
|
+
view_type="viewType"
|
|
1289
|
+
)
|
|
1290
|
+
'''
|
|
1291
|
+
if __debug__:
|
|
1292
|
+
type_hints = typing.get_type_hints(_typecheckingstub__504eaef70818f1cb4ead5434397a50494cf33314a00fe4e3045dad5cdcd7b160)
|
|
1293
|
+
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
1294
|
+
check_type(argname="argument view_type", value=view_type, expected_type=type_hints["view_type"])
|
|
1295
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1296
|
+
"status": status,
|
|
1297
|
+
}
|
|
1298
|
+
if view_type is not None:
|
|
1299
|
+
self._values["view_type"] = view_type
|
|
1300
|
+
|
|
1301
|
+
@builtins.property
|
|
1302
|
+
def status(self) -> builtins.str:
|
|
1303
|
+
'''The status of the CDC stream.
|
|
1304
|
+
|
|
1305
|
+
You can enable or disable a stream for a table.
|
|
1306
|
+
|
|
1307
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcspecification.html#cfn-cassandra-table-cdcspecification-status
|
|
1308
|
+
'''
|
|
1309
|
+
result = self._values.get("status")
|
|
1310
|
+
assert result is not None, "Required property 'status' is missing"
|
|
1311
|
+
return typing.cast(builtins.str, result)
|
|
1312
|
+
|
|
1313
|
+
@builtins.property
|
|
1314
|
+
def view_type(self) -> typing.Optional[builtins.str]:
|
|
1315
|
+
'''The view type specifies the changes Amazon Keyspaces records for each changed row in the stream.
|
|
1316
|
+
|
|
1317
|
+
After you create the stream, you can't make changes to this selection.
|
|
1318
|
+
|
|
1319
|
+
The options are:
|
|
1320
|
+
|
|
1321
|
+
- ``NEW_AND_OLD_IMAGES`` - both versions of the row, before and after the change. This is the default.
|
|
1322
|
+
- ``NEW_IMAGE`` - the version of the row after the change.
|
|
1323
|
+
- ``OLD_IMAGE`` - the version of the row before the change.
|
|
1324
|
+
- ``KEYS_ONLY`` - the partition and clustering keys of the row that was changed.
|
|
1325
|
+
|
|
1326
|
+
:default: - "NEW_AND_OLD_IMAGES"
|
|
1327
|
+
|
|
1328
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcspecification.html#cfn-cassandra-table-cdcspecification-viewtype
|
|
1329
|
+
'''
|
|
1330
|
+
result = self._values.get("view_type")
|
|
1331
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1332
|
+
|
|
1333
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1334
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1335
|
+
|
|
1336
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1337
|
+
return not (rhs == self)
|
|
1338
|
+
|
|
1339
|
+
def __repr__(self) -> str:
|
|
1340
|
+
return "CdcSpecificationProperty(%s)" % ", ".join(
|
|
1341
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1342
|
+
)
|
|
1343
|
+
|
|
1229
1344
|
@jsii.data_type(
|
|
1230
1345
|
jsii_type="aws-cdk-lib.aws_cassandra.CfnTable.ClusteringKeyColumnProperty",
|
|
1231
1346
|
jsii_struct_bases=[],
|
|
@@ -1875,6 +1990,7 @@ class CfnTable(
|
|
|
1875
1990
|
"partition_key_columns": "partitionKeyColumns",
|
|
1876
1991
|
"auto_scaling_specifications": "autoScalingSpecifications",
|
|
1877
1992
|
"billing_mode": "billingMode",
|
|
1993
|
+
"cdc_specification": "cdcSpecification",
|
|
1878
1994
|
"client_side_timestamps_enabled": "clientSideTimestampsEnabled",
|
|
1879
1995
|
"clustering_key_columns": "clusteringKeyColumns",
|
|
1880
1996
|
"default_time_to_live": "defaultTimeToLive",
|
|
@@ -1894,6 +2010,7 @@ class CfnTableProps:
|
|
|
1894
2010
|
partition_key_columns: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ColumnProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
1895
2011
|
auto_scaling_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.AutoScalingSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1896
2012
|
billing_mode: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.BillingModeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2013
|
+
cdc_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.CdcSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1897
2014
|
client_side_timestamps_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1898
2015
|
clustering_key_columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ClusteringKeyColumnProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1899
2016
|
default_time_to_live: typing.Optional[jsii.Number] = None,
|
|
@@ -1910,6 +2027,7 @@ class CfnTableProps:
|
|
|
1910
2027
|
:param partition_key_columns: One or more columns that uniquely identify every row in the table. Every table must have a partition key.
|
|
1911
2028
|
:param auto_scaling_specifications: The optional auto scaling capacity settings for a table in provisioned capacity mode.
|
|
1912
2029
|
:param billing_mode: The billing mode for the table, which determines how you'll be charged for reads and writes:. - *On-demand mode* (default) - You pay based on the actual reads and writes your application performs. - *Provisioned mode* - Lets you specify the number of reads and writes per second that you need for your application. If you don't specify a value for this property, then the table will use on-demand mode.
|
|
2030
|
+
:param cdc_specification: The settings for the CDC stream of a table. For more information about CDC streams, see `Working with change data capture (CDC) streams in Amazon Keyspaces <https://docs.aws.amazon.com/keyspaces/latest/devguide/cdc.html>`_ in the *Amazon Keyspaces Developer Guide* .
|
|
1913
2031
|
:param client_side_timestamps_enabled: Enables client-side timestamps for the table. By default, the setting is disabled. You can enable client-side timestamps with the following option: - ``status: "enabled"`` After client-side timestamps are enabled for a table, you can't disable this setting.
|
|
1914
2032
|
:param clustering_key_columns: One or more columns that determine how the table data is sorted.
|
|
1915
2033
|
:param default_time_to_live: The default Time To Live (TTL) value for all rows in a table in seconds. The maximum configurable value is 630,720,000 seconds, which is the equivalent of 20 years. By default, the TTL value for a table is 0, which means data does not expire. For more information, see `Setting the default TTL value for a table <https://docs.aws.amazon.com/keyspaces/latest/devguide/TTL-how-it-works.html#ttl-howitworks_default_ttl>`_ in the *Amazon Keyspaces Developer Guide* .
|
|
@@ -1978,6 +2096,12 @@ class CfnTableProps:
|
|
|
1978
2096
|
write_capacity_units=123
|
|
1979
2097
|
)
|
|
1980
2098
|
),
|
|
2099
|
+
cdc_specification=cassandra.CfnTable.CdcSpecificationProperty(
|
|
2100
|
+
status="status",
|
|
2101
|
+
|
|
2102
|
+
# the properties below are optional
|
|
2103
|
+
view_type="viewType"
|
|
2104
|
+
),
|
|
1981
2105
|
client_side_timestamps_enabled=False,
|
|
1982
2106
|
clustering_key_columns=[cassandra.CfnTable.ClusteringKeyColumnProperty(
|
|
1983
2107
|
column=cassandra.CfnTable.ColumnProperty(
|
|
@@ -2034,6 +2158,7 @@ class CfnTableProps:
|
|
|
2034
2158
|
check_type(argname="argument partition_key_columns", value=partition_key_columns, expected_type=type_hints["partition_key_columns"])
|
|
2035
2159
|
check_type(argname="argument auto_scaling_specifications", value=auto_scaling_specifications, expected_type=type_hints["auto_scaling_specifications"])
|
|
2036
2160
|
check_type(argname="argument billing_mode", value=billing_mode, expected_type=type_hints["billing_mode"])
|
|
2161
|
+
check_type(argname="argument cdc_specification", value=cdc_specification, expected_type=type_hints["cdc_specification"])
|
|
2037
2162
|
check_type(argname="argument client_side_timestamps_enabled", value=client_side_timestamps_enabled, expected_type=type_hints["client_side_timestamps_enabled"])
|
|
2038
2163
|
check_type(argname="argument clustering_key_columns", value=clustering_key_columns, expected_type=type_hints["clustering_key_columns"])
|
|
2039
2164
|
check_type(argname="argument default_time_to_live", value=default_time_to_live, expected_type=type_hints["default_time_to_live"])
|
|
@@ -2051,6 +2176,8 @@ class CfnTableProps:
|
|
|
2051
2176
|
self._values["auto_scaling_specifications"] = auto_scaling_specifications
|
|
2052
2177
|
if billing_mode is not None:
|
|
2053
2178
|
self._values["billing_mode"] = billing_mode
|
|
2179
|
+
if cdc_specification is not None:
|
|
2180
|
+
self._values["cdc_specification"] = cdc_specification
|
|
2054
2181
|
if client_side_timestamps_enabled is not None:
|
|
2055
2182
|
self._values["client_side_timestamps_enabled"] = client_side_timestamps_enabled
|
|
2056
2183
|
if clustering_key_columns is not None:
|
|
@@ -2123,6 +2250,19 @@ class CfnTableProps:
|
|
|
2123
2250
|
result = self._values.get("billing_mode")
|
|
2124
2251
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTable.BillingModeProperty]], result)
|
|
2125
2252
|
|
|
2253
|
+
@builtins.property
|
|
2254
|
+
def cdc_specification(
|
|
2255
|
+
self,
|
|
2256
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTable.CdcSpecificationProperty]]:
|
|
2257
|
+
'''The settings for the CDC stream of a table.
|
|
2258
|
+
|
|
2259
|
+
For more information about CDC streams, see `Working with change data capture (CDC) streams in Amazon Keyspaces <https://docs.aws.amazon.com/keyspaces/latest/devguide/cdc.html>`_ in the *Amazon Keyspaces Developer Guide* .
|
|
2260
|
+
|
|
2261
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-cdcspecification
|
|
2262
|
+
'''
|
|
2263
|
+
result = self._values.get("cdc_specification")
|
|
2264
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTable.CdcSpecificationProperty]], result)
|
|
2265
|
+
|
|
2126
2266
|
@builtins.property
|
|
2127
2267
|
def client_side_timestamps_enabled(
|
|
2128
2268
|
self,
|
|
@@ -2713,6 +2853,7 @@ def _typecheckingstub__9d6fd025c7c0c8d4a27519b568ec6952b027c14ffb932a0cd5e53f0aa
|
|
|
2713
2853
|
partition_key_columns: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ColumnProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
2714
2854
|
auto_scaling_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.AutoScalingSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2715
2855
|
billing_mode: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.BillingModeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2856
|
+
cdc_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.CdcSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2716
2857
|
client_side_timestamps_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2717
2858
|
clustering_key_columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ClusteringKeyColumnProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2718
2859
|
default_time_to_live: typing.Optional[jsii.Number] = None,
|
|
@@ -2762,6 +2903,12 @@ def _typecheckingstub__b2219a43361bf3ff1d1bf29e1b2907d75a53df3b7016d534579938eea
|
|
|
2762
2903
|
"""Type checking stubs"""
|
|
2763
2904
|
pass
|
|
2764
2905
|
|
|
2906
|
+
def _typecheckingstub__6d6f243fb6b53b3d40f8fc1ed0b3c81e11937e534f5c4e508a4afcf41e5bb3b5(
|
|
2907
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTable.CdcSpecificationProperty]],
|
|
2908
|
+
) -> None:
|
|
2909
|
+
"""Type checking stubs"""
|
|
2910
|
+
pass
|
|
2911
|
+
|
|
2765
2912
|
def _typecheckingstub__fd9370f4f1ef0d5c1349ef8d576cad345ff735c9ca5c01758d25b48bfb48e5bb(
|
|
2766
2913
|
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
2767
2914
|
) -> None:
|
|
@@ -2842,6 +2989,14 @@ def _typecheckingstub__1b57c6da9515480ece2b86b6971f8563bcf0c49dab50c8c6e234c443b
|
|
|
2842
2989
|
"""Type checking stubs"""
|
|
2843
2990
|
pass
|
|
2844
2991
|
|
|
2992
|
+
def _typecheckingstub__504eaef70818f1cb4ead5434397a50494cf33314a00fe4e3045dad5cdcd7b160(
|
|
2993
|
+
*,
|
|
2994
|
+
status: builtins.str,
|
|
2995
|
+
view_type: typing.Optional[builtins.str] = None,
|
|
2996
|
+
) -> None:
|
|
2997
|
+
"""Type checking stubs"""
|
|
2998
|
+
pass
|
|
2999
|
+
|
|
2845
3000
|
def _typecheckingstub__0c4989a761d5af337ce8ad918b2d543390cab5ea5d5ea82741f1c3416e00d794(
|
|
2846
3001
|
*,
|
|
2847
3002
|
column: typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ColumnProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
@@ -2906,6 +3061,7 @@ def _typecheckingstub__bd1ff29b1ec22382a7c3d14031657668106b0fcd843c06a96897bcadf
|
|
|
2906
3061
|
partition_key_columns: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ColumnProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
2907
3062
|
auto_scaling_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.AutoScalingSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2908
3063
|
billing_mode: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.BillingModeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3064
|
+
cdc_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.CdcSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2909
3065
|
client_side_timestamps_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2910
3066
|
clustering_key_columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ClusteringKeyColumnProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2911
3067
|
default_time_to_live: typing.Optional[jsii.Number] = None,
|
|
@@ -1743,6 +1743,7 @@ class ICertificate(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
1743
1743
|
account: typing.Optional[builtins.str] = None,
|
|
1744
1744
|
color: typing.Optional[builtins.str] = None,
|
|
1745
1745
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1746
|
+
id: typing.Optional[builtins.str] = None,
|
|
1746
1747
|
label: typing.Optional[builtins.str] = None,
|
|
1747
1748
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
1748
1749
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1750,6 +1751,7 @@ class ICertificate(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
1750
1751
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1751
1752
|
statistic: typing.Optional[builtins.str] = None,
|
|
1752
1753
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
1754
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1753
1755
|
) -> _Metric_e396a4dc:
|
|
1754
1756
|
'''Return the DaysToExpiry metric for this AWS Certificate Manager Certificate. By default, this is the minimum value over 1 day.
|
|
1755
1757
|
|
|
@@ -1760,6 +1762,7 @@ class ICertificate(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
1760
1762
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1761
1763
|
: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
|
|
1762
1764
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1765
|
+
: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
|
|
1763
1766
|
: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
|
|
1764
1767
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1765
1768
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1767,6 +1770,7 @@ class ICertificate(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
1767
1770
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1768
1771
|
: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
|
|
1769
1772
|
: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
|
|
1773
|
+
: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
|
|
1770
1774
|
'''
|
|
1771
1775
|
...
|
|
1772
1776
|
|
|
@@ -1794,6 +1798,7 @@ class _ICertificateProxy(
|
|
|
1794
1798
|
account: typing.Optional[builtins.str] = None,
|
|
1795
1799
|
color: typing.Optional[builtins.str] = None,
|
|
1796
1800
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1801
|
+
id: typing.Optional[builtins.str] = None,
|
|
1797
1802
|
label: typing.Optional[builtins.str] = None,
|
|
1798
1803
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
1799
1804
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1801,6 +1806,7 @@ class _ICertificateProxy(
|
|
|
1801
1806
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1802
1807
|
statistic: typing.Optional[builtins.str] = None,
|
|
1803
1808
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
1809
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1804
1810
|
) -> _Metric_e396a4dc:
|
|
1805
1811
|
'''Return the DaysToExpiry metric for this AWS Certificate Manager Certificate. By default, this is the minimum value over 1 day.
|
|
1806
1812
|
|
|
@@ -1811,6 +1817,7 @@ class _ICertificateProxy(
|
|
|
1811
1817
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1812
1818
|
: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
|
|
1813
1819
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1820
|
+
: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
|
|
1814
1821
|
: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
|
|
1815
1822
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1816
1823
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1818,11 +1825,13 @@ class _ICertificateProxy(
|
|
|
1818
1825
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1819
1826
|
: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
|
|
1820
1827
|
: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
|
|
1828
|
+
: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
|
|
1821
1829
|
'''
|
|
1822
1830
|
props = _MetricOptions_1788b62f(
|
|
1823
1831
|
account=account,
|
|
1824
1832
|
color=color,
|
|
1825
1833
|
dimensions_map=dimensions_map,
|
|
1834
|
+
id=id,
|
|
1826
1835
|
label=label,
|
|
1827
1836
|
period=period,
|
|
1828
1837
|
region=region,
|
|
@@ -1830,6 +1839,7 @@ class _ICertificateProxy(
|
|
|
1830
1839
|
stack_region=stack_region,
|
|
1831
1840
|
statistic=statistic,
|
|
1832
1841
|
unit=unit,
|
|
1842
|
+
visible=visible,
|
|
1833
1843
|
)
|
|
1834
1844
|
|
|
1835
1845
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDaysToExpiry", [props]))
|
|
@@ -2004,6 +2014,7 @@ class PrivateCertificate(
|
|
|
2004
2014
|
account: typing.Optional[builtins.str] = None,
|
|
2005
2015
|
color: typing.Optional[builtins.str] = None,
|
|
2006
2016
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2017
|
+
id: typing.Optional[builtins.str] = None,
|
|
2007
2018
|
label: typing.Optional[builtins.str] = None,
|
|
2008
2019
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2009
2020
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2011,6 +2022,7 @@ class PrivateCertificate(
|
|
|
2011
2022
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2012
2023
|
statistic: typing.Optional[builtins.str] = None,
|
|
2013
2024
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2025
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2014
2026
|
) -> _Metric_e396a4dc:
|
|
2015
2027
|
'''Return the DaysToExpiry metric for this AWS Certificate Manager Certificate. By default, this is the minimum value over 1 day.
|
|
2016
2028
|
|
|
@@ -2021,6 +2033,7 @@ class PrivateCertificate(
|
|
|
2021
2033
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2022
2034
|
: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
|
|
2023
2035
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2036
|
+
: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
|
|
2024
2037
|
: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
|
|
2025
2038
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2026
2039
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2028,11 +2041,13 @@ class PrivateCertificate(
|
|
|
2028
2041
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2029
2042
|
: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
|
|
2030
2043
|
: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
|
|
2044
|
+
: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
|
|
2031
2045
|
'''
|
|
2032
2046
|
props = _MetricOptions_1788b62f(
|
|
2033
2047
|
account=account,
|
|
2034
2048
|
color=color,
|
|
2035
2049
|
dimensions_map=dimensions_map,
|
|
2050
|
+
id=id,
|
|
2036
2051
|
label=label,
|
|
2037
2052
|
period=period,
|
|
2038
2053
|
region=region,
|
|
@@ -2040,6 +2055,7 @@ class PrivateCertificate(
|
|
|
2040
2055
|
stack_region=stack_region,
|
|
2041
2056
|
statistic=statistic,
|
|
2042
2057
|
unit=unit,
|
|
2058
|
+
visible=visible,
|
|
2043
2059
|
)
|
|
2044
2060
|
|
|
2045
2061
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDaysToExpiry", [props]))
|
|
@@ -2284,6 +2300,7 @@ class Certificate(
|
|
|
2284
2300
|
account: typing.Optional[builtins.str] = None,
|
|
2285
2301
|
color: typing.Optional[builtins.str] = None,
|
|
2286
2302
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2303
|
+
id: typing.Optional[builtins.str] = None,
|
|
2287
2304
|
label: typing.Optional[builtins.str] = None,
|
|
2288
2305
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2289
2306
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2291,6 +2308,7 @@ class Certificate(
|
|
|
2291
2308
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2292
2309
|
statistic: typing.Optional[builtins.str] = None,
|
|
2293
2310
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2311
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2294
2312
|
) -> _Metric_e396a4dc:
|
|
2295
2313
|
'''Return the DaysToExpiry metric for this AWS Certificate Manager Certificate. By default, this is the minimum value over 1 day.
|
|
2296
2314
|
|
|
@@ -2301,6 +2319,7 @@ class Certificate(
|
|
|
2301
2319
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2302
2320
|
: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
|
|
2303
2321
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2322
|
+
: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
|
|
2304
2323
|
: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
|
|
2305
2324
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2306
2325
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2308,11 +2327,13 @@ class Certificate(
|
|
|
2308
2327
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2309
2328
|
: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
|
|
2310
2329
|
: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
|
|
2330
|
+
: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
|
|
2311
2331
|
'''
|
|
2312
2332
|
props = _MetricOptions_1788b62f(
|
|
2313
2333
|
account=account,
|
|
2314
2334
|
color=color,
|
|
2315
2335
|
dimensions_map=dimensions_map,
|
|
2336
|
+
id=id,
|
|
2316
2337
|
label=label,
|
|
2317
2338
|
period=period,
|
|
2318
2339
|
region=region,
|
|
@@ -2320,6 +2341,7 @@ class Certificate(
|
|
|
2320
2341
|
stack_region=stack_region,
|
|
2321
2342
|
statistic=statistic,
|
|
2322
2343
|
unit=unit,
|
|
2344
|
+
visible=visible,
|
|
2323
2345
|
)
|
|
2324
2346
|
|
|
2325
2347
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDaysToExpiry", [props]))
|
|
@@ -2472,6 +2494,7 @@ class DnsValidatedCertificate(
|
|
|
2472
2494
|
account: typing.Optional[builtins.str] = None,
|
|
2473
2495
|
color: typing.Optional[builtins.str] = None,
|
|
2474
2496
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2497
|
+
id: typing.Optional[builtins.str] = None,
|
|
2475
2498
|
label: typing.Optional[builtins.str] = None,
|
|
2476
2499
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
2477
2500
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2479,6 +2502,7 @@ class DnsValidatedCertificate(
|
|
|
2479
2502
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2480
2503
|
statistic: typing.Optional[builtins.str] = None,
|
|
2481
2504
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
2505
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2482
2506
|
) -> _Metric_e396a4dc:
|
|
2483
2507
|
'''(deprecated) Return the DaysToExpiry metric for this AWS Certificate Manager Certificate. By default, this is the minimum value over 1 day.
|
|
2484
2508
|
|
|
@@ -2489,6 +2513,7 @@ class DnsValidatedCertificate(
|
|
|
2489
2513
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2490
2514
|
: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
|
|
2491
2515
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2516
|
+
: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
|
|
2492
2517
|
: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
|
|
2493
2518
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2494
2519
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2496,6 +2521,7 @@ class DnsValidatedCertificate(
|
|
|
2496
2521
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2497
2522
|
: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
|
|
2498
2523
|
: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
|
|
2524
|
+
: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
|
|
2499
2525
|
|
|
2500
2526
|
:stability: deprecated
|
|
2501
2527
|
'''
|
|
@@ -2503,6 +2529,7 @@ class DnsValidatedCertificate(
|
|
|
2503
2529
|
account=account,
|
|
2504
2530
|
color=color,
|
|
2505
2531
|
dimensions_map=dimensions_map,
|
|
2532
|
+
id=id,
|
|
2506
2533
|
label=label,
|
|
2507
2534
|
period=period,
|
|
2508
2535
|
region=region,
|
|
@@ -2510,6 +2537,7 @@ class DnsValidatedCertificate(
|
|
|
2510
2537
|
stack_region=stack_region,
|
|
2511
2538
|
statistic=statistic,
|
|
2512
2539
|
unit=unit,
|
|
2540
|
+
visible=visible,
|
|
2513
2541
|
)
|
|
2514
2542
|
|
|
2515
2543
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDaysToExpiry", [props]))
|