aws-cdk-lib 2.216.0__py3-none-any.whl → 2.217.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 +60 -28
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.216.0.jsii.tgz → aws-cdk-lib@2.217.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amplify/__init__.py +8 -8
- aws_cdk/aws_apigateway/__init__.py +26 -6
- aws_cdk/aws_apigatewayv2/__init__.py +2 -2
- aws_cdk/aws_appmesh/__init__.py +12 -12
- aws_cdk/aws_appstream/__init__.py +14 -4
- aws_cdk/aws_appsync/__init__.py +3 -3
- aws_cdk/aws_aps/__init__.py +459 -0
- aws_cdk/aws_batch/__init__.py +6 -2
- aws_cdk/aws_bedrock/__init__.py +132 -0
- aws_cdk/aws_bedrockagentcore/__init__.py +3178 -0
- aws_cdk/aws_certificatemanager/__init__.py +9 -10
- aws_cdk/aws_cleanrooms/__init__.py +163 -0
- aws_cdk/aws_cloudformation/__init__.py +14 -14
- aws_cdk/aws_cloudfront/__init__.py +12 -8
- aws_cdk/aws_cognito/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +138 -10
- aws_cdk/aws_cur/__init__.py +57 -3
- aws_cdk/aws_datasync/__init__.py +351 -0
- aws_cdk/aws_datazone/__init__.py +675 -2
- aws_cdk/aws_dynamodb/__init__.py +123 -0
- aws_cdk/aws_ec2/__init__.py +55 -10
- aws_cdk/aws_ecs/__init__.py +55 -12
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +48 -0
- aws_cdk/aws_elasticsearch/__init__.py +2 -2
- aws_cdk/aws_evs/__init__.py +58 -4
- aws_cdk/aws_gamelift/__init__.py +72 -56
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iotcoredeviceadvisor/__init__.py +35 -38
- aws_cdk/aws_iotsitewise/__init__.py +75 -111
- aws_cdk/aws_kms/__init__.py +10 -2
- aws_cdk/aws_lambda/__init__.py +46 -0
- aws_cdk/aws_medialive/__init__.py +127 -0
- aws_cdk/aws_mediapackage/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +10 -10
- aws_cdk/aws_networkmanager/__init__.py +63 -0
- aws_cdk/aws_odb/__init__.py +2082 -195
- aws_cdk/aws_omics/__init__.py +1414 -171
- aws_cdk/aws_opensearchserverless/__init__.py +164 -21
- aws_cdk/aws_opensearchservice/__init__.py +5 -4
- aws_cdk/aws_pcs/__init__.py +9 -9
- aws_cdk/aws_quicksight/__init__.py +295 -3
- aws_cdk/aws_rds/__init__.py +338 -58
- aws_cdk/aws_sagemaker/__init__.py +251 -1
- aws_cdk/aws_servicecatalog/__init__.py +162 -154
- aws_cdk/aws_smsvoice/__init__.py +5218 -0
- aws_cdk/aws_transfer/__init__.py +13 -12
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -1
- aws_cdk/aws_workspacesinstances/__init__.py +641 -2
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/RECORD +58 -56
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_dynamodb/__init__.py
CHANGED
|
@@ -1528,6 +1528,8 @@ class CapacityMode(enum.Enum):
|
|
|
1528
1528
|
"replicas": "replicas",
|
|
1529
1529
|
"billing_mode": "billingMode",
|
|
1530
1530
|
"global_secondary_indexes": "globalSecondaryIndexes",
|
|
1531
|
+
"global_table_settings_replication_mode": "globalTableSettingsReplicationMode",
|
|
1532
|
+
"global_table_source_arn": "globalTableSourceArn",
|
|
1531
1533
|
"global_table_witnesses": "globalTableWitnesses",
|
|
1532
1534
|
"local_secondary_indexes": "localSecondaryIndexes",
|
|
1533
1535
|
"multi_region_consistency": "multiRegionConsistency",
|
|
@@ -1549,6 +1551,8 @@ class CfnGlobalTableProps:
|
|
|
1549
1551
|
replicas: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnGlobalTable.ReplicaSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
1550
1552
|
billing_mode: typing.Optional[builtins.str] = None,
|
|
1551
1553
|
global_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnGlobalTable.GlobalSecondaryIndexProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1554
|
+
global_table_settings_replication_mode: typing.Optional[builtins.str] = None,
|
|
1555
|
+
global_table_source_arn: typing.Optional[builtins.str] = None,
|
|
1552
1556
|
global_table_witnesses: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnGlobalTable.GlobalTableWitnessProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1553
1557
|
local_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnGlobalTable.LocalSecondaryIndexProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1554
1558
|
multi_region_consistency: typing.Optional[builtins.str] = None,
|
|
@@ -1567,6 +1571,8 @@ class CfnGlobalTableProps:
|
|
|
1567
1571
|
:param replicas: Specifies the list of replicas for your global table. The list must contain at least one element, the region where the stack defining the global table is deployed. For example, if you define your table in a stack deployed to us-east-1, you must have an entry in ``Replicas`` with the region us-east-1. You cannot remove the replica in the stack region. .. epigraph:: Adding a replica might take a few minutes for an empty table, or up to several hours for large tables. If you want to add or remove a replica, we recommend submitting an ``UpdateStack`` operation containing only that change. If you add or delete a replica during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new replica, you might need to manually delete the replica. You can create a new global table with as many replicas as needed. You can add or remove replicas after table creation, but you can only add or remove a single replica in each update. For Multi-Region Strong Consistency (MRSC), you can add or remove up to 3 replicas, or 2 replicas plus a witness Region.
|
|
1568
1572
|
:param billing_mode: Specifies how you are charged for read and write throughput and how you manage capacity. Valid values are:. - ``PAY_PER_REQUEST`` - ``PROVISIONED`` All replicas in your global table will have the same billing mode. If you use ``PROVISIONED`` billing mode, you must provide an auto scaling configuration via the ``WriteProvisionedThroughputSettings`` property. The default value of this property is ``PROVISIONED`` .
|
|
1569
1573
|
:param global_secondary_indexes: Global secondary indexes to be created on the global table. You can create up to 20 global secondary indexes. Each replica in your global table will have the same global secondary index settings. You can only create or delete one global secondary index in a single stack operation. Since the backfilling of an index could take a long time, CloudFormation does not wait for the index to become active. If a stack operation rolls back, CloudFormation might not delete an index that has been added. In that case, you will need to delete the index manually.
|
|
1574
|
+
:param global_table_settings_replication_mode:
|
|
1575
|
+
:param global_table_source_arn:
|
|
1570
1576
|
:param global_table_witnesses: The list of witnesses of the MRSC global table. Only one witness Region can be configured per MRSC global table.
|
|
1571
1577
|
:param local_secondary_indexes: Local secondary indexes to be created on the table. You can create up to five local secondary indexes. Each index is scoped to a given hash key value. The size of each hash key can be up to 10 gigabytes. Each replica in your global table will have the same local secondary index settings.
|
|
1572
1578
|
:param multi_region_consistency: Specifies the consistency mode for a new global table. You can specify one of the following consistency modes: - ``EVENTUAL`` : Configures a new global table for multi-Region eventual consistency (MREC). - ``STRONG`` : Configures a new global table for multi-Region strong consistency (MRSC). If you don't specify this field, the global table consistency mode defaults to ``EVENTUAL`` . For more information about global tables consistency modes, see `Consistency modes <https://docs.aws.amazon.com/V2globaltables_HowItWorks.html#V2globaltables_HowItWorks.consistency-modes>`_ in DynamoDB developer guide.
|
|
@@ -1729,6 +1735,8 @@ class CfnGlobalTableProps:
|
|
|
1729
1735
|
)
|
|
1730
1736
|
)
|
|
1731
1737
|
)],
|
|
1738
|
+
global_table_settings_replication_mode="globalTableSettingsReplicationMode",
|
|
1739
|
+
global_table_source_arn="globalTableSourceArn",
|
|
1732
1740
|
global_table_witnesses=[dynamodb.CfnGlobalTable.GlobalTableWitnessProperty(
|
|
1733
1741
|
region="region"
|
|
1734
1742
|
)],
|
|
@@ -1793,6 +1801,8 @@ class CfnGlobalTableProps:
|
|
|
1793
1801
|
check_type(argname="argument replicas", value=replicas, expected_type=type_hints["replicas"])
|
|
1794
1802
|
check_type(argname="argument billing_mode", value=billing_mode, expected_type=type_hints["billing_mode"])
|
|
1795
1803
|
check_type(argname="argument global_secondary_indexes", value=global_secondary_indexes, expected_type=type_hints["global_secondary_indexes"])
|
|
1804
|
+
check_type(argname="argument global_table_settings_replication_mode", value=global_table_settings_replication_mode, expected_type=type_hints["global_table_settings_replication_mode"])
|
|
1805
|
+
check_type(argname="argument global_table_source_arn", value=global_table_source_arn, expected_type=type_hints["global_table_source_arn"])
|
|
1796
1806
|
check_type(argname="argument global_table_witnesses", value=global_table_witnesses, expected_type=type_hints["global_table_witnesses"])
|
|
1797
1807
|
check_type(argname="argument local_secondary_indexes", value=local_secondary_indexes, expected_type=type_hints["local_secondary_indexes"])
|
|
1798
1808
|
check_type(argname="argument multi_region_consistency", value=multi_region_consistency, expected_type=type_hints["multi_region_consistency"])
|
|
@@ -1812,6 +1822,10 @@ class CfnGlobalTableProps:
|
|
|
1812
1822
|
self._values["billing_mode"] = billing_mode
|
|
1813
1823
|
if global_secondary_indexes is not None:
|
|
1814
1824
|
self._values["global_secondary_indexes"] = global_secondary_indexes
|
|
1825
|
+
if global_table_settings_replication_mode is not None:
|
|
1826
|
+
self._values["global_table_settings_replication_mode"] = global_table_settings_replication_mode
|
|
1827
|
+
if global_table_source_arn is not None:
|
|
1828
|
+
self._values["global_table_source_arn"] = global_table_source_arn
|
|
1815
1829
|
if global_table_witnesses is not None:
|
|
1816
1830
|
self._values["global_table_witnesses"] = global_table_witnesses
|
|
1817
1831
|
if local_secondary_indexes is not None:
|
|
@@ -1909,6 +1923,22 @@ class CfnGlobalTableProps:
|
|
|
1909
1923
|
result = self._values.get("global_secondary_indexes")
|
|
1910
1924
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnGlobalTable.GlobalSecondaryIndexProperty"]]]], result)
|
|
1911
1925
|
|
|
1926
|
+
@builtins.property
|
|
1927
|
+
def global_table_settings_replication_mode(self) -> typing.Optional[builtins.str]:
|
|
1928
|
+
'''
|
|
1929
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-globaltablesettingsreplicationmode
|
|
1930
|
+
'''
|
|
1931
|
+
result = self._values.get("global_table_settings_replication_mode")
|
|
1932
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1933
|
+
|
|
1934
|
+
@builtins.property
|
|
1935
|
+
def global_table_source_arn(self) -> typing.Optional[builtins.str]:
|
|
1936
|
+
'''
|
|
1937
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-globaltablesourcearn
|
|
1938
|
+
'''
|
|
1939
|
+
result = self._values.get("global_table_source_arn")
|
|
1940
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1941
|
+
|
|
1912
1942
|
@builtins.property
|
|
1913
1943
|
def global_table_witnesses(
|
|
1914
1944
|
self,
|
|
@@ -2065,6 +2095,7 @@ class CfnGlobalTableProps:
|
|
|
2065
2095
|
"contributor_insights_specification": "contributorInsightsSpecification",
|
|
2066
2096
|
"deletion_protection_enabled": "deletionProtectionEnabled",
|
|
2067
2097
|
"global_secondary_indexes": "globalSecondaryIndexes",
|
|
2098
|
+
"global_table_settings_replication_mode": "globalTableSettingsReplicationMode",
|
|
2068
2099
|
"import_source_specification": "importSourceSpecification",
|
|
2069
2100
|
"kinesis_stream_specification": "kinesisStreamSpecification",
|
|
2070
2101
|
"local_secondary_indexes": "localSecondaryIndexes",
|
|
@@ -2091,6 +2122,7 @@ class CfnTableProps:
|
|
|
2091
2122
|
contributor_insights_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.ContributorInsightsSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2092
2123
|
deletion_protection_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2093
2124
|
global_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.GlobalSecondaryIndexProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2125
|
+
global_table_settings_replication_mode: typing.Optional[builtins.str] = None,
|
|
2094
2126
|
import_source_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.ImportSourceSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2095
2127
|
kinesis_stream_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.KinesisStreamSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2096
2128
|
local_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.LocalSecondaryIndexProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -2114,6 +2146,7 @@ class CfnTableProps:
|
|
|
2114
2146
|
:param contributor_insights_specification: The settings used to specify whether to enable CloudWatch Contributor Insights for the table and define which events to monitor.
|
|
2115
2147
|
:param deletion_protection_enabled: Determines if a table is protected from deletion. When enabled, the table cannot be deleted by any user or process. This setting is disabled by default. For more information, see `Using deletion protection <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.Basics.html#WorkingWithTables.Basics.DeletionProtection>`_ in the *Amazon DynamoDB Developer Guide* .
|
|
2116
2148
|
:param global_secondary_indexes: Global secondary indexes to be created on the table. You can create up to 20 global secondary indexes. .. epigraph:: If you update a table to include a new global secondary index, AWS CloudFormation initiates the index creation and then proceeds with the stack update. AWS CloudFormation doesn't wait for the index to complete creation because the backfilling phase can take a long time, depending on the size of the table. You can't use the index or update the table until the index's status is ``ACTIVE`` . You can track its status by using the DynamoDB `DescribeTable <https://docs.aws.amazon.com/cli/latest/reference/dynamodb/describe-table.html>`_ command. If you add or delete an index during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new index, you must manually delete the index. Updates are not supported. The following are exceptions: - If you update either the contributor insights specification or the provisioned throughput values of global secondary indexes, you can update the table without interruption. - You can delete or add one global secondary index without interruption. If you do both in the same update (for example, by changing the index's logical ID), the update fails.
|
|
2149
|
+
:param global_table_settings_replication_mode:
|
|
2117
2150
|
:param import_source_specification: Specifies the properties of data being imported from the S3 bucket source to the" table. .. epigraph:: If you specify the ``ImportSourceSpecification`` property, and also specify either the ``StreamSpecification`` , the ``TableClass`` property, the ``DeletionProtectionEnabled`` property, or the ``WarmThroughput`` property, the IAM entity creating/updating stack must have ``UpdateTable`` permission.
|
|
2118
2151
|
:param kinesis_stream_specification: The Kinesis Data Streams configuration for the specified table.
|
|
2119
2152
|
:param local_secondary_indexes: Local secondary indexes to be created on the table. You can create up to 5 local secondary indexes. Each index is scoped to a given hash key value. The size of each hash key can be up to 10 gigabytes.
|
|
@@ -2190,6 +2223,7 @@ class CfnTableProps:
|
|
|
2190
2223
|
write_units_per_second=123
|
|
2191
2224
|
)
|
|
2192
2225
|
)],
|
|
2226
|
+
global_table_settings_replication_mode="globalTableSettingsReplicationMode",
|
|
2193
2227
|
import_source_specification=dynamodb.CfnTable.ImportSourceSpecificationProperty(
|
|
2194
2228
|
input_format="inputFormat",
|
|
2195
2229
|
s3_bucket_source=dynamodb.CfnTable.S3BucketSourceProperty(
|
|
@@ -2282,6 +2316,7 @@ class CfnTableProps:
|
|
|
2282
2316
|
check_type(argname="argument contributor_insights_specification", value=contributor_insights_specification, expected_type=type_hints["contributor_insights_specification"])
|
|
2283
2317
|
check_type(argname="argument deletion_protection_enabled", value=deletion_protection_enabled, expected_type=type_hints["deletion_protection_enabled"])
|
|
2284
2318
|
check_type(argname="argument global_secondary_indexes", value=global_secondary_indexes, expected_type=type_hints["global_secondary_indexes"])
|
|
2319
|
+
check_type(argname="argument global_table_settings_replication_mode", value=global_table_settings_replication_mode, expected_type=type_hints["global_table_settings_replication_mode"])
|
|
2285
2320
|
check_type(argname="argument import_source_specification", value=import_source_specification, expected_type=type_hints["import_source_specification"])
|
|
2286
2321
|
check_type(argname="argument kinesis_stream_specification", value=kinesis_stream_specification, expected_type=type_hints["kinesis_stream_specification"])
|
|
2287
2322
|
check_type(argname="argument local_secondary_indexes", value=local_secondary_indexes, expected_type=type_hints["local_secondary_indexes"])
|
|
@@ -2309,6 +2344,8 @@ class CfnTableProps:
|
|
|
2309
2344
|
self._values["deletion_protection_enabled"] = deletion_protection_enabled
|
|
2310
2345
|
if global_secondary_indexes is not None:
|
|
2311
2346
|
self._values["global_secondary_indexes"] = global_secondary_indexes
|
|
2347
|
+
if global_table_settings_replication_mode is not None:
|
|
2348
|
+
self._values["global_table_settings_replication_mode"] = global_table_settings_replication_mode
|
|
2312
2349
|
if import_source_specification is not None:
|
|
2313
2350
|
self._values["import_source_specification"] = import_source_specification
|
|
2314
2351
|
if kinesis_stream_specification is not None:
|
|
@@ -2429,6 +2466,14 @@ class CfnTableProps:
|
|
|
2429
2466
|
result = self._values.get("global_secondary_indexes")
|
|
2430
2467
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTable.GlobalSecondaryIndexProperty"]]]], result)
|
|
2431
2468
|
|
|
2469
|
+
@builtins.property
|
|
2470
|
+
def global_table_settings_replication_mode(self) -> typing.Optional[builtins.str]:
|
|
2471
|
+
'''
|
|
2472
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-globaltablesettingsreplicationmode
|
|
2473
|
+
'''
|
|
2474
|
+
result = self._values.get("global_table_settings_replication_mode")
|
|
2475
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2476
|
+
|
|
2432
2477
|
@builtins.property
|
|
2433
2478
|
def import_source_specification(
|
|
2434
2479
|
self,
|
|
@@ -10511,6 +10556,8 @@ class CfnGlobalTable(
|
|
|
10511
10556
|
)
|
|
10512
10557
|
)
|
|
10513
10558
|
)],
|
|
10559
|
+
global_table_settings_replication_mode="globalTableSettingsReplicationMode",
|
|
10560
|
+
global_table_source_arn="globalTableSourceArn",
|
|
10514
10561
|
global_table_witnesses=[dynamodb.CfnGlobalTable.GlobalTableWitnessProperty(
|
|
10515
10562
|
region="region"
|
|
10516
10563
|
)],
|
|
@@ -10579,6 +10626,8 @@ class CfnGlobalTable(
|
|
|
10579
10626
|
replicas: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnGlobalTable.ReplicaSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
10580
10627
|
billing_mode: typing.Optional[builtins.str] = None,
|
|
10581
10628
|
global_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnGlobalTable.GlobalSecondaryIndexProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10629
|
+
global_table_settings_replication_mode: typing.Optional[builtins.str] = None,
|
|
10630
|
+
global_table_source_arn: typing.Optional[builtins.str] = None,
|
|
10582
10631
|
global_table_witnesses: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnGlobalTable.GlobalTableWitnessProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10583
10632
|
local_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnGlobalTable.LocalSecondaryIndexProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10584
10633
|
multi_region_consistency: typing.Optional[builtins.str] = None,
|
|
@@ -10598,6 +10647,8 @@ class CfnGlobalTable(
|
|
|
10598
10647
|
:param replicas: Specifies the list of replicas for your global table. The list must contain at least one element, the region where the stack defining the global table is deployed. For example, if you define your table in a stack deployed to us-east-1, you must have an entry in ``Replicas`` with the region us-east-1. You cannot remove the replica in the stack region. .. epigraph:: Adding a replica might take a few minutes for an empty table, or up to several hours for large tables. If you want to add or remove a replica, we recommend submitting an ``UpdateStack`` operation containing only that change. If you add or delete a replica during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new replica, you might need to manually delete the replica. You can create a new global table with as many replicas as needed. You can add or remove replicas after table creation, but you can only add or remove a single replica in each update. For Multi-Region Strong Consistency (MRSC), you can add or remove up to 3 replicas, or 2 replicas plus a witness Region.
|
|
10599
10648
|
:param billing_mode: Specifies how you are charged for read and write throughput and how you manage capacity. Valid values are:. - ``PAY_PER_REQUEST`` - ``PROVISIONED`` All replicas in your global table will have the same billing mode. If you use ``PROVISIONED`` billing mode, you must provide an auto scaling configuration via the ``WriteProvisionedThroughputSettings`` property. The default value of this property is ``PROVISIONED`` .
|
|
10600
10649
|
:param global_secondary_indexes: Global secondary indexes to be created on the global table. You can create up to 20 global secondary indexes. Each replica in your global table will have the same global secondary index settings. You can only create or delete one global secondary index in a single stack operation. Since the backfilling of an index could take a long time, CloudFormation does not wait for the index to become active. If a stack operation rolls back, CloudFormation might not delete an index that has been added. In that case, you will need to delete the index manually.
|
|
10650
|
+
:param global_table_settings_replication_mode:
|
|
10651
|
+
:param global_table_source_arn:
|
|
10601
10652
|
:param global_table_witnesses: The list of witnesses of the MRSC global table. Only one witness Region can be configured per MRSC global table.
|
|
10602
10653
|
:param local_secondary_indexes: Local secondary indexes to be created on the table. You can create up to five local secondary indexes. Each index is scoped to a given hash key value. The size of each hash key can be up to 10 gigabytes. Each replica in your global table will have the same local secondary index settings.
|
|
10603
10654
|
:param multi_region_consistency: Specifies the consistency mode for a new global table. You can specify one of the following consistency modes: - ``EVENTUAL`` : Configures a new global table for multi-Region eventual consistency (MREC). - ``STRONG`` : Configures a new global table for multi-Region strong consistency (MRSC). If you don't specify this field, the global table consistency mode defaults to ``EVENTUAL`` . For more information about global tables consistency modes, see `Consistency modes <https://docs.aws.amazon.com/V2globaltables_HowItWorks.html#V2globaltables_HowItWorks.consistency-modes>`_ in DynamoDB developer guide.
|
|
@@ -10619,6 +10670,8 @@ class CfnGlobalTable(
|
|
|
10619
10670
|
replicas=replicas,
|
|
10620
10671
|
billing_mode=billing_mode,
|
|
10621
10672
|
global_secondary_indexes=global_secondary_indexes,
|
|
10673
|
+
global_table_settings_replication_mode=global_table_settings_replication_mode,
|
|
10674
|
+
global_table_source_arn=global_table_source_arn,
|
|
10622
10675
|
global_table_witnesses=global_table_witnesses,
|
|
10623
10676
|
local_secondary_indexes=local_secondary_indexes,
|
|
10624
10677
|
multi_region_consistency=multi_region_consistency,
|
|
@@ -10797,6 +10850,33 @@ class CfnGlobalTable(
|
|
|
10797
10850
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
10798
10851
|
jsii.set(self, "globalSecondaryIndexes", value) # pyright: ignore[reportArgumentType]
|
|
10799
10852
|
|
|
10853
|
+
@builtins.property
|
|
10854
|
+
@jsii.member(jsii_name="globalTableSettingsReplicationMode")
|
|
10855
|
+
def global_table_settings_replication_mode(self) -> typing.Optional[builtins.str]:
|
|
10856
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "globalTableSettingsReplicationMode"))
|
|
10857
|
+
|
|
10858
|
+
@global_table_settings_replication_mode.setter
|
|
10859
|
+
def global_table_settings_replication_mode(
|
|
10860
|
+
self,
|
|
10861
|
+
value: typing.Optional[builtins.str],
|
|
10862
|
+
) -> None:
|
|
10863
|
+
if __debug__:
|
|
10864
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7075d72ca27b36654b7a5e5c93fa5400bb9ed8ec640703134ddb5bd29f15b566)
|
|
10865
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
10866
|
+
jsii.set(self, "globalTableSettingsReplicationMode", value) # pyright: ignore[reportArgumentType]
|
|
10867
|
+
|
|
10868
|
+
@builtins.property
|
|
10869
|
+
@jsii.member(jsii_name="globalTableSourceArn")
|
|
10870
|
+
def global_table_source_arn(self) -> typing.Optional[builtins.str]:
|
|
10871
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "globalTableSourceArn"))
|
|
10872
|
+
|
|
10873
|
+
@global_table_source_arn.setter
|
|
10874
|
+
def global_table_source_arn(self, value: typing.Optional[builtins.str]) -> None:
|
|
10875
|
+
if __debug__:
|
|
10876
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b7289daf8c207efd37cb3d7fa1fd9c044421e2990cb9ec991503208d45d34503)
|
|
10877
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
10878
|
+
jsii.set(self, "globalTableSourceArn", value) # pyright: ignore[reportArgumentType]
|
|
10879
|
+
|
|
10800
10880
|
@builtins.property
|
|
10801
10881
|
@jsii.member(jsii_name="globalTableWitnesses")
|
|
10802
10882
|
def global_table_witnesses(
|
|
@@ -13399,6 +13479,7 @@ class CfnTable(
|
|
|
13399
13479
|
write_units_per_second=123
|
|
13400
13480
|
)
|
|
13401
13481
|
)],
|
|
13482
|
+
global_table_settings_replication_mode="globalTableSettingsReplicationMode",
|
|
13402
13483
|
import_source_specification=dynamodb.CfnTable.ImportSourceSpecificationProperty(
|
|
13403
13484
|
input_format="inputFormat",
|
|
13404
13485
|
s3_bucket_source=dynamodb.CfnTable.S3BucketSourceProperty(
|
|
@@ -13495,6 +13576,7 @@ class CfnTable(
|
|
|
13495
13576
|
contributor_insights_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.ContributorInsightsSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
13496
13577
|
deletion_protection_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
13497
13578
|
global_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.GlobalSecondaryIndexProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
13579
|
+
global_table_settings_replication_mode: typing.Optional[builtins.str] = None,
|
|
13498
13580
|
import_source_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.ImportSourceSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
13499
13581
|
kinesis_stream_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.KinesisStreamSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
13500
13582
|
local_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.LocalSecondaryIndexProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -13519,6 +13601,7 @@ class CfnTable(
|
|
|
13519
13601
|
:param contributor_insights_specification: The settings used to specify whether to enable CloudWatch Contributor Insights for the table and define which events to monitor.
|
|
13520
13602
|
:param deletion_protection_enabled: Determines if a table is protected from deletion. When enabled, the table cannot be deleted by any user or process. This setting is disabled by default. For more information, see `Using deletion protection <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.Basics.html#WorkingWithTables.Basics.DeletionProtection>`_ in the *Amazon DynamoDB Developer Guide* .
|
|
13521
13603
|
:param global_secondary_indexes: Global secondary indexes to be created on the table. You can create up to 20 global secondary indexes. .. epigraph:: If you update a table to include a new global secondary index, AWS CloudFormation initiates the index creation and then proceeds with the stack update. AWS CloudFormation doesn't wait for the index to complete creation because the backfilling phase can take a long time, depending on the size of the table. You can't use the index or update the table until the index's status is ``ACTIVE`` . You can track its status by using the DynamoDB `DescribeTable <https://docs.aws.amazon.com/cli/latest/reference/dynamodb/describe-table.html>`_ command. If you add or delete an index during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new index, you must manually delete the index. Updates are not supported. The following are exceptions: - If you update either the contributor insights specification or the provisioned throughput values of global secondary indexes, you can update the table without interruption. - You can delete or add one global secondary index without interruption. If you do both in the same update (for example, by changing the index's logical ID), the update fails.
|
|
13604
|
+
:param global_table_settings_replication_mode:
|
|
13522
13605
|
:param import_source_specification: Specifies the properties of data being imported from the S3 bucket source to the" table. .. epigraph:: If you specify the ``ImportSourceSpecification`` property, and also specify either the ``StreamSpecification`` , the ``TableClass`` property, the ``DeletionProtectionEnabled`` property, or the ``WarmThroughput`` property, the IAM entity creating/updating stack must have ``UpdateTable`` permission.
|
|
13523
13606
|
:param kinesis_stream_specification: The Kinesis Data Streams configuration for the specified table.
|
|
13524
13607
|
:param local_secondary_indexes: Local secondary indexes to be created on the table. You can create up to 5 local secondary indexes. Each index is scoped to a given hash key value. The size of each hash key can be up to 10 gigabytes.
|
|
@@ -13545,6 +13628,7 @@ class CfnTable(
|
|
|
13545
13628
|
contributor_insights_specification=contributor_insights_specification,
|
|
13546
13629
|
deletion_protection_enabled=deletion_protection_enabled,
|
|
13547
13630
|
global_secondary_indexes=global_secondary_indexes,
|
|
13631
|
+
global_table_settings_replication_mode=global_table_settings_replication_mode,
|
|
13548
13632
|
import_source_specification=import_source_specification,
|
|
13549
13633
|
kinesis_stream_specification=kinesis_stream_specification,
|
|
13550
13634
|
local_secondary_indexes=local_secondary_indexes,
|
|
@@ -13738,6 +13822,21 @@ class CfnTable(
|
|
|
13738
13822
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
13739
13823
|
jsii.set(self, "globalSecondaryIndexes", value) # pyright: ignore[reportArgumentType]
|
|
13740
13824
|
|
|
13825
|
+
@builtins.property
|
|
13826
|
+
@jsii.member(jsii_name="globalTableSettingsReplicationMode")
|
|
13827
|
+
def global_table_settings_replication_mode(self) -> typing.Optional[builtins.str]:
|
|
13828
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "globalTableSettingsReplicationMode"))
|
|
13829
|
+
|
|
13830
|
+
@global_table_settings_replication_mode.setter
|
|
13831
|
+
def global_table_settings_replication_mode(
|
|
13832
|
+
self,
|
|
13833
|
+
value: typing.Optional[builtins.str],
|
|
13834
|
+
) -> None:
|
|
13835
|
+
if __debug__:
|
|
13836
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1d34e371f6d71983fa9056340ded9469b96339ea1a61a0d683e413cdadd07542)
|
|
13837
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
13838
|
+
jsii.set(self, "globalTableSettingsReplicationMode", value) # pyright: ignore[reportArgumentType]
|
|
13839
|
+
|
|
13741
13840
|
@builtins.property
|
|
13742
13841
|
@jsii.member(jsii_name="importSourceSpecification")
|
|
13743
13842
|
def import_source_specification(
|
|
@@ -17384,6 +17483,8 @@ def _typecheckingstub__ca0383ad91536c26961e85e52a3e6a3d2d74db3c4d430cbbe3d9f42e2
|
|
|
17384
17483
|
replicas: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalTable.ReplicaSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
17385
17484
|
billing_mode: typing.Optional[builtins.str] = None,
|
|
17386
17485
|
global_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalTable.GlobalSecondaryIndexProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
17486
|
+
global_table_settings_replication_mode: typing.Optional[builtins.str] = None,
|
|
17487
|
+
global_table_source_arn: typing.Optional[builtins.str] = None,
|
|
17387
17488
|
global_table_witnesses: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalTable.GlobalTableWitnessProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
17388
17489
|
local_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalTable.LocalSecondaryIndexProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
17389
17490
|
multi_region_consistency: typing.Optional[builtins.str] = None,
|
|
@@ -17406,6 +17507,7 @@ def _typecheckingstub__0b7f8e29621d526383ce725f2daafbe00b52cfe2381995edac86b72a6
|
|
|
17406
17507
|
contributor_insights_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ContributorInsightsSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17407
17508
|
deletion_protection_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17408
17509
|
global_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.GlobalSecondaryIndexProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
17510
|
+
global_table_settings_replication_mode: typing.Optional[builtins.str] = None,
|
|
17409
17511
|
import_source_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ImportSourceSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17410
17512
|
kinesis_stream_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.KinesisStreamSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17411
17513
|
local_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.LocalSecondaryIndexProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -18098,6 +18200,8 @@ def _typecheckingstub__751414def1994180982879a700bdaa6afcf528def91a672904946db1b
|
|
|
18098
18200
|
replicas: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalTable.ReplicaSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
18099
18201
|
billing_mode: typing.Optional[builtins.str] = None,
|
|
18100
18202
|
global_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalTable.GlobalSecondaryIndexProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
18203
|
+
global_table_settings_replication_mode: typing.Optional[builtins.str] = None,
|
|
18204
|
+
global_table_source_arn: typing.Optional[builtins.str] = None,
|
|
18101
18205
|
global_table_witnesses: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalTable.GlobalTableWitnessProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
18102
18206
|
local_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalTable.LocalSecondaryIndexProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
18103
18207
|
multi_region_consistency: typing.Optional[builtins.str] = None,
|
|
@@ -18154,6 +18258,18 @@ def _typecheckingstub__484436e7e1867a9d477f3fa0bdee0dfdfb2646ba7497c71d398076d98
|
|
|
18154
18258
|
"""Type checking stubs"""
|
|
18155
18259
|
pass
|
|
18156
18260
|
|
|
18261
|
+
def _typecheckingstub__7075d72ca27b36654b7a5e5c93fa5400bb9ed8ec640703134ddb5bd29f15b566(
|
|
18262
|
+
value: typing.Optional[builtins.str],
|
|
18263
|
+
) -> None:
|
|
18264
|
+
"""Type checking stubs"""
|
|
18265
|
+
pass
|
|
18266
|
+
|
|
18267
|
+
def _typecheckingstub__b7289daf8c207efd37cb3d7fa1fd9c044421e2990cb9ec991503208d45d34503(
|
|
18268
|
+
value: typing.Optional[builtins.str],
|
|
18269
|
+
) -> None:
|
|
18270
|
+
"""Type checking stubs"""
|
|
18271
|
+
pass
|
|
18272
|
+
|
|
18157
18273
|
def _typecheckingstub__12c424a307d05c5f02c5d3df3ad420cd4151741010ad7531cd1fdc24fa467f2a(
|
|
18158
18274
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnGlobalTable.GlobalTableWitnessProperty]]]],
|
|
18159
18275
|
) -> None:
|
|
@@ -18430,6 +18546,7 @@ def _typecheckingstub__9c4a83992df200bfde2ccfe129994eeacab105432a2509473861feb73
|
|
|
18430
18546
|
contributor_insights_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ContributorInsightsSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18431
18547
|
deletion_protection_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
18432
18548
|
global_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.GlobalSecondaryIndexProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
18549
|
+
global_table_settings_replication_mode: typing.Optional[builtins.str] = None,
|
|
18433
18550
|
import_source_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.ImportSourceSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18434
18551
|
kinesis_stream_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.KinesisStreamSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18435
18552
|
local_secondary_indexes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTable.LocalSecondaryIndexProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -18496,6 +18613,12 @@ def _typecheckingstub__97df696d6ba063acb98f58f09adb6516d0fc1d41d4d4a37c39f7ffac0
|
|
|
18496
18613
|
"""Type checking stubs"""
|
|
18497
18614
|
pass
|
|
18498
18615
|
|
|
18616
|
+
def _typecheckingstub__1d34e371f6d71983fa9056340ded9469b96339ea1a61a0d683e413cdadd07542(
|
|
18617
|
+
value: typing.Optional[builtins.str],
|
|
18618
|
+
) -> None:
|
|
18619
|
+
"""Type checking stubs"""
|
|
18620
|
+
pass
|
|
18621
|
+
|
|
18499
18622
|
def _typecheckingstub__61eb67e9e79c54ed8659ffe201d838bdf08b6b20da8fa03693734f4336da76c2(
|
|
18500
18623
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTable.ImportSourceSpecificationProperty]],
|
|
18501
18624
|
) -> None:
|
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -6872,7 +6872,7 @@ class CfnClientVpnEndpointProps:
|
|
|
6872
6872
|
|
|
6873
6873
|
:param authentication_options: Information about the authentication method to be used to authenticate clients.
|
|
6874
6874
|
:param connection_log_options: Information about the client connection logging options. If you enable client connection logging, data about client connections is sent to a Cloudwatch Logs log stream. The following information is logged: - Client connection requests - Client connection results (successful and unsuccessful) - Reasons for unsuccessful client connection requests - Client connection termination time
|
|
6875
|
-
:param server_certificate_arn: The ARN of the server certificate. For more information, see the `
|
|
6875
|
+
:param server_certificate_arn: The ARN of the server certificate. For more information, see the `Certificate Manager User Guide <https://docs.aws.amazon.com/acm/latest/userguide/>`_ .
|
|
6876
6876
|
:param client_cidr_block: The IPv4 address range, in CIDR notation, from which to assign client IP addresses. The address range cannot overlap with the local CIDR of the VPC in which the associated subnet is located, or the routes that you add manually. The address range cannot be changed after the Client VPN endpoint has been created. Client CIDR range must have a size of at least /22 and must not be greater than /12.
|
|
6877
6877
|
:param client_connect_options: The options for managing connection authorization for new client connections.
|
|
6878
6878
|
:param client_login_banner_options: Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.
|
|
@@ -7052,7 +7052,7 @@ class CfnClientVpnEndpointProps:
|
|
|
7052
7052
|
def server_certificate_arn(self) -> builtins.str:
|
|
7053
7053
|
'''The ARN of the server certificate.
|
|
7054
7054
|
|
|
7055
|
-
For more information, see the `
|
|
7055
|
+
For more information, see the `Certificate Manager User Guide <https://docs.aws.amazon.com/acm/latest/userguide/>`_ .
|
|
7056
7056
|
|
|
7057
7057
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-servercertificatearn
|
|
7058
7058
|
'''
|
|
@@ -13291,6 +13291,7 @@ class CfnNetworkInsightsPathProps:
|
|
|
13291
13291
|
"instance_id": "instanceId",
|
|
13292
13292
|
"network_interface_id": "networkInterfaceId",
|
|
13293
13293
|
"delete_on_termination": "deleteOnTermination",
|
|
13294
|
+
"ena_queue_count": "enaQueueCount",
|
|
13294
13295
|
"ena_srd_specification": "enaSrdSpecification",
|
|
13295
13296
|
},
|
|
13296
13297
|
)
|
|
@@ -13302,6 +13303,7 @@ class CfnNetworkInterfaceAttachmentProps:
|
|
|
13302
13303
|
instance_id: builtins.str,
|
|
13303
13304
|
network_interface_id: builtins.str,
|
|
13304
13305
|
delete_on_termination: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
13306
|
+
ena_queue_count: typing.Optional[jsii.Number] = None,
|
|
13305
13307
|
ena_srd_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnNetworkInterfaceAttachment.EnaSrdSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
13306
13308
|
) -> None:
|
|
13307
13309
|
'''Properties for defining a ``CfnNetworkInterfaceAttachment``.
|
|
@@ -13310,6 +13312,7 @@ class CfnNetworkInterfaceAttachmentProps:
|
|
|
13310
13312
|
:param instance_id: The ID of the instance to which you will attach the ENI.
|
|
13311
13313
|
:param network_interface_id: The ID of the ENI that you want to attach.
|
|
13312
13314
|
:param delete_on_termination: Whether to delete the network interface when the instance terminates. By default, this value is set to ``true`` . Default: - true
|
|
13315
|
+
:param ena_queue_count: The number of ENA queues created with the instance.
|
|
13313
13316
|
:param ena_srd_specification: Configures ENA Express for the network interface that this action attaches to the instance.
|
|
13314
13317
|
|
|
13315
13318
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html
|
|
@@ -13328,6 +13331,7 @@ class CfnNetworkInterfaceAttachmentProps:
|
|
|
13328
13331
|
|
|
13329
13332
|
# the properties below are optional
|
|
13330
13333
|
delete_on_termination=False,
|
|
13334
|
+
ena_queue_count=123,
|
|
13331
13335
|
ena_srd_specification=ec2.CfnNetworkInterfaceAttachment.EnaSrdSpecificationProperty(
|
|
13332
13336
|
ena_srd_enabled=False,
|
|
13333
13337
|
ena_srd_udp_specification=ec2.CfnNetworkInterfaceAttachment.EnaSrdUdpSpecificationProperty(
|
|
@@ -13342,6 +13346,7 @@ class CfnNetworkInterfaceAttachmentProps:
|
|
|
13342
13346
|
check_type(argname="argument instance_id", value=instance_id, expected_type=type_hints["instance_id"])
|
|
13343
13347
|
check_type(argname="argument network_interface_id", value=network_interface_id, expected_type=type_hints["network_interface_id"])
|
|
13344
13348
|
check_type(argname="argument delete_on_termination", value=delete_on_termination, expected_type=type_hints["delete_on_termination"])
|
|
13349
|
+
check_type(argname="argument ena_queue_count", value=ena_queue_count, expected_type=type_hints["ena_queue_count"])
|
|
13345
13350
|
check_type(argname="argument ena_srd_specification", value=ena_srd_specification, expected_type=type_hints["ena_srd_specification"])
|
|
13346
13351
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
13347
13352
|
"device_index": device_index,
|
|
@@ -13350,6 +13355,8 @@ class CfnNetworkInterfaceAttachmentProps:
|
|
|
13350
13355
|
}
|
|
13351
13356
|
if delete_on_termination is not None:
|
|
13352
13357
|
self._values["delete_on_termination"] = delete_on_termination
|
|
13358
|
+
if ena_queue_count is not None:
|
|
13359
|
+
self._values["ena_queue_count"] = ena_queue_count
|
|
13353
13360
|
if ena_srd_specification is not None:
|
|
13354
13361
|
self._values["ena_srd_specification"] = ena_srd_specification
|
|
13355
13362
|
|
|
@@ -13400,6 +13407,15 @@ class CfnNetworkInterfaceAttachmentProps:
|
|
|
13400
13407
|
result = self._values.get("delete_on_termination")
|
|
13401
13408
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
13402
13409
|
|
|
13410
|
+
@builtins.property
|
|
13411
|
+
def ena_queue_count(self) -> typing.Optional[jsii.Number]:
|
|
13412
|
+
'''The number of ENA queues created with the instance.
|
|
13413
|
+
|
|
13414
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#cfn-ec2-networkinterfaceattachment-enaqueuecount
|
|
13415
|
+
'''
|
|
13416
|
+
result = self._values.get("ena_queue_count")
|
|
13417
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
13418
|
+
|
|
13403
13419
|
@builtins.property
|
|
13404
13420
|
def ena_srd_specification(
|
|
13405
13421
|
self,
|
|
@@ -36242,6 +36258,10 @@ class InstanceClass(enum.Enum):
|
|
|
36242
36258
|
'''Memory optimized instances, 8th generation with Graviton4 processors and local NVME drive.'''
|
|
36243
36259
|
R8GD = "R8GD"
|
|
36244
36260
|
'''Memory optimized instances, 8th generation with Graviton4 processors and local NVME drive.'''
|
|
36261
|
+
MEMORY8_GRAVITON4_HIGH_NETWORK_BANDWIDTH = "MEMORY8_GRAVITON4_HIGH_NETWORK_BANDWIDTH"
|
|
36262
|
+
'''Memory optimized instances, 8th generation with Graviton4 processors and high network bandwidth capabilities.'''
|
|
36263
|
+
R8GN = "R8GN"
|
|
36264
|
+
'''Memory optimized instances, 8th generation with Graviton4 processors and high network bandwidth capabilities.'''
|
|
36245
36265
|
COMPUTE3 = "COMPUTE3"
|
|
36246
36266
|
'''Compute optimized instances, 3rd generation.'''
|
|
36247
36267
|
C3 = "C3"
|
|
@@ -58787,7 +58807,7 @@ class CfnClientVpnEndpoint(
|
|
|
58787
58807
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
58788
58808
|
:param authentication_options: Information about the authentication method to be used to authenticate clients.
|
|
58789
58809
|
:param connection_log_options: Information about the client connection logging options. If you enable client connection logging, data about client connections is sent to a Cloudwatch Logs log stream. The following information is logged: - Client connection requests - Client connection results (successful and unsuccessful) - Reasons for unsuccessful client connection requests - Client connection termination time
|
|
58790
|
-
:param server_certificate_arn: The ARN of the server certificate. For more information, see the `
|
|
58810
|
+
:param server_certificate_arn: The ARN of the server certificate. For more information, see the `Certificate Manager User Guide <https://docs.aws.amazon.com/acm/latest/userguide/>`_ .
|
|
58791
58811
|
:param client_cidr_block: The IPv4 address range, in CIDR notation, from which to assign client IP addresses. The address range cannot overlap with the local CIDR of the VPC in which the associated subnet is located, or the routes that you add manually. The address range cannot be changed after the Client VPN endpoint has been created. Client CIDR range must have a size of at least /22 and must not be greater than /12.
|
|
58792
58812
|
:param client_connect_options: The options for managing connection authorization for new client connections.
|
|
58793
58813
|
:param client_login_banner_options: Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.
|
|
@@ -59168,7 +59188,7 @@ class CfnClientVpnEndpoint(
|
|
|
59168
59188
|
def __init__(self, *, client_root_certificate_chain_arn: builtins.str) -> None:
|
|
59169
59189
|
'''Information about the client certificate to be used for authentication.
|
|
59170
59190
|
|
|
59171
|
-
:param client_root_certificate_chain_arn: The ARN of the client certificate. The certificate must be signed by a certificate authority (CA) and it must be provisioned in
|
|
59191
|
+
:param client_root_certificate_chain_arn: The ARN of the client certificate. The certificate must be signed by a certificate authority (CA) and it must be provisioned in Certificate Manager (ACM).
|
|
59172
59192
|
|
|
59173
59193
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-certificateauthenticationrequest.html
|
|
59174
59194
|
:exampleMetadata: fixture=_generated
|
|
@@ -59194,7 +59214,7 @@ class CfnClientVpnEndpoint(
|
|
|
59194
59214
|
def client_root_certificate_chain_arn(self) -> builtins.str:
|
|
59195
59215
|
'''The ARN of the client certificate.
|
|
59196
59216
|
|
|
59197
|
-
The certificate must be signed by a certificate authority (CA) and it must be provisioned in
|
|
59217
|
+
The certificate must be signed by a certificate authority (CA) and it must be provisioned in Certificate Manager (ACM).
|
|
59198
59218
|
|
|
59199
59219
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-certificateauthenticationrequest.html#cfn-ec2-clientvpnendpoint-certificateauthenticationrequest-clientrootcertificatechainarn
|
|
59200
59220
|
'''
|
|
@@ -65139,9 +65159,9 @@ class CfnEnclaveCertificateIamRoleAssociation(
|
|
|
65139
65159
|
metaclass=jsii.JSIIMeta,
|
|
65140
65160
|
jsii_type="aws-cdk-lib.aws_ec2.CfnEnclaveCertificateIamRoleAssociation",
|
|
65141
65161
|
):
|
|
65142
|
-
'''Associates an AWS Identity and Access Management (IAM) role with an
|
|
65162
|
+
'''Associates an AWS Identity and Access Management (IAM) role with an Certificate Manager (ACM) certificate.
|
|
65143
65163
|
|
|
65144
|
-
This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see `
|
|
65164
|
+
This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see `Certificate Manager for Nitro Enclaves <https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave-refapp.html>`_ in the *AWS Nitro Enclaves User Guide* .
|
|
65145
65165
|
|
|
65146
65166
|
When the IAM role is associated with the ACM certificate, the certificate, certificate chain, and encrypted private key are placed in an Amazon S3 location that only the associated IAM role can access. The private key of the certificate is encrypted with an AWS managed key that has an attached attestation-based key policy.
|
|
65147
65167
|
|
|
@@ -84943,6 +84963,7 @@ class CfnNetworkInterfaceAttachment(
|
|
|
84943
84963
|
|
|
84944
84964
|
# the properties below are optional
|
|
84945
84965
|
delete_on_termination=False,
|
|
84966
|
+
ena_queue_count=123,
|
|
84946
84967
|
ena_srd_specification=ec2.CfnNetworkInterfaceAttachment.EnaSrdSpecificationProperty(
|
|
84947
84968
|
ena_srd_enabled=False,
|
|
84948
84969
|
ena_srd_udp_specification=ec2.CfnNetworkInterfaceAttachment.EnaSrdUdpSpecificationProperty(
|
|
@@ -84961,6 +84982,7 @@ class CfnNetworkInterfaceAttachment(
|
|
|
84961
84982
|
instance_id: builtins.str,
|
|
84962
84983
|
network_interface_id: builtins.str,
|
|
84963
84984
|
delete_on_termination: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
84985
|
+
ena_queue_count: typing.Optional[jsii.Number] = None,
|
|
84964
84986
|
ena_srd_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnNetworkInterfaceAttachment.EnaSrdSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
84965
84987
|
) -> None:
|
|
84966
84988
|
'''
|
|
@@ -84970,6 +84992,7 @@ class CfnNetworkInterfaceAttachment(
|
|
|
84970
84992
|
:param instance_id: The ID of the instance to which you will attach the ENI.
|
|
84971
84993
|
:param network_interface_id: The ID of the ENI that you want to attach.
|
|
84972
84994
|
:param delete_on_termination: Whether to delete the network interface when the instance terminates. By default, this value is set to ``true`` . Default: - true
|
|
84995
|
+
:param ena_queue_count: The number of ENA queues created with the instance.
|
|
84973
84996
|
:param ena_srd_specification: Configures ENA Express for the network interface that this action attaches to the instance.
|
|
84974
84997
|
'''
|
|
84975
84998
|
if __debug__:
|
|
@@ -84981,6 +85004,7 @@ class CfnNetworkInterfaceAttachment(
|
|
|
84981
85004
|
instance_id=instance_id,
|
|
84982
85005
|
network_interface_id=network_interface_id,
|
|
84983
85006
|
delete_on_termination=delete_on_termination,
|
|
85007
|
+
ena_queue_count=ena_queue_count,
|
|
84984
85008
|
ena_srd_specification=ena_srd_specification,
|
|
84985
85009
|
)
|
|
84986
85010
|
|
|
@@ -85093,6 +85117,19 @@ class CfnNetworkInterfaceAttachment(
|
|
|
85093
85117
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
85094
85118
|
jsii.set(self, "deleteOnTermination", value) # pyright: ignore[reportArgumentType]
|
|
85095
85119
|
|
|
85120
|
+
@builtins.property
|
|
85121
|
+
@jsii.member(jsii_name="enaQueueCount")
|
|
85122
|
+
def ena_queue_count(self) -> typing.Optional[jsii.Number]:
|
|
85123
|
+
'''The number of ENA queues created with the instance.'''
|
|
85124
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "enaQueueCount"))
|
|
85125
|
+
|
|
85126
|
+
@ena_queue_count.setter
|
|
85127
|
+
def ena_queue_count(self, value: typing.Optional[jsii.Number]) -> None:
|
|
85128
|
+
if __debug__:
|
|
85129
|
+
type_hints = typing.get_type_hints(_typecheckingstub__813016044c679898cae8d2f1cdf2d2661e3378b720ec797b2c72480434f2101f)
|
|
85130
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
85131
|
+
jsii.set(self, "enaQueueCount", value) # pyright: ignore[reportArgumentType]
|
|
85132
|
+
|
|
85096
85133
|
@builtins.property
|
|
85097
85134
|
@jsii.member(jsii_name="enaSrdSpecification")
|
|
85098
85135
|
def ena_srd_specification(
|
|
@@ -99076,7 +99113,7 @@ class CfnTransitGatewayRouteTableAssociation(
|
|
|
99076
99113
|
|
|
99077
99114
|
You can associate one route table with an attachment.
|
|
99078
99115
|
|
|
99079
|
-
Before you can update the route table associated with an attachment, you must disassociate the transit gateway route table that is currently associated with the attachment. First update the stack to remove the associated transit gateway route table, and then update the stack with the ID of the new transit gateway route table to associate.
|
|
99116
|
+
Before you can update the route table associated with an attachment, you must disassociate the transit gateway route table that is currently associated with the attachment. First update the stack to remove the associated transit gateway route table, and then update the stack with the ID of the new transit gateway route table to associate. In addition, the attachment must be in an ``available`` state; otherwise, the request will return an error.
|
|
99080
99117
|
|
|
99081
99118
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html
|
|
99082
99119
|
:cloudformationResource: AWS::EC2::TransitGatewayRouteTableAssociation
|
|
@@ -99662,7 +99699,7 @@ class CfnVPC(
|
|
|
99662
99699
|
):
|
|
99663
99700
|
'''Specifies a virtual private cloud (VPC).
|
|
99664
99701
|
|
|
99665
|
-
To
|
|
99702
|
+
A VPC must have an associated IPv4 CIDR block. You can specify an IPv4 CIDR block or an IPAM-allocated IPv4 CIDR block. To associate an IPv6 CIDR block with the VPC, see `AWS::EC2::VPCCidrBlock <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html>`_ .
|
|
99666
99703
|
|
|
99667
99704
|
For more information, see `Virtual private clouds (VPC) <https://docs.aws.amazon.com/vpc/latest/userguide/configure-your-vpc.html>`_ in the *Amazon VPC User Guide* .
|
|
99668
99705
|
|
|
@@ -100254,7 +100291,7 @@ class CfnVPCCidrBlock(
|
|
|
100254
100291
|
):
|
|
100255
100292
|
'''Associates a CIDR block with your VPC.
|
|
100256
100293
|
|
|
100257
|
-
You can optionally
|
|
100294
|
+
A VPC must have an associated IPv4 CIDR block. You can optionally associate additional IPv4 CIDR blocks with a VPC. You can optionally associate an IPv6 CIDR block with a VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).
|
|
100258
100295
|
|
|
100259
100296
|
For more information, see `VPC CIDR blocks <https://docs.aws.amazon.com/vpc/latest/userguide/vpc-cidr-blocks.html>`_ in the *Amazon VPC User Guide* .
|
|
100260
100297
|
|
|
@@ -117609,6 +117646,7 @@ def _typecheckingstub__b31ba98e2404b0fe712cc8951c65f1f317583a51d160007f9b90f285b
|
|
|
117609
117646
|
instance_id: builtins.str,
|
|
117610
117647
|
network_interface_id: builtins.str,
|
|
117611
117648
|
delete_on_termination: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
117649
|
+
ena_queue_count: typing.Optional[jsii.Number] = None,
|
|
117612
117650
|
ena_srd_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnNetworkInterfaceAttachment.EnaSrdSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
117613
117651
|
) -> None:
|
|
117614
117652
|
"""Type checking stubs"""
|
|
@@ -125460,6 +125498,7 @@ def _typecheckingstub__3bd398f8321bdc7fbfd14c84bf37b253e1282ce256683087217df8bdb
|
|
|
125460
125498
|
instance_id: builtins.str,
|
|
125461
125499
|
network_interface_id: builtins.str,
|
|
125462
125500
|
delete_on_termination: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
125501
|
+
ena_queue_count: typing.Optional[jsii.Number] = None,
|
|
125463
125502
|
ena_srd_specification: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnNetworkInterfaceAttachment.EnaSrdSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
125464
125503
|
) -> None:
|
|
125465
125504
|
"""Type checking stubs"""
|
|
@@ -125501,6 +125540,12 @@ def _typecheckingstub__95d995f5a17b7339e1633a46f4caf7b0334f3203bea60f5970be9e2f2
|
|
|
125501
125540
|
"""Type checking stubs"""
|
|
125502
125541
|
pass
|
|
125503
125542
|
|
|
125543
|
+
def _typecheckingstub__813016044c679898cae8d2f1cdf2d2661e3378b720ec797b2c72480434f2101f(
|
|
125544
|
+
value: typing.Optional[jsii.Number],
|
|
125545
|
+
) -> None:
|
|
125546
|
+
"""Type checking stubs"""
|
|
125547
|
+
pass
|
|
125548
|
+
|
|
125504
125549
|
def _typecheckingstub__44053839e2796916ea1820301ba6d646b23ec979c16a251cc51920c1a7bd2875(
|
|
125505
125550
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnNetworkInterfaceAttachment.EnaSrdSpecificationProperty]],
|
|
125506
125551
|
) -> None:
|