aws-cdk-lib 2.197.0__py3-none-any.whl → 2.198.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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.197.0.jsii.tgz → aws-cdk-lib@2.198.0.jsii.tgz} +0 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +36 -0
- aws_cdk/aws_appsync/__init__.py +31 -21
- aws_cdk/aws_autoscaling/__init__.py +2 -1
- aws_cdk/aws_codepipeline/__init__.py +4 -2
- aws_cdk/aws_datasync/__init__.py +885 -839
- aws_cdk/aws_deadline/__init__.py +23 -4
- aws_cdk/aws_ec2/__init__.py +210 -4
- aws_cdk/aws_ecs/__init__.py +14 -2
- aws_cdk/aws_ecs_patterns/__init__.py +15 -9
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +14 -8
- aws_cdk/aws_gamelift/__init__.py +15 -17
- aws_cdk/aws_lex/__init__.py +1245 -172
- aws_cdk/aws_mediapackagev2/__init__.py +11 -10
- aws_cdk/aws_omics/__init__.py +41 -19
- aws_cdk/aws_pcs/__init__.py +126 -0
- aws_cdk/aws_rds/__init__.py +42 -15
- aws_cdk/aws_rolesanywhere/__init__.py +14 -13
- aws_cdk/aws_sagemaker/__init__.py +38 -12
- aws_cdk/aws_ses/__init__.py +188 -0
- aws_cdk/aws_ssmquicksetup/__init__.py +10 -2
- aws_cdk/aws_synthetics/__init__.py +137 -3
- aws_cdk/aws_wafv2/__init__.py +4 -4
- aws_cdk/aws_workspaces/__init__.py +5 -3
- {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/RECORD +31 -31
- {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/top_level.txt +0 -0
|
@@ -1598,7 +1598,7 @@ class ApplicationLoadBalancedServiceBase(
|
|
|
1598
1598
|
:param protocol_version: The protocol version to use. Default: ApplicationProtocolVersion.HTTP1
|
|
1599
1599
|
:param public_load_balancer: Determines whether the Load Balancer will be internet-facing. Default: true
|
|
1600
1600
|
:param record_type: Specifies whether the Route53 record should be a CNAME, an A record using the Alias feature or no record at all. This is useful if you need to work with DNS systems that do not support alias records. Default: ApplicationLoadBalancedServiceRecordType.ALIAS
|
|
1601
|
-
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to
|
|
1601
|
+
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to the {@link listenerPort} to support HTTP->HTTPS redirects. This is only valid if the protocol of the ALB is HTTPS. Default: false
|
|
1602
1602
|
:param service_name: The name of the service. Default: - CloudFormation-generated name.
|
|
1603
1603
|
:param ssl_policy: The security policy that defines which ciphers and protocols are supported by the ALB Listener. Default: - The recommended elastic load balancing security policy
|
|
1604
1604
|
:param target_protocol: The protocol for connections from the load balancer to the ECS tasks. The default target port is determined from the protocol (port 80 for HTTP, port 443 for HTTPS). Default: HTTP.
|
|
@@ -1837,7 +1837,7 @@ class ApplicationLoadBalancedServiceBaseProps:
|
|
|
1837
1837
|
:param protocol_version: The protocol version to use. Default: ApplicationProtocolVersion.HTTP1
|
|
1838
1838
|
:param public_load_balancer: Determines whether the Load Balancer will be internet-facing. Default: true
|
|
1839
1839
|
:param record_type: Specifies whether the Route53 record should be a CNAME, an A record using the Alias feature or no record at all. This is useful if you need to work with DNS systems that do not support alias records. Default: ApplicationLoadBalancedServiceRecordType.ALIAS
|
|
1840
|
-
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to
|
|
1840
|
+
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to the {@link listenerPort} to support HTTP->HTTPS redirects. This is only valid if the protocol of the ALB is HTTPS. Default: false
|
|
1841
1841
|
:param service_name: The name of the service. Default: - CloudFormation-generated name.
|
|
1842
1842
|
:param ssl_policy: The security policy that defines which ciphers and protocols are supported by the ALB Listener. Default: - The recommended elastic load balancing security policy
|
|
1843
1843
|
:param target_protocol: The protocol for connections from the load balancer to the ECS tasks. The default target port is determined from the protocol (port 80 for HTTP, port 443 for HTTPS). Default: HTTP.
|
|
@@ -2327,7 +2327,9 @@ class ApplicationLoadBalancedServiceBaseProps:
|
|
|
2327
2327
|
|
|
2328
2328
|
@builtins.property
|
|
2329
2329
|
def redirect_http(self) -> typing.Optional[builtins.bool]:
|
|
2330
|
-
'''Specifies whether the load balancer should redirect traffic on port 80 to
|
|
2330
|
+
'''Specifies whether the load balancer should redirect traffic on port 80 to the {@link listenerPort} to support HTTP->HTTPS redirects.
|
|
2331
|
+
|
|
2332
|
+
This is only valid if the protocol of the ALB is HTTPS.
|
|
2331
2333
|
|
|
2332
2334
|
:default: false
|
|
2333
2335
|
'''
|
|
@@ -7613,7 +7615,7 @@ class ApplicationLoadBalancedEc2Service(
|
|
|
7613
7615
|
:param protocol_version: The protocol version to use. Default: ApplicationProtocolVersion.HTTP1
|
|
7614
7616
|
:param public_load_balancer: Determines whether the Load Balancer will be internet-facing. Default: true
|
|
7615
7617
|
:param record_type: Specifies whether the Route53 record should be a CNAME, an A record using the Alias feature or no record at all. This is useful if you need to work with DNS systems that do not support alias records. Default: ApplicationLoadBalancedServiceRecordType.ALIAS
|
|
7616
|
-
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to
|
|
7618
|
+
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to the {@link listenerPort} to support HTTP->HTTPS redirects. This is only valid if the protocol of the ALB is HTTPS. Default: false
|
|
7617
7619
|
:param service_name: The name of the service. Default: - CloudFormation-generated name.
|
|
7618
7620
|
:param ssl_policy: The security policy that defines which ciphers and protocols are supported by the ALB Listener. Default: - The recommended elastic load balancing security policy
|
|
7619
7621
|
:param target_protocol: The protocol for connections from the load balancer to the ECS tasks. The default target port is determined from the protocol (port 80 for HTTP, port 443 for HTTPS). Default: HTTP.
|
|
@@ -7791,7 +7793,7 @@ class ApplicationLoadBalancedEc2ServiceProps(ApplicationLoadBalancedServiceBaseP
|
|
|
7791
7793
|
:param protocol_version: The protocol version to use. Default: ApplicationProtocolVersion.HTTP1
|
|
7792
7794
|
:param public_load_balancer: Determines whether the Load Balancer will be internet-facing. Default: true
|
|
7793
7795
|
:param record_type: Specifies whether the Route53 record should be a CNAME, an A record using the Alias feature or no record at all. This is useful if you need to work with DNS systems that do not support alias records. Default: ApplicationLoadBalancedServiceRecordType.ALIAS
|
|
7794
|
-
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to
|
|
7796
|
+
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to the {@link listenerPort} to support HTTP->HTTPS redirects. This is only valid if the protocol of the ALB is HTTPS. Default: false
|
|
7795
7797
|
:param service_name: The name of the service. Default: - CloudFormation-generated name.
|
|
7796
7798
|
:param ssl_policy: The security policy that defines which ciphers and protocols are supported by the ALB Listener. Default: - The recommended elastic load balancing security policy
|
|
7797
7799
|
:param target_protocol: The protocol for connections from the load balancer to the ECS tasks. The default target port is determined from the protocol (port 80 for HTTP, port 443 for HTTPS). Default: HTTP.
|
|
@@ -8222,7 +8224,9 @@ class ApplicationLoadBalancedEc2ServiceProps(ApplicationLoadBalancedServiceBaseP
|
|
|
8222
8224
|
|
|
8223
8225
|
@builtins.property
|
|
8224
8226
|
def redirect_http(self) -> typing.Optional[builtins.bool]:
|
|
8225
|
-
'''Specifies whether the load balancer should redirect traffic on port 80 to
|
|
8227
|
+
'''Specifies whether the load balancer should redirect traffic on port 80 to the {@link listenerPort} to support HTTP->HTTPS redirects.
|
|
8228
|
+
|
|
8229
|
+
This is only valid if the protocol of the ALB is HTTPS.
|
|
8226
8230
|
|
|
8227
8231
|
:default: false
|
|
8228
8232
|
'''
|
|
@@ -8509,7 +8513,7 @@ class ApplicationLoadBalancedFargateService(
|
|
|
8509
8513
|
:param protocol_version: The protocol version to use. Default: ApplicationProtocolVersion.HTTP1
|
|
8510
8514
|
:param public_load_balancer: Determines whether the Load Balancer will be internet-facing. Default: true
|
|
8511
8515
|
:param record_type: Specifies whether the Route53 record should be a CNAME, an A record using the Alias feature or no record at all. This is useful if you need to work with DNS systems that do not support alias records. Default: ApplicationLoadBalancedServiceRecordType.ALIAS
|
|
8512
|
-
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to
|
|
8516
|
+
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to the {@link listenerPort} to support HTTP->HTTPS redirects. This is only valid if the protocol of the ALB is HTTPS. Default: false
|
|
8513
8517
|
:param service_name: The name of the service. Default: - CloudFormation-generated name.
|
|
8514
8518
|
:param ssl_policy: The security policy that defines which ciphers and protocols are supported by the ALB Listener. Default: - The recommended elastic load balancing security policy
|
|
8515
8519
|
:param target_protocol: The protocol for connections from the load balancer to the ECS tasks. The default target port is determined from the protocol (port 80 for HTTP, port 443 for HTTPS). Default: HTTP.
|
|
@@ -8728,7 +8732,7 @@ class ApplicationLoadBalancedFargateServiceProps(
|
|
|
8728
8732
|
:param protocol_version: The protocol version to use. Default: ApplicationProtocolVersion.HTTP1
|
|
8729
8733
|
:param public_load_balancer: Determines whether the Load Balancer will be internet-facing. Default: true
|
|
8730
8734
|
:param record_type: Specifies whether the Route53 record should be a CNAME, an A record using the Alias feature or no record at all. This is useful if you need to work with DNS systems that do not support alias records. Default: ApplicationLoadBalancedServiceRecordType.ALIAS
|
|
8731
|
-
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to
|
|
8735
|
+
:param redirect_http: Specifies whether the load balancer should redirect traffic on port 80 to the {@link listenerPort} to support HTTP->HTTPS redirects. This is only valid if the protocol of the ALB is HTTPS. Default: false
|
|
8732
8736
|
:param service_name: The name of the service. Default: - CloudFormation-generated name.
|
|
8733
8737
|
:param ssl_policy: The security policy that defines which ciphers and protocols are supported by the ALB Listener. Default: - The recommended elastic load balancing security policy
|
|
8734
8738
|
:param target_protocol: The protocol for connections from the load balancer to the ECS tasks. The default target port is determined from the protocol (port 80 for HTTP, port 443 for HTTPS). Default: HTTP.
|
|
@@ -9197,7 +9201,9 @@ class ApplicationLoadBalancedFargateServiceProps(
|
|
|
9197
9201
|
|
|
9198
9202
|
@builtins.property
|
|
9199
9203
|
def redirect_http(self) -> typing.Optional[builtins.bool]:
|
|
9200
|
-
'''Specifies whether the load balancer should redirect traffic on port 80 to
|
|
9204
|
+
'''Specifies whether the load balancer should redirect traffic on port 80 to the {@link listenerPort} to support HTTP->HTTPS redirects.
|
|
9205
|
+
|
|
9206
|
+
This is only valid if the protocol of the ALB is HTTPS.
|
|
9201
9207
|
|
|
9202
9208
|
:default: false
|
|
9203
9209
|
'''
|
|
@@ -3859,7 +3859,7 @@ class CfnListener(
|
|
|
3859
3859
|
:param load_balancer_arn: The Amazon Resource Name (ARN) of the load balancer.
|
|
3860
3860
|
:param alpn_policy: [TLS listener] The name of the Application-Layer Protocol Negotiation (ALPN) policy.
|
|
3861
3861
|
:param certificates: The default SSL server certificate for a secure listener. You must provide exactly one certificate if the listener protocol is HTTPS or TLS. To create a certificate list for a secure listener, use `AWS::ElasticLoadBalancingV2::ListenerCertificate <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html>`_ .
|
|
3862
|
-
:param listener_attributes: The listener attributes.
|
|
3862
|
+
:param listener_attributes: The listener attributes. Attributes that you do not modify retain their current values.
|
|
3863
3863
|
:param mutual_authentication: The mutual authentication configuration information.
|
|
3864
3864
|
:param port: The port on which the load balancer is listening. You can't specify a port for a Gateway Load Balancer.
|
|
3865
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.
|
|
@@ -5808,7 +5808,7 @@ class CfnListenerProps:
|
|
|
5808
5808
|
:param load_balancer_arn: The Amazon Resource Name (ARN) of the load balancer.
|
|
5809
5809
|
:param alpn_policy: [TLS listener] The name of the Application-Layer Protocol Negotiation (ALPN) policy.
|
|
5810
5810
|
:param certificates: The default SSL server certificate for a secure listener. You must provide exactly one certificate if the listener protocol is HTTPS or TLS. To create a certificate list for a secure listener, use `AWS::ElasticLoadBalancingV2::ListenerCertificate <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html>`_ .
|
|
5811
|
-
:param listener_attributes: The listener attributes.
|
|
5811
|
+
:param listener_attributes: The listener attributes. Attributes that you do not modify retain their current values.
|
|
5812
5812
|
:param mutual_authentication: The mutual authentication configuration information.
|
|
5813
5813
|
:param port: The port on which the load balancer is listening. You can't specify a port for a Gateway Load Balancer.
|
|
5814
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.
|
|
@@ -5996,6 +5996,8 @@ class CfnListenerProps:
|
|
|
5996
5996
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnListener.ListenerAttributeProperty]]]]:
|
|
5997
5997
|
'''The listener attributes.
|
|
5998
5998
|
|
|
5999
|
+
Attributes that you do not modify retain their current values.
|
|
6000
|
+
|
|
5999
6001
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-listenerattributes
|
|
6000
6002
|
'''
|
|
6001
6003
|
result = self._values.get("listener_attributes")
|
|
@@ -7220,7 +7222,7 @@ class CfnListenerRule(
|
|
|
7220
7222
|
) -> None:
|
|
7221
7223
|
'''Information about a host header condition.
|
|
7222
7224
|
|
|
7223
|
-
:param values: The host names. The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
7225
|
+
:param values: The host names. The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character. If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
7224
7226
|
|
|
7225
7227
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-hostheaderconfig.html
|
|
7226
7228
|
:exampleMetadata: fixture=_generated
|
|
@@ -7246,7 +7248,7 @@ class CfnListenerRule(
|
|
|
7246
7248
|
def values(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
7247
7249
|
'''The host names.
|
|
7248
7250
|
|
|
7249
|
-
The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
7251
|
+
The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
7250
7252
|
|
|
7251
7253
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
7252
7254
|
|
|
@@ -8499,7 +8501,7 @@ class CfnLoadBalancer(
|
|
|
8499
8501
|
: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.
|
|
8500
8502
|
: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).
|
|
8501
8503
|
:param ipv4_ipam_pool_id: The ID of the IPv4 IPAM pool.
|
|
8502
|
-
:param load_balancer_attributes: The load balancer attributes.
|
|
8504
|
+
:param load_balancer_attributes: The load balancer attributes. Attributes that you do not modify retain their current values.
|
|
8503
8505
|
:param minimum_load_balancer_capacity: The minimum capacity for a load balancer.
|
|
8504
8506
|
: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.
|
|
8505
8507
|
:param scheme: The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes. Therefore, Internet-facing load balancers can route requests from clients over the internet. The nodes of an internal load balancer have only private IP addresses. The DNS name of an internal load balancer is publicly resolvable to the private IP addresses of the nodes. Therefore, internal load balancers can route requests only from clients with access to the VPC for the load balancer. The default is an Internet-facing load balancer. You can't specify a scheme for a Gateway Load Balancer.
|
|
@@ -9160,7 +9162,7 @@ class CfnLoadBalancerProps:
|
|
|
9160
9162
|
: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.
|
|
9161
9163
|
: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).
|
|
9162
9164
|
:param ipv4_ipam_pool_id: The ID of the IPv4 IPAM pool.
|
|
9163
|
-
:param load_balancer_attributes: The load balancer attributes.
|
|
9165
|
+
:param load_balancer_attributes: The load balancer attributes. Attributes that you do not modify retain their current values.
|
|
9164
9166
|
:param minimum_load_balancer_capacity: The minimum capacity for a load balancer.
|
|
9165
9167
|
: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.
|
|
9166
9168
|
:param scheme: The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes. Therefore, Internet-facing load balancers can route requests from clients over the internet. The nodes of an internal load balancer have only private IP addresses. The DNS name of an internal load balancer is publicly resolvable to the private IP addresses of the nodes. Therefore, internal load balancers can route requests only from clients with access to the VPC for the load balancer. The default is an Internet-facing load balancer. You can't specify a scheme for a Gateway Load Balancer.
|
|
@@ -9310,6 +9312,8 @@ class CfnLoadBalancerProps:
|
|
|
9310
9312
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnLoadBalancer.LoadBalancerAttributeProperty]]]]:
|
|
9311
9313
|
'''The load balancer attributes.
|
|
9312
9314
|
|
|
9315
|
+
Attributes that you do not modify retain their current values.
|
|
9316
|
+
|
|
9313
9317
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-loadbalancerattributes
|
|
9314
9318
|
'''
|
|
9315
9319
|
result = self._values.get("load_balancer_attributes")
|
|
@@ -9539,7 +9543,7 @@ class CfnTargetGroup(
|
|
|
9539
9543
|
:param protocol: The protocol to use for routing traffic to the targets. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, or TCP_UDP. For Gateway Load Balancers, the supported protocol is GENEVE. A TCP_UDP listener must be associated with a TCP_UDP target group. If the target is a Lambda function, this parameter does not apply.
|
|
9540
9544
|
:param protocol_version: [HTTP/HTTPS protocol] The protocol version. The possible values are ``GRPC`` , ``HTTP1`` , and ``HTTP2`` .
|
|
9541
9545
|
:param tags: The tags.
|
|
9542
|
-
:param target_group_attributes: The target group attributes.
|
|
9546
|
+
:param target_group_attributes: The target group attributes. Attributes that you do not modify retain their current values.
|
|
9543
9547
|
:param targets: The targets.
|
|
9544
9548
|
:param target_type: The type of target that you must specify when registering targets with this target group. You can't specify targets for a target group using more than one target type. - ``instance`` - Register targets by instance ID. This is the default value. - ``ip`` - Register targets by IP address. You can specify IP addresses from the subnets of the virtual private cloud (VPC) for the target group, the RFC 1918 range (10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16), and the RFC 6598 range (100.64.0.0/10). You can't specify publicly routable IP addresses. - ``lambda`` - Register a single Lambda function as a target. - ``alb`` - Register a single Application Load Balancer as a target.
|
|
9545
9549
|
:param unhealthy_threshold_count: The number of consecutive health check failures required before considering a target unhealthy. The range is 2-10. If the target group protocol is TCP, TCP_UDP, UDP, TLS, HTTP or HTTPS, the default is 2. For target groups with a protocol of GENEVE, the default is 2. If the target type is ``lambda`` , the default is 5.
|
|
@@ -10293,7 +10297,7 @@ class CfnTargetGroupProps:
|
|
|
10293
10297
|
:param protocol: The protocol to use for routing traffic to the targets. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, or TCP_UDP. For Gateway Load Balancers, the supported protocol is GENEVE. A TCP_UDP listener must be associated with a TCP_UDP target group. If the target is a Lambda function, this parameter does not apply.
|
|
10294
10298
|
:param protocol_version: [HTTP/HTTPS protocol] The protocol version. The possible values are ``GRPC`` , ``HTTP1`` , and ``HTTP2`` .
|
|
10295
10299
|
:param tags: The tags.
|
|
10296
|
-
:param target_group_attributes: The target group attributes.
|
|
10300
|
+
:param target_group_attributes: The target group attributes. Attributes that you do not modify retain their current values.
|
|
10297
10301
|
:param targets: The targets.
|
|
10298
10302
|
:param target_type: The type of target that you must specify when registering targets with this target group. You can't specify targets for a target group using more than one target type. - ``instance`` - Register targets by instance ID. This is the default value. - ``ip`` - Register targets by IP address. You can specify IP addresses from the subnets of the virtual private cloud (VPC) for the target group, the RFC 1918 range (10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16), and the RFC 6598 range (100.64.0.0/10). You can't specify publicly routable IP addresses. - ``lambda`` - Register a single Lambda function as a target. - ``alb`` - Register a single Application Load Balancer as a target.
|
|
10299
10303
|
:param unhealthy_threshold_count: The number of consecutive health check failures required before considering a target unhealthy. The range is 2-10. If the target group protocol is TCP, TCP_UDP, UDP, TLS, HTTP or HTTPS, the default is 2. For target groups with a protocol of GENEVE, the default is 2. If the target type is ``lambda`` , the default is 5.
|
|
@@ -10570,6 +10574,8 @@ class CfnTargetGroupProps:
|
|
|
10570
10574
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnTargetGroup.TargetGroupAttributeProperty]]]]:
|
|
10571
10575
|
'''The target group attributes.
|
|
10572
10576
|
|
|
10577
|
+
Attributes that you do not modify retain their current values.
|
|
10578
|
+
|
|
10573
10579
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targetgroupattributes
|
|
10574
10580
|
'''
|
|
10575
10581
|
result = self._values.get("target_group_attributes")
|
aws_cdk/aws_gamelift/__init__.py
CHANGED
|
@@ -4804,7 +4804,7 @@ class CfnFleet(
|
|
|
4804
4804
|
:param certificate_configuration: Prompts Amazon GameLift Servers to generate a TLS/SSL certificate for the fleet. Amazon GameLift Servers uses the certificates to encrypt traffic between game clients and the game servers running on Amazon GameLift Servers. By default, the ``CertificateConfiguration`` is ``DISABLED`` . You can't change this property after you create the fleet. AWS Certificate Manager (ACM) certificates expire after 13 months. Certificate expiration can cause fleets to fail, preventing players from connecting to instances in the fleet. We recommend you replace fleets before 13 months, consider using fleet aliases for a smooth transition. .. epigraph:: ACM isn't available in all AWS regions. A fleet creation request with certificate generation enabled in an unsupported Region, fails with a 4xx error. For more information about the supported Regions, see `Supported Regions <https://docs.aws.amazon.com/acm/latest/userguide/acm-regions.html>`_ in the *AWS Certificate Manager User Guide* .
|
|
4805
4805
|
:param compute_type: The type of compute resource used to host your game servers. - ``EC2`` – The game server build is deployed to Amazon EC2 instances for cloud hosting. This is the default setting. - ``ANYWHERE`` – Game servers and supporting software are deployed to compute resources that you provide and manage. With this compute type, you can also set the ``AnywhereConfiguration`` parameter.
|
|
4806
4806
|
:param description: A description for the fleet.
|
|
4807
|
-
:param desired_ec2_instances: (deprecated) The number of EC2 instances that you want this fleet to host. When creating a new fleet, GameLift automatically sets this value to "1" and initiates a single instance. Once the fleet is active, update this value to trigger GameLift to add or remove instances from the fleet.
|
|
4807
|
+
:param desired_ec2_instances: (deprecated) [DEPRECATED] The number of EC2 instances that you want this fleet to host. When creating a new fleet, GameLift automatically sets this value to "1" and initiates a single instance. Once the fleet is active, update this value to trigger GameLift to add or remove instances from the fleet.
|
|
4808
4808
|
:param ec2_inbound_permissions: The IP address ranges and port settings that allow inbound traffic to access game server processes and other processes on this fleet. Set this parameter for managed EC2 fleets. You can leave this parameter empty when creating the fleet, but you must call ` <https://docs.aws.amazon.com/gamelift/latest/apireference/API_UpdateFleetPortSettings>`_ to set it before players can connect to game sessions. As a best practice, we recommend opening ports for remote access only when you need them and closing them when you're finished. For Amazon GameLift Servers Realtime fleets, Amazon GameLift Servers automatically sets TCP and UDP ranges.
|
|
4809
4809
|
:param ec2_instance_type: The Amazon GameLift Servers-supported Amazon EC2 instance type to use with managed EC2 fleets. Instance type determines the computing resources that will be used to host your game servers, including CPU, memory, storage, and networking capacity. See `Amazon Elastic Compute Cloud Instance Types <https://docs.aws.amazon.com/ec2/instance-types/>`_ for detailed descriptions of Amazon EC2 instance types.
|
|
4810
4810
|
:param fleet_type: Indicates whether to use On-Demand or Spot instances for this fleet. By default, this property is set to ``ON_DEMAND`` . Learn more about when to use `On-Demand versus Spot Instances <https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-ec2-instances.html#gamelift-ec2-instances-spot>`_ . This fleet property can't be changed after the fleet is created.
|
|
@@ -4812,9 +4812,9 @@ class CfnFleet(
|
|
|
4812
4812
|
:param instance_role_credentials_provider: Indicates that fleet instances maintain a shared credentials file for the IAM role defined in ``InstanceRoleArn`` . Shared credentials allow applications that are deployed with the game server executable to communicate with other AWS resources. This property is used only when the game server is integrated with the server SDK version 5.x. For more information about using shared credentials, see `Communicate with other AWS resources from your fleets <https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-sdk-server-resources.html>`_ . This attribute is used with fleets where ``ComputeType`` is ``EC2`` .
|
|
4813
4813
|
:param locations: A set of remote locations to deploy additional instances to and manage as a multi-location fleet. Use this parameter when creating a fleet in AWS Regions that support multiple locations. You can add any AWS Region or Local Zone that's supported by Amazon GameLift Servers. Provide a list of one or more AWS Region codes, such as ``us-west-2`` , or Local Zone names. When using this parameter, Amazon GameLift Servers requires you to include your home location in the request. For a list of supported Regions and Local Zones, see `Amazon GameLift Servers service locations <https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-regions.html>`_ for managed hosting.
|
|
4814
4814
|
:param log_paths: (deprecated) This parameter is no longer used. When hosting a custom game build, specify where Amazon GameLift should store log files using the Amazon GameLift server API call ProcessReady()
|
|
4815
|
-
:param max_size: (deprecated) The maximum
|
|
4815
|
+
:param max_size: (deprecated) [DEPRECATED] The maximum value that is allowed for the fleet's instance count. When creating a new fleet, GameLift automatically sets this value to "1". Once the fleet is active, you can change this value.
|
|
4816
4816
|
:param metric_groups: The name of an AWS CloudWatch metric group to add this fleet to. A metric group is used to aggregate the metrics for multiple fleets. You can specify an existing metric group name or set a new name to create a new metric group. A fleet can be included in only one metric group at a time.
|
|
4817
|
-
:param min_size: (deprecated) The minimum
|
|
4817
|
+
:param min_size: (deprecated) [DEPRECATED] The minimum value allowed for the fleet's instance count. When creating a new fleet, GameLift automatically sets this value to "0". After the fleet is active, you can change this value.
|
|
4818
4818
|
:param new_game_session_protection_policy: The status of termination protection for active game sessions on the fleet. By default, this property is set to ``NoProtection`` . - *NoProtection* - Game sessions can be terminated during active gameplay as a result of a scale-down event. - *FullProtection* - Game sessions in ``ACTIVE`` status cannot be terminated during a scale-down event.
|
|
4819
4819
|
:param peer_vpc_aws_account_id: Used when peering your Amazon GameLift Servers fleet with a VPC, the unique identifier for the AWS account that owns the VPC. You can find your account ID in the AWS Management Console under account settings.
|
|
4820
4820
|
:param peer_vpc_id: A unique identifier for a VPC with resources to be accessed by your Amazon GameLift Servers fleet. The VPC must be in the same Region as your fleet. To look up a VPC ID, use the `VPC Dashboard <https://docs.aws.amazon.com/vpc/>`_ in the AWS Management Console . Learn more about VPC peering in `VPC Peering with Amazon GameLift Servers Fleets <https://docs.aws.amazon.com/gamelift/latest/developerguide/vpc-peering.html>`_ .
|
|
@@ -4896,9 +4896,7 @@ class CfnFleet(
|
|
|
4896
4896
|
@builtins.property
|
|
4897
4897
|
@jsii.member(jsii_name="attrFleetArn")
|
|
4898
4898
|
def attr_fleet_arn(self) -> builtins.str:
|
|
4899
|
-
'''The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift Servers
|
|
4900
|
-
|
|
4901
|
-
ARNs are unique across all Regions. In a GameLift Fleet ARN, the resource ID matches the FleetId value.
|
|
4899
|
+
'''The Amazon Resource Name ( `ARN <https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-arn-format.html>`_ ) that is assigned to a Amazon GameLift Servers fleet resource and uniquely identifies it. ARNs are unique across all Regions. Format is ``arn:aws:gamelift:<region>::fleet/fleet-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912`` . In a GameLift fleet ARN, the resource ID matches the ``FleetId`` value.
|
|
4902
4900
|
|
|
4903
4901
|
:cloudformationAttribute: FleetArn
|
|
4904
4902
|
'''
|
|
@@ -5028,7 +5026,7 @@ class CfnFleet(
|
|
|
5028
5026
|
@builtins.property
|
|
5029
5027
|
@jsii.member(jsii_name="desiredEc2Instances")
|
|
5030
5028
|
def desired_ec2_instances(self) -> typing.Optional[jsii.Number]:
|
|
5031
|
-
'''(deprecated) The number of EC2 instances that you want this fleet to host.
|
|
5029
|
+
'''(deprecated) [DEPRECATED] The number of EC2 instances that you want this fleet to host.
|
|
5032
5030
|
|
|
5033
5031
|
:deprecated: this property has been deprecated
|
|
5034
5032
|
|
|
@@ -5155,7 +5153,7 @@ class CfnFleet(
|
|
|
5155
5153
|
@builtins.property
|
|
5156
5154
|
@jsii.member(jsii_name="maxSize")
|
|
5157
5155
|
def max_size(self) -> typing.Optional[jsii.Number]:
|
|
5158
|
-
'''(deprecated) The maximum
|
|
5156
|
+
'''(deprecated) [DEPRECATED] The maximum value that is allowed for the fleet's instance count.
|
|
5159
5157
|
|
|
5160
5158
|
:deprecated: this property has been deprecated
|
|
5161
5159
|
|
|
@@ -5186,7 +5184,7 @@ class CfnFleet(
|
|
|
5186
5184
|
@builtins.property
|
|
5187
5185
|
@jsii.member(jsii_name="minSize")
|
|
5188
5186
|
def min_size(self) -> typing.Optional[jsii.Number]:
|
|
5189
|
-
'''(deprecated) The minimum
|
|
5187
|
+
'''(deprecated) [DEPRECATED] The minimum value allowed for the fleet's instance count.
|
|
5190
5188
|
|
|
5191
5189
|
:deprecated: this property has been deprecated
|
|
5192
5190
|
|
|
@@ -6483,7 +6481,7 @@ class CfnFleetProps:
|
|
|
6483
6481
|
:param certificate_configuration: Prompts Amazon GameLift Servers to generate a TLS/SSL certificate for the fleet. Amazon GameLift Servers uses the certificates to encrypt traffic between game clients and the game servers running on Amazon GameLift Servers. By default, the ``CertificateConfiguration`` is ``DISABLED`` . You can't change this property after you create the fleet. AWS Certificate Manager (ACM) certificates expire after 13 months. Certificate expiration can cause fleets to fail, preventing players from connecting to instances in the fleet. We recommend you replace fleets before 13 months, consider using fleet aliases for a smooth transition. .. epigraph:: ACM isn't available in all AWS regions. A fleet creation request with certificate generation enabled in an unsupported Region, fails with a 4xx error. For more information about the supported Regions, see `Supported Regions <https://docs.aws.amazon.com/acm/latest/userguide/acm-regions.html>`_ in the *AWS Certificate Manager User Guide* .
|
|
6484
6482
|
:param compute_type: The type of compute resource used to host your game servers. - ``EC2`` – The game server build is deployed to Amazon EC2 instances for cloud hosting. This is the default setting. - ``ANYWHERE`` – Game servers and supporting software are deployed to compute resources that you provide and manage. With this compute type, you can also set the ``AnywhereConfiguration`` parameter.
|
|
6485
6483
|
:param description: A description for the fleet.
|
|
6486
|
-
:param desired_ec2_instances: (deprecated) The number of EC2 instances that you want this fleet to host. When creating a new fleet, GameLift automatically sets this value to "1" and initiates a single instance. Once the fleet is active, update this value to trigger GameLift to add or remove instances from the fleet.
|
|
6484
|
+
:param desired_ec2_instances: (deprecated) [DEPRECATED] The number of EC2 instances that you want this fleet to host. When creating a new fleet, GameLift automatically sets this value to "1" and initiates a single instance. Once the fleet is active, update this value to trigger GameLift to add or remove instances from the fleet.
|
|
6487
6485
|
:param ec2_inbound_permissions: The IP address ranges and port settings that allow inbound traffic to access game server processes and other processes on this fleet. Set this parameter for managed EC2 fleets. You can leave this parameter empty when creating the fleet, but you must call ` <https://docs.aws.amazon.com/gamelift/latest/apireference/API_UpdateFleetPortSettings>`_ to set it before players can connect to game sessions. As a best practice, we recommend opening ports for remote access only when you need them and closing them when you're finished. For Amazon GameLift Servers Realtime fleets, Amazon GameLift Servers automatically sets TCP and UDP ranges.
|
|
6488
6486
|
:param ec2_instance_type: The Amazon GameLift Servers-supported Amazon EC2 instance type to use with managed EC2 fleets. Instance type determines the computing resources that will be used to host your game servers, including CPU, memory, storage, and networking capacity. See `Amazon Elastic Compute Cloud Instance Types <https://docs.aws.amazon.com/ec2/instance-types/>`_ for detailed descriptions of Amazon EC2 instance types.
|
|
6489
6487
|
:param fleet_type: Indicates whether to use On-Demand or Spot instances for this fleet. By default, this property is set to ``ON_DEMAND`` . Learn more about when to use `On-Demand versus Spot Instances <https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-ec2-instances.html#gamelift-ec2-instances-spot>`_ . This fleet property can't be changed after the fleet is created.
|
|
@@ -6491,9 +6489,9 @@ class CfnFleetProps:
|
|
|
6491
6489
|
:param instance_role_credentials_provider: Indicates that fleet instances maintain a shared credentials file for the IAM role defined in ``InstanceRoleArn`` . Shared credentials allow applications that are deployed with the game server executable to communicate with other AWS resources. This property is used only when the game server is integrated with the server SDK version 5.x. For more information about using shared credentials, see `Communicate with other AWS resources from your fleets <https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-sdk-server-resources.html>`_ . This attribute is used with fleets where ``ComputeType`` is ``EC2`` .
|
|
6492
6490
|
:param locations: A set of remote locations to deploy additional instances to and manage as a multi-location fleet. Use this parameter when creating a fleet in AWS Regions that support multiple locations. You can add any AWS Region or Local Zone that's supported by Amazon GameLift Servers. Provide a list of one or more AWS Region codes, such as ``us-west-2`` , or Local Zone names. When using this parameter, Amazon GameLift Servers requires you to include your home location in the request. For a list of supported Regions and Local Zones, see `Amazon GameLift Servers service locations <https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-regions.html>`_ for managed hosting.
|
|
6493
6491
|
:param log_paths: (deprecated) This parameter is no longer used. When hosting a custom game build, specify where Amazon GameLift should store log files using the Amazon GameLift server API call ProcessReady()
|
|
6494
|
-
:param max_size: (deprecated) The maximum
|
|
6492
|
+
:param max_size: (deprecated) [DEPRECATED] The maximum value that is allowed for the fleet's instance count. When creating a new fleet, GameLift automatically sets this value to "1". Once the fleet is active, you can change this value.
|
|
6495
6493
|
:param metric_groups: The name of an AWS CloudWatch metric group to add this fleet to. A metric group is used to aggregate the metrics for multiple fleets. You can specify an existing metric group name or set a new name to create a new metric group. A fleet can be included in only one metric group at a time.
|
|
6496
|
-
:param min_size: (deprecated) The minimum
|
|
6494
|
+
:param min_size: (deprecated) [DEPRECATED] The minimum value allowed for the fleet's instance count. When creating a new fleet, GameLift automatically sets this value to "0". After the fleet is active, you can change this value.
|
|
6497
6495
|
:param new_game_session_protection_policy: The status of termination protection for active game sessions on the fleet. By default, this property is set to ``NoProtection`` . - *NoProtection* - Game sessions can be terminated during active gameplay as a result of a scale-down event. - *FullProtection* - Game sessions in ``ACTIVE`` status cannot be terminated during a scale-down event.
|
|
6498
6496
|
:param peer_vpc_aws_account_id: Used when peering your Amazon GameLift Servers fleet with a VPC, the unique identifier for the AWS account that owns the VPC. You can find your account ID in the AWS Management Console under account settings.
|
|
6499
6497
|
:param peer_vpc_id: A unique identifier for a VPC with resources to be accessed by your Amazon GameLift Servers fleet. The VPC must be in the same Region as your fleet. To look up a VPC ID, use the `VPC Dashboard <https://docs.aws.amazon.com/vpc/>`_ in the AWS Management Console . Learn more about VPC peering in `VPC Peering with Amazon GameLift Servers Fleets <https://docs.aws.amazon.com/gamelift/latest/developerguide/vpc-peering.html>`_ .
|
|
@@ -6774,7 +6772,7 @@ class CfnFleetProps:
|
|
|
6774
6772
|
|
|
6775
6773
|
@builtins.property
|
|
6776
6774
|
def desired_ec2_instances(self) -> typing.Optional[jsii.Number]:
|
|
6777
|
-
'''(deprecated) The number of EC2 instances that you want this fleet to host.
|
|
6775
|
+
'''(deprecated) [DEPRECATED] The number of EC2 instances that you want this fleet to host.
|
|
6778
6776
|
|
|
6779
6777
|
When creating a new fleet, GameLift automatically sets this value to "1" and initiates a single instance. Once the fleet is active, update this value to trigger GameLift to add or remove instances from the fleet.
|
|
6780
6778
|
|
|
@@ -6872,9 +6870,9 @@ class CfnFleetProps:
|
|
|
6872
6870
|
|
|
6873
6871
|
@builtins.property
|
|
6874
6872
|
def max_size(self) -> typing.Optional[jsii.Number]:
|
|
6875
|
-
'''(deprecated) The maximum
|
|
6873
|
+
'''(deprecated) [DEPRECATED] The maximum value that is allowed for the fleet's instance count.
|
|
6876
6874
|
|
|
6877
|
-
|
|
6875
|
+
When creating a new fleet, GameLift automatically sets this value to "1". Once the fleet is active, you can change this value.
|
|
6878
6876
|
|
|
6879
6877
|
:deprecated: this property has been deprecated
|
|
6880
6878
|
|
|
@@ -6897,9 +6895,9 @@ class CfnFleetProps:
|
|
|
6897
6895
|
|
|
6898
6896
|
@builtins.property
|
|
6899
6897
|
def min_size(self) -> typing.Optional[jsii.Number]:
|
|
6900
|
-
'''(deprecated) The minimum
|
|
6898
|
+
'''(deprecated) [DEPRECATED] The minimum value allowed for the fleet's instance count.
|
|
6901
6899
|
|
|
6902
|
-
|
|
6900
|
+
When creating a new fleet, GameLift automatically sets this value to "0". After the fleet is active, you can change this value.
|
|
6903
6901
|
|
|
6904
6902
|
:deprecated: this property has been deprecated
|
|
6905
6903
|
|