aws-cdk-lib 2.195.0__py3-none-any.whl → 2.196.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 +433 -20
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.195.0.jsii.tgz → aws-cdk-lib@2.196.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amazonmq/__init__.py +2 -2
- aws_cdk/aws_apigateway/__init__.py +148 -69
- aws_cdk/aws_apigatewayv2/__init__.py +155 -24
- aws_cdk/aws_appconfig/__init__.py +24 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
- aws_cdk/aws_appmesh/__init__.py +42 -0
- aws_cdk/aws_appsync/__init__.py +92 -20
- aws_cdk/aws_autoscaling/__init__.py +24 -0
- aws_cdk/aws_backup/__init__.py +53 -14
- aws_cdk/aws_batch/__init__.py +72 -0
- aws_cdk/aws_bedrock/__init__.py +620 -14
- aws_cdk/aws_budgets/__init__.py +569 -0
- aws_cdk/aws_certificatemanager/__init__.py +21 -0
- aws_cdk/aws_chatbot/__init__.py +6 -0
- aws_cdk/aws_cloudfront/__init__.py +87 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
- aws_cdk/aws_cloudtrail/__init__.py +6 -0
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
- aws_cdk/aws_codebuild/__init__.py +48 -0
- aws_cdk/aws_codecommit/__init__.py +6 -0
- aws_cdk/aws_codedeploy/__init__.py +63 -0
- aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
- aws_cdk/aws_codepipeline/__init__.py +6 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
- aws_cdk/aws_codestarnotifications/__init__.py +6 -0
- aws_cdk/aws_cognito/__init__.py +91 -12
- aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
- aws_cdk/aws_config/__init__.py +36 -0
- aws_cdk/aws_datazone/__init__.py +557 -14
- aws_cdk/aws_docdb/__init__.py +27 -3
- aws_cdk/aws_dsql/__init__.py +21 -13
- aws_cdk/aws_dynamodb/__init__.py +20 -8
- aws_cdk/aws_ec2/__init__.py +282 -21
- aws_cdk/aws_ecr/__init__.py +6 -0
- aws_cdk/aws_ecr_assets/__init__.py +6 -0
- aws_cdk/aws_ecs/__init__.py +112 -19
- aws_cdk/aws_ecs_patterns/__init__.py +58 -0
- aws_cdk/aws_efs/__init__.py +12 -0
- aws_cdk/aws_eks/__init__.py +42 -0
- aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
- aws_cdk/aws_elasticsearch/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +36 -0
- aws_cdk/aws_events_targets/__init__.py +10 -10
- aws_cdk/aws_fsx/__init__.py +6 -0
- aws_cdk/aws_globalaccelerator/__init__.py +18 -0
- aws_cdk/aws_iam/__init__.py +66 -0
- aws_cdk/aws_imagebuilder/__init__.py +21 -16
- aws_cdk/aws_inspector/__init__.py +6 -0
- aws_cdk/aws_kinesis/__init__.py +19 -1
- aws_cdk/aws_kinesisanalytics/__init__.py +9 -11
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +9 -11
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_kms/__init__.py +16 -4
- aws_cdk/aws_lambda/__init__.py +76 -6
- aws_cdk/aws_lambda_nodejs/__init__.py +6 -0
- aws_cdk/aws_logs/__init__.py +155 -12
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +22 -22
- aws_cdk/aws_rds/__init__.py +306 -30
- aws_cdk/aws_redshiftserverless/__init__.py +7 -7
- aws_cdk/aws_route53/__init__.py +723 -25
- aws_cdk/aws_s3/__init__.py +37 -10
- aws_cdk/aws_s3_deployment/__init__.py +6 -0
- aws_cdk/aws_sagemaker/__init__.py +199 -4
- aws_cdk/aws_scheduler/__init__.py +12 -0
- aws_cdk/aws_secretsmanager/__init__.py +24 -0
- aws_cdk/aws_servicecatalog/__init__.py +24 -0
- aws_cdk/aws_servicediscovery/__init__.py +48 -0
- aws_cdk/aws_ses/__init__.py +133 -33
- aws_cdk/aws_signer/__init__.py +6 -0
- aws_cdk/aws_sns/__init__.py +18 -0
- aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
- aws_cdk/aws_sqs/__init__.py +12 -0
- aws_cdk/aws_ssm/__init__.py +12 -0
- aws_cdk/aws_ssmcontacts/__init__.py +53 -2
- aws_cdk/aws_ssmguiconnect/__init__.py +7 -7
- aws_cdk/aws_stepfunctions/__init__.py +153 -7
- aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
- aws_cdk/aws_synthetics/__init__.py +32 -0
- aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
- aws_cdk/aws_vpclattice/__init__.py +3 -1
- aws_cdk/aws_wisdom/__init__.py +6 -4
- aws_cdk/custom_resources/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +33 -0
- aws_cdk/lambda_layer_awscli/__init__.py +6 -0
- aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
- aws_cdk/pipelines/__init__.py +10 -10
- aws_cdk/triggers/__init__.py +6 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/METADATA +83 -5
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/RECORD +100 -100
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -621,8 +621,8 @@ instance around:
|
|
|
621
621
|
#
|
|
622
622
|
class Stack1(cdk.Stack):
|
|
623
623
|
|
|
624
|
-
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None):
|
|
625
|
-
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation)
|
|
624
|
+
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None, propertyInjectors=None):
|
|
625
|
+
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation, propertyInjectors=propertyInjectors)
|
|
626
626
|
|
|
627
627
|
self.vpc = ec2.Vpc(self, "VPC")
|
|
628
628
|
|
|
@@ -630,8 +630,8 @@ class Stack1(cdk.Stack):
|
|
|
630
630
|
# Stack2 consumes the VPC
|
|
631
631
|
#
|
|
632
632
|
class Stack2(cdk.Stack):
|
|
633
|
-
def __init__(self, scope, id, *, vpc, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None):
|
|
634
|
-
super().__init__(scope, id, vpc=vpc, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation)
|
|
633
|
+
def __init__(self, scope, id, *, vpc, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None, propertyInjectors=None):
|
|
634
|
+
super().__init__(scope, id, vpc=vpc, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation, propertyInjectors=propertyInjectors)
|
|
635
635
|
|
|
636
636
|
# Pass the VPC to a construct that needs it
|
|
637
637
|
ConstructThatTakesAVpc(self, "Construct",
|
|
@@ -8229,9 +8229,9 @@ class CfnClientVpnEndpoint(
|
|
|
8229
8229
|
:param server_certificate_arn: The ARN of the server certificate. For more information, see the `AWS Certificate Manager User Guide <https://docs.aws.amazon.com/acm/latest/userguide/>`_ .
|
|
8230
8230
|
:param client_connect_options: The options for managing connection authorization for new client connections.
|
|
8231
8231
|
:param client_login_banner_options: Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.
|
|
8232
|
-
:param client_route_enforcement_options:
|
|
8232
|
+
:param client_route_enforcement_options: Client route enforcement is a feature of the Client VPN service that helps enforce administrator defined routes on devices connected through the VPN. T his feature helps improve your security posture by ensuring that network traffic originating from a connected client is not inadvertently sent outside the VPN tunnel. Client route enforcement works by monitoring the route table of a connected device for routing policy changes to the VPN connection. If the feature detects any VPN routing policy modifications, it will automatically force an update to the route table, reverting it back to the expected route configurations.
|
|
8233
8233
|
:param description: A brief description of the Client VPN endpoint.
|
|
8234
|
-
:param disconnect_on_session_timeout: Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeoutHours`` is reached. If ``true`` , users are prompted to reconnect client VPN. If ``false`` , client VPN attempts to reconnect automatically. The default value is ``
|
|
8234
|
+
:param disconnect_on_session_timeout: Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeoutHours`` is reached. If ``true`` , users are prompted to reconnect client VPN. If ``false`` , client VPN attempts to reconnect automatically. The default value is ``true`` .
|
|
8235
8235
|
:param dns_servers: Information about the DNS servers to be used for DNS resolution. A Client VPN endpoint can have up to two DNS servers. If no DNS server is specified, the DNS address configured on the device is used for the DNS server.
|
|
8236
8236
|
:param security_group_ids: The IDs of one or more security groups to apply to the target network. You must also specify the ID of the VPC that contains the security groups.
|
|
8237
8237
|
:param self_service_portal: Specify whether to enable the self-service portal for the Client VPN endpoint. Default Value: ``enabled``
|
|
@@ -8415,6 +8415,7 @@ class CfnClientVpnEndpoint(
|
|
|
8415
8415
|
def client_route_enforcement_options(
|
|
8416
8416
|
self,
|
|
8417
8417
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty"]]:
|
|
8418
|
+
'''Client route enforcement is a feature of the Client VPN service that helps enforce administrator defined routes on devices connected through the VPN.'''
|
|
8418
8419
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty"]], jsii.get(self, "clientRouteEnforcementOptions"))
|
|
8419
8420
|
|
|
8420
8421
|
@client_route_enforcement_options.setter
|
|
@@ -8943,8 +8944,13 @@ class CfnClientVpnEndpoint(
|
|
|
8943
8944
|
*,
|
|
8944
8945
|
enforced: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8945
8946
|
) -> None:
|
|
8946
|
-
'''
|
|
8947
|
-
|
|
8947
|
+
'''Client Route Enforcement is a feature of Client VPN that helps enforce administrator defined routes on devices connected through the VPN.
|
|
8948
|
+
|
|
8949
|
+
This feature helps improve your security posture by ensuring that network traffic originating from a connected client is not inadvertently sent outside the VPN tunnel.
|
|
8950
|
+
|
|
8951
|
+
Client Route Enforcement works by monitoring the route table of a connected device for routing policy changes to the VPN connection. If the feature detects any VPN routing policy modifications, it will automatically force an update to the route table, reverting it back to the expected route configurations.
|
|
8952
|
+
|
|
8953
|
+
:param enforced: Enable or disable Client Route Enforcement. The state can either be ``true`` (enabled) or ``false`` (disabled). The default is ``false`` . Valid values: ``true | false`` Default value: ``false``
|
|
8948
8954
|
|
|
8949
8955
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-clientrouteenforcementoptions.html
|
|
8950
8956
|
:exampleMetadata: fixture=_generated
|
|
@@ -8970,7 +8976,14 @@ class CfnClientVpnEndpoint(
|
|
|
8970
8976
|
def enforced(
|
|
8971
8977
|
self,
|
|
8972
8978
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
8973
|
-
'''
|
|
8979
|
+
'''Enable or disable Client Route Enforcement.
|
|
8980
|
+
|
|
8981
|
+
The state can either be ``true`` (enabled) or ``false`` (disabled). The default is ``false`` .
|
|
8982
|
+
|
|
8983
|
+
Valid values: ``true | false``
|
|
8984
|
+
|
|
8985
|
+
Default value: ``false``
|
|
8986
|
+
|
|
8974
8987
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-clientrouteenforcementoptions.html#cfn-ec2-clientvpnendpoint-clientrouteenforcementoptions-enforced
|
|
8975
8988
|
'''
|
|
8976
8989
|
result = self._values.get("enforced")
|
|
@@ -9341,9 +9354,9 @@ class CfnClientVpnEndpointProps:
|
|
|
9341
9354
|
:param server_certificate_arn: The ARN of the server certificate. For more information, see the `AWS Certificate Manager User Guide <https://docs.aws.amazon.com/acm/latest/userguide/>`_ .
|
|
9342
9355
|
:param client_connect_options: The options for managing connection authorization for new client connections.
|
|
9343
9356
|
:param client_login_banner_options: Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.
|
|
9344
|
-
:param client_route_enforcement_options:
|
|
9357
|
+
:param client_route_enforcement_options: Client route enforcement is a feature of the Client VPN service that helps enforce administrator defined routes on devices connected through the VPN. T his feature helps improve your security posture by ensuring that network traffic originating from a connected client is not inadvertently sent outside the VPN tunnel. Client route enforcement works by monitoring the route table of a connected device for routing policy changes to the VPN connection. If the feature detects any VPN routing policy modifications, it will automatically force an update to the route table, reverting it back to the expected route configurations.
|
|
9345
9358
|
:param description: A brief description of the Client VPN endpoint.
|
|
9346
|
-
:param disconnect_on_session_timeout: Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeoutHours`` is reached. If ``true`` , users are prompted to reconnect client VPN. If ``false`` , client VPN attempts to reconnect automatically. The default value is ``
|
|
9359
|
+
:param disconnect_on_session_timeout: Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeoutHours`` is reached. If ``true`` , users are prompted to reconnect client VPN. If ``false`` , client VPN attempts to reconnect automatically. The default value is ``true`` .
|
|
9347
9360
|
:param dns_servers: Information about the DNS servers to be used for DNS resolution. A Client VPN endpoint can have up to two DNS servers. If no DNS server is specified, the DNS address configured on the device is used for the DNS server.
|
|
9348
9361
|
:param security_group_ids: The IDs of one or more security groups to apply to the target network. You must also specify the ID of the VPC that contains the security groups.
|
|
9349
9362
|
:param self_service_portal: Specify whether to enable the self-service portal for the Client VPN endpoint. Default Value: ``enabled``
|
|
@@ -9562,7 +9575,12 @@ class CfnClientVpnEndpointProps:
|
|
|
9562
9575
|
def client_route_enforcement_options(
|
|
9563
9576
|
self,
|
|
9564
9577
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty]]:
|
|
9565
|
-
'''
|
|
9578
|
+
'''Client route enforcement is a feature of the Client VPN service that helps enforce administrator defined routes on devices connected through the VPN.
|
|
9579
|
+
|
|
9580
|
+
T his feature helps improve your security posture by ensuring that network traffic originating from a connected client is not inadvertently sent outside the VPN tunnel.
|
|
9581
|
+
|
|
9582
|
+
Client route enforcement works by monitoring the route table of a connected device for routing policy changes to the VPN connection. If the feature detects any VPN routing policy modifications, it will automatically force an update to the route table, reverting it back to the expected route configurations.
|
|
9583
|
+
|
|
9566
9584
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientrouteenforcementoptions
|
|
9567
9585
|
'''
|
|
9568
9586
|
result = self._values.get("client_route_enforcement_options")
|
|
@@ -9583,7 +9601,7 @@ class CfnClientVpnEndpointProps:
|
|
|
9583
9601
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
9584
9602
|
'''Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeoutHours`` is reached.
|
|
9585
9603
|
|
|
9586
|
-
If ``true`` , users are prompted to reconnect client VPN. If ``false`` , client VPN attempts to reconnect automatically. The default value is ``
|
|
9604
|
+
If ``true`` , users are prompted to reconnect client VPN. If ``false`` , client VPN attempts to reconnect automatically. The default value is ``true`` .
|
|
9587
9605
|
|
|
9588
9606
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-disconnectonsessiontimeout
|
|
9589
9607
|
'''
|
|
@@ -34720,6 +34738,7 @@ class CfnNetworkInsightsAnalysis(
|
|
|
34720
34738
|
# the properties below are optional
|
|
34721
34739
|
additional_accounts=["additionalAccounts"],
|
|
34722
34740
|
filter_in_arns=["filterInArns"],
|
|
34741
|
+
filter_out_arns=["filterOutArns"],
|
|
34723
34742
|
tags=[CfnTag(
|
|
34724
34743
|
key="key",
|
|
34725
34744
|
value="value"
|
|
@@ -34735,6 +34754,7 @@ class CfnNetworkInsightsAnalysis(
|
|
|
34735
34754
|
network_insights_path_id: builtins.str,
|
|
34736
34755
|
additional_accounts: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
34737
34756
|
filter_in_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
34757
|
+
filter_out_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
34738
34758
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
34739
34759
|
) -> None:
|
|
34740
34760
|
'''
|
|
@@ -34743,6 +34763,7 @@ class CfnNetworkInsightsAnalysis(
|
|
|
34743
34763
|
:param network_insights_path_id: The ID of the path.
|
|
34744
34764
|
:param additional_accounts: The member accounts that contain resources that the path can traverse.
|
|
34745
34765
|
:param filter_in_arns: The Amazon Resource Names (ARN) of the resources that the path must traverse.
|
|
34766
|
+
:param filter_out_arns:
|
|
34746
34767
|
:param tags: The tags to apply.
|
|
34747
34768
|
'''
|
|
34748
34769
|
if __debug__:
|
|
@@ -34753,6 +34774,7 @@ class CfnNetworkInsightsAnalysis(
|
|
|
34753
34774
|
network_insights_path_id=network_insights_path_id,
|
|
34754
34775
|
additional_accounts=additional_accounts,
|
|
34755
34776
|
filter_in_arns=filter_in_arns,
|
|
34777
|
+
filter_out_arns=filter_out_arns,
|
|
34756
34778
|
tags=tags,
|
|
34757
34779
|
)
|
|
34758
34780
|
|
|
@@ -34942,6 +34964,21 @@ class CfnNetworkInsightsAnalysis(
|
|
|
34942
34964
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
34943
34965
|
jsii.set(self, "filterInArns", value) # pyright: ignore[reportArgumentType]
|
|
34944
34966
|
|
|
34967
|
+
@builtins.property
|
|
34968
|
+
@jsii.member(jsii_name="filterOutArns")
|
|
34969
|
+
def filter_out_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
34970
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "filterOutArns"))
|
|
34971
|
+
|
|
34972
|
+
@filter_out_arns.setter
|
|
34973
|
+
def filter_out_arns(
|
|
34974
|
+
self,
|
|
34975
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
34976
|
+
) -> None:
|
|
34977
|
+
if __debug__:
|
|
34978
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a3e2782a8511eec581f257080a1a098ac8d87ebc507433291c01b4f61ad401ff)
|
|
34979
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
34980
|
+
jsii.set(self, "filterOutArns", value) # pyright: ignore[reportArgumentType]
|
|
34981
|
+
|
|
34945
34982
|
@builtins.property
|
|
34946
34983
|
@jsii.member(jsii_name="tagsRaw")
|
|
34947
34984
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -37974,6 +38011,7 @@ class CfnNetworkInsightsAnalysis(
|
|
|
37974
38011
|
"network_insights_path_id": "networkInsightsPathId",
|
|
37975
38012
|
"additional_accounts": "additionalAccounts",
|
|
37976
38013
|
"filter_in_arns": "filterInArns",
|
|
38014
|
+
"filter_out_arns": "filterOutArns",
|
|
37977
38015
|
"tags": "tags",
|
|
37978
38016
|
},
|
|
37979
38017
|
)
|
|
@@ -37984,6 +38022,7 @@ class CfnNetworkInsightsAnalysisProps:
|
|
|
37984
38022
|
network_insights_path_id: builtins.str,
|
|
37985
38023
|
additional_accounts: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
37986
38024
|
filter_in_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
38025
|
+
filter_out_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
37987
38026
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
37988
38027
|
) -> None:
|
|
37989
38028
|
'''Properties for defining a ``CfnNetworkInsightsAnalysis``.
|
|
@@ -37991,6 +38030,7 @@ class CfnNetworkInsightsAnalysisProps:
|
|
|
37991
38030
|
:param network_insights_path_id: The ID of the path.
|
|
37992
38031
|
:param additional_accounts: The member accounts that contain resources that the path can traverse.
|
|
37993
38032
|
:param filter_in_arns: The Amazon Resource Names (ARN) of the resources that the path must traverse.
|
|
38033
|
+
:param filter_out_arns:
|
|
37994
38034
|
:param tags: The tags to apply.
|
|
37995
38035
|
|
|
37996
38036
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html
|
|
@@ -38008,6 +38048,7 @@ class CfnNetworkInsightsAnalysisProps:
|
|
|
38008
38048
|
# the properties below are optional
|
|
38009
38049
|
additional_accounts=["additionalAccounts"],
|
|
38010
38050
|
filter_in_arns=["filterInArns"],
|
|
38051
|
+
filter_out_arns=["filterOutArns"],
|
|
38011
38052
|
tags=[CfnTag(
|
|
38012
38053
|
key="key",
|
|
38013
38054
|
value="value"
|
|
@@ -38019,6 +38060,7 @@ class CfnNetworkInsightsAnalysisProps:
|
|
|
38019
38060
|
check_type(argname="argument network_insights_path_id", value=network_insights_path_id, expected_type=type_hints["network_insights_path_id"])
|
|
38020
38061
|
check_type(argname="argument additional_accounts", value=additional_accounts, expected_type=type_hints["additional_accounts"])
|
|
38021
38062
|
check_type(argname="argument filter_in_arns", value=filter_in_arns, expected_type=type_hints["filter_in_arns"])
|
|
38063
|
+
check_type(argname="argument filter_out_arns", value=filter_out_arns, expected_type=type_hints["filter_out_arns"])
|
|
38022
38064
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
38023
38065
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
38024
38066
|
"network_insights_path_id": network_insights_path_id,
|
|
@@ -38027,6 +38069,8 @@ class CfnNetworkInsightsAnalysisProps:
|
|
|
38027
38069
|
self._values["additional_accounts"] = additional_accounts
|
|
38028
38070
|
if filter_in_arns is not None:
|
|
38029
38071
|
self._values["filter_in_arns"] = filter_in_arns
|
|
38072
|
+
if filter_out_arns is not None:
|
|
38073
|
+
self._values["filter_out_arns"] = filter_out_arns
|
|
38030
38074
|
if tags is not None:
|
|
38031
38075
|
self._values["tags"] = tags
|
|
38032
38076
|
|
|
@@ -38058,6 +38102,14 @@ class CfnNetworkInsightsAnalysisProps:
|
|
|
38058
38102
|
result = self._values.get("filter_in_arns")
|
|
38059
38103
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
38060
38104
|
|
|
38105
|
+
@builtins.property
|
|
38106
|
+
def filter_out_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
38107
|
+
'''
|
|
38108
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-filteroutarns
|
|
38109
|
+
'''
|
|
38110
|
+
result = self._values.get("filter_out_arns")
|
|
38111
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
38112
|
+
|
|
38061
38113
|
@builtins.property
|
|
38062
38114
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
38063
38115
|
'''The tags to apply.
|
|
@@ -54960,8 +55012,8 @@ class CfnTransitGateway(
|
|
|
54960
55012
|
:param amazon_side_asn: A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs. The default is 64512.
|
|
54961
55013
|
:param association_default_route_table_id: The ID of the default association route table.
|
|
54962
55014
|
:param auto_accept_shared_attachments: Enable or disable automatic acceptance of attachment requests. Disabled by default.
|
|
54963
|
-
:param default_route_table_association: Enable or disable automatic association with the default association route table. Enabled by default.
|
|
54964
|
-
:param default_route_table_propagation: Enable or disable automatic propagation of routes to the default propagation route table. Enabled by default.
|
|
55015
|
+
:param default_route_table_association: Enable or disable automatic association with the default association route table. Enabled by default. If ``DefaultRouteTableAssociation`` is set to enable, AWS Transit Gateway will create the default transit gateway route table.
|
|
55016
|
+
:param default_route_table_propagation: Enable or disable automatic propagation of routes to the default propagation route table. Enabled by default. If ``DefaultRouteTablePropagation`` is set to enable, AWS Transit Gateway will create the default transit gateway route table.
|
|
54965
55017
|
:param description: The description of the transit gateway.
|
|
54966
55018
|
:param dns_support: Enable or disable DNS support. Enabled by default.
|
|
54967
55019
|
:param multicast_support: Indicates whether multicast is enabled on the transit gateway.
|
|
@@ -57688,8 +57740,8 @@ class CfnTransitGatewayProps:
|
|
|
57688
57740
|
:param amazon_side_asn: A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs. The default is 64512.
|
|
57689
57741
|
:param association_default_route_table_id: The ID of the default association route table.
|
|
57690
57742
|
:param auto_accept_shared_attachments: Enable or disable automatic acceptance of attachment requests. Disabled by default.
|
|
57691
|
-
:param default_route_table_association: Enable or disable automatic association with the default association route table. Enabled by default.
|
|
57692
|
-
:param default_route_table_propagation: Enable or disable automatic propagation of routes to the default propagation route table. Enabled by default.
|
|
57743
|
+
:param default_route_table_association: Enable or disable automatic association with the default association route table. Enabled by default. If ``DefaultRouteTableAssociation`` is set to enable, AWS Transit Gateway will create the default transit gateway route table.
|
|
57744
|
+
:param default_route_table_propagation: Enable or disable automatic propagation of routes to the default propagation route table. Enabled by default. If ``DefaultRouteTablePropagation`` is set to enable, AWS Transit Gateway will create the default transit gateway route table.
|
|
57693
57745
|
:param description: The description of the transit gateway.
|
|
57694
57746
|
:param dns_support: Enable or disable DNS support. Enabled by default.
|
|
57695
57747
|
:param multicast_support: Indicates whether multicast is enabled on the transit gateway.
|
|
@@ -57805,7 +57857,7 @@ class CfnTransitGatewayProps:
|
|
|
57805
57857
|
def default_route_table_association(self) -> typing.Optional[builtins.str]:
|
|
57806
57858
|
'''Enable or disable automatic association with the default association route table.
|
|
57807
57859
|
|
|
57808
|
-
Enabled by default.
|
|
57860
|
+
Enabled by default. If ``DefaultRouteTableAssociation`` is set to enable, AWS Transit Gateway will create the default transit gateway route table.
|
|
57809
57861
|
|
|
57810
57862
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetableassociation
|
|
57811
57863
|
'''
|
|
@@ -57816,7 +57868,7 @@ class CfnTransitGatewayProps:
|
|
|
57816
57868
|
def default_route_table_propagation(self) -> typing.Optional[builtins.str]:
|
|
57817
57869
|
'''Enable or disable automatic propagation of routes to the default propagation route table.
|
|
57818
57870
|
|
|
57819
|
-
Enabled by default.
|
|
57871
|
+
Enabled by default. If ``DefaultRouteTablePropagation`` is set to enable, AWS Transit Gateway will create the default transit gateway route table.
|
|
57820
57872
|
|
|
57821
57873
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#cfn-ec2-transitgateway-defaultroutetablepropagation
|
|
57822
57874
|
'''
|
|
@@ -69656,6 +69708,7 @@ class CfnVolume(
|
|
|
69656
69708
|
value="value"
|
|
69657
69709
|
)],
|
|
69658
69710
|
throughput=123,
|
|
69711
|
+
volume_initialization_rate=123,
|
|
69659
69712
|
volume_type="volumeType"
|
|
69660
69713
|
)
|
|
69661
69714
|
'''
|
|
@@ -69676,6 +69729,7 @@ class CfnVolume(
|
|
|
69676
69729
|
snapshot_id: typing.Optional[builtins.str] = None,
|
|
69677
69730
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
69678
69731
|
throughput: typing.Optional[jsii.Number] = None,
|
|
69732
|
+
volume_initialization_rate: typing.Optional[jsii.Number] = None,
|
|
69679
69733
|
volume_type: typing.Optional[builtins.str] = None,
|
|
69680
69734
|
) -> None:
|
|
69681
69735
|
'''
|
|
@@ -69692,6 +69746,7 @@ class CfnVolume(
|
|
|
69692
69746
|
:param snapshot_id: The snapshot from which to create the volume. You must specify either a snapshot ID or a volume size.
|
|
69693
69747
|
:param tags: The tags to apply to the volume during creation.
|
|
69694
69748
|
:param throughput: The throughput to provision for a volume, with a maximum of 1,000 MiB/s. This parameter is valid only for ``gp3`` volumes. The default value is 125. Valid Range: Minimum value of 125. Maximum value of 1000.
|
|
69749
|
+
:param volume_initialization_rate: Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume. This is also known as *volume initialization* . Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation. This parameter is supported only for volumes created from snapshots. Omit this parameter if: - You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation. .. epigraph:: If you specify a snapshot that is enabled for fast snapshot restore and a volume initialization rate, the volume will be initialized at the specified rate instead of fast snapshot restore. - You want to create a volume that is initialized at the default rate. For more information, see `Initialize Amazon EBS volumes <https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html>`_ in the *Amazon EC2 User Guide* . Valid range: 100 - 300 MiB/s
|
|
69695
69750
|
:param volume_type: The volume type. This parameter can be one of the following values:. - General Purpose SSD: ``gp2`` | ``gp3`` - Provisioned IOPS SSD: ``io1`` | ``io2`` - Throughput Optimized HDD: ``st1`` - Cold HDD: ``sc1`` - Magnetic: ``standard`` For more information, see `Amazon EBS volume types <https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html>`_ . Default: ``gp2``
|
|
69696
69751
|
'''
|
|
69697
69752
|
if __debug__:
|
|
@@ -69710,6 +69765,7 @@ class CfnVolume(
|
|
|
69710
69765
|
snapshot_id=snapshot_id,
|
|
69711
69766
|
tags=tags,
|
|
69712
69767
|
throughput=throughput,
|
|
69768
|
+
volume_initialization_rate=volume_initialization_rate,
|
|
69713
69769
|
volume_type=volume_type,
|
|
69714
69770
|
)
|
|
69715
69771
|
|
|
@@ -69923,6 +69979,19 @@ class CfnVolume(
|
|
|
69923
69979
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
69924
69980
|
jsii.set(self, "throughput", value) # pyright: ignore[reportArgumentType]
|
|
69925
69981
|
|
|
69982
|
+
@builtins.property
|
|
69983
|
+
@jsii.member(jsii_name="volumeInitializationRate")
|
|
69984
|
+
def volume_initialization_rate(self) -> typing.Optional[jsii.Number]:
|
|
69985
|
+
'''Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume.'''
|
|
69986
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "volumeInitializationRate"))
|
|
69987
|
+
|
|
69988
|
+
@volume_initialization_rate.setter
|
|
69989
|
+
def volume_initialization_rate(self, value: typing.Optional[jsii.Number]) -> None:
|
|
69990
|
+
if __debug__:
|
|
69991
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0d794c400059825fc6340b04289a28489cba2b85515b159862a7fc5730b4181b)
|
|
69992
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
69993
|
+
jsii.set(self, "volumeInitializationRate", value) # pyright: ignore[reportArgumentType]
|
|
69994
|
+
|
|
69926
69995
|
@builtins.property
|
|
69927
69996
|
@jsii.member(jsii_name="volumeType")
|
|
69928
69997
|
def volume_type(self) -> typing.Optional[builtins.str]:
|
|
@@ -70186,6 +70255,7 @@ class CfnVolumeAttachmentProps:
|
|
|
70186
70255
|
"snapshot_id": "snapshotId",
|
|
70187
70256
|
"tags": "tags",
|
|
70188
70257
|
"throughput": "throughput",
|
|
70258
|
+
"volume_initialization_rate": "volumeInitializationRate",
|
|
70189
70259
|
"volume_type": "volumeType",
|
|
70190
70260
|
},
|
|
70191
70261
|
)
|
|
@@ -70204,6 +70274,7 @@ class CfnVolumeProps:
|
|
|
70204
70274
|
snapshot_id: typing.Optional[builtins.str] = None,
|
|
70205
70275
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
70206
70276
|
throughput: typing.Optional[jsii.Number] = None,
|
|
70277
|
+
volume_initialization_rate: typing.Optional[jsii.Number] = None,
|
|
70207
70278
|
volume_type: typing.Optional[builtins.str] = None,
|
|
70208
70279
|
) -> None:
|
|
70209
70280
|
'''Properties for defining a ``CfnVolume``.
|
|
@@ -70219,6 +70290,7 @@ class CfnVolumeProps:
|
|
|
70219
70290
|
:param snapshot_id: The snapshot from which to create the volume. You must specify either a snapshot ID or a volume size.
|
|
70220
70291
|
:param tags: The tags to apply to the volume during creation.
|
|
70221
70292
|
:param throughput: The throughput to provision for a volume, with a maximum of 1,000 MiB/s. This parameter is valid only for ``gp3`` volumes. The default value is 125. Valid Range: Minimum value of 125. Maximum value of 1000.
|
|
70293
|
+
:param volume_initialization_rate: Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume. This is also known as *volume initialization* . Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation. This parameter is supported only for volumes created from snapshots. Omit this parameter if: - You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation. .. epigraph:: If you specify a snapshot that is enabled for fast snapshot restore and a volume initialization rate, the volume will be initialized at the specified rate instead of fast snapshot restore. - You want to create a volume that is initialized at the default rate. For more information, see `Initialize Amazon EBS volumes <https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html>`_ in the *Amazon EC2 User Guide* . Valid range: 100 - 300 MiB/s
|
|
70222
70294
|
:param volume_type: The volume type. This parameter can be one of the following values:. - General Purpose SSD: ``gp2`` | ``gp3`` - Provisioned IOPS SSD: ``io1`` | ``io2`` - Throughput Optimized HDD: ``st1`` - Cold HDD: ``sc1`` - Magnetic: ``standard`` For more information, see `Amazon EBS volume types <https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html>`_ . Default: ``gp2``
|
|
70223
70295
|
|
|
70224
70296
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html
|
|
@@ -70247,6 +70319,7 @@ class CfnVolumeProps:
|
|
|
70247
70319
|
value="value"
|
|
70248
70320
|
)],
|
|
70249
70321
|
throughput=123,
|
|
70322
|
+
volume_initialization_rate=123,
|
|
70250
70323
|
volume_type="volumeType"
|
|
70251
70324
|
)
|
|
70252
70325
|
'''
|
|
@@ -70263,6 +70336,7 @@ class CfnVolumeProps:
|
|
|
70263
70336
|
check_type(argname="argument snapshot_id", value=snapshot_id, expected_type=type_hints["snapshot_id"])
|
|
70264
70337
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
70265
70338
|
check_type(argname="argument throughput", value=throughput, expected_type=type_hints["throughput"])
|
|
70339
|
+
check_type(argname="argument volume_initialization_rate", value=volume_initialization_rate, expected_type=type_hints["volume_initialization_rate"])
|
|
70266
70340
|
check_type(argname="argument volume_type", value=volume_type, expected_type=type_hints["volume_type"])
|
|
70267
70341
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
70268
70342
|
"availability_zone": availability_zone,
|
|
@@ -70287,6 +70361,8 @@ class CfnVolumeProps:
|
|
|
70287
70361
|
self._values["tags"] = tags
|
|
70288
70362
|
if throughput is not None:
|
|
70289
70363
|
self._values["throughput"] = throughput
|
|
70364
|
+
if volume_initialization_rate is not None:
|
|
70365
|
+
self._values["volume_initialization_rate"] = volume_initialization_rate
|
|
70290
70366
|
if volume_type is not None:
|
|
70291
70367
|
self._values["volume_type"] = volume_type
|
|
70292
70368
|
|
|
@@ -70445,6 +70521,31 @@ class CfnVolumeProps:
|
|
|
70445
70521
|
result = self._values.get("throughput")
|
|
70446
70522
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
70447
70523
|
|
|
70524
|
+
@builtins.property
|
|
70525
|
+
def volume_initialization_rate(self) -> typing.Optional[jsii.Number]:
|
|
70526
|
+
'''Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume.
|
|
70527
|
+
|
|
70528
|
+
This is also known as *volume initialization* . Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation.
|
|
70529
|
+
|
|
70530
|
+
This parameter is supported only for volumes created from snapshots. Omit this parameter if:
|
|
70531
|
+
|
|
70532
|
+
- You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation.
|
|
70533
|
+
|
|
70534
|
+
.. epigraph::
|
|
70535
|
+
|
|
70536
|
+
If you specify a snapshot that is enabled for fast snapshot restore and a volume initialization rate, the volume will be initialized at the specified rate instead of fast snapshot restore.
|
|
70537
|
+
|
|
70538
|
+
- You want to create a volume that is initialized at the default rate.
|
|
70539
|
+
|
|
70540
|
+
For more information, see `Initialize Amazon EBS volumes <https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html>`_ in the *Amazon EC2 User Guide* .
|
|
70541
|
+
|
|
70542
|
+
Valid range: 100 - 300 MiB/s
|
|
70543
|
+
|
|
70544
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html#cfn-ec2-volume-volumeinitializationrate
|
|
70545
|
+
'''
|
|
70546
|
+
result = self._values.get("volume_initialization_rate")
|
|
70547
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
70548
|
+
|
|
70448
70549
|
@builtins.property
|
|
70449
70550
|
def volume_type(self) -> typing.Optional[builtins.str]:
|
|
70450
70551
|
'''The volume type. This parameter can be one of the following values:.
|
|
@@ -70534,6 +70635,12 @@ class ClientVpnAuthorizationRule(
|
|
|
70534
70635
|
|
|
70535
70636
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
70536
70637
|
|
|
70638
|
+
@jsii.python.classproperty
|
|
70639
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
70640
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
70641
|
+
'''Uniquely identifies this class.'''
|
|
70642
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
70643
|
+
|
|
70537
70644
|
|
|
70538
70645
|
@jsii.data_type(
|
|
70539
70646
|
jsii_type="aws-cdk-lib.aws_ec2.ClientVpnAuthorizationRuleOptions",
|
|
@@ -71611,6 +71718,12 @@ class ClientVpnRoute(
|
|
|
71611
71718
|
|
|
71612
71719
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
71613
71720
|
|
|
71721
|
+
@jsii.python.classproperty
|
|
71722
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
71723
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
71724
|
+
'''Uniquely identifies this class.'''
|
|
71725
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
71726
|
+
|
|
71614
71727
|
|
|
71615
71728
|
@jsii.data_type(
|
|
71616
71729
|
jsii_type="aws-cdk-lib.aws_ec2.ClientVpnRouteOptions",
|
|
@@ -79327,6 +79440,12 @@ class Instance(
|
|
|
79327
79440
|
|
|
79328
79441
|
return typing.cast(None, jsii.invoke(self, "applyCloudFormationInit", [init, options]))
|
|
79329
79442
|
|
|
79443
|
+
@jsii.python.classproperty
|
|
79444
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
79445
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
79446
|
+
'''Uniquely identifies this class.'''
|
|
79447
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
79448
|
+
|
|
79330
79449
|
@builtins.property
|
|
79331
79450
|
@jsii.member(jsii_name="connections")
|
|
79332
79451
|
def connections(self) -> "Connections":
|
|
@@ -84007,6 +84126,12 @@ class KeyPair(
|
|
|
84007
84126
|
check_type(argname="argument key_pair_name", value=key_pair_name, expected_type=type_hints["key_pair_name"])
|
|
84008
84127
|
return typing.cast(IKeyPair, jsii.sinvoke(cls, "fromKeyPairName", [scope, id, key_pair_name]))
|
|
84009
84128
|
|
|
84129
|
+
@jsii.python.classproperty
|
|
84130
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
84131
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
84132
|
+
'''Uniquely identifies this class.'''
|
|
84133
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
84134
|
+
|
|
84010
84135
|
@builtins.property
|
|
84011
84136
|
@jsii.member(jsii_name="format")
|
|
84012
84137
|
def format(self) -> "KeyPairFormat":
|
|
@@ -84551,6 +84676,12 @@ class LaunchTemplate(
|
|
|
84551
84676
|
check_type(argname="argument security_group", value=security_group, expected_type=type_hints["security_group"])
|
|
84552
84677
|
return typing.cast(None, jsii.invoke(self, "addSecurityGroup", [security_group]))
|
|
84553
84678
|
|
|
84679
|
+
@jsii.python.classproperty
|
|
84680
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
84681
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
84682
|
+
'''Uniquely identifies this class.'''
|
|
84683
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
84684
|
+
|
|
84554
84685
|
@builtins.property
|
|
84555
84686
|
@jsii.member(jsii_name="connections")
|
|
84556
84687
|
def connections(self) -> "Connections":
|
|
@@ -87828,6 +87959,12 @@ class NetworkAcl(
|
|
|
87828
87959
|
|
|
87829
87960
|
return typing.cast(None, jsii.invoke(self, "associateWithSubnet", [id, selection]))
|
|
87830
87961
|
|
|
87962
|
+
@jsii.python.classproperty
|
|
87963
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
87964
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
87965
|
+
'''Uniquely identifies this class.'''
|
|
87966
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
87967
|
+
|
|
87831
87968
|
@builtins.property
|
|
87832
87969
|
@jsii.member(jsii_name="networkAclId")
|
|
87833
87970
|
def network_acl_id(self) -> builtins.str:
|
|
@@ -87920,6 +88057,12 @@ class NetworkAclEntry(
|
|
|
87920
88057
|
|
|
87921
88058
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
87922
88059
|
|
|
88060
|
+
@jsii.python.classproperty
|
|
88061
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
88062
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
88063
|
+
'''Uniquely identifies this class.'''
|
|
88064
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
88065
|
+
|
|
87923
88066
|
@builtins.property
|
|
87924
88067
|
@jsii.member(jsii_name="networkAcl")
|
|
87925
88068
|
def network_acl(self) -> INetworkAcl:
|
|
@@ -88268,7 +88411,7 @@ class Peer(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_ec2.Peer"):
|
|
|
88268
88411
|
|
|
88269
88412
|
cluster = msk.Cluster(self, "Cluster",
|
|
88270
88413
|
cluster_name="myCluster",
|
|
88271
|
-
kafka_version=msk.KafkaVersion.
|
|
88414
|
+
kafka_version=msk.KafkaVersion.V3_9_X,
|
|
88272
88415
|
vpc=vpc
|
|
88273
88416
|
)
|
|
88274
88417
|
|
|
@@ -88432,6 +88575,12 @@ class PlacementGroup(
|
|
|
88432
88575
|
check_type(argname="argument placement_group_name", value=placement_group_name, expected_type=type_hints["placement_group_name"])
|
|
88433
88576
|
return typing.cast(IPlacementGroup, jsii.sinvoke(cls, "fromPlacementGroupName", [scope, id, placement_group_name]))
|
|
88434
88577
|
|
|
88578
|
+
@jsii.python.classproperty
|
|
88579
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
88580
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
88581
|
+
'''Uniquely identifies this class.'''
|
|
88582
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
88583
|
+
|
|
88435
88584
|
@builtins.property
|
|
88436
88585
|
@jsii.member(jsii_name="placementGroupName")
|
|
88437
88586
|
def placement_group_name(self) -> builtins.str:
|
|
@@ -88668,7 +88817,7 @@ class Port(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_ec2.Port"):
|
|
|
88668
88817
|
|
|
88669
88818
|
cluster = msk.Cluster(self, "Cluster",
|
|
88670
88819
|
cluster_name="myCluster",
|
|
88671
|
-
kafka_version=msk.KafkaVersion.
|
|
88820
|
+
kafka_version=msk.KafkaVersion.V3_9_X,
|
|
88672
88821
|
vpc=vpc
|
|
88673
88822
|
)
|
|
88674
88823
|
|
|
@@ -89152,6 +89301,12 @@ class PrefixList(
|
|
|
89152
89301
|
check_type(argname="argument prefix_list_id", value=prefix_list_id, expected_type=type_hints["prefix_list_id"])
|
|
89153
89302
|
return typing.cast(IPrefixList, jsii.sinvoke(cls, "fromPrefixListId", [scope, id, prefix_list_id]))
|
|
89154
89303
|
|
|
89304
|
+
@jsii.python.classproperty
|
|
89305
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
89306
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
89307
|
+
'''Uniquely identifies this class.'''
|
|
89308
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
89309
|
+
|
|
89155
89310
|
@builtins.property
|
|
89156
89311
|
@jsii.member(jsii_name="addressFamily")
|
|
89157
89312
|
def address_family(self) -> builtins.str:
|
|
@@ -90397,6 +90552,12 @@ class SecurityGroup(
|
|
|
90397
90552
|
'''Produce the ingress rule JSON for the given connection.'''
|
|
90398
90553
|
return typing.cast(typing.Any, jsii.invoke(self, "toIngressRuleConfig", []))
|
|
90399
90554
|
|
|
90555
|
+
@jsii.python.classproperty
|
|
90556
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
90557
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
90558
|
+
'''Uniquely identifies this class.'''
|
|
90559
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
90560
|
+
|
|
90400
90561
|
@builtins.property
|
|
90401
90562
|
@jsii.member(jsii_name="allowAllIpv6Outbound")
|
|
90402
90563
|
def allow_all_ipv6_outbound(self) -> builtins.bool:
|
|
@@ -91311,6 +91472,12 @@ class Subnet(
|
|
|
91311
91472
|
check_type(argname="argument network_acl", value=network_acl, expected_type=type_hints["network_acl"])
|
|
91312
91473
|
return typing.cast(None, jsii.invoke(self, "associateNetworkAcl", [id, network_acl]))
|
|
91313
91474
|
|
|
91475
|
+
@jsii.python.classproperty
|
|
91476
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
91477
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
91478
|
+
'''Uniquely identifies this class.'''
|
|
91479
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
91480
|
+
|
|
91314
91481
|
@builtins.property
|
|
91315
91482
|
@jsii.member(jsii_name="availabilityZone")
|
|
91316
91483
|
def availability_zone(self) -> builtins.str:
|
|
@@ -91914,6 +92081,12 @@ class SubnetNetworkAclAssociation(
|
|
|
91914
92081
|
check_type(argname="argument subnet_network_acl_association_association_id", value=subnet_network_acl_association_association_id, expected_type=type_hints["subnet_network_acl_association_association_id"])
|
|
91915
92082
|
return typing.cast(ISubnetNetworkAclAssociation, jsii.sinvoke(cls, "fromSubnetNetworkAclAssociationAssociationId", [scope, id, subnet_network_acl_association_association_id]))
|
|
91916
92083
|
|
|
92084
|
+
@jsii.python.classproperty
|
|
92085
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
92086
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
92087
|
+
'''Uniquely identifies this class.'''
|
|
92088
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
92089
|
+
|
|
91917
92090
|
@builtins.property
|
|
91918
92091
|
@jsii.member(jsii_name="networkAcl")
|
|
91919
92092
|
def network_acl(self) -> INetworkAcl:
|
|
@@ -93128,6 +93301,12 @@ class Volume(
|
|
|
93128
93301
|
|
|
93129
93302
|
return typing.cast(None, jsii.invoke(self, "validateProps", [props]))
|
|
93130
93303
|
|
|
93304
|
+
@jsii.python.classproperty
|
|
93305
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
93306
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
93307
|
+
'''Uniquely identifies this class.'''
|
|
93308
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
93309
|
+
|
|
93131
93310
|
@builtins.property
|
|
93132
93311
|
@jsii.member(jsii_name="availabilityZone")
|
|
93133
93312
|
def availability_zone(self) -> builtins.str:
|
|
@@ -94113,6 +94292,12 @@ class Vpc(
|
|
|
94113
94292
|
'''
|
|
94114
94293
|
return typing.cast(typing.List[SubnetConfiguration], jsii.sget(cls, "DEFAULT_SUBNETS_NO_NAT"))
|
|
94115
94294
|
|
|
94295
|
+
@jsii.python.classproperty
|
|
94296
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
94297
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
94298
|
+
'''Uniquely identifies this class.'''
|
|
94299
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
94300
|
+
|
|
94116
94301
|
@builtins.property
|
|
94117
94302
|
@jsii.member(jsii_name="availabilityZones")
|
|
94118
94303
|
def availability_zones(self) -> typing.List[builtins.str]:
|
|
@@ -94816,6 +95001,12 @@ class VpcEndpointService(
|
|
|
94816
95001
|
'''The default value for a VPC Endpoint Service name prefix, useful if you do not have a synthesize-time region literal available (all you have is ``{ "Ref": "AWS::Region" }``).'''
|
|
94817
95002
|
return typing.cast(builtins.str, jsii.sget(cls, "DEFAULT_PREFIX"))
|
|
94818
95003
|
|
|
95004
|
+
@jsii.python.classproperty
|
|
95005
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
95006
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
95007
|
+
'''Uniquely identifies this class.'''
|
|
95008
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
95009
|
+
|
|
94819
95010
|
@builtins.property
|
|
94820
95011
|
@jsii.member(jsii_name="acceptanceRequired")
|
|
94821
95012
|
def acceptance_required(self) -> builtins.bool:
|
|
@@ -96505,6 +96696,12 @@ class VpnGateway(
|
|
|
96505
96696
|
|
|
96506
96697
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
96507
96698
|
|
|
96699
|
+
@jsii.python.classproperty
|
|
96700
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
96701
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
96702
|
+
'''Uniquely identifies this class.'''
|
|
96703
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
96704
|
+
|
|
96508
96705
|
@builtins.property
|
|
96509
96706
|
@jsii.member(jsii_name="gatewayId")
|
|
96510
96707
|
def gateway_id(self) -> builtins.str:
|
|
@@ -97836,6 +98033,12 @@ class BastionHostLinux(
|
|
|
97836
98033
|
check_type(argname="argument peer", value=peer, expected_type=typing.Tuple[type_hints["peer"], ...]) # pyright: ignore [reportGeneralTypeIssues]
|
|
97837
98034
|
return typing.cast(None, jsii.invoke(self, "allowSshAccessFrom", [*peer]))
|
|
97838
98035
|
|
|
98036
|
+
@jsii.python.classproperty
|
|
98037
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
98038
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
98039
|
+
'''Uniquely identifies this class.'''
|
|
98040
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
98041
|
+
|
|
97839
98042
|
@builtins.property
|
|
97840
98043
|
@jsii.member(jsii_name="connections")
|
|
97841
98044
|
def connections(self) -> "Connections":
|
|
@@ -98821,6 +99024,12 @@ class FlowLog(
|
|
|
98821
99024
|
check_type(argname="argument flow_log_id", value=flow_log_id, expected_type=type_hints["flow_log_id"])
|
|
98822
99025
|
return typing.cast(IFlowLog, jsii.sinvoke(cls, "fromFlowLogId", [scope, id, flow_log_id]))
|
|
98823
99026
|
|
|
99027
|
+
@jsii.python.classproperty
|
|
99028
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
99029
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
99030
|
+
'''Uniquely identifies this class.'''
|
|
99031
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
99032
|
+
|
|
98824
99033
|
@builtins.property
|
|
98825
99034
|
@jsii.member(jsii_name="flowLogId")
|
|
98826
99035
|
def flow_log_id(self) -> builtins.str:
|
|
@@ -100138,6 +100347,12 @@ class InterfaceVpcEndpoint(
|
|
|
100138
100347
|
|
|
100139
100348
|
return typing.cast(IInterfaceVpcEndpoint, jsii.sinvoke(cls, "fromInterfaceVpcEndpointAttributes", [scope, id, attrs]))
|
|
100140
100349
|
|
|
100350
|
+
@jsii.python.classproperty
|
|
100351
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
100352
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
100353
|
+
'''Uniquely identifies this class.'''
|
|
100354
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
100355
|
+
|
|
100141
100356
|
@builtins.property
|
|
100142
100357
|
@jsii.member(jsii_name="connections")
|
|
100143
100358
|
def connections(self) -> Connections:
|
|
@@ -100804,6 +101019,12 @@ class PrivateSubnet(
|
|
|
100804
101019
|
|
|
100805
101020
|
return typing.cast(IPrivateSubnet, jsii.sinvoke(cls, "fromPrivateSubnetAttributes", [scope, id, attrs]))
|
|
100806
101021
|
|
|
101022
|
+
@jsii.python.classproperty
|
|
101023
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
101024
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
101025
|
+
'''Uniquely identifies this class.'''
|
|
101026
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
101027
|
+
|
|
100807
101028
|
|
|
100808
101029
|
@jsii.data_type(
|
|
100809
101030
|
jsii_type="aws-cdk-lib.aws_ec2.PrivateSubnetAttributes",
|
|
@@ -101159,6 +101380,12 @@ class PublicSubnet(
|
|
|
101159
101380
|
check_type(argname="argument eip_allocation_id", value=eip_allocation_id, expected_type=type_hints["eip_allocation_id"])
|
|
101160
101381
|
return typing.cast(CfnNatGateway, jsii.invoke(self, "addNatGateway", [eip_allocation_id]))
|
|
101161
101382
|
|
|
101383
|
+
@jsii.python.classproperty
|
|
101384
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
101385
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
101386
|
+
'''Uniquely identifies this class.'''
|
|
101387
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
101388
|
+
|
|
101162
101389
|
|
|
101163
101390
|
@jsii.data_type(
|
|
101164
101391
|
jsii_type="aws-cdk-lib.aws_ec2.PublicSubnetAttributes",
|
|
@@ -101675,6 +101902,12 @@ class VpnConnection(
|
|
|
101675
101902
|
|
|
101676
101903
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllTunnelState", [props]))
|
|
101677
101904
|
|
|
101905
|
+
@jsii.python.classproperty
|
|
101906
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
101907
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
101908
|
+
'''Uniquely identifies this class.'''
|
|
101909
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
101910
|
+
|
|
101678
101911
|
@builtins.property
|
|
101679
101912
|
@jsii.member(jsii_name="customerGatewayAsn")
|
|
101680
101913
|
def customer_gateway_asn(self) -> jsii.Number:
|
|
@@ -102359,6 +102592,12 @@ class ClientVpnEndpoint(
|
|
|
102359
102592
|
|
|
102360
102593
|
return typing.cast(ClientVpnRoute, jsii.invoke(self, "addRoute", [id, props]))
|
|
102361
102594
|
|
|
102595
|
+
@jsii.python.classproperty
|
|
102596
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
102597
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
102598
|
+
'''Uniquely identifies this class.'''
|
|
102599
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
102600
|
+
|
|
102362
102601
|
@builtins.property
|
|
102363
102602
|
@jsii.member(jsii_name="connections")
|
|
102364
102603
|
def connections(self) -> Connections:
|
|
@@ -102462,6 +102701,12 @@ class GatewayVpcEndpoint(
|
|
|
102462
102701
|
check_type(argname="argument gateway_vpc_endpoint_id", value=gateway_vpc_endpoint_id, expected_type=type_hints["gateway_vpc_endpoint_id"])
|
|
102463
102702
|
return typing.cast(IGatewayVpcEndpoint, jsii.sinvoke(cls, "fromGatewayVpcEndpointId", [scope, id, gateway_vpc_endpoint_id]))
|
|
102464
102703
|
|
|
102704
|
+
@jsii.python.classproperty
|
|
102705
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
102706
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
102707
|
+
'''Uniquely identifies this class.'''
|
|
102708
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
102709
|
+
|
|
102465
102710
|
@builtins.property
|
|
102466
102711
|
@jsii.member(jsii_name="vpcEndpointCreationTimestamp")
|
|
102467
102712
|
def vpc_endpoint_creation_timestamp(self) -> builtins.str:
|
|
@@ -107339,6 +107584,7 @@ def _typecheckingstub__678aad296e8f8e492a0d5ebb106e185ee0e54a22ad01e148f0ae03d00
|
|
|
107339
107584
|
network_insights_path_id: builtins.str,
|
|
107340
107585
|
additional_accounts: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
107341
107586
|
filter_in_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
107587
|
+
filter_out_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
107342
107588
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
107343
107589
|
) -> None:
|
|
107344
107590
|
"""Type checking stubs"""
|
|
@@ -107374,6 +107620,12 @@ def _typecheckingstub__5fc330fa3d4b736d5224dcb5d8f30fe938109a4316d70b31bac388cd1
|
|
|
107374
107620
|
"""Type checking stubs"""
|
|
107375
107621
|
pass
|
|
107376
107622
|
|
|
107623
|
+
def _typecheckingstub__a3e2782a8511eec581f257080a1a098ac8d87ebc507433291c01b4f61ad401ff(
|
|
107624
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
107625
|
+
) -> None:
|
|
107626
|
+
"""Type checking stubs"""
|
|
107627
|
+
pass
|
|
107628
|
+
|
|
107377
107629
|
def _typecheckingstub__9412010e2d8bad87553154226eb22ca797b6afeb1de0474359133f2783db6f65(
|
|
107378
107630
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
107379
107631
|
) -> None:
|
|
@@ -107582,6 +107834,7 @@ def _typecheckingstub__a33d492e092024ce4f03ae533f82763ceee950f76808ddc3b6329ed54
|
|
|
107582
107834
|
network_insights_path_id: builtins.str,
|
|
107583
107835
|
additional_accounts: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
107584
107836
|
filter_in_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
107837
|
+
filter_out_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
107585
107838
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
107586
107839
|
) -> None:
|
|
107587
107840
|
"""Type checking stubs"""
|
|
@@ -112668,6 +112921,7 @@ def _typecheckingstub__915a70f35b9237e059cd8fc78c5da31e1d4f2476ed4857c7ac173e559
|
|
|
112668
112921
|
snapshot_id: typing.Optional[builtins.str] = None,
|
|
112669
112922
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
112670
112923
|
throughput: typing.Optional[jsii.Number] = None,
|
|
112924
|
+
volume_initialization_rate: typing.Optional[jsii.Number] = None,
|
|
112671
112925
|
volume_type: typing.Optional[builtins.str] = None,
|
|
112672
112926
|
) -> None:
|
|
112673
112927
|
"""Type checking stubs"""
|
|
@@ -112751,6 +113005,12 @@ def _typecheckingstub__52b794f14acdf16af1459720ad364d41f271215d47cf0e4717dd83ce0
|
|
|
112751
113005
|
"""Type checking stubs"""
|
|
112752
113006
|
pass
|
|
112753
113007
|
|
|
113008
|
+
def _typecheckingstub__0d794c400059825fc6340b04289a28489cba2b85515b159862a7fc5730b4181b(
|
|
113009
|
+
value: typing.Optional[jsii.Number],
|
|
113010
|
+
) -> None:
|
|
113011
|
+
"""Type checking stubs"""
|
|
113012
|
+
pass
|
|
113013
|
+
|
|
112754
113014
|
def _typecheckingstub__45764f3b57b9177d923e13cf91fbc29ed9c80eeebc001d4bd7c1600d28437ee6(
|
|
112755
113015
|
value: typing.Optional[builtins.str],
|
|
112756
113016
|
) -> None:
|
|
@@ -112820,6 +113080,7 @@ def _typecheckingstub__df1f84bfc2d41a9f2d283d6a706150686c01c8f45a742c92af54cbee7
|
|
|
112820
113080
|
snapshot_id: typing.Optional[builtins.str] = None,
|
|
112821
113081
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
112822
113082
|
throughput: typing.Optional[jsii.Number] = None,
|
|
113083
|
+
volume_initialization_rate: typing.Optional[jsii.Number] = None,
|
|
112823
113084
|
volume_type: typing.Optional[builtins.str] = None,
|
|
112824
113085
|
) -> None:
|
|
112825
113086
|
"""Type checking stubs"""
|