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
|
@@ -798,6 +798,30 @@ listener.add_targets("Targets",
|
|
|
798
798
|
|
|
799
799
|
Only a single Lambda function can be added to a single listener rule.
|
|
800
800
|
|
|
801
|
+
### Multi-Value Headers with Lambda Targets
|
|
802
|
+
|
|
803
|
+
When using a Lambda function as a target, you can enable [multi-value headers](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/lambda-functions.html#multi-value-headers) to allow the load balancer to send headers with multiple values:
|
|
804
|
+
|
|
805
|
+
```python
|
|
806
|
+
import aws_cdk.aws_lambda as lambda_
|
|
807
|
+
import aws_cdk.aws_elasticloadbalancingv2_targets as targets
|
|
808
|
+
|
|
809
|
+
# vpc: ec2.Vpc
|
|
810
|
+
# lambda_function: lambda.Function
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
# Create a target group with multi-value headers enabled
|
|
814
|
+
target_group = elbv2.ApplicationTargetGroup(self, "LambdaTargetGroup",
|
|
815
|
+
vpc=vpc,
|
|
816
|
+
targets=[targets.LambdaTarget(lambda_function)],
|
|
817
|
+
|
|
818
|
+
# Enable multi-value headers
|
|
819
|
+
multi_value_headers_enabled=True
|
|
820
|
+
)
|
|
821
|
+
```
|
|
822
|
+
|
|
823
|
+
When multi-value headers are enabled, the request and response headers exchanged between the load balancer and the Lambda function include headers with multiple values. If this option is disabled (the default) and the request contains a duplicate header field name, the load balancer uses the last value sent by the client.
|
|
824
|
+
|
|
801
825
|
## Using Application Load Balancer Targets
|
|
802
826
|
|
|
803
827
|
To use a single application load balancer as a target for the network load balancer, use the integration class in the
|
|
@@ -3839,7 +3863,7 @@ class CfnListener(
|
|
|
3839
3863
|
:param mutual_authentication: The mutual authentication configuration information.
|
|
3840
3864
|
:param port: The port on which the load balancer is listening. You can't specify a port for a Gateway Load Balancer.
|
|
3841
3865
|
:param protocol: The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You can’t specify the UDP or TCP_UDP protocol if dual-stack mode is enabled. You can't specify a protocol for a Gateway Load Balancer.
|
|
3842
|
-
:param ssl_policy: [HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.
|
|
3866
|
+
:param ssl_policy: [HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported. For more information, see `Security policies <https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html>`_ in the *Application Load Balancers Guide* and `Security policies <https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html>`_ in the *Network Load Balancers Guide* . Updating the security policy can result in interruptions if the load balancer is handling a high volume of traffic. To decrease the possibility of an interruption if your load balancer is handling a high volume of traffic, create an additional load balancer or request an LCU reservation.
|
|
3843
3867
|
'''
|
|
3844
3868
|
if __debug__:
|
|
3845
3869
|
type_hints = typing.get_type_hints(_typecheckingstub__da6c6bab97eae93f0a1595d72a25ac890e7034cc701e7cf76b58f5c6a2170048)
|
|
@@ -5788,7 +5812,7 @@ class CfnListenerProps:
|
|
|
5788
5812
|
:param mutual_authentication: The mutual authentication configuration information.
|
|
5789
5813
|
:param port: The port on which the load balancer is listening. You can't specify a port for a Gateway Load Balancer.
|
|
5790
5814
|
:param protocol: The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You can’t specify the UDP or TCP_UDP protocol if dual-stack mode is enabled. You can't specify a protocol for a Gateway Load Balancer.
|
|
5791
|
-
:param ssl_policy: [HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.
|
|
5815
|
+
:param ssl_policy: [HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported. For more information, see `Security policies <https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html>`_ in the *Application Load Balancers Guide* and `Security policies <https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html>`_ in the *Network Load Balancers Guide* . Updating the security policy can result in interruptions if the load balancer is handling a high volume of traffic. To decrease the possibility of an interruption if your load balancer is handling a high volume of traffic, create an additional load balancer or request an LCU reservation.
|
|
5792
5816
|
|
|
5793
5817
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html
|
|
5794
5818
|
:exampleMetadata: fixture=_generated
|
|
@@ -6014,9 +6038,9 @@ class CfnListenerProps:
|
|
|
6014
6038
|
def ssl_policy(self) -> typing.Optional[builtins.str]:
|
|
6015
6039
|
'''[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.
|
|
6016
6040
|
|
|
6017
|
-
|
|
6041
|
+
For more information, see `Security policies <https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html>`_ in the *Application Load Balancers Guide* and `Security policies <https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html>`_ in the *Network Load Balancers Guide* .
|
|
6018
6042
|
|
|
6019
|
-
|
|
6043
|
+
Updating the security policy can result in interruptions if the load balancer is handling a high volume of traffic. To decrease the possibility of an interruption if your load balancer is handling a high volume of traffic, create an additional load balancer or request an LCU reservation.
|
|
6020
6044
|
|
|
6021
6045
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy
|
|
6022
6046
|
'''
|
|
@@ -8472,9 +8496,9 @@ class CfnLoadBalancer(
|
|
|
8472
8496
|
:param scope: Scope in which this resource is defined.
|
|
8473
8497
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
8474
8498
|
:param enable_prefix_for_ipv6_source_nat: [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be ``dualstack`` . The default value is ``off`` .
|
|
8475
|
-
:param enforce_security_group_inbound_rules_on_private_link_traffic: Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through AWS PrivateLink . The default is ``on`` .
|
|
8499
|
+
:param enforce_security_group_inbound_rules_on_private_link_traffic: Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through AWS PrivateLink . The default is ``on`` . You can't configure this property on a Network Load Balancer unless you associated a security group with the load balancer when you created it.
|
|
8476
8500
|
:param ip_address_type: The IP address type. Internal load balancers must use ``ipv4`` . [Application Load Balancers] The possible values are ``ipv4`` (IPv4 addresses), ``dualstack`` (IPv4 and IPv6 addresses), and ``dualstack-without-public-ipv4`` (public IPv6 addresses and private IPv4 and IPv6 addresses). Application Load Balancer authentication supports IPv4 addresses only when connecting to an Identity Provider (IdP) or Amazon Cognito endpoint. Without a public IPv4 address the load balancer can't complete the authentication process, resulting in HTTP 500 errors. [Network Load Balancers and Gateway Load Balancers] The possible values are ``ipv4`` (IPv4 addresses) and ``dualstack`` (IPv4 and IPv6 addresses).
|
|
8477
|
-
:param ipv4_ipam_pool_id:
|
|
8501
|
+
:param ipv4_ipam_pool_id: The ID of the IPv4 IPAM pool.
|
|
8478
8502
|
:param load_balancer_attributes: The load balancer attributes.
|
|
8479
8503
|
:param minimum_load_balancer_capacity: The minimum capacity for a load balancer.
|
|
8480
8504
|
:param name: The name of the load balancer. This name must be unique per region per account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, must not begin or end with a hyphen, and must not begin with "internal-". If you don't specify a name, AWS CloudFormation generates a unique physical ID for the load balancer. If you specify a name, you cannot perform updates that require replacement of this resource, but you can perform other updates. To replace the resource, specify a new name.
|
|
@@ -8663,6 +8687,7 @@ class CfnLoadBalancer(
|
|
|
8663
8687
|
@builtins.property
|
|
8664
8688
|
@jsii.member(jsii_name="ipv4IpamPoolId")
|
|
8665
8689
|
def ipv4_ipam_pool_id(self) -> typing.Optional[builtins.str]:
|
|
8690
|
+
'''The ID of the IPv4 IPAM pool.'''
|
|
8666
8691
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ipv4IpamPoolId"))
|
|
8667
8692
|
|
|
8668
8693
|
@ipv4_ipam_pool_id.setter
|
|
@@ -9132,9 +9157,9 @@ class CfnLoadBalancerProps:
|
|
|
9132
9157
|
'''Properties for defining a ``CfnLoadBalancer``.
|
|
9133
9158
|
|
|
9134
9159
|
:param enable_prefix_for_ipv6_source_nat: [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be ``dualstack`` . The default value is ``off`` .
|
|
9135
|
-
:param enforce_security_group_inbound_rules_on_private_link_traffic: Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through AWS PrivateLink . The default is ``on`` .
|
|
9160
|
+
:param enforce_security_group_inbound_rules_on_private_link_traffic: Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through AWS PrivateLink . The default is ``on`` . You can't configure this property on a Network Load Balancer unless you associated a security group with the load balancer when you created it.
|
|
9136
9161
|
:param ip_address_type: The IP address type. Internal load balancers must use ``ipv4`` . [Application Load Balancers] The possible values are ``ipv4`` (IPv4 addresses), ``dualstack`` (IPv4 and IPv6 addresses), and ``dualstack-without-public-ipv4`` (public IPv6 addresses and private IPv4 and IPv6 addresses). Application Load Balancer authentication supports IPv4 addresses only when connecting to an Identity Provider (IdP) or Amazon Cognito endpoint. Without a public IPv4 address the load balancer can't complete the authentication process, resulting in HTTP 500 errors. [Network Load Balancers and Gateway Load Balancers] The possible values are ``ipv4`` (IPv4 addresses) and ``dualstack`` (IPv4 and IPv6 addresses).
|
|
9137
|
-
:param ipv4_ipam_pool_id:
|
|
9162
|
+
:param ipv4_ipam_pool_id: The ID of the IPv4 IPAM pool.
|
|
9138
9163
|
:param load_balancer_attributes: The load balancer attributes.
|
|
9139
9164
|
:param minimum_load_balancer_capacity: The minimum capacity for a load balancer.
|
|
9140
9165
|
:param name: The name of the load balancer. This name must be unique per region per account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, must not begin or end with a hyphen, and must not begin with "internal-". If you don't specify a name, AWS CloudFormation generates a unique physical ID for the load balancer. If you specify a name, you cannot perform updates that require replacement of this resource, but you can perform other updates. To replace the resource, specify a new name.
|
|
@@ -9248,6 +9273,8 @@ class CfnLoadBalancerProps:
|
|
|
9248
9273
|
|
|
9249
9274
|
The default is ``on`` .
|
|
9250
9275
|
|
|
9276
|
+
You can't configure this property on a Network Load Balancer unless you associated a security group with the load balancer when you created it.
|
|
9277
|
+
|
|
9251
9278
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-enforcesecuritygroupinboundrulesonprivatelinktraffic
|
|
9252
9279
|
'''
|
|
9253
9280
|
result = self._values.get("enforce_security_group_inbound_rules_on_private_link_traffic")
|
|
@@ -9270,7 +9297,8 @@ class CfnLoadBalancerProps:
|
|
|
9270
9297
|
|
|
9271
9298
|
@builtins.property
|
|
9272
9299
|
def ipv4_ipam_pool_id(self) -> typing.Optional[builtins.str]:
|
|
9273
|
-
'''
|
|
9300
|
+
'''The ID of the IPv4 IPAM pool.
|
|
9301
|
+
|
|
9274
9302
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipv4ipampoolid
|
|
9275
9303
|
'''
|
|
9276
9304
|
result = self._values.get("ipv4_ipam_pool_id")
|
|
@@ -18022,6 +18050,12 @@ class NetworkLoadBalancer(
|
|
|
18022
18050
|
|
|
18023
18051
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTcpTargetResetCount", [props]))
|
|
18024
18052
|
|
|
18053
|
+
@jsii.python.classproperty
|
|
18054
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
18055
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
18056
|
+
'''Uniquely identifies this class.'''
|
|
18057
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
18058
|
+
|
|
18025
18059
|
@builtins.property
|
|
18026
18060
|
@jsii.member(jsii_name="connections")
|
|
18027
18061
|
def connections(self) -> _Connections_0f31fce8:
|
|
@@ -20177,6 +20211,12 @@ class TrustStore(
|
|
|
20177
20211
|
check_type(argname="argument trust_store_arn", value=trust_store_arn, expected_type=type_hints["trust_store_arn"])
|
|
20178
20212
|
return typing.cast(ITrustStore, jsii.sinvoke(cls, "fromTrustStoreArn", [scope, id, trust_store_arn]))
|
|
20179
20213
|
|
|
20214
|
+
@jsii.python.classproperty
|
|
20215
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
20216
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
20217
|
+
'''Uniquely identifies this class.'''
|
|
20218
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
20219
|
+
|
|
20180
20220
|
@builtins.property
|
|
20181
20221
|
@jsii.member(jsii_name="numberOfCaCertificates")
|
|
20182
20222
|
def number_of_ca_certificates(self) -> jsii.Number:
|
|
@@ -20381,6 +20421,12 @@ class TrustStoreRevocation(
|
|
|
20381
20421
|
|
|
20382
20422
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
20383
20423
|
|
|
20424
|
+
@jsii.python.classproperty
|
|
20425
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
20426
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
20427
|
+
'''Uniquely identifies this class.'''
|
|
20428
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
20429
|
+
|
|
20384
20430
|
|
|
20385
20431
|
@jsii.data_type(
|
|
20386
20432
|
jsii_type="aws-cdk-lib.aws_elasticloadbalancingv2.TrustStoreRevocationProps",
|
|
@@ -22084,6 +22130,7 @@ class ApplicationLoadBalancerProps(BaseLoadBalancerProps):
|
|
|
22084
22130
|
"vpc": "vpc",
|
|
22085
22131
|
"enable_anomaly_mitigation": "enableAnomalyMitigation",
|
|
22086
22132
|
"load_balancing_algorithm_type": "loadBalancingAlgorithmType",
|
|
22133
|
+
"multi_value_headers_enabled": "multiValueHeadersEnabled",
|
|
22087
22134
|
"port": "port",
|
|
22088
22135
|
"protocol": "protocol",
|
|
22089
22136
|
"protocol_version": "protocolVersion",
|
|
@@ -22106,6 +22153,7 @@ class ApplicationTargetGroupProps(BaseTargetGroupProps):
|
|
|
22106
22153
|
vpc: typing.Optional[_IVpc_f30d5663] = None,
|
|
22107
22154
|
enable_anomaly_mitigation: typing.Optional[builtins.bool] = None,
|
|
22108
22155
|
load_balancing_algorithm_type: typing.Optional[TargetGroupLoadBalancingAlgorithmType] = None,
|
|
22156
|
+
multi_value_headers_enabled: typing.Optional[builtins.bool] = None,
|
|
22109
22157
|
port: typing.Optional[jsii.Number] = None,
|
|
22110
22158
|
protocol: typing.Optional[ApplicationProtocol] = None,
|
|
22111
22159
|
protocol_version: typing.Optional[ApplicationProtocolVersion] = None,
|
|
@@ -22125,6 +22173,7 @@ class ApplicationTargetGroupProps(BaseTargetGroupProps):
|
|
|
22125
22173
|
:param vpc: The virtual private cloud (VPC). only if ``TargetType`` is ``Ip`` or ``InstanceId`` Default: - undefined
|
|
22126
22174
|
:param enable_anomaly_mitigation: Indicates whether anomaly mitigation is enabled. Only available when ``loadBalancingAlgorithmType`` is ``TargetGroupLoadBalancingAlgorithmType.WEIGHTED_RANDOM`` Default: false
|
|
22127
22175
|
:param load_balancing_algorithm_type: The load balancing algorithm to select targets for routing requests. Default: TargetGroupLoadBalancingAlgorithmType.ROUND_ROBIN
|
|
22176
|
+
:param multi_value_headers_enabled: Indicates whether the target group supports multi-value headers. If the value is true, the request and response headers exchanged between the load balancer and the Lambda function include arrays of values or strings. Only applicable for Lambda targets. Default: false
|
|
22128
22177
|
:param port: The port on which the target receives traffic. This is not applicable for Lambda targets. Default: - Determined from protocol if known
|
|
22129
22178
|
:param protocol: The protocol used for communication with the target. This is not applicable for Lambda targets. Default: - Determined from port if known
|
|
22130
22179
|
:param protocol_version: The protocol version to use. Default: ApplicationProtocolVersion.HTTP1
|
|
@@ -22165,6 +22214,7 @@ class ApplicationTargetGroupProps(BaseTargetGroupProps):
|
|
|
22165
22214
|
check_type(argname="argument vpc", value=vpc, expected_type=type_hints["vpc"])
|
|
22166
22215
|
check_type(argname="argument enable_anomaly_mitigation", value=enable_anomaly_mitigation, expected_type=type_hints["enable_anomaly_mitigation"])
|
|
22167
22216
|
check_type(argname="argument load_balancing_algorithm_type", value=load_balancing_algorithm_type, expected_type=type_hints["load_balancing_algorithm_type"])
|
|
22217
|
+
check_type(argname="argument multi_value_headers_enabled", value=multi_value_headers_enabled, expected_type=type_hints["multi_value_headers_enabled"])
|
|
22168
22218
|
check_type(argname="argument port", value=port, expected_type=type_hints["port"])
|
|
22169
22219
|
check_type(argname="argument protocol", value=protocol, expected_type=type_hints["protocol"])
|
|
22170
22220
|
check_type(argname="argument protocol_version", value=protocol_version, expected_type=type_hints["protocol_version"])
|
|
@@ -22191,6 +22241,8 @@ class ApplicationTargetGroupProps(BaseTargetGroupProps):
|
|
|
22191
22241
|
self._values["enable_anomaly_mitigation"] = enable_anomaly_mitigation
|
|
22192
22242
|
if load_balancing_algorithm_type is not None:
|
|
22193
22243
|
self._values["load_balancing_algorithm_type"] = load_balancing_algorithm_type
|
|
22244
|
+
if multi_value_headers_enabled is not None:
|
|
22245
|
+
self._values["multi_value_headers_enabled"] = multi_value_headers_enabled
|
|
22194
22246
|
if port is not None:
|
|
22195
22247
|
self._values["port"] = port
|
|
22196
22248
|
if protocol is not None:
|
|
@@ -22309,6 +22361,22 @@ class ApplicationTargetGroupProps(BaseTargetGroupProps):
|
|
|
22309
22361
|
result = self._values.get("load_balancing_algorithm_type")
|
|
22310
22362
|
return typing.cast(typing.Optional[TargetGroupLoadBalancingAlgorithmType], result)
|
|
22311
22363
|
|
|
22364
|
+
@builtins.property
|
|
22365
|
+
def multi_value_headers_enabled(self) -> typing.Optional[builtins.bool]:
|
|
22366
|
+
'''Indicates whether the target group supports multi-value headers.
|
|
22367
|
+
|
|
22368
|
+
If the value is true, the request and response headers exchanged between
|
|
22369
|
+
the load balancer and the Lambda function include arrays of values or strings.
|
|
22370
|
+
|
|
22371
|
+
Only applicable for Lambda targets.
|
|
22372
|
+
|
|
22373
|
+
:default: false
|
|
22374
|
+
|
|
22375
|
+
:see: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-target-groups.html#target-group-attributes
|
|
22376
|
+
'''
|
|
22377
|
+
result = self._values.get("multi_value_headers_enabled")
|
|
22378
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
22379
|
+
|
|
22312
22380
|
@builtins.property
|
|
22313
22381
|
def port(self) -> typing.Optional[jsii.Number]:
|
|
22314
22382
|
'''The port on which the target receives traffic.
|
|
@@ -23429,6 +23497,12 @@ class NetworkListener(
|
|
|
23429
23497
|
|
|
23430
23498
|
return typing.cast("NetworkTargetGroup", jsii.invoke(self, "addTargets", [id, props]))
|
|
23431
23499
|
|
|
23500
|
+
@jsii.python.classproperty
|
|
23501
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
23502
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
23503
|
+
'''Uniquely identifies this class.'''
|
|
23504
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
23505
|
+
|
|
23432
23506
|
@builtins.property
|
|
23433
23507
|
@jsii.member(jsii_name="loadBalancer")
|
|
23434
23508
|
def load_balancer(self) -> INetworkLoadBalancer:
|
|
@@ -23682,6 +23756,12 @@ class NetworkTargetGroup(
|
|
|
23682
23756
|
def _validate_target_group(self) -> typing.List[builtins.str]:
|
|
23683
23757
|
return typing.cast(typing.List[builtins.str], jsii.invoke(self, "validateTargetGroup", []))
|
|
23684
23758
|
|
|
23759
|
+
@jsii.python.classproperty
|
|
23760
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
23761
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
23762
|
+
'''Uniquely identifies this class.'''
|
|
23763
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
23764
|
+
|
|
23685
23765
|
@builtins.property
|
|
23686
23766
|
@jsii.member(jsii_name="firstLoadBalancerFullName")
|
|
23687
23767
|
def first_load_balancer_full_name(self) -> builtins.str:
|
|
@@ -24039,6 +24119,12 @@ class ApplicationListener(
|
|
|
24039
24119
|
'''Validate this listener.'''
|
|
24040
24120
|
return typing.cast(typing.List[builtins.str], jsii.invoke(self, "validateListener", []))
|
|
24041
24121
|
|
|
24122
|
+
@jsii.python.classproperty
|
|
24123
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
24124
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
24125
|
+
'''Uniquely identifies this class.'''
|
|
24126
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
24127
|
+
|
|
24042
24128
|
@builtins.property
|
|
24043
24129
|
@jsii.member(jsii_name="connections")
|
|
24044
24130
|
def connections(self) -> _Connections_0f31fce8:
|
|
@@ -25516,6 +25602,12 @@ class ApplicationLoadBalancer(
|
|
|
25516
25602
|
|
|
25517
25603
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTargetTLSNegotiationErrorCount", [props]))
|
|
25518
25604
|
|
|
25605
|
+
@jsii.python.classproperty
|
|
25606
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
25607
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
25608
|
+
'''Uniquely identifies this class.'''
|
|
25609
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
25610
|
+
|
|
25519
25611
|
@builtins.property
|
|
25520
25612
|
@jsii.member(jsii_name="connections")
|
|
25521
25613
|
def connections(self) -> _Connections_0f31fce8:
|
|
@@ -25583,6 +25675,7 @@ class ApplicationTargetGroup(
|
|
|
25583
25675
|
*,
|
|
25584
25676
|
enable_anomaly_mitigation: typing.Optional[builtins.bool] = None,
|
|
25585
25677
|
load_balancing_algorithm_type: typing.Optional[TargetGroupLoadBalancingAlgorithmType] = None,
|
|
25678
|
+
multi_value_headers_enabled: typing.Optional[builtins.bool] = None,
|
|
25586
25679
|
port: typing.Optional[jsii.Number] = None,
|
|
25587
25680
|
protocol: typing.Optional[ApplicationProtocol] = None,
|
|
25588
25681
|
protocol_version: typing.Optional[ApplicationProtocolVersion] = None,
|
|
@@ -25603,6 +25696,7 @@ class ApplicationTargetGroup(
|
|
|
25603
25696
|
:param id: -
|
|
25604
25697
|
:param enable_anomaly_mitigation: Indicates whether anomaly mitigation is enabled. Only available when ``loadBalancingAlgorithmType`` is ``TargetGroupLoadBalancingAlgorithmType.WEIGHTED_RANDOM`` Default: false
|
|
25605
25698
|
:param load_balancing_algorithm_type: The load balancing algorithm to select targets for routing requests. Default: TargetGroupLoadBalancingAlgorithmType.ROUND_ROBIN
|
|
25699
|
+
:param multi_value_headers_enabled: Indicates whether the target group supports multi-value headers. If the value is true, the request and response headers exchanged between the load balancer and the Lambda function include arrays of values or strings. Only applicable for Lambda targets. Default: false
|
|
25606
25700
|
:param port: The port on which the target receives traffic. This is not applicable for Lambda targets. Default: - Determined from protocol if known
|
|
25607
25701
|
:param protocol: The protocol used for communication with the target. This is not applicable for Lambda targets. Default: - Determined from port if known
|
|
25608
25702
|
:param protocol_version: The protocol version to use. Default: ApplicationProtocolVersion.HTTP1
|
|
@@ -25625,6 +25719,7 @@ class ApplicationTargetGroup(
|
|
|
25625
25719
|
props = ApplicationTargetGroupProps(
|
|
25626
25720
|
enable_anomaly_mitigation=enable_anomaly_mitigation,
|
|
25627
25721
|
load_balancing_algorithm_type=load_balancing_algorithm_type,
|
|
25722
|
+
multi_value_headers_enabled=multi_value_headers_enabled,
|
|
25628
25723
|
port=port,
|
|
25629
25724
|
protocol=protocol,
|
|
25630
25725
|
protocol_version=protocol_version,
|
|
@@ -26254,6 +26349,12 @@ class ApplicationTargetGroup(
|
|
|
26254
26349
|
def _validate_target_group(self) -> typing.List[builtins.str]:
|
|
26255
26350
|
return typing.cast(typing.List[builtins.str], jsii.invoke(self, "validateTargetGroup", []))
|
|
26256
26351
|
|
|
26352
|
+
@jsii.python.classproperty
|
|
26353
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
26354
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
26355
|
+
'''Uniquely identifies this class.'''
|
|
26356
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
26357
|
+
|
|
26257
26358
|
@builtins.property
|
|
26258
26359
|
@jsii.member(jsii_name="firstLoadBalancerFullName")
|
|
26259
26360
|
def first_load_balancer_full_name(self) -> builtins.str:
|
|
@@ -28363,6 +28464,7 @@ def _typecheckingstub__0fbf37aa0a91cb985ce7a336a6188364cc38400538c1653e53453287c
|
|
|
28363
28464
|
vpc: typing.Optional[_IVpc_f30d5663] = None,
|
|
28364
28465
|
enable_anomaly_mitigation: typing.Optional[builtins.bool] = None,
|
|
28365
28466
|
load_balancing_algorithm_type: typing.Optional[TargetGroupLoadBalancingAlgorithmType] = None,
|
|
28467
|
+
multi_value_headers_enabled: typing.Optional[builtins.bool] = None,
|
|
28366
28468
|
port: typing.Optional[jsii.Number] = None,
|
|
28367
28469
|
protocol: typing.Optional[ApplicationProtocol] = None,
|
|
28368
28470
|
protocol_version: typing.Optional[ApplicationProtocolVersion] = None,
|
|
@@ -28856,6 +28958,7 @@ def _typecheckingstub__e179515c9d6138007cc1b74835b75f10a179c1f5ef977cbe4188c778c
|
|
|
28856
28958
|
*,
|
|
28857
28959
|
enable_anomaly_mitigation: typing.Optional[builtins.bool] = None,
|
|
28858
28960
|
load_balancing_algorithm_type: typing.Optional[TargetGroupLoadBalancingAlgorithmType] = None,
|
|
28961
|
+
multi_value_headers_enabled: typing.Optional[builtins.bool] = None,
|
|
28859
28962
|
port: typing.Optional[jsii.Number] = None,
|
|
28860
28963
|
protocol: typing.Optional[ApplicationProtocol] = None,
|
|
28861
28964
|
protocol_version: typing.Optional[ApplicationProtocolVersion] = None,
|
|
@@ -7482,6 +7482,15 @@ class Domain(
|
|
|
7482
7482
|
|
|
7483
7483
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchLatency", [props]))
|
|
7484
7484
|
|
|
7485
|
+
@jsii.python.classproperty
|
|
7486
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
7487
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
7488
|
+
'''(deprecated) Uniquely identifies this class.
|
|
7489
|
+
|
|
7490
|
+
:stability: deprecated
|
|
7491
|
+
'''
|
|
7492
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
7493
|
+
|
|
7485
7494
|
@builtins.property
|
|
7486
7495
|
@jsii.member(jsii_name="connections")
|
|
7487
7496
|
def connections(self) -> _Connections_0f31fce8:
|
aws_cdk/aws_events/__init__.py
CHANGED
|
@@ -679,6 +679,12 @@ class Archive(
|
|
|
679
679
|
|
|
680
680
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
681
681
|
|
|
682
|
+
@jsii.python.classproperty
|
|
683
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
684
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
685
|
+
'''Uniquely identifies this class.'''
|
|
686
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
687
|
+
|
|
682
688
|
@builtins.property
|
|
683
689
|
@jsii.member(jsii_name="archiveArn")
|
|
684
690
|
def archive_arn(self) -> builtins.str:
|
|
@@ -8646,6 +8652,12 @@ class EventBusPolicy(
|
|
|
8646
8652
|
|
|
8647
8653
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
8648
8654
|
|
|
8655
|
+
@jsii.python.classproperty
|
|
8656
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
8657
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
8658
|
+
'''Uniquely identifies this class.'''
|
|
8659
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
8660
|
+
|
|
8649
8661
|
|
|
8650
8662
|
@jsii.data_type(
|
|
8651
8663
|
jsii_type="aws-cdk-lib.aws_events.EventBusPolicyProps",
|
|
@@ -10715,6 +10727,12 @@ class Rule(
|
|
|
10715
10727
|
def _validate_rule(self) -> typing.List[builtins.str]:
|
|
10716
10728
|
return typing.cast(typing.List[builtins.str], jsii.invoke(self, "validateRule", []))
|
|
10717
10729
|
|
|
10730
|
+
@jsii.python.classproperty
|
|
10731
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
10732
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
10733
|
+
'''Uniquely identifies this class.'''
|
|
10734
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
10735
|
+
|
|
10718
10736
|
@builtins.property
|
|
10719
10737
|
@jsii.member(jsii_name="ruleArn")
|
|
10720
10738
|
def rule_arn(self) -> builtins.str:
|
|
@@ -11758,6 +11776,12 @@ class ApiDestination(
|
|
|
11758
11776
|
|
|
11759
11777
|
return typing.cast("ApiDestination", jsii.sinvoke(cls, "fromApiDestinationAttributes", [scope, id, attrs]))
|
|
11760
11778
|
|
|
11779
|
+
@jsii.python.classproperty
|
|
11780
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
11781
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
11782
|
+
'''Uniquely identifies this class.'''
|
|
11783
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
11784
|
+
|
|
11761
11785
|
@builtins.property
|
|
11762
11786
|
@jsii.member(jsii_name="apiDestinationArn")
|
|
11763
11787
|
def api_destination_arn(self) -> builtins.str:
|
|
@@ -12043,6 +12067,12 @@ class Connection(
|
|
|
12043
12067
|
check_type(argname="argument connection_secret_arn", value=connection_secret_arn, expected_type=type_hints["connection_secret_arn"])
|
|
12044
12068
|
return typing.cast(IConnection, jsii.sinvoke(cls, "fromEventBusArn", [scope, id, connection_arn, connection_secret_arn]))
|
|
12045
12069
|
|
|
12070
|
+
@jsii.python.classproperty
|
|
12071
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
12072
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
12073
|
+
'''Uniquely identifies this class.'''
|
|
12074
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
12075
|
+
|
|
12046
12076
|
@builtins.property
|
|
12047
12077
|
@jsii.member(jsii_name="connectionArn")
|
|
12048
12078
|
def connection_arn(self) -> builtins.str:
|
|
@@ -12282,6 +12312,12 @@ class EventBus(
|
|
|
12282
12312
|
check_type(argname="argument sid", value=sid, expected_type=type_hints["sid"])
|
|
12283
12313
|
return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantPutEventsTo", [grantee, sid]))
|
|
12284
12314
|
|
|
12315
|
+
@jsii.python.classproperty
|
|
12316
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
12317
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
12318
|
+
'''Uniquely identifies this class.'''
|
|
12319
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
12320
|
+
|
|
12285
12321
|
@builtins.property
|
|
12286
12322
|
@jsii.member(jsii_name="eventBusArn")
|
|
12287
12323
|
def event_bus_arn(self) -> builtins.str:
|
|
@@ -1648,19 +1648,19 @@ class CloudWatchLogGroup(
|
|
|
1648
1648
|
@jsii.member(jsii_name="bind")
|
|
1649
1649
|
def bind(
|
|
1650
1650
|
self,
|
|
1651
|
-
|
|
1651
|
+
rule: _IRule_af9e3d28,
|
|
1652
1652
|
_id: typing.Optional[builtins.str] = None,
|
|
1653
1653
|
) -> _RuleTargetConfig_4e70fe03:
|
|
1654
1654
|
'''Returns a RuleTarget that can be used to log an event into a CloudWatch LogGroup.
|
|
1655
1655
|
|
|
1656
|
-
:param
|
|
1656
|
+
:param rule: -
|
|
1657
1657
|
:param _id: -
|
|
1658
1658
|
'''
|
|
1659
1659
|
if __debug__:
|
|
1660
1660
|
type_hints = typing.get_type_hints(_typecheckingstub__5583066efc6b7b2980bfbfbf33e6491271f5faf3b97e5d2ae998d1fe4189d1d4)
|
|
1661
|
-
check_type(argname="argument
|
|
1661
|
+
check_type(argname="argument rule", value=rule, expected_type=type_hints["rule"])
|
|
1662
1662
|
check_type(argname="argument _id", value=_id, expected_type=type_hints["_id"])
|
|
1663
|
-
return typing.cast(_RuleTargetConfig_4e70fe03, jsii.invoke(self, "bind", [
|
|
1663
|
+
return typing.cast(_RuleTargetConfig_4e70fe03, jsii.invoke(self, "bind", [rule, _id]))
|
|
1664
1664
|
|
|
1665
1665
|
|
|
1666
1666
|
@jsii.implements(_IRuleTarget_7a91f454)
|
|
@@ -2064,19 +2064,19 @@ class EcsTask(
|
|
|
2064
2064
|
@jsii.member(jsii_name="bind")
|
|
2065
2065
|
def bind(
|
|
2066
2066
|
self,
|
|
2067
|
-
|
|
2067
|
+
rule: _IRule_af9e3d28,
|
|
2068
2068
|
_id: typing.Optional[builtins.str] = None,
|
|
2069
2069
|
) -> _RuleTargetConfig_4e70fe03:
|
|
2070
2070
|
'''Allows using tasks as target of EventBridge events.
|
|
2071
2071
|
|
|
2072
|
-
:param
|
|
2072
|
+
:param rule: -
|
|
2073
2073
|
:param _id: -
|
|
2074
2074
|
'''
|
|
2075
2075
|
if __debug__:
|
|
2076
2076
|
type_hints = typing.get_type_hints(_typecheckingstub__8ad199a8641f171a0447e974756bbddd91b00aaa9bcf33d231826916b85b8166)
|
|
2077
|
-
check_type(argname="argument
|
|
2077
|
+
check_type(argname="argument rule", value=rule, expected_type=type_hints["rule"])
|
|
2078
2078
|
check_type(argname="argument _id", value=_id, expected_type=type_hints["_id"])
|
|
2079
|
-
return typing.cast(_RuleTargetConfig_4e70fe03, jsii.invoke(self, "bind", [
|
|
2079
|
+
return typing.cast(_RuleTargetConfig_4e70fe03, jsii.invoke(self, "bind", [rule, _id]))
|
|
2080
2080
|
|
|
2081
2081
|
@builtins.property
|
|
2082
2082
|
@jsii.member(jsii_name="securityGroups")
|
|
@@ -6179,7 +6179,7 @@ def _typecheckingstub__c7cd04d50c1c36eb2be36abb3fbdf553a534c7ae5d60f1c9cac6b5cf6
|
|
|
6179
6179
|
pass
|
|
6180
6180
|
|
|
6181
6181
|
def _typecheckingstub__5583066efc6b7b2980bfbfbf33e6491271f5faf3b97e5d2ae998d1fe4189d1d4(
|
|
6182
|
-
|
|
6182
|
+
rule: _IRule_af9e3d28,
|
|
6183
6183
|
_id: typing.Optional[builtins.str] = None,
|
|
6184
6184
|
) -> None:
|
|
6185
6185
|
"""Type checking stubs"""
|
|
@@ -6235,7 +6235,7 @@ def _typecheckingstub__c13bb1641d81a866856c7cdeae6fa612e09bb941bc83053a19b901e30
|
|
|
6235
6235
|
pass
|
|
6236
6236
|
|
|
6237
6237
|
def _typecheckingstub__8ad199a8641f171a0447e974756bbddd91b00aaa9bcf33d231826916b85b8166(
|
|
6238
|
-
|
|
6238
|
+
rule: _IRule_af9e3d28,
|
|
6239
6239
|
_id: typing.Optional[builtins.str] = None,
|
|
6240
6240
|
) -> None:
|
|
6241
6241
|
"""Type checking stubs"""
|
aws_cdk/aws_fsx/__init__.py
CHANGED
|
@@ -8482,6 +8482,12 @@ class LustreFileSystem(
|
|
|
8482
8482
|
|
|
8483
8483
|
return typing.cast(IFileSystem, jsii.sinvoke(cls, "fromLustreFileSystemAttributes", [scope, id, attrs]))
|
|
8484
8484
|
|
|
8485
|
+
@jsii.python.classproperty
|
|
8486
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
8487
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
8488
|
+
'''Uniquely identifies this class.'''
|
|
8489
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
8490
|
+
|
|
8485
8491
|
@builtins.property
|
|
8486
8492
|
@jsii.member(jsii_name="connections")
|
|
8487
8493
|
def connections(self) -> _Connections_0f31fce8:
|
|
@@ -3221,6 +3221,12 @@ class Listener(
|
|
|
3221
3221
|
|
|
3222
3222
|
return typing.cast("EndpointGroup", jsii.invoke(self, "addEndpointGroup", [id, options]))
|
|
3223
3223
|
|
|
3224
|
+
@jsii.python.classproperty
|
|
3225
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
3226
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
3227
|
+
'''Uniquely identifies this class.'''
|
|
3228
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
3229
|
+
|
|
3224
3230
|
@builtins.property
|
|
3225
3231
|
@jsii.member(jsii_name="listenerArn")
|
|
3226
3232
|
def listener_arn(self) -> builtins.str:
|
|
@@ -3961,6 +3967,12 @@ class Accelerator(
|
|
|
3961
3967
|
|
|
3962
3968
|
return typing.cast(Listener, jsii.invoke(self, "addListener", [id, options]))
|
|
3963
3969
|
|
|
3970
|
+
@jsii.python.classproperty
|
|
3971
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
3972
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
3973
|
+
'''Uniquely identifies this class.'''
|
|
3974
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
3975
|
+
|
|
3964
3976
|
@builtins.property
|
|
3965
3977
|
@jsii.member(jsii_name="acceleratorArn")
|
|
3966
3978
|
def accelerator_arn(self) -> builtins.str:
|
|
@@ -4137,6 +4149,12 @@ class EndpointGroup(
|
|
|
4137
4149
|
check_type(argname="argument vpc", value=vpc, expected_type=type_hints["vpc"])
|
|
4138
4150
|
return typing.cast(_IPeer_cf58db9a, jsii.invoke(self, "connectionsPeer", [id, vpc]))
|
|
4139
4151
|
|
|
4152
|
+
@jsii.python.classproperty
|
|
4153
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
4154
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
4155
|
+
'''Uniquely identifies this class.'''
|
|
4156
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
4157
|
+
|
|
4140
4158
|
@builtins.property
|
|
4141
4159
|
@jsii.member(jsii_name="endpointGroupArn")
|
|
4142
4160
|
def endpoint_group_arn(self) -> builtins.str:
|