aws-cdk-lib 2.213.0__py3-none-any.whl → 2.214.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 +23 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.213.0.jsii.tgz → aws-cdk-lib@2.214.0.jsii.tgz} +0 -0
- aws_cdk/aws_appconfig/__init__.py +18 -6
- aws_cdk/aws_appintegrations/__init__.py +4 -4
- aws_cdk/aws_apprunner/__init__.py +5 -8
- aws_cdk/aws_aps/__init__.py +243 -10
- aws_cdk/aws_b2bi/__init__.py +1015 -128
- aws_cdk/aws_batch/__init__.py +33 -11
- aws_cdk/aws_bedrock/__init__.py +22 -216
- aws_cdk/aws_budgets/__init__.py +18 -0
- aws_cdk/aws_certificatemanager/__init__.py +96 -15
- aws_cdk/aws_cloudformation/__init__.py +3 -3
- aws_cdk/aws_cloudwatch/__init__.py +80 -49
- aws_cdk/aws_cognito/__init__.py +76 -5
- aws_cdk/aws_connect/__init__.py +188 -2
- aws_cdk/aws_datazone/__init__.py +2267 -0
- aws_cdk/aws_deadline/__init__.py +6 -5
- aws_cdk/aws_dynamodb/__init__.py +27 -16
- aws_cdk/aws_ec2/__init__.py +51 -10
- aws_cdk/aws_ecs/__init__.py +288 -25
- aws_cdk/aws_ecs_patterns/__init__.py +2 -0
- aws_cdk/aws_eks/__init__.py +124 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +6 -2
- aws_cdk/aws_entityresolution/__init__.py +107 -0
- aws_cdk/aws_events/__init__.py +153 -55
- aws_cdk/aws_events_targets/__init__.py +87 -36
- aws_cdk/aws_fsx/__init__.py +62 -0
- aws_cdk/aws_gameliftstreams/__init__.py +1 -1
- aws_cdk/aws_glue/__init__.py +205 -23
- aws_cdk/aws_guardduty/__init__.py +205 -100
- aws_cdk/aws_iam/__init__.py +24 -21
- aws_cdk/aws_inspectorv2/__init__.py +125 -80
- aws_cdk/aws_iot/__init__.py +37 -19
- aws_cdk/aws_iotsitewise/__init__.py +111 -75
- aws_cdk/aws_ivs/__init__.py +17 -17
- aws_cdk/aws_kinesisanalytics/__init__.py +122 -3
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +122 -3
- aws_cdk/aws_lambda/__init__.py +23 -2
- aws_cdk/aws_logs/__init__.py +20 -15
- aws_cdk/aws_mediapackagev2/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +477 -2
- aws_cdk/aws_qbusiness/__init__.py +4 -2
- aws_cdk/aws_rds/__init__.py +132 -4
- aws_cdk/aws_route53/__init__.py +18 -11
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3_deployment/__init__.py +45 -0
- aws_cdk/aws_sagemaker/__init__.py +653 -0
- aws_cdk/aws_servicediscovery/__init__.py +22 -37
- aws_cdk/aws_sns/__init__.py +12 -2
- aws_cdk/aws_sns_subscriptions/__init__.py +3 -1
- aws_cdk/aws_sqs/__init__.py +5 -5
- aws_cdk/aws_ssm/__init__.py +8 -3
- aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
- aws_cdk/aws_synthetics/__init__.py +222 -12
- aws_cdk/aws_transfer/__init__.py +15 -2
- aws_cdk/aws_vpclattice/__init__.py +41 -0
- aws_cdk/aws_workspacesweb/__init__.py +71 -41
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/RECORD +65 -65
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_deadline/__init__.py
CHANGED
|
@@ -649,7 +649,8 @@ class CfnFleet(
|
|
|
649
649
|
@builtins.property
|
|
650
650
|
@jsii.member(jsii_name="attrStatusMessage")
|
|
651
651
|
def attr_status_message(self) -> builtins.str:
|
|
652
|
-
'''
|
|
652
|
+
'''A message that communicates a suspended status of the fleet.
|
|
653
|
+
|
|
653
654
|
:cloudformationAttribute: StatusMessage
|
|
654
655
|
'''
|
|
655
656
|
return typing.cast(builtins.str, jsii.get(self, "attrStatusMessage"))
|
|
@@ -3183,7 +3184,7 @@ class CfnLicenseEndpoint(
|
|
|
3183
3184
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3184
3185
|
:param security_group_ids: The identifier of the Amazon EC2 security group that controls access to the license endpoint.
|
|
3185
3186
|
:param subnet_ids: Identifies the VPC subnets that can connect to a license endpoint.
|
|
3186
|
-
:param vpc_id: The
|
|
3187
|
+
:param vpc_id: The VPC (virtual private cloud) ID associated with the license endpoint.
|
|
3187
3188
|
:param tags: The tags to add to your license endpoint. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
|
|
3188
3189
|
'''
|
|
3189
3190
|
if __debug__:
|
|
@@ -3314,7 +3315,7 @@ class CfnLicenseEndpoint(
|
|
|
3314
3315
|
@builtins.property
|
|
3315
3316
|
@jsii.member(jsii_name="vpcId")
|
|
3316
3317
|
def vpc_id(self) -> builtins.str:
|
|
3317
|
-
'''The
|
|
3318
|
+
'''The VPC (virtual private cloud) ID associated with the license endpoint.'''
|
|
3318
3319
|
return typing.cast(builtins.str, jsii.get(self, "vpcId"))
|
|
3319
3320
|
|
|
3320
3321
|
@vpc_id.setter
|
|
@@ -3361,7 +3362,7 @@ class CfnLicenseEndpointProps:
|
|
|
3361
3362
|
|
|
3362
3363
|
:param security_group_ids: The identifier of the Amazon EC2 security group that controls access to the license endpoint.
|
|
3363
3364
|
:param subnet_ids: Identifies the VPC subnets that can connect to a license endpoint.
|
|
3364
|
-
:param vpc_id: The
|
|
3365
|
+
:param vpc_id: The VPC (virtual private cloud) ID associated with the license endpoint.
|
|
3365
3366
|
:param tags: The tags to add to your license endpoint. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
|
|
3366
3367
|
|
|
3367
3368
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html
|
|
@@ -3421,7 +3422,7 @@ class CfnLicenseEndpointProps:
|
|
|
3421
3422
|
|
|
3422
3423
|
@builtins.property
|
|
3423
3424
|
def vpc_id(self) -> builtins.str:
|
|
3424
|
-
'''The
|
|
3425
|
+
'''The VPC (virtual private cloud) ID associated with the license endpoint.
|
|
3425
3426
|
|
|
3426
3427
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#cfn-deadline-licenseendpoint-vpcid
|
|
3427
3428
|
'''
|
aws_cdk/aws_dynamodb/__init__.py
CHANGED
|
@@ -2398,7 +2398,7 @@ class CfnGlobalTable(
|
|
|
2398
2398
|
'''Configures contributor insights settings for a replica or one of its indexes.
|
|
2399
2399
|
|
|
2400
2400
|
:param enabled: Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false).
|
|
2401
|
-
:param mode:
|
|
2401
|
+
:param mode: Specifies the CloudWatch Contributor Insights mode for a global table. Valid values are ``ACCESSED_AND_THROTTLED_KEYS`` (tracks all access and throttled events) or ``THROTTLED_KEYS`` (tracks only throttled events). This setting determines what type of contributor insights data is collected for the global table.
|
|
2402
2402
|
|
|
2403
2403
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-contributorinsightsspecification.html
|
|
2404
2404
|
:exampleMetadata: fixture=_generated
|
|
@@ -2438,7 +2438,10 @@ class CfnGlobalTable(
|
|
|
2438
2438
|
|
|
2439
2439
|
@builtins.property
|
|
2440
2440
|
def mode(self) -> typing.Optional[builtins.str]:
|
|
2441
|
-
'''
|
|
2441
|
+
'''Specifies the CloudWatch Contributor Insights mode for a global table.
|
|
2442
|
+
|
|
2443
|
+
Valid values are ``ACCESSED_AND_THROTTLED_KEYS`` (tracks all access and throttled events) or ``THROTTLED_KEYS`` (tracks only throttled events). This setting determines what type of contributor insights data is collected for the global table.
|
|
2444
|
+
|
|
2442
2445
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-contributorinsightsspecification.html#cfn-dynamodb-globaltable-contributorinsightsspecification-mode
|
|
2443
2446
|
'''
|
|
2444
2447
|
result = self._values.get("mode")
|
|
@@ -5264,7 +5267,7 @@ class CfnTable(
|
|
|
5264
5267
|
:param key_schema: Specifies the attributes that make up the primary key for the table. The attributes in the ``KeySchema`` property must also be defined in the ``AttributeDefinitions`` property.
|
|
5265
5268
|
:param attribute_definitions: A list of attributes that describe the key schema for the table and indexes. This property is required to create a DynamoDB table. Update requires: `Some interruptions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt>`_ . Replacement if you edit an existing AttributeDefinition.
|
|
5266
5269
|
:param billing_mode: Specify how you are charged for read and write throughput and how you manage capacity. Valid values include: - ``PAY_PER_REQUEST`` - We recommend using ``PAY_PER_REQUEST`` for most DynamoDB workloads. ``PAY_PER_REQUEST`` sets the billing mode to `On-demand capacity mode <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html>`_ . - ``PROVISIONED`` - We recommend using ``PROVISIONED`` for steady workloads with predictable growth where capacity requirements can be reliably forecasted. ``PROVISIONED`` sets the billing mode to `Provisioned capacity mode <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html>`_ . If not specified, the default is ``PROVISIONED`` .
|
|
5267
|
-
:param contributor_insights_specification: The settings used to
|
|
5270
|
+
:param contributor_insights_specification: The settings used to specify whether to enable CloudWatch Contributor Insights for the table and define which events to monitor.
|
|
5268
5271
|
: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* .
|
|
5269
5272
|
: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.
|
|
5270
5273
|
: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.
|
|
@@ -5275,7 +5278,7 @@ class CfnTable(
|
|
|
5275
5278
|
:param provisioned_throughput: Throughput for the specified table, which consists of values for ``ReadCapacityUnits`` and ``WriteCapacityUnits`` . For more information about the contents of a provisioned throughput structure, see `Amazon DynamoDB Table ProvisionedThroughput <https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ProvisionedThroughput.html>`_ . If you set ``BillingMode`` as ``PROVISIONED`` , you must specify this property. If you set ``BillingMode`` as ``PAY_PER_REQUEST`` , you cannot specify this property.
|
|
5276
5279
|
:param resource_policy: An AWS resource-based policy document in JSON format that will be attached to the table. When you attach a resource-based policy while creating a table, the policy application is *strongly consistent* . The maximum size supported for a resource-based policy document is 20 KB. DynamoDB counts whitespaces when calculating the size of a policy against this limit. For a full list of all considerations that apply for resource-based policies, see `Resource-based policy considerations <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/rbac-considerations.html>`_ . .. epigraph:: You need to specify the ``CreateTable`` and ``PutResourcePolicy`` IAM actions for authorizing a user to create a table with a resource-based policy.
|
|
5277
5280
|
:param sse_specification: Specifies the settings to enable server-side encryption.
|
|
5278
|
-
:param stream_specification: The settings for the DynamoDB table stream, which
|
|
5281
|
+
:param stream_specification: The settings for the DynamoDB table stream, which captures changes to items stored in the table. Including this property in your AWS CloudFormation template automatically enables streaming.
|
|
5279
5282
|
:param table_class: The table class of the new table. Valid values are ``STANDARD`` and ``STANDARD_INFREQUENT_ACCESS`` .
|
|
5280
5283
|
:param table_name: A name for the table. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the table name. For more information, see `Name Type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ . .. epigraph:: If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
|
5281
5284
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
@@ -5428,7 +5431,7 @@ class CfnTable(
|
|
|
5428
5431
|
def contributor_insights_specification(
|
|
5429
5432
|
self,
|
|
5430
5433
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.ContributorInsightsSpecificationProperty"]]:
|
|
5431
|
-
'''The settings used to
|
|
5434
|
+
'''The settings used to specify whether to enable CloudWatch Contributor Insights for the table and define which events to monitor.'''
|
|
5432
5435
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.ContributorInsightsSpecificationProperty"]], jsii.get(self, "contributorInsightsSpecification"))
|
|
5433
5436
|
|
|
5434
5437
|
@contributor_insights_specification.setter
|
|
@@ -5629,7 +5632,7 @@ class CfnTable(
|
|
|
5629
5632
|
def stream_specification(
|
|
5630
5633
|
self,
|
|
5631
5634
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.StreamSpecificationProperty"]]:
|
|
5632
|
-
'''The settings for the DynamoDB table stream, which
|
|
5635
|
+
'''The settings for the DynamoDB table stream, which captures changes to items stored in the table.'''
|
|
5633
5636
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.StreamSpecificationProperty"]], jsii.get(self, "streamSpecification"))
|
|
5634
5637
|
|
|
5635
5638
|
@stream_specification.setter
|
|
@@ -5807,10 +5810,10 @@ class CfnTable(
|
|
|
5807
5810
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
5808
5811
|
mode: typing.Optional[builtins.str] = None,
|
|
5809
5812
|
) -> None:
|
|
5810
|
-
'''
|
|
5813
|
+
'''Configures contributor insights settings for a table or one of its indexes.
|
|
5811
5814
|
|
|
5812
5815
|
:param enabled: Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false).
|
|
5813
|
-
:param mode:
|
|
5816
|
+
:param mode: Specifies the CloudWatch Contributor Insights mode for a table. Valid values are ``ACCESSED_AND_THROTTLED_KEYS`` (tracks all access and throttled events) or ``THROTTLED_KEYS`` (tracks only throttled events). This setting determines what type of contributor insights data is collected for the table.
|
|
5814
5817
|
|
|
5815
5818
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-contributorinsightsspecification.html
|
|
5816
5819
|
:exampleMetadata: fixture=_generated
|
|
@@ -5850,7 +5853,10 @@ class CfnTable(
|
|
|
5850
5853
|
|
|
5851
5854
|
@builtins.property
|
|
5852
5855
|
def mode(self) -> typing.Optional[builtins.str]:
|
|
5853
|
-
'''
|
|
5856
|
+
'''Specifies the CloudWatch Contributor Insights mode for a table.
|
|
5857
|
+
|
|
5858
|
+
Valid values are ``ACCESSED_AND_THROTTLED_KEYS`` (tracks all access and throttled events) or ``THROTTLED_KEYS`` (tracks only throttled events). This setting determines what type of contributor insights data is collected for the table.
|
|
5859
|
+
|
|
5854
5860
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-contributorinsightsspecification.html#cfn-dynamodb-table-contributorinsightsspecification-mode
|
|
5855
5861
|
'''
|
|
5856
5862
|
result = self._values.get("mode")
|
|
@@ -5971,7 +5977,7 @@ class CfnTable(
|
|
|
5971
5977
|
:param index_name: The name of the global secondary index. The name must be unique among all other indexes on this table.
|
|
5972
5978
|
:param key_schema: The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: - ``HASH`` - partition key - ``RANGE`` - sort key > The partition key of an item is also known as its *hash attribute* . The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. .. epigraph:: The sort key of an item is also known as its *range attribute* . The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
|
|
5973
5979
|
:param projection: Represents attributes that are copied (projected) from the table into the global secondary index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.
|
|
5974
|
-
:param contributor_insights_specification: The settings used to
|
|
5980
|
+
:param contributor_insights_specification: The settings used to specify whether to enable CloudWatch Contributor Insights for the global table and define which events to monitor.
|
|
5975
5981
|
:param on_demand_throughput: The maximum number of read and write units for the specified global secondary index. If you use this parameter, you must specify ``MaxReadRequestUnits`` , ``MaxWriteRequestUnits`` , or both. You must use either ``OnDemandThroughput`` or ``ProvisionedThroughput`` based on your table's capacity mode.
|
|
5976
5982
|
:param provisioned_throughput: Represents the provisioned throughput settings for the specified global secondary index. You must use either ``OnDemandThroughput`` or ``ProvisionedThroughput`` based on your table's capacity mode. For current minimum and maximum provisioned throughput values, see `Service, Account, and Table Quotas <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html>`_ in the *Amazon DynamoDB Developer Guide* .
|
|
5977
5983
|
:param warm_throughput: Represents the warm throughput value (in read units per second and write units per second) for the specified secondary index. If you use this parameter, you must specify ``ReadUnitsPerSecond`` , ``WriteUnitsPerSecond`` , or both.
|
|
@@ -6087,7 +6093,7 @@ class CfnTable(
|
|
|
6087
6093
|
def contributor_insights_specification(
|
|
6088
6094
|
self,
|
|
6089
6095
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.ContributorInsightsSpecificationProperty"]]:
|
|
6090
|
-
'''The settings used to
|
|
6096
|
+
'''The settings used to specify whether to enable CloudWatch Contributor Insights for the global table and define which events to monitor.
|
|
6091
6097
|
|
|
6092
6098
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-globalsecondaryindex.html#cfn-dynamodb-table-globalsecondaryindex-contributorinsightsspecification
|
|
6093
6099
|
'''
|
|
@@ -7217,7 +7223,7 @@ class CfnTable(
|
|
|
7217
7223
|
'''Represents the DynamoDB Streams configuration for a table in DynamoDB.
|
|
7218
7224
|
|
|
7219
7225
|
:param stream_view_type: When an item in the table is modified, ``StreamViewType`` determines what information is written to the stream for this table. Valid values for ``StreamViewType`` are: - ``KEYS_ONLY`` - Only the key attributes of the modified item are written to the stream. - ``NEW_IMAGE`` - The entire item, as it appears after it was modified, is written to the stream. - ``OLD_IMAGE`` - The entire item, as it appeared before it was modified, is written to the stream. - ``NEW_AND_OLD_IMAGES`` - Both the new and the old item images of the item are written to the stream.
|
|
7220
|
-
:param resource_policy: Creates or updates a resource-based policy document that contains the permissions for DynamoDB resources, such as a table's streams. Resource-based policies let you define access permissions by specifying who has access to each resource, and the actions they are allowed to perform on each resource. In a CloudFormation template, you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to DynamoDB . For more information about resource-based policies, see `Using resource-based policies for DynamoDB <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/access-control-resource-based.html>`_ and `Resource-based policy examples <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/rbac-examples.html>`_ .
|
|
7226
|
+
:param resource_policy: Creates or updates a resource-based policy document that contains the permissions for DynamoDB resources, such as a table's streams. Resource-based policies let you define access permissions by specifying who has access to each resource, and the actions they are allowed to perform on each resource. .. epigraph:: When you remove the ``StreamSpecification`` property from the template, DynamoDB disables the stream but retains any attached resource policy until the stream is deleted after 24 hours. When you modify the ``StreamViewType`` property, DynamoDB creates a new stream and retains the old stream's resource policy. The old stream and its resource policy are deleted after the 24-hour retention period. In a CloudFormation template, you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to DynamoDB . For more information about resource-based policies, see `Using resource-based policies for DynamoDB <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/access-control-resource-based.html>`_ and `Resource-based policy examples <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/rbac-examples.html>`_ .
|
|
7221
7227
|
|
|
7222
7228
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-streamspecification.html
|
|
7223
7229
|
:exampleMetadata: fixture=_generated
|
|
@@ -7273,6 +7279,9 @@ class CfnTable(
|
|
|
7273
7279
|
'''Creates or updates a resource-based policy document that contains the permissions for DynamoDB resources, such as a table's streams.
|
|
7274
7280
|
|
|
7275
7281
|
Resource-based policies let you define access permissions by specifying who has access to each resource, and the actions they are allowed to perform on each resource.
|
|
7282
|
+
.. epigraph::
|
|
7283
|
+
|
|
7284
|
+
When you remove the ``StreamSpecification`` property from the template, DynamoDB disables the stream but retains any attached resource policy until the stream is deleted after 24 hours. When you modify the ``StreamViewType`` property, DynamoDB creates a new stream and retains the old stream's resource policy. The old stream and its resource policy are deleted after the 24-hour retention period.
|
|
7276
7285
|
|
|
7277
7286
|
In a CloudFormation template, you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to DynamoDB . For more information about resource-based policies, see `Using resource-based policies for DynamoDB <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/access-control-resource-based.html>`_ and `Resource-based policy examples <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/rbac-examples.html>`_ .
|
|
7278
7287
|
|
|
@@ -7502,7 +7511,7 @@ class CfnTableProps:
|
|
|
7502
7511
|
:param key_schema: Specifies the attributes that make up the primary key for the table. The attributes in the ``KeySchema`` property must also be defined in the ``AttributeDefinitions`` property.
|
|
7503
7512
|
:param attribute_definitions: A list of attributes that describe the key schema for the table and indexes. This property is required to create a DynamoDB table. Update requires: `Some interruptions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt>`_ . Replacement if you edit an existing AttributeDefinition.
|
|
7504
7513
|
:param billing_mode: Specify how you are charged for read and write throughput and how you manage capacity. Valid values include: - ``PAY_PER_REQUEST`` - We recommend using ``PAY_PER_REQUEST`` for most DynamoDB workloads. ``PAY_PER_REQUEST`` sets the billing mode to `On-demand capacity mode <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html>`_ . - ``PROVISIONED`` - We recommend using ``PROVISIONED`` for steady workloads with predictable growth where capacity requirements can be reliably forecasted. ``PROVISIONED`` sets the billing mode to `Provisioned capacity mode <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html>`_ . If not specified, the default is ``PROVISIONED`` .
|
|
7505
|
-
:param contributor_insights_specification: The settings used to
|
|
7514
|
+
:param contributor_insights_specification: The settings used to specify whether to enable CloudWatch Contributor Insights for the table and define which events to monitor.
|
|
7506
7515
|
: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* .
|
|
7507
7516
|
: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.
|
|
7508
7517
|
: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.
|
|
@@ -7513,7 +7522,7 @@ class CfnTableProps:
|
|
|
7513
7522
|
:param provisioned_throughput: Throughput for the specified table, which consists of values for ``ReadCapacityUnits`` and ``WriteCapacityUnits`` . For more information about the contents of a provisioned throughput structure, see `Amazon DynamoDB Table ProvisionedThroughput <https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ProvisionedThroughput.html>`_ . If you set ``BillingMode`` as ``PROVISIONED`` , you must specify this property. If you set ``BillingMode`` as ``PAY_PER_REQUEST`` , you cannot specify this property.
|
|
7514
7523
|
:param resource_policy: An AWS resource-based policy document in JSON format that will be attached to the table. When you attach a resource-based policy while creating a table, the policy application is *strongly consistent* . The maximum size supported for a resource-based policy document is 20 KB. DynamoDB counts whitespaces when calculating the size of a policy against this limit. For a full list of all considerations that apply for resource-based policies, see `Resource-based policy considerations <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/rbac-considerations.html>`_ . .. epigraph:: You need to specify the ``CreateTable`` and ``PutResourcePolicy`` IAM actions for authorizing a user to create a table with a resource-based policy.
|
|
7515
7524
|
:param sse_specification: Specifies the settings to enable server-side encryption.
|
|
7516
|
-
:param stream_specification: The settings for the DynamoDB table stream, which
|
|
7525
|
+
:param stream_specification: The settings for the DynamoDB table stream, which captures changes to items stored in the table. Including this property in your AWS CloudFormation template automatically enables streaming.
|
|
7517
7526
|
:param table_class: The table class of the new table. Valid values are ``STANDARD`` and ``STANDARD_INFREQUENT_ACCESS`` .
|
|
7518
7527
|
:param table_name: A name for the table. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the table name. For more information, see `Name Type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ . .. epigraph:: If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
|
7519
7528
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
@@ -7778,7 +7787,7 @@ class CfnTableProps:
|
|
|
7778
7787
|
def contributor_insights_specification(
|
|
7779
7788
|
self,
|
|
7780
7789
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTable.ContributorInsightsSpecificationProperty]]:
|
|
7781
|
-
'''The settings used to
|
|
7790
|
+
'''The settings used to specify whether to enable CloudWatch Contributor Insights for the table and define which events to monitor.
|
|
7782
7791
|
|
|
7783
7792
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-contributorinsightsspecification
|
|
7784
7793
|
'''
|
|
@@ -7931,7 +7940,9 @@ class CfnTableProps:
|
|
|
7931
7940
|
def stream_specification(
|
|
7932
7941
|
self,
|
|
7933
7942
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTable.StreamSpecificationProperty]]:
|
|
7934
|
-
'''The settings for the DynamoDB table stream, which
|
|
7943
|
+
'''The settings for the DynamoDB table stream, which captures changes to items stored in the table.
|
|
7944
|
+
|
|
7945
|
+
Including this property in your AWS CloudFormation template automatically enables streaming.
|
|
7935
7946
|
|
|
7936
7947
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-streamspecification
|
|
7937
7948
|
'''
|
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -25850,7 +25850,7 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25850
25850
|
metaclass=jsii.JSIIMeta,
|
|
25851
25851
|
jsii_type="aws-cdk-lib.aws_ec2.CfnIpPoolRouteTableAssociation",
|
|
25852
25852
|
):
|
|
25853
|
-
'''
|
|
25853
|
+
'''A route server association is the connection established between a route server and a VPC.
|
|
25854
25854
|
|
|
25855
25855
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ippoolroutetableassociation.html
|
|
25856
25856
|
:cloudformationResource: AWS::EC2::IpPoolRouteTableAssociation
|
|
@@ -25879,8 +25879,8 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25879
25879
|
'''
|
|
25880
25880
|
:param scope: Scope in which this resource is defined.
|
|
25881
25881
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
25882
|
-
:param public_ipv4_pool: The ID of
|
|
25883
|
-
:param route_table_id: The ID of
|
|
25882
|
+
:param public_ipv4_pool: The ID of a public IPv4 address pool.
|
|
25883
|
+
:param route_table_id: The ID of a route table.
|
|
25884
25884
|
'''
|
|
25885
25885
|
if __debug__:
|
|
25886
25886
|
type_hints = typing.get_type_hints(_typecheckingstub__d2e346c37572137e6dfe14e676bbcd2ecce12183e9c91e6bac858b8287c38d18)
|
|
@@ -25925,7 +25925,7 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25925
25925
|
@builtins.property
|
|
25926
25926
|
@jsii.member(jsii_name="attrAssociationId")
|
|
25927
25927
|
def attr_association_id(self) -> builtins.str:
|
|
25928
|
-
'''The route table association
|
|
25928
|
+
'''The ID of a route table association.
|
|
25929
25929
|
|
|
25930
25930
|
:cloudformationAttribute: AssociationId
|
|
25931
25931
|
'''
|
|
@@ -25939,7 +25939,7 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25939
25939
|
@builtins.property
|
|
25940
25940
|
@jsii.member(jsii_name="publicIpv4Pool")
|
|
25941
25941
|
def public_ipv4_pool(self) -> builtins.str:
|
|
25942
|
-
'''The ID of
|
|
25942
|
+
'''The ID of a public IPv4 address pool.'''
|
|
25943
25943
|
return typing.cast(builtins.str, jsii.get(self, "publicIpv4Pool"))
|
|
25944
25944
|
|
|
25945
25945
|
@public_ipv4_pool.setter
|
|
@@ -25952,7 +25952,7 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25952
25952
|
@builtins.property
|
|
25953
25953
|
@jsii.member(jsii_name="routeTableId")
|
|
25954
25954
|
def route_table_id(self) -> builtins.str:
|
|
25955
|
-
'''The ID of
|
|
25955
|
+
'''The ID of a route table.'''
|
|
25956
25956
|
return typing.cast(builtins.str, jsii.get(self, "routeTableId"))
|
|
25957
25957
|
|
|
25958
25958
|
@route_table_id.setter
|
|
@@ -25980,8 +25980,8 @@ class CfnIpPoolRouteTableAssociationProps:
|
|
|
25980
25980
|
) -> None:
|
|
25981
25981
|
'''Properties for defining a ``CfnIpPoolRouteTableAssociation``.
|
|
25982
25982
|
|
|
25983
|
-
:param public_ipv4_pool: The ID of
|
|
25984
|
-
:param route_table_id: The ID of
|
|
25983
|
+
:param public_ipv4_pool: The ID of a public IPv4 address pool.
|
|
25984
|
+
:param route_table_id: The ID of a route table.
|
|
25985
25985
|
|
|
25986
25986
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ippoolroutetableassociation.html
|
|
25987
25987
|
:exampleMetadata: fixture=_generated
|
|
@@ -26008,7 +26008,7 @@ class CfnIpPoolRouteTableAssociationProps:
|
|
|
26008
26008
|
|
|
26009
26009
|
@builtins.property
|
|
26010
26010
|
def public_ipv4_pool(self) -> builtins.str:
|
|
26011
|
-
'''The ID of
|
|
26011
|
+
'''The ID of a public IPv4 address pool.
|
|
26012
26012
|
|
|
26013
26013
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ippoolroutetableassociation.html#cfn-ec2-ippoolroutetableassociation-publicipv4pool
|
|
26014
26014
|
'''
|
|
@@ -26018,7 +26018,7 @@ class CfnIpPoolRouteTableAssociationProps:
|
|
|
26018
26018
|
|
|
26019
26019
|
@builtins.property
|
|
26020
26020
|
def route_table_id(self) -> builtins.str:
|
|
26021
|
-
'''The ID of
|
|
26021
|
+
'''The ID of a route table.
|
|
26022
26022
|
|
|
26023
26023
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ippoolroutetableassociation.html#cfn-ec2-ippoolroutetableassociation-routetableid
|
|
26024
26024
|
'''
|
|
@@ -65018,6 +65018,7 @@ class CfnVPNConnection(
|
|
|
65018
65018
|
local_ipv4_network_cidr="localIpv4NetworkCidr",
|
|
65019
65019
|
local_ipv6_network_cidr="localIpv6NetworkCidr",
|
|
65020
65020
|
outside_ip_address_type="outsideIpAddressType",
|
|
65021
|
+
pre_shared_key_storage="preSharedKeyStorage",
|
|
65021
65022
|
remote_ipv4_network_cidr="remoteIpv4NetworkCidr",
|
|
65022
65023
|
remote_ipv6_network_cidr="remoteIpv6NetworkCidr",
|
|
65023
65024
|
static_routes_only=False,
|
|
@@ -65085,6 +65086,7 @@ class CfnVPNConnection(
|
|
|
65085
65086
|
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
65086
65087
|
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
65087
65088
|
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
65089
|
+
pre_shared_key_storage: typing.Optional[builtins.str] = None,
|
|
65088
65090
|
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
65089
65091
|
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
65090
65092
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
@@ -65104,6 +65106,7 @@ class CfnVPNConnection(
|
|
|
65104
65106
|
:param local_ipv4_network_cidr: The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``0.0.0.0/0``
|
|
65105
65107
|
:param local_ipv6_network_cidr: The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``::/0``
|
|
65106
65108
|
:param outside_ip_address_type: The type of IP address assigned to the outside interface of the customer gateway device. Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6`` Default: ``PublicIpv4``
|
|
65109
|
+
:param pre_shared_key_storage: Describes the storage location for an instance store-backed AMI.
|
|
65107
65110
|
:param remote_ipv4_network_cidr: The IPv4 CIDR on the AWS side of the VPN connection. Default: ``0.0.0.0/0``
|
|
65108
65111
|
:param remote_ipv6_network_cidr: The IPv6 CIDR on the AWS side of the VPN connection. Default: ``::/0``
|
|
65109
65112
|
:param static_routes_only: Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP. If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true`` .
|
|
@@ -65125,6 +65128,7 @@ class CfnVPNConnection(
|
|
|
65125
65128
|
local_ipv4_network_cidr=local_ipv4_network_cidr,
|
|
65126
65129
|
local_ipv6_network_cidr=local_ipv6_network_cidr,
|
|
65127
65130
|
outside_ip_address_type=outside_ip_address_type,
|
|
65131
|
+
pre_shared_key_storage=pre_shared_key_storage,
|
|
65128
65132
|
remote_ipv4_network_cidr=remote_ipv4_network_cidr,
|
|
65129
65133
|
remote_ipv6_network_cidr=remote_ipv6_network_cidr,
|
|
65130
65134
|
static_routes_only=static_routes_only,
|
|
@@ -65271,6 +65275,19 @@ class CfnVPNConnection(
|
|
|
65271
65275
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
65272
65276
|
jsii.set(self, "outsideIpAddressType", value) # pyright: ignore[reportArgumentType]
|
|
65273
65277
|
|
|
65278
|
+
@builtins.property
|
|
65279
|
+
@jsii.member(jsii_name="preSharedKeyStorage")
|
|
65280
|
+
def pre_shared_key_storage(self) -> typing.Optional[builtins.str]:
|
|
65281
|
+
'''Describes the storage location for an instance store-backed AMI.'''
|
|
65282
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "preSharedKeyStorage"))
|
|
65283
|
+
|
|
65284
|
+
@pre_shared_key_storage.setter
|
|
65285
|
+
def pre_shared_key_storage(self, value: typing.Optional[builtins.str]) -> None:
|
|
65286
|
+
if __debug__:
|
|
65287
|
+
type_hints = typing.get_type_hints(_typecheckingstub__04c10bdc6cd7351aee49220faa02dae717ee7f48627da691fb09880833968d0e)
|
|
65288
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
65289
|
+
jsii.set(self, "preSharedKeyStorage", value) # pyright: ignore[reportArgumentType]
|
|
65290
|
+
|
|
65274
65291
|
@builtins.property
|
|
65275
65292
|
@jsii.member(jsii_name="remoteIpv4NetworkCidr")
|
|
65276
65293
|
def remote_ipv4_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
@@ -66394,6 +66411,7 @@ class CfnVPNConnection(
|
|
|
66394
66411
|
"local_ipv4_network_cidr": "localIpv4NetworkCidr",
|
|
66395
66412
|
"local_ipv6_network_cidr": "localIpv6NetworkCidr",
|
|
66396
66413
|
"outside_ip_address_type": "outsideIpAddressType",
|
|
66414
|
+
"pre_shared_key_storage": "preSharedKeyStorage",
|
|
66397
66415
|
"remote_ipv4_network_cidr": "remoteIpv4NetworkCidr",
|
|
66398
66416
|
"remote_ipv6_network_cidr": "remoteIpv6NetworkCidr",
|
|
66399
66417
|
"static_routes_only": "staticRoutesOnly",
|
|
@@ -66415,6 +66433,7 @@ class CfnVPNConnectionProps:
|
|
|
66415
66433
|
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
66416
66434
|
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
66417
66435
|
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
66436
|
+
pre_shared_key_storage: typing.Optional[builtins.str] = None,
|
|
66418
66437
|
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
66419
66438
|
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
66420
66439
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
@@ -66433,6 +66452,7 @@ class CfnVPNConnectionProps:
|
|
|
66433
66452
|
:param local_ipv4_network_cidr: The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``0.0.0.0/0``
|
|
66434
66453
|
:param local_ipv6_network_cidr: The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``::/0``
|
|
66435
66454
|
:param outside_ip_address_type: The type of IP address assigned to the outside interface of the customer gateway device. Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6`` Default: ``PublicIpv4``
|
|
66455
|
+
:param pre_shared_key_storage: Describes the storage location for an instance store-backed AMI.
|
|
66436
66456
|
:param remote_ipv4_network_cidr: The IPv4 CIDR on the AWS side of the VPN connection. Default: ``0.0.0.0/0``
|
|
66437
66457
|
:param remote_ipv6_network_cidr: The IPv6 CIDR on the AWS side of the VPN connection. Default: ``::/0``
|
|
66438
66458
|
:param static_routes_only: Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP. If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true`` .
|
|
@@ -66461,6 +66481,7 @@ class CfnVPNConnectionProps:
|
|
|
66461
66481
|
local_ipv4_network_cidr="localIpv4NetworkCidr",
|
|
66462
66482
|
local_ipv6_network_cidr="localIpv6NetworkCidr",
|
|
66463
66483
|
outside_ip_address_type="outsideIpAddressType",
|
|
66484
|
+
pre_shared_key_storage="preSharedKeyStorage",
|
|
66464
66485
|
remote_ipv4_network_cidr="remoteIpv4NetworkCidr",
|
|
66465
66486
|
remote_ipv6_network_cidr="remoteIpv6NetworkCidr",
|
|
66466
66487
|
static_routes_only=False,
|
|
@@ -66524,6 +66545,7 @@ class CfnVPNConnectionProps:
|
|
|
66524
66545
|
check_type(argname="argument local_ipv4_network_cidr", value=local_ipv4_network_cidr, expected_type=type_hints["local_ipv4_network_cidr"])
|
|
66525
66546
|
check_type(argname="argument local_ipv6_network_cidr", value=local_ipv6_network_cidr, expected_type=type_hints["local_ipv6_network_cidr"])
|
|
66526
66547
|
check_type(argname="argument outside_ip_address_type", value=outside_ip_address_type, expected_type=type_hints["outside_ip_address_type"])
|
|
66548
|
+
check_type(argname="argument pre_shared_key_storage", value=pre_shared_key_storage, expected_type=type_hints["pre_shared_key_storage"])
|
|
66527
66549
|
check_type(argname="argument remote_ipv4_network_cidr", value=remote_ipv4_network_cidr, expected_type=type_hints["remote_ipv4_network_cidr"])
|
|
66528
66550
|
check_type(argname="argument remote_ipv6_network_cidr", value=remote_ipv6_network_cidr, expected_type=type_hints["remote_ipv6_network_cidr"])
|
|
66529
66551
|
check_type(argname="argument static_routes_only", value=static_routes_only, expected_type=type_hints["static_routes_only"])
|
|
@@ -66545,6 +66567,8 @@ class CfnVPNConnectionProps:
|
|
|
66545
66567
|
self._values["local_ipv6_network_cidr"] = local_ipv6_network_cidr
|
|
66546
66568
|
if outside_ip_address_type is not None:
|
|
66547
66569
|
self._values["outside_ip_address_type"] = outside_ip_address_type
|
|
66570
|
+
if pre_shared_key_storage is not None:
|
|
66571
|
+
self._values["pre_shared_key_storage"] = pre_shared_key_storage
|
|
66548
66572
|
if remote_ipv4_network_cidr is not None:
|
|
66549
66573
|
self._values["remote_ipv4_network_cidr"] = remote_ipv4_network_cidr
|
|
66550
66574
|
if remote_ipv6_network_cidr is not None:
|
|
@@ -66632,6 +66656,15 @@ class CfnVPNConnectionProps:
|
|
|
66632
66656
|
result = self._values.get("outside_ip_address_type")
|
|
66633
66657
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
66634
66658
|
|
|
66659
|
+
@builtins.property
|
|
66660
|
+
def pre_shared_key_storage(self) -> typing.Optional[builtins.str]:
|
|
66661
|
+
'''Describes the storage location for an instance store-backed AMI.
|
|
66662
|
+
|
|
66663
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-presharedkeystorage
|
|
66664
|
+
'''
|
|
66665
|
+
result = self._values.get("pre_shared_key_storage")
|
|
66666
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
66667
|
+
|
|
66635
66668
|
@builtins.property
|
|
66636
66669
|
def remote_ipv4_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
66637
66670
|
'''The IPv4 CIDR on the AWS side of the VPN connection.
|
|
@@ -114404,6 +114437,7 @@ def _typecheckingstub__e77cb0020f820726a03bfb8968e16674c7c5924b0f133f50aeda1623f
|
|
|
114404
114437
|
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
114405
114438
|
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
114406
114439
|
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
114440
|
+
pre_shared_key_storage: typing.Optional[builtins.str] = None,
|
|
114407
114441
|
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
114408
114442
|
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
114409
114443
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
@@ -114465,6 +114499,12 @@ def _typecheckingstub__286d7ffc0407931563597ee64c1dea1894940b55a7dbee144187922a5
|
|
|
114465
114499
|
"""Type checking stubs"""
|
|
114466
114500
|
pass
|
|
114467
114501
|
|
|
114502
|
+
def _typecheckingstub__04c10bdc6cd7351aee49220faa02dae717ee7f48627da691fb09880833968d0e(
|
|
114503
|
+
value: typing.Optional[builtins.str],
|
|
114504
|
+
) -> None:
|
|
114505
|
+
"""Type checking stubs"""
|
|
114506
|
+
pass
|
|
114507
|
+
|
|
114468
114508
|
def _typecheckingstub__dd38c2ecf12fc1114502ef4d2747922a8b61667c72e4a3f2ef17e3b68a566752(
|
|
114469
114509
|
value: typing.Optional[builtins.str],
|
|
114470
114510
|
) -> None:
|
|
@@ -114618,6 +114658,7 @@ def _typecheckingstub__af86adbb8c205a09b71896c35d8dac6b766cf096efd20c2deb4c2c01e
|
|
|
114618
114658
|
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
114619
114659
|
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
114620
114660
|
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
114661
|
+
pre_shared_key_storage: typing.Optional[builtins.str] = None,
|
|
114621
114662
|
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
114622
114663
|
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
114623
114664
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|