aws-cdk-lib 2.188.0__py3-none-any.whl → 2.189.1__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 +18 -2
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.188.0.jsii.tgz → aws-cdk-lib@2.189.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +2 -0
- aws_cdk/aws_apigatewayv2/__init__.py +82 -0
- aws_cdk/aws_batch/__init__.py +2 -0
- aws_cdk/aws_bedrock/__init__.py +24 -22
- aws_cdk/aws_dsql/__init__.py +366 -0
- aws_cdk/aws_dynamodb/__init__.py +4 -4
- aws_cdk/aws_ec2/__init__.py +129 -100
- aws_cdk/aws_fsx/__init__.py +2 -8
- aws_cdk/aws_gamelift/__init__.py +135 -9
- aws_cdk/aws_groundstation/__init__.py +4 -2
- aws_cdk/aws_paymentcryptography/__init__.py +6 -2
- aws_cdk/aws_redshiftserverless/__init__.py +166 -0
- aws_cdk/custom_resources/__init__.py +5 -5
- aws_cdk/pipelines/__init__.py +39 -1
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.1.dist-info}/RECORD +23 -22
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -22660,7 +22660,7 @@ class CfnInstance(
|
|
|
22660
22660
|
:param associate_public_ip_address: Indicates whether to assign a public IPv4 address to an instance. Applies only if creating a network interface when launching an instance. The network interface must be the primary network interface. If launching into a default subnet, the default value is ``true`` . AWS charges for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the *Public IPv4 Address* tab on the `VPC pricing page <https://docs.aws.amazon.com/vpc/pricing/>`_ .
|
|
22661
22661
|
:param delete_on_termination: Indicates whether the network interface is deleted when the instance is terminated. Applies only if creating a network interface when launching an instance.
|
|
22662
22662
|
:param description: The description of the network interface. Applies only if creating a network interface when launching an instance.
|
|
22663
|
-
:param ena_srd_specification:
|
|
22663
|
+
:param ena_srd_specification: Configures ENA Express for UDP network traffic.
|
|
22664
22664
|
:param group_set: The IDs of the security groups for the network interface. Applies only if creating a network interface when launching an instance.
|
|
22665
22665
|
:param ipv6_address_count: A number of IPv6 addresses to assign to the network interface. Amazon EC2 chooses the IPv6 addresses from the range of the subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you've specified a minimum number of instances to launch.
|
|
22666
22666
|
:param ipv6_addresses: The IPv6 addresses to assign to the network interface. You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you've specified a minimum number of instances to launch.
|
|
@@ -22824,7 +22824,7 @@ class CfnInstance(
|
|
|
22824
22824
|
def ena_srd_specification(
|
|
22825
22825
|
self,
|
|
22826
22826
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInstance.EnaSrdSpecificationProperty"]]:
|
|
22827
|
-
'''
|
|
22827
|
+
'''Configures ENA Express for UDP network traffic.
|
|
22828
22828
|
|
|
22829
22829
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-networkinterface.html#cfn-ec2-instance-networkinterface-enasrdspecification
|
|
22830
22830
|
'''
|
|
@@ -29498,7 +29498,7 @@ class CfnLaunchTemplate(
|
|
|
29498
29498
|
:param connection_tracking_specification: A connection tracking specification for the network interface.
|
|
29499
29499
|
:param delete_on_termination: Indicates whether the network interface is deleted when the instance is terminated.
|
|
29500
29500
|
:param description: A description for the network interface.
|
|
29501
|
-
:param device_index: The device index for the network interface attachment. If the network interface is of type ``interface`` , you must specify a device index. If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance`` , then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance`` .
|
|
29501
|
+
:param device_index: The device index for the network interface attachment. The primary network interface has a device index of 0. If the network interface is of type ``interface`` , you must specify a device index. If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance`` , then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance`` .
|
|
29502
29502
|
:param ena_srd_specification: The ENA Express configuration for the network interface.
|
|
29503
29503
|
:param groups: The IDs of one or more security groups.
|
|
29504
29504
|
:param interface_type: The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa`` or ``efa`` . For more information, see `Elastic Fabric Adapter for AI/ML and HPC workloads on Amazon EC2 <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html>`_ in the *Amazon EC2 User Guide* . If you are not creating an EFA, specify ``interface`` or omit this parameter. If you specify ``efa-only`` , do not assign any IP addresses to the network interface. EFA-only network interfaces do not support IP addresses. Valid values: ``interface`` | ``efa`` | ``efa-only``
|
|
@@ -29699,7 +29699,7 @@ class CfnLaunchTemplate(
|
|
|
29699
29699
|
def device_index(self) -> typing.Optional[jsii.Number]:
|
|
29700
29700
|
'''The device index for the network interface attachment.
|
|
29701
29701
|
|
|
29702
|
-
If the network interface is of type ``interface`` , you must specify a device index.
|
|
29702
|
+
The primary network interface has a device index of 0. If the network interface is of type ``interface`` , you must specify a device index.
|
|
29703
29703
|
|
|
29704
29704
|
If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance`` , then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance`` .
|
|
29705
29705
|
|
|
@@ -42164,7 +42164,11 @@ class CfnRouteServer(
|
|
|
42164
42164
|
metaclass=jsii.JSIIMeta,
|
|
42165
42165
|
jsii_type="aws-cdk-lib.aws_ec2.CfnRouteServer",
|
|
42166
42166
|
):
|
|
42167
|
-
'''
|
|
42167
|
+
'''Specifies a route server to manage dynamic routing in a VPC.
|
|
42168
|
+
|
|
42169
|
+
Amazon VPC Route Server simplifies routing for traffic between workloads that are deployed within a VPC and its internet gateways. With this feature, VPC Route Server dynamically updates VPC and internet gateway route tables with your preferred routes to achieve routing fault tolerance for those workloads. This enables you to automatically reroute traffic within a VPC, which increases the manageability of VPC routing and interoperability with third-party workloads.
|
|
42170
|
+
|
|
42171
|
+
For more information see `Dynamic routing in your VPC with VPC Route Server <https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html>`_ in the *Amazon VPC User Guide* .
|
|
42168
42172
|
|
|
42169
42173
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html
|
|
42170
42174
|
:cloudformationResource: AWS::EC2::RouteServer
|
|
@@ -42204,11 +42208,11 @@ class CfnRouteServer(
|
|
|
42204
42208
|
'''
|
|
42205
42209
|
:param scope: Scope in which this resource is defined.
|
|
42206
42210
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
42207
|
-
:param amazon_side_asn: The
|
|
42208
|
-
:param persist_routes:
|
|
42209
|
-
:param persist_routes_duration: The
|
|
42210
|
-
:param sns_notifications_enabled:
|
|
42211
|
-
:param tags:
|
|
42211
|
+
:param amazon_side_asn: The Border Gateway Protocol (BGP) Autonomous System Number (ASN) for the appliance. Valid values are from 1 to 4294967295. We recommend using a private ASN in the 64512–65534 (16-bit ASN) or 4200000000–4294967294 (32-bit ASN) range.
|
|
42212
|
+
:param persist_routes: Indicates whether routes should be persisted after all BGP sessions are terminated.
|
|
42213
|
+
:param persist_routes_duration: The number of minutes a route server will wait after BGP is re-established to unpersist the routes in the FIB and RIB. Value must be in the range of 1-5. The default value is 1. Only valid if ``persistRoutesState`` is 'enabled'. If you set the duration to 1 minute, then when your network appliance re-establishes BGP with route server, it has 1 minute to relearn it's adjacent network and advertise those routes to route server before route server resumes normal functionality. In most cases, 1 minute is probably sufficient. If, however, you have concerns that your BGP network may not be capable of fully re-establishing and re-learning everything in 1 minute, you can increase the duration up to 5 minutes.
|
|
42214
|
+
:param sns_notifications_enabled: Indicates whether SNS notifications are enabled for the route server. Enabling SNS notifications persists BGP status changes to an SNS topic provisioned by AWS .
|
|
42215
|
+
:param tags: Any tags assigned to the route server.
|
|
42212
42216
|
'''
|
|
42213
42217
|
if __debug__:
|
|
42214
42218
|
type_hints = typing.get_type_hints(_typecheckingstub__e744a2467360e6327da0cb79726e11e01d594dbeec11f2982a422bcb176447d5)
|
|
@@ -42257,7 +42261,7 @@ class CfnRouteServer(
|
|
|
42257
42261
|
@builtins.property
|
|
42258
42262
|
@jsii.member(jsii_name="attrArn")
|
|
42259
42263
|
def attr_arn(self) -> builtins.str:
|
|
42260
|
-
'''The
|
|
42264
|
+
'''The ARN of the route server.
|
|
42261
42265
|
|
|
42262
42266
|
:cloudformationAttribute: Arn
|
|
42263
42267
|
'''
|
|
@@ -42266,7 +42270,7 @@ class CfnRouteServer(
|
|
|
42266
42270
|
@builtins.property
|
|
42267
42271
|
@jsii.member(jsii_name="attrId")
|
|
42268
42272
|
def attr_id(self) -> builtins.str:
|
|
42269
|
-
'''The ID of the
|
|
42273
|
+
'''The ID of the route server.
|
|
42270
42274
|
|
|
42271
42275
|
:cloudformationAttribute: Id
|
|
42272
42276
|
'''
|
|
@@ -42286,7 +42290,7 @@ class CfnRouteServer(
|
|
|
42286
42290
|
@builtins.property
|
|
42287
42291
|
@jsii.member(jsii_name="amazonSideAsn")
|
|
42288
42292
|
def amazon_side_asn(self) -> jsii.Number:
|
|
42289
|
-
'''The
|
|
42293
|
+
'''The Border Gateway Protocol (BGP) Autonomous System Number (ASN) for the appliance.'''
|
|
42290
42294
|
return typing.cast(jsii.Number, jsii.get(self, "amazonSideAsn"))
|
|
42291
42295
|
|
|
42292
42296
|
@amazon_side_asn.setter
|
|
@@ -42299,7 +42303,7 @@ class CfnRouteServer(
|
|
|
42299
42303
|
@builtins.property
|
|
42300
42304
|
@jsii.member(jsii_name="persistRoutes")
|
|
42301
42305
|
def persist_routes(self) -> typing.Optional[builtins.str]:
|
|
42302
|
-
'''
|
|
42306
|
+
'''Indicates whether routes should be persisted after all BGP sessions are terminated.'''
|
|
42303
42307
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "persistRoutes"))
|
|
42304
42308
|
|
|
42305
42309
|
@persist_routes.setter
|
|
@@ -42312,7 +42316,7 @@ class CfnRouteServer(
|
|
|
42312
42316
|
@builtins.property
|
|
42313
42317
|
@jsii.member(jsii_name="persistRoutesDuration")
|
|
42314
42318
|
def persist_routes_duration(self) -> typing.Optional[jsii.Number]:
|
|
42315
|
-
'''The
|
|
42319
|
+
'''The number of minutes a route server will wait after BGP is re-established to unpersist the routes in the FIB and RIB.'''
|
|
42316
42320
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "persistRoutesDuration"))
|
|
42317
42321
|
|
|
42318
42322
|
@persist_routes_duration.setter
|
|
@@ -42327,7 +42331,7 @@ class CfnRouteServer(
|
|
|
42327
42331
|
def sns_notifications_enabled(
|
|
42328
42332
|
self,
|
|
42329
42333
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
42330
|
-
'''
|
|
42334
|
+
'''Indicates whether SNS notifications are enabled for the route server.'''
|
|
42331
42335
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "snsNotificationsEnabled"))
|
|
42332
42336
|
|
|
42333
42337
|
@sns_notifications_enabled.setter
|
|
@@ -42343,7 +42347,7 @@ class CfnRouteServer(
|
|
|
42343
42347
|
@builtins.property
|
|
42344
42348
|
@jsii.member(jsii_name="tags")
|
|
42345
42349
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
42346
|
-
'''
|
|
42350
|
+
'''Any tags assigned to the route server.'''
|
|
42347
42351
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
42348
42352
|
|
|
42349
42353
|
@tags.setter
|
|
@@ -42360,7 +42364,9 @@ class CfnRouteServerAssociation(
|
|
|
42360
42364
|
metaclass=jsii.JSIIMeta,
|
|
42361
42365
|
jsii_type="aws-cdk-lib.aws_ec2.CfnRouteServerAssociation",
|
|
42362
42366
|
):
|
|
42363
|
-
'''
|
|
42367
|
+
'''Specifies the association between a route server and a VPC.
|
|
42368
|
+
|
|
42369
|
+
A route server association is the connection established between a route server and a VPC.
|
|
42364
42370
|
|
|
42365
42371
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverassociation.html
|
|
42366
42372
|
:cloudformationResource: AWS::EC2::RouteServerAssociation
|
|
@@ -42389,8 +42395,8 @@ class CfnRouteServerAssociation(
|
|
|
42389
42395
|
'''
|
|
42390
42396
|
:param scope: Scope in which this resource is defined.
|
|
42391
42397
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
42392
|
-
:param route_server_id:
|
|
42393
|
-
:param vpc_id:
|
|
42398
|
+
:param route_server_id: The ID of the associated route server.
|
|
42399
|
+
:param vpc_id: The ID of the associated VPC.
|
|
42394
42400
|
'''
|
|
42395
42401
|
if __debug__:
|
|
42396
42402
|
type_hints = typing.get_type_hints(_typecheckingstub__3e6189f73b644788c8019b72b4d8a2aa6c79c4d018333b9c657eba49644b2680)
|
|
@@ -42440,7 +42446,7 @@ class CfnRouteServerAssociation(
|
|
|
42440
42446
|
@builtins.property
|
|
42441
42447
|
@jsii.member(jsii_name="routeServerId")
|
|
42442
42448
|
def route_server_id(self) -> builtins.str:
|
|
42443
|
-
'''
|
|
42449
|
+
'''The ID of the associated route server.'''
|
|
42444
42450
|
return typing.cast(builtins.str, jsii.get(self, "routeServerId"))
|
|
42445
42451
|
|
|
42446
42452
|
@route_server_id.setter
|
|
@@ -42453,7 +42459,7 @@ class CfnRouteServerAssociation(
|
|
|
42453
42459
|
@builtins.property
|
|
42454
42460
|
@jsii.member(jsii_name="vpcId")
|
|
42455
42461
|
def vpc_id(self) -> builtins.str:
|
|
42456
|
-
'''
|
|
42462
|
+
'''The ID of the associated VPC.'''
|
|
42457
42463
|
return typing.cast(builtins.str, jsii.get(self, "vpcId"))
|
|
42458
42464
|
|
|
42459
42465
|
@vpc_id.setter
|
|
@@ -42473,8 +42479,8 @@ class CfnRouteServerAssociationProps:
|
|
|
42473
42479
|
def __init__(self, *, route_server_id: builtins.str, vpc_id: builtins.str) -> None:
|
|
42474
42480
|
'''Properties for defining a ``CfnRouteServerAssociation``.
|
|
42475
42481
|
|
|
42476
|
-
:param route_server_id:
|
|
42477
|
-
:param vpc_id:
|
|
42482
|
+
:param route_server_id: The ID of the associated route server.
|
|
42483
|
+
:param vpc_id: The ID of the associated VPC.
|
|
42478
42484
|
|
|
42479
42485
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverassociation.html
|
|
42480
42486
|
:exampleMetadata: fixture=_generated
|
|
@@ -42501,7 +42507,7 @@ class CfnRouteServerAssociationProps:
|
|
|
42501
42507
|
|
|
42502
42508
|
@builtins.property
|
|
42503
42509
|
def route_server_id(self) -> builtins.str:
|
|
42504
|
-
'''
|
|
42510
|
+
'''The ID of the associated route server.
|
|
42505
42511
|
|
|
42506
42512
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverassociation.html#cfn-ec2-routeserverassociation-routeserverid
|
|
42507
42513
|
'''
|
|
@@ -42511,7 +42517,7 @@ class CfnRouteServerAssociationProps:
|
|
|
42511
42517
|
|
|
42512
42518
|
@builtins.property
|
|
42513
42519
|
def vpc_id(self) -> builtins.str:
|
|
42514
|
-
'''
|
|
42520
|
+
'''The ID of the associated VPC.
|
|
42515
42521
|
|
|
42516
42522
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverassociation.html#cfn-ec2-routeserverassociation-vpcid
|
|
42517
42523
|
'''
|
|
@@ -42537,7 +42543,11 @@ class CfnRouteServerEndpoint(
|
|
|
42537
42543
|
metaclass=jsii.JSIIMeta,
|
|
42538
42544
|
jsii_type="aws-cdk-lib.aws_ec2.CfnRouteServerEndpoint",
|
|
42539
42545
|
):
|
|
42540
|
-
'''
|
|
42546
|
+
'''Creates a new endpoint for a route server in a specified subnet.
|
|
42547
|
+
|
|
42548
|
+
A route server endpoint is an AWS -managed component inside a subnet that facilitates `BGP (Border Gateway Protocol) <https://docs.aws.amazon.com/https://en.wikipedia.org/wiki/Border_Gateway_Protocol>`_ connections between your route server and your BGP peers.
|
|
42549
|
+
|
|
42550
|
+
For more information see `Dynamic routing in your VPC with VPC Route Server <https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html>`_ in the *Amazon VPC User Guide* .
|
|
42541
42551
|
|
|
42542
42552
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html
|
|
42543
42553
|
:cloudformationResource: AWS::EC2::RouteServerEndpoint
|
|
@@ -42573,9 +42583,9 @@ class CfnRouteServerEndpoint(
|
|
|
42573
42583
|
'''
|
|
42574
42584
|
:param scope: Scope in which this resource is defined.
|
|
42575
42585
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
42576
|
-
:param route_server_id:
|
|
42577
|
-
:param subnet_id:
|
|
42578
|
-
:param tags:
|
|
42586
|
+
:param route_server_id: The ID of the route server associated with this endpoint.
|
|
42587
|
+
:param subnet_id: The ID of the subnet to place the route server endpoint into.
|
|
42588
|
+
:param tags: Any tags assigned to the route server endpoint.
|
|
42579
42589
|
'''
|
|
42580
42590
|
if __debug__:
|
|
42581
42591
|
type_hints = typing.get_type_hints(_typecheckingstub__bc6285d87d5119c3a92dc59ed8148d7d11adb84676a3fb4a32f638fcab96de86)
|
|
@@ -42620,7 +42630,7 @@ class CfnRouteServerEndpoint(
|
|
|
42620
42630
|
@builtins.property
|
|
42621
42631
|
@jsii.member(jsii_name="attrArn")
|
|
42622
42632
|
def attr_arn(self) -> builtins.str:
|
|
42623
|
-
'''The
|
|
42633
|
+
'''The ARN for the endpoint.
|
|
42624
42634
|
|
|
42625
42635
|
:cloudformationAttribute: Arn
|
|
42626
42636
|
'''
|
|
@@ -42629,7 +42639,7 @@ class CfnRouteServerEndpoint(
|
|
|
42629
42639
|
@builtins.property
|
|
42630
42640
|
@jsii.member(jsii_name="attrEniAddress")
|
|
42631
42641
|
def attr_eni_address(self) -> builtins.str:
|
|
42632
|
-
'''
|
|
42642
|
+
'''The IP address of the Elastic network interface for the endpoint.
|
|
42633
42643
|
|
|
42634
42644
|
:cloudformationAttribute: EniAddress
|
|
42635
42645
|
'''
|
|
@@ -42638,7 +42648,7 @@ class CfnRouteServerEndpoint(
|
|
|
42638
42648
|
@builtins.property
|
|
42639
42649
|
@jsii.member(jsii_name="attrEniId")
|
|
42640
42650
|
def attr_eni_id(self) -> builtins.str:
|
|
42641
|
-
'''
|
|
42651
|
+
'''The ID of the Elastic network interface for the endpoint.
|
|
42642
42652
|
|
|
42643
42653
|
:cloudformationAttribute: EniId
|
|
42644
42654
|
'''
|
|
@@ -42647,7 +42657,7 @@ class CfnRouteServerEndpoint(
|
|
|
42647
42657
|
@builtins.property
|
|
42648
42658
|
@jsii.member(jsii_name="attrId")
|
|
42649
42659
|
def attr_id(self) -> builtins.str:
|
|
42650
|
-
'''The
|
|
42660
|
+
'''The unique identifier of the route server endpoint.
|
|
42651
42661
|
|
|
42652
42662
|
:cloudformationAttribute: Id
|
|
42653
42663
|
'''
|
|
@@ -42656,7 +42666,7 @@ class CfnRouteServerEndpoint(
|
|
|
42656
42666
|
@builtins.property
|
|
42657
42667
|
@jsii.member(jsii_name="attrVpcId")
|
|
42658
42668
|
def attr_vpc_id(self) -> builtins.str:
|
|
42659
|
-
'''VPC
|
|
42669
|
+
'''The ID of the VPC containing the endpoint.
|
|
42660
42670
|
|
|
42661
42671
|
:cloudformationAttribute: VpcId
|
|
42662
42672
|
'''
|
|
@@ -42676,7 +42686,7 @@ class CfnRouteServerEndpoint(
|
|
|
42676
42686
|
@builtins.property
|
|
42677
42687
|
@jsii.member(jsii_name="routeServerId")
|
|
42678
42688
|
def route_server_id(self) -> builtins.str:
|
|
42679
|
-
'''
|
|
42689
|
+
'''The ID of the route server associated with this endpoint.'''
|
|
42680
42690
|
return typing.cast(builtins.str, jsii.get(self, "routeServerId"))
|
|
42681
42691
|
|
|
42682
42692
|
@route_server_id.setter
|
|
@@ -42689,7 +42699,7 @@ class CfnRouteServerEndpoint(
|
|
|
42689
42699
|
@builtins.property
|
|
42690
42700
|
@jsii.member(jsii_name="subnetId")
|
|
42691
42701
|
def subnet_id(self) -> builtins.str:
|
|
42692
|
-
'''
|
|
42702
|
+
'''The ID of the subnet to place the route server endpoint into.'''
|
|
42693
42703
|
return typing.cast(builtins.str, jsii.get(self, "subnetId"))
|
|
42694
42704
|
|
|
42695
42705
|
@subnet_id.setter
|
|
@@ -42702,7 +42712,7 @@ class CfnRouteServerEndpoint(
|
|
|
42702
42712
|
@builtins.property
|
|
42703
42713
|
@jsii.member(jsii_name="tags")
|
|
42704
42714
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
42705
|
-
'''
|
|
42715
|
+
'''Any tags assigned to the route server endpoint.'''
|
|
42706
42716
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
42707
42717
|
|
|
42708
42718
|
@tags.setter
|
|
@@ -42732,9 +42742,9 @@ class CfnRouteServerEndpointProps:
|
|
|
42732
42742
|
) -> None:
|
|
42733
42743
|
'''Properties for defining a ``CfnRouteServerEndpoint``.
|
|
42734
42744
|
|
|
42735
|
-
:param route_server_id:
|
|
42736
|
-
:param subnet_id:
|
|
42737
|
-
:param tags:
|
|
42745
|
+
:param route_server_id: The ID of the route server associated with this endpoint.
|
|
42746
|
+
:param subnet_id: The ID of the subnet to place the route server endpoint into.
|
|
42747
|
+
:param tags: Any tags assigned to the route server endpoint.
|
|
42738
42748
|
|
|
42739
42749
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html
|
|
42740
42750
|
:exampleMetadata: fixture=_generated
|
|
@@ -42770,7 +42780,7 @@ class CfnRouteServerEndpointProps:
|
|
|
42770
42780
|
|
|
42771
42781
|
@builtins.property
|
|
42772
42782
|
def route_server_id(self) -> builtins.str:
|
|
42773
|
-
'''
|
|
42783
|
+
'''The ID of the route server associated with this endpoint.
|
|
42774
42784
|
|
|
42775
42785
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html#cfn-ec2-routeserverendpoint-routeserverid
|
|
42776
42786
|
'''
|
|
@@ -42780,7 +42790,7 @@ class CfnRouteServerEndpointProps:
|
|
|
42780
42790
|
|
|
42781
42791
|
@builtins.property
|
|
42782
42792
|
def subnet_id(self) -> builtins.str:
|
|
42783
|
-
'''
|
|
42793
|
+
'''The ID of the subnet to place the route server endpoint into.
|
|
42784
42794
|
|
|
42785
42795
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html#cfn-ec2-routeserverendpoint-subnetid
|
|
42786
42796
|
'''
|
|
@@ -42790,7 +42800,7 @@ class CfnRouteServerEndpointProps:
|
|
|
42790
42800
|
|
|
42791
42801
|
@builtins.property
|
|
42792
42802
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
42793
|
-
'''
|
|
42803
|
+
'''Any tags assigned to the route server endpoint.
|
|
42794
42804
|
|
|
42795
42805
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html#cfn-ec2-routeserverendpoint-tags
|
|
42796
42806
|
'''
|
|
@@ -42815,7 +42825,9 @@ class CfnRouteServerPeer(
|
|
|
42815
42825
|
metaclass=jsii.JSIIMeta,
|
|
42816
42826
|
jsii_type="aws-cdk-lib.aws_ec2.CfnRouteServerPeer",
|
|
42817
42827
|
):
|
|
42818
|
-
'''
|
|
42828
|
+
'''Specifies a BGP peer configuration for a route server endpoint.
|
|
42829
|
+
|
|
42830
|
+
A route server peer is a session between a route server endpoint and the device deployed in AWS (such as a firewall appliance or other network security function running on an EC2 instance).
|
|
42819
42831
|
|
|
42820
42832
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html
|
|
42821
42833
|
:cloudformationResource: AWS::EC2::RouteServerPeer
|
|
@@ -42856,10 +42868,10 @@ class CfnRouteServerPeer(
|
|
|
42856
42868
|
'''
|
|
42857
42869
|
:param scope: Scope in which this resource is defined.
|
|
42858
42870
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
42859
|
-
:param bgp_options: BGP
|
|
42860
|
-
:param peer_address:
|
|
42861
|
-
:param route_server_endpoint_id:
|
|
42862
|
-
:param tags:
|
|
42871
|
+
:param bgp_options: The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.
|
|
42872
|
+
:param peer_address: The IPv4 address of the peer device.
|
|
42873
|
+
:param route_server_endpoint_id: The ID of the route server endpoint associated with this peer.
|
|
42874
|
+
:param tags: Any tags assigned to the route server peer.
|
|
42863
42875
|
'''
|
|
42864
42876
|
if __debug__:
|
|
42865
42877
|
type_hints = typing.get_type_hints(_typecheckingstub__1a1790ead48cbfa3b30bad1ac0c338d415fa3cdaeb20762a23ab6b7030c2266d)
|
|
@@ -42907,7 +42919,7 @@ class CfnRouteServerPeer(
|
|
|
42907
42919
|
@builtins.property
|
|
42908
42920
|
@jsii.member(jsii_name="attrArn")
|
|
42909
42921
|
def attr_arn(self) -> builtins.str:
|
|
42910
|
-
'''The
|
|
42922
|
+
'''The ARN of the route server peer.
|
|
42911
42923
|
|
|
42912
42924
|
:cloudformationAttribute: Arn
|
|
42913
42925
|
'''
|
|
@@ -42916,7 +42928,7 @@ class CfnRouteServerPeer(
|
|
|
42916
42928
|
@builtins.property
|
|
42917
42929
|
@jsii.member(jsii_name="attrEndpointEniAddress")
|
|
42918
42930
|
def attr_endpoint_eni_address(self) -> builtins.str:
|
|
42919
|
-
'''
|
|
42931
|
+
'''The IP address of the Elastic network interface for the route server endpoint.
|
|
42920
42932
|
|
|
42921
42933
|
:cloudformationAttribute: EndpointEniAddress
|
|
42922
42934
|
'''
|
|
@@ -42925,7 +42937,7 @@ class CfnRouteServerPeer(
|
|
|
42925
42937
|
@builtins.property
|
|
42926
42938
|
@jsii.member(jsii_name="attrEndpointEniId")
|
|
42927
42939
|
def attr_endpoint_eni_id(self) -> builtins.str:
|
|
42928
|
-
'''
|
|
42940
|
+
'''The ID of the Elastic network interface for the route server endpoint.
|
|
42929
42941
|
|
|
42930
42942
|
:cloudformationAttribute: EndpointEniId
|
|
42931
42943
|
'''
|
|
@@ -42934,7 +42946,7 @@ class CfnRouteServerPeer(
|
|
|
42934
42946
|
@builtins.property
|
|
42935
42947
|
@jsii.member(jsii_name="attrId")
|
|
42936
42948
|
def attr_id(self) -> builtins.str:
|
|
42937
|
-
'''The ID of the
|
|
42949
|
+
'''The ID of the route server peer.
|
|
42938
42950
|
|
|
42939
42951
|
:cloudformationAttribute: Id
|
|
42940
42952
|
'''
|
|
@@ -42943,7 +42955,7 @@ class CfnRouteServerPeer(
|
|
|
42943
42955
|
@builtins.property
|
|
42944
42956
|
@jsii.member(jsii_name="attrRouteServerId")
|
|
42945
42957
|
def attr_route_server_id(self) -> builtins.str:
|
|
42946
|
-
'''
|
|
42958
|
+
'''The ID of the route server associated with this peer.
|
|
42947
42959
|
|
|
42948
42960
|
:cloudformationAttribute: RouteServerId
|
|
42949
42961
|
'''
|
|
@@ -42952,7 +42964,7 @@ class CfnRouteServerPeer(
|
|
|
42952
42964
|
@builtins.property
|
|
42953
42965
|
@jsii.member(jsii_name="attrSubnetId")
|
|
42954
42966
|
def attr_subnet_id(self) -> builtins.str:
|
|
42955
|
-
'''
|
|
42967
|
+
'''The ID of the subnet containing the route server peer.
|
|
42956
42968
|
|
|
42957
42969
|
:cloudformationAttribute: SubnetId
|
|
42958
42970
|
'''
|
|
@@ -42961,7 +42973,7 @@ class CfnRouteServerPeer(
|
|
|
42961
42973
|
@builtins.property
|
|
42962
42974
|
@jsii.member(jsii_name="attrVpcId")
|
|
42963
42975
|
def attr_vpc_id(self) -> builtins.str:
|
|
42964
|
-
'''VPC
|
|
42976
|
+
'''The ID of the VPC containing the route server peer.
|
|
42965
42977
|
|
|
42966
42978
|
:cloudformationAttribute: VpcId
|
|
42967
42979
|
'''
|
|
@@ -42983,7 +42995,7 @@ class CfnRouteServerPeer(
|
|
|
42983
42995
|
def bgp_options(
|
|
42984
42996
|
self,
|
|
42985
42997
|
) -> typing.Union[_IResolvable_da3f097b, "CfnRouteServerPeer.BgpOptionsProperty"]:
|
|
42986
|
-
'''BGP
|
|
42998
|
+
'''The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.'''
|
|
42987
42999
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnRouteServerPeer.BgpOptionsProperty"], jsii.get(self, "bgpOptions"))
|
|
42988
43000
|
|
|
42989
43001
|
@bgp_options.setter
|
|
@@ -42999,7 +43011,7 @@ class CfnRouteServerPeer(
|
|
|
42999
43011
|
@builtins.property
|
|
43000
43012
|
@jsii.member(jsii_name="peerAddress")
|
|
43001
43013
|
def peer_address(self) -> builtins.str:
|
|
43002
|
-
'''
|
|
43014
|
+
'''The IPv4 address of the peer device.'''
|
|
43003
43015
|
return typing.cast(builtins.str, jsii.get(self, "peerAddress"))
|
|
43004
43016
|
|
|
43005
43017
|
@peer_address.setter
|
|
@@ -43012,7 +43024,7 @@ class CfnRouteServerPeer(
|
|
|
43012
43024
|
@builtins.property
|
|
43013
43025
|
@jsii.member(jsii_name="routeServerEndpointId")
|
|
43014
43026
|
def route_server_endpoint_id(self) -> builtins.str:
|
|
43015
|
-
'''
|
|
43027
|
+
'''The ID of the route server endpoint associated with this peer.'''
|
|
43016
43028
|
return typing.cast(builtins.str, jsii.get(self, "routeServerEndpointId"))
|
|
43017
43029
|
|
|
43018
43030
|
@route_server_endpoint_id.setter
|
|
@@ -43025,7 +43037,7 @@ class CfnRouteServerPeer(
|
|
|
43025
43037
|
@builtins.property
|
|
43026
43038
|
@jsii.member(jsii_name="tags")
|
|
43027
43039
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
43028
|
-
'''
|
|
43040
|
+
'''Any tags assigned to the route server peer.'''
|
|
43029
43041
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
43030
43042
|
|
|
43031
43043
|
@tags.setter
|
|
@@ -43050,10 +43062,10 @@ class CfnRouteServerPeer(
|
|
|
43050
43062
|
peer_asn: typing.Optional[jsii.Number] = None,
|
|
43051
43063
|
peer_liveness_detection: typing.Optional[builtins.str] = None,
|
|
43052
43064
|
) -> None:
|
|
43053
|
-
'''BGP
|
|
43065
|
+
'''The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.
|
|
43054
43066
|
|
|
43055
|
-
:param peer_asn: BGP ASN
|
|
43056
|
-
:param peer_liveness_detection: BGP
|
|
43067
|
+
:param peer_asn: The Border Gateway Protocol (BGP) Autonomous System Number (ASN) for the appliance. Valid values are from 1 to 4294967295. We recommend using a private ASN in the 64512–65534 (16-bit ASN) or 4200000000–4294967294 (32-bit ASN) range.
|
|
43068
|
+
:param peer_liveness_detection: The liveness detection protocol used for the BGP peer. The requested liveness detection protocol for the BGP peer. - ``bgp-keepalive`` : The standard BGP keep alive mechanism ( `RFC4271 <https://docs.aws.amazon.com/https://www.rfc-editor.org/rfc/rfc4271#page-21>`_ ) that is stable but may take longer to fail-over in cases of network impact or router failure. - ``bfd`` : An additional Bidirectional Forwarding Detection (BFD) protocol ( `RFC5880 <https://docs.aws.amazon.com/https://www.rfc-editor.org/rfc/rfc5880>`_ ) that enables fast failover by using more sensitive liveness detection. Defaults to ``bgp-keepalive`` .
|
|
43057
43069
|
|
|
43058
43070
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-routeserverpeer-bgpoptions.html
|
|
43059
43071
|
:exampleMetadata: fixture=_generated
|
|
@@ -43081,7 +43093,9 @@ class CfnRouteServerPeer(
|
|
|
43081
43093
|
|
|
43082
43094
|
@builtins.property
|
|
43083
43095
|
def peer_asn(self) -> typing.Optional[jsii.Number]:
|
|
43084
|
-
'''BGP ASN
|
|
43096
|
+
'''The Border Gateway Protocol (BGP) Autonomous System Number (ASN) for the appliance.
|
|
43097
|
+
|
|
43098
|
+
Valid values are from 1 to 4294967295. We recommend using a private ASN in the 64512–65534 (16-bit ASN) or 4200000000–4294967294 (32-bit ASN) range.
|
|
43085
43099
|
|
|
43086
43100
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-routeserverpeer-bgpoptions.html#cfn-ec2-routeserverpeer-bgpoptions-peerasn
|
|
43087
43101
|
'''
|
|
@@ -43090,7 +43104,14 @@ class CfnRouteServerPeer(
|
|
|
43090
43104
|
|
|
43091
43105
|
@builtins.property
|
|
43092
43106
|
def peer_liveness_detection(self) -> typing.Optional[builtins.str]:
|
|
43093
|
-
'''BGP
|
|
43107
|
+
'''The liveness detection protocol used for the BGP peer.
|
|
43108
|
+
|
|
43109
|
+
The requested liveness detection protocol for the BGP peer.
|
|
43110
|
+
|
|
43111
|
+
- ``bgp-keepalive`` : The standard BGP keep alive mechanism ( `RFC4271 <https://docs.aws.amazon.com/https://www.rfc-editor.org/rfc/rfc4271#page-21>`_ ) that is stable but may take longer to fail-over in cases of network impact or router failure.
|
|
43112
|
+
- ``bfd`` : An additional Bidirectional Forwarding Detection (BFD) protocol ( `RFC5880 <https://docs.aws.amazon.com/https://www.rfc-editor.org/rfc/rfc5880>`_ ) that enables fast failover by using more sensitive liveness detection.
|
|
43113
|
+
|
|
43114
|
+
Defaults to ``bgp-keepalive`` .
|
|
43094
43115
|
|
|
43095
43116
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-routeserverpeer-bgpoptions.html#cfn-ec2-routeserverpeer-bgpoptions-peerlivenessdetection
|
|
43096
43117
|
'''
|
|
@@ -43130,10 +43151,10 @@ class CfnRouteServerPeerProps:
|
|
|
43130
43151
|
) -> None:
|
|
43131
43152
|
'''Properties for defining a ``CfnRouteServerPeer``.
|
|
43132
43153
|
|
|
43133
|
-
:param bgp_options: BGP
|
|
43134
|
-
:param peer_address:
|
|
43135
|
-
:param route_server_endpoint_id:
|
|
43136
|
-
:param tags:
|
|
43154
|
+
:param bgp_options: The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.
|
|
43155
|
+
:param peer_address: The IPv4 address of the peer device.
|
|
43156
|
+
:param route_server_endpoint_id: The ID of the route server endpoint associated with this peer.
|
|
43157
|
+
:param tags: Any tags assigned to the route server peer.
|
|
43137
43158
|
|
|
43138
43159
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html
|
|
43139
43160
|
:exampleMetadata: fixture=_generated
|
|
@@ -43177,7 +43198,7 @@ class CfnRouteServerPeerProps:
|
|
|
43177
43198
|
def bgp_options(
|
|
43178
43199
|
self,
|
|
43179
43200
|
) -> typing.Union[_IResolvable_da3f097b, CfnRouteServerPeer.BgpOptionsProperty]:
|
|
43180
|
-
'''BGP
|
|
43201
|
+
'''The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.
|
|
43181
43202
|
|
|
43182
43203
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html#cfn-ec2-routeserverpeer-bgpoptions
|
|
43183
43204
|
'''
|
|
@@ -43187,7 +43208,7 @@ class CfnRouteServerPeerProps:
|
|
|
43187
43208
|
|
|
43188
43209
|
@builtins.property
|
|
43189
43210
|
def peer_address(self) -> builtins.str:
|
|
43190
|
-
'''
|
|
43211
|
+
'''The IPv4 address of the peer device.
|
|
43191
43212
|
|
|
43192
43213
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html#cfn-ec2-routeserverpeer-peeraddress
|
|
43193
43214
|
'''
|
|
@@ -43197,7 +43218,7 @@ class CfnRouteServerPeerProps:
|
|
|
43197
43218
|
|
|
43198
43219
|
@builtins.property
|
|
43199
43220
|
def route_server_endpoint_id(self) -> builtins.str:
|
|
43200
|
-
'''
|
|
43221
|
+
'''The ID of the route server endpoint associated with this peer.
|
|
43201
43222
|
|
|
43202
43223
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html#cfn-ec2-routeserverpeer-routeserverendpointid
|
|
43203
43224
|
'''
|
|
@@ -43207,7 +43228,7 @@ class CfnRouteServerPeerProps:
|
|
|
43207
43228
|
|
|
43208
43229
|
@builtins.property
|
|
43209
43230
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
43210
|
-
'''
|
|
43231
|
+
'''Any tags assigned to the route server peer.
|
|
43211
43232
|
|
|
43212
43233
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html#cfn-ec2-routeserverpeer-tags
|
|
43213
43234
|
'''
|
|
@@ -43232,7 +43253,9 @@ class CfnRouteServerPropagation(
|
|
|
43232
43253
|
metaclass=jsii.JSIIMeta,
|
|
43233
43254
|
jsii_type="aws-cdk-lib.aws_ec2.CfnRouteServerPropagation",
|
|
43234
43255
|
):
|
|
43235
|
-
'''
|
|
43256
|
+
'''Specifies route propagation from a route server to a route table.
|
|
43257
|
+
|
|
43258
|
+
For more information see `Dynamic routing in your VPC with VPC Route Server <https://docs.aws.amazon.com/vpc/latest/userguide/dynamic-routing-route-server.html>`_ in the *Amazon VPC User Guide* .
|
|
43236
43259
|
|
|
43237
43260
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpropagation.html
|
|
43238
43261
|
:cloudformationResource: AWS::EC2::RouteServerPropagation
|
|
@@ -43261,8 +43284,8 @@ class CfnRouteServerPropagation(
|
|
|
43261
43284
|
'''
|
|
43262
43285
|
:param scope: Scope in which this resource is defined.
|
|
43263
43286
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
43264
|
-
:param route_server_id:
|
|
43265
|
-
:param route_table_id:
|
|
43287
|
+
:param route_server_id: The ID of the route server configured for route propagation.
|
|
43288
|
+
:param route_table_id: The ID of the route table configured for route server propagation.
|
|
43266
43289
|
'''
|
|
43267
43290
|
if __debug__:
|
|
43268
43291
|
type_hints = typing.get_type_hints(_typecheckingstub__0d139e896cf279d926dd7b03bd4605d62bf6e6d336cab83c19f03f115f11332f)
|
|
@@ -43312,7 +43335,7 @@ class CfnRouteServerPropagation(
|
|
|
43312
43335
|
@builtins.property
|
|
43313
43336
|
@jsii.member(jsii_name="routeServerId")
|
|
43314
43337
|
def route_server_id(self) -> builtins.str:
|
|
43315
|
-
'''
|
|
43338
|
+
'''The ID of the route server configured for route propagation.'''
|
|
43316
43339
|
return typing.cast(builtins.str, jsii.get(self, "routeServerId"))
|
|
43317
43340
|
|
|
43318
43341
|
@route_server_id.setter
|
|
@@ -43325,7 +43348,7 @@ class CfnRouteServerPropagation(
|
|
|
43325
43348
|
@builtins.property
|
|
43326
43349
|
@jsii.member(jsii_name="routeTableId")
|
|
43327
43350
|
def route_table_id(self) -> builtins.str:
|
|
43328
|
-
'''
|
|
43351
|
+
'''The ID of the route table configured for route server propagation.'''
|
|
43329
43352
|
return typing.cast(builtins.str, jsii.get(self, "routeTableId"))
|
|
43330
43353
|
|
|
43331
43354
|
@route_table_id.setter
|
|
@@ -43353,8 +43376,8 @@ class CfnRouteServerPropagationProps:
|
|
|
43353
43376
|
) -> None:
|
|
43354
43377
|
'''Properties for defining a ``CfnRouteServerPropagation``.
|
|
43355
43378
|
|
|
43356
|
-
:param route_server_id:
|
|
43357
|
-
:param route_table_id:
|
|
43379
|
+
:param route_server_id: The ID of the route server configured for route propagation.
|
|
43380
|
+
:param route_table_id: The ID of the route table configured for route server propagation.
|
|
43358
43381
|
|
|
43359
43382
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpropagation.html
|
|
43360
43383
|
:exampleMetadata: fixture=_generated
|
|
@@ -43381,7 +43404,7 @@ class CfnRouteServerPropagationProps:
|
|
|
43381
43404
|
|
|
43382
43405
|
@builtins.property
|
|
43383
43406
|
def route_server_id(self) -> builtins.str:
|
|
43384
|
-
'''
|
|
43407
|
+
'''The ID of the route server configured for route propagation.
|
|
43385
43408
|
|
|
43386
43409
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpropagation.html#cfn-ec2-routeserverpropagation-routeserverid
|
|
43387
43410
|
'''
|
|
@@ -43391,7 +43414,7 @@ class CfnRouteServerPropagationProps:
|
|
|
43391
43414
|
|
|
43392
43415
|
@builtins.property
|
|
43393
43416
|
def route_table_id(self) -> builtins.str:
|
|
43394
|
-
'''
|
|
43417
|
+
'''The ID of the route table configured for route server propagation.
|
|
43395
43418
|
|
|
43396
43419
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpropagation.html#cfn-ec2-routeserverpropagation-routetableid
|
|
43397
43420
|
'''
|
|
@@ -43434,11 +43457,11 @@ class CfnRouteServerProps:
|
|
|
43434
43457
|
) -> None:
|
|
43435
43458
|
'''Properties for defining a ``CfnRouteServer``.
|
|
43436
43459
|
|
|
43437
|
-
:param amazon_side_asn: The
|
|
43438
|
-
:param persist_routes:
|
|
43439
|
-
:param persist_routes_duration: The
|
|
43440
|
-
:param sns_notifications_enabled:
|
|
43441
|
-
:param tags:
|
|
43460
|
+
:param amazon_side_asn: The Border Gateway Protocol (BGP) Autonomous System Number (ASN) for the appliance. Valid values are from 1 to 4294967295. We recommend using a private ASN in the 64512–65534 (16-bit ASN) or 4200000000–4294967294 (32-bit ASN) range.
|
|
43461
|
+
:param persist_routes: Indicates whether routes should be persisted after all BGP sessions are terminated.
|
|
43462
|
+
:param persist_routes_duration: The number of minutes a route server will wait after BGP is re-established to unpersist the routes in the FIB and RIB. Value must be in the range of 1-5. The default value is 1. Only valid if ``persistRoutesState`` is 'enabled'. If you set the duration to 1 minute, then when your network appliance re-establishes BGP with route server, it has 1 minute to relearn it's adjacent network and advertise those routes to route server before route server resumes normal functionality. In most cases, 1 minute is probably sufficient. If, however, you have concerns that your BGP network may not be capable of fully re-establishing and re-learning everything in 1 minute, you can increase the duration up to 5 minutes.
|
|
43463
|
+
:param sns_notifications_enabled: Indicates whether SNS notifications are enabled for the route server. Enabling SNS notifications persists BGP status changes to an SNS topic provisioned by AWS .
|
|
43464
|
+
:param tags: Any tags assigned to the route server.
|
|
43442
43465
|
|
|
43443
43466
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html
|
|
43444
43467
|
:exampleMetadata: fixture=_generated
|
|
@@ -43483,7 +43506,9 @@ class CfnRouteServerProps:
|
|
|
43483
43506
|
|
|
43484
43507
|
@builtins.property
|
|
43485
43508
|
def amazon_side_asn(self) -> jsii.Number:
|
|
43486
|
-
'''The
|
|
43509
|
+
'''The Border Gateway Protocol (BGP) Autonomous System Number (ASN) for the appliance.
|
|
43510
|
+
|
|
43511
|
+
Valid values are from 1 to 4294967295. We recommend using a private ASN in the 64512–65534 (16-bit ASN) or 4200000000–4294967294 (32-bit ASN) range.
|
|
43487
43512
|
|
|
43488
43513
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html#cfn-ec2-routeserver-amazonsideasn
|
|
43489
43514
|
'''
|
|
@@ -43493,7 +43518,7 @@ class CfnRouteServerProps:
|
|
|
43493
43518
|
|
|
43494
43519
|
@builtins.property
|
|
43495
43520
|
def persist_routes(self) -> typing.Optional[builtins.str]:
|
|
43496
|
-
'''
|
|
43521
|
+
'''Indicates whether routes should be persisted after all BGP sessions are terminated.
|
|
43497
43522
|
|
|
43498
43523
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html#cfn-ec2-routeserver-persistroutes
|
|
43499
43524
|
'''
|
|
@@ -43502,7 +43527,11 @@ class CfnRouteServerProps:
|
|
|
43502
43527
|
|
|
43503
43528
|
@builtins.property
|
|
43504
43529
|
def persist_routes_duration(self) -> typing.Optional[jsii.Number]:
|
|
43505
|
-
'''The
|
|
43530
|
+
'''The number of minutes a route server will wait after BGP is re-established to unpersist the routes in the FIB and RIB.
|
|
43531
|
+
|
|
43532
|
+
Value must be in the range of 1-5. The default value is 1. Only valid if ``persistRoutesState`` is 'enabled'.
|
|
43533
|
+
|
|
43534
|
+
If you set the duration to 1 minute, then when your network appliance re-establishes BGP with route server, it has 1 minute to relearn it's adjacent network and advertise those routes to route server before route server resumes normal functionality. In most cases, 1 minute is probably sufficient. If, however, you have concerns that your BGP network may not be capable of fully re-establishing and re-learning everything in 1 minute, you can increase the duration up to 5 minutes.
|
|
43506
43535
|
|
|
43507
43536
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html#cfn-ec2-routeserver-persistroutesduration
|
|
43508
43537
|
'''
|
|
@@ -43513,7 +43542,9 @@ class CfnRouteServerProps:
|
|
|
43513
43542
|
def sns_notifications_enabled(
|
|
43514
43543
|
self,
|
|
43515
43544
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
43516
|
-
'''
|
|
43545
|
+
'''Indicates whether SNS notifications are enabled for the route server.
|
|
43546
|
+
|
|
43547
|
+
Enabling SNS notifications persists BGP status changes to an SNS topic provisioned by AWS .
|
|
43517
43548
|
|
|
43518
43549
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html#cfn-ec2-routeserver-snsnotificationsenabled
|
|
43519
43550
|
'''
|
|
@@ -43522,7 +43553,7 @@ class CfnRouteServerProps:
|
|
|
43522
43553
|
|
|
43523
43554
|
@builtins.property
|
|
43524
43555
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
43525
|
-
'''
|
|
43556
|
+
'''Any tags assigned to the route server.
|
|
43526
43557
|
|
|
43527
43558
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html#cfn-ec2-routeserver-tags
|
|
43528
43559
|
'''
|
|
@@ -43762,6 +43793,8 @@ class CfnSecurityGroup(
|
|
|
43762
43793
|
|
|
43763
43794
|
If you do not specify an egress rule, we add egress rules that allow outbound IPv4 and IPv6 traffic on all ports and protocols to any destination. We do not add these rules if you specify your own egress rules.
|
|
43764
43795
|
|
|
43796
|
+
If you modify a rule, CloudFormation removes the existing rule and then adds a new rule. There is a brief period when neither the original rule or the new rule exists, so the corresponding traffic is dropped.
|
|
43797
|
+
|
|
43765
43798
|
This type supports updates. For more information about updating stacks, see `AWS CloudFormation Stacks Updates <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html>`_ .
|
|
43766
43799
|
.. epigraph::
|
|
43767
43800
|
|
|
@@ -43833,8 +43866,8 @@ class CfnSecurityGroup(
|
|
|
43833
43866
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
43834
43867
|
:param group_description: A description for the security group. Constraints: Up to 255 characters in length Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*
|
|
43835
43868
|
:param group_name: The name of the security group. Names are case-insensitive and must be unique within the VPC. Constraints: Up to 255 characters in length. Can't start with ``sg-`` . Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*
|
|
43836
|
-
:param security_group_egress: The outbound rules associated with the security group.
|
|
43837
|
-
:param security_group_ingress: The inbound rules associated with the security group.
|
|
43869
|
+
:param security_group_egress: The outbound rules associated with the security group.
|
|
43870
|
+
:param security_group_ingress: The inbound rules associated with the security group.
|
|
43838
43871
|
:param tags: Any tags assigned to the security group.
|
|
43839
43872
|
:param vpc_id: The ID of the VPC for the security group. If you do not specify a VPC, the default is to use the default VPC for the Region. If there's no specified VPC and no default VPC, security group creation fails.
|
|
43840
43873
|
'''
|
|
@@ -45518,8 +45551,8 @@ class CfnSecurityGroupProps:
|
|
|
45518
45551
|
|
|
45519
45552
|
:param group_description: A description for the security group. Constraints: Up to 255 characters in length Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*
|
|
45520
45553
|
:param group_name: The name of the security group. Names are case-insensitive and must be unique within the VPC. Constraints: Up to 255 characters in length. Can't start with ``sg-`` . Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*
|
|
45521
|
-
:param security_group_egress: The outbound rules associated with the security group.
|
|
45522
|
-
:param security_group_ingress: The inbound rules associated with the security group.
|
|
45554
|
+
:param security_group_egress: The outbound rules associated with the security group.
|
|
45555
|
+
:param security_group_ingress: The inbound rules associated with the security group.
|
|
45523
45556
|
:param tags: Any tags assigned to the security group.
|
|
45524
45557
|
:param vpc_id: The ID of the VPC for the security group. If you do not specify a VPC, the default is to use the default VPC for the Region. If there's no specified VPC and no default VPC, security group creation fails.
|
|
45525
45558
|
|
|
@@ -45625,8 +45658,6 @@ class CfnSecurityGroupProps:
|
|
|
45625
45658
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnSecurityGroup.EgressProperty]]]]:
|
|
45626
45659
|
'''The outbound rules associated with the security group.
|
|
45627
45660
|
|
|
45628
|
-
There is a short interruption during which you cannot connect to the security group.
|
|
45629
|
-
|
|
45630
45661
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-securitygroup.html#cfn-ec2-securitygroup-securitygroupegress
|
|
45631
45662
|
'''
|
|
45632
45663
|
result = self._values.get("security_group_egress")
|
|
@@ -45638,8 +45669,6 @@ class CfnSecurityGroupProps:
|
|
|
45638
45669
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnSecurityGroup.IngressProperty]]]]:
|
|
45639
45670
|
'''The inbound rules associated with the security group.
|
|
45640
45671
|
|
|
45641
|
-
There is a short interruption during which you cannot connect to the security group.
|
|
45642
|
-
|
|
45643
45672
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-securitygroup.html#cfn-ec2-securitygroup-securitygroupingress
|
|
45644
45673
|
'''
|
|
45645
45674
|
result = self._values.get("security_group_ingress")
|