@awboost/cfn-resource-types 0.1.420 → 0.1.421

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.
@@ -491,7 +491,7 @@ export type S3DataSourceConfiguration = {
491
491
  * The ARN of the bucket that contains the data source.
492
492
  * @minLength `1`
493
493
  * @maxLength `2048`
494
- * @pattern `^arn:aws(|-cn|-us-gov):s3:::[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$`
494
+ * @pattern `^arn:aws(-cn|-us-gov|-eusc|-iso(-[b-f])?)?:s3:::[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$`
495
495
  */
496
496
  BucketArn: string;
497
497
  /**
@@ -617,7 +617,7 @@ export type ServerSideEncryptionConfiguration = {
617
617
  * The ARN of the AWS KMS key used to encrypt the resource.
618
618
  * @minLength `1`
619
619
  * @maxLength `2048`
620
- * @pattern `^arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$`
620
+ * @pattern `^arn:aws(-cn|-us-gov|-eusc|-iso(-[b-f])?)?:kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$`
621
621
  */
622
622
  KmsKeyArn?: string;
623
623
  };
@@ -299,7 +299,7 @@ export type OpenSearchManagedClusterConfiguration = {
299
299
  /**
300
300
  * The Amazon Resource Name (ARN) of the OpenSearch domain.
301
301
  * @maxLength `2048`
302
- * @pattern `^arn:aws(|-cn|-us-gov|-iso):es:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:domain/[a-z][a-z0-9-]{3,28}$`
302
+ * @pattern `^arn:aws(-cn|-us-gov|-eusc|-iso(-[b-f])?)?:es:([a-z]{2,}-){2,}\d:\d{12}:domain/[a-z][a-z0-9-]{3,28}$`
303
303
  */
304
304
  DomainArn: string;
305
305
  /**
@@ -34,6 +34,9 @@ export type EC2VPNConnectionProperties = {
34
34
  Default: ``PublicIpv4``
35
35
  */
36
36
  OutsideIpAddressType?: string;
37
+ /**
38
+ * Describes the storage location for an instance store-backed AMI.
39
+ */
37
40
  PreSharedKeyStorage?: "Standard" | "SecretsManager";
38
41
  /**
39
42
  * The IPv4 CIDR on the AWS side of the VPN connection.
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html}
7
7
  */
8
8
  export type ElasticLoadBalancingV2LoadBalancerProperties = {
9
+ EnableCapacityReservationProvisionStabilize?: boolean;
9
10
  /**
10
11
  * [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``.
11
12
  */
@@ -122,11 +123,12 @@ export type LoadBalancerAttribute = {
122
123
  + If the value is ``preserve`` the Application Load Balancer preserves the ``X-Forwarded-For`` header in the HTTP request, and sends it to targets without any change.
123
124
  + If the value is ``remove``, the Application Load Balancer removes the ``X-Forwarded-For`` header in the HTTP request before it sends it to targets.
124
125
 
125
- + ``routing.http2.enabled`` - Indicates whether HTTP/2 is enabled. The possible values are ``true`` and ``false``. The default is ``true``. Elastic Load Balancing requires that message header names contain only alphanumeric characters and hyphens.
126
+ + ``routing.http2.enabled`` - Indicates whether clients can connect to the load balancer using HTTP/2. If ``true``, clients can connect using HTTP/2 or HTTP/1.1. However, all client requests are subject to the stricter HTTP/2 header validation rules. For example, message header names must contain only alphanumeric characters and hyphens. If ``false``, clients must connect using HTTP/1.1. The default is ``true``.
126
127
  + ``waf.fail_open.enabled`` - Indicates whether to allow a WAF-enabled load balancer to route requests to targets if it is unable to forward the request to AWS WAF. The possible values are ``true`` and ``false``. The default is ``false``.
127
128
 
128
129
  The following attributes are supported by only Network Load Balancers:
129
130
  + ``dns_record.client_routing_policy`` - Indicates how traffic is distributed among the load balancer Availability Zones. The possible values are ``availability_zone_affinity`` with 100 percent zonal affinity, ``partial_availability_zone_affinity`` with 85 percent zonal affinity, and ``any_availability_zone`` with 0 percent zonal affinity.
131
+ + ``secondary_ips.auto_assigned.per_subnet`` - The number of secondary IP addresses to configure for your load balancer nodes. Use to address port allocation errors if you can't add targets. The valid range is 0 to 7. The default is 0. After you set this value, you can't decrease it.
130
132
  */
131
133
  Key?: string;
132
134
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.420",
3
+ "version": "0.1.421",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },