@awboost/cfn-resource-types 0.1.451 → 0.1.453

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.
@@ -429,7 +429,7 @@ export type TopicConfig = {
429
429
  /**
430
430
  * Definition of topic in topic policy
431
431
  * @minLength `1`
432
- * @maxLength `200`
432
+ * @maxLength `1000`
433
433
  */
434
434
  Definition: string;
435
435
  /**
@@ -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-cloudfront-anycastiplist.html}
7
7
  */
8
8
  export type CloudFrontAnycastIpListProperties = {
9
+ IpAddressType?: IpAddressType;
9
10
  /**
10
11
  * The number of IP addresses in the Anycast static IP list.
11
12
  */
@@ -43,6 +44,7 @@ export type CloudFrontAnycastIpListAttributes = {
43
44
  * The ID of the Anycast static IP list.
44
45
  */
45
46
  Id: string;
47
+ IpAddressType: IpAddressType;
46
48
  /**
47
49
  * The number of IP addresses in the Anycast static IP list.
48
50
  */
@@ -84,6 +86,7 @@ export type AnycastIpList = {
84
86
  * The ID of the Anycast static IP list.
85
87
  */
86
88
  Id: string;
89
+ IpAddressType?: IpAddressType;
87
90
  /**
88
91
  * The number of IP addresses in the Anycast static IP list.
89
92
  */
@@ -104,6 +107,11 @@ export type AnycastIpList = {
104
107
  */
105
108
  Status: string;
106
109
  };
110
+ /**
111
+ * Type definition for `AWS::CloudFront::AnycastIpList.IpAddressType`.
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipaddresstype.html}
113
+ */
114
+ export type IpAddressType = "ipv4" | "dualstack";
107
115
  /**
108
116
  * Type definition for `AWS::CloudFront::AnycastIpList.Tag`.
109
117
  * A complex type that contains ``Tag`` key and ``Tag`` value.
@@ -240,6 +240,9 @@ export type CustomOriginConfig = {
240
240
  * The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.
241
241
  */
242
242
  HTTPSPort?: number;
243
+ /**
244
+ * Specifies which IP protocol CloudFront uses when connecting to your origin. If your origin uses both IPv4 and IPv6 protocols, you can choose ``dualstack`` to help optimize reliability.
245
+ */
243
246
  IpAddressType?: "ipv4" | "ipv6" | "dualstack";
244
247
  /**
245
248
  * Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 5 seconds.
@@ -3,6 +3,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
3
3
  /**
4
4
  * Resource type definition for `AWS::CloudFront::PublicKey`.
5
5
  * A public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html).
6
+ CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.
6
7
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-publickey.html}
7
8
  */
8
9
  export type CloudFrontPublicKeyProperties = {
@@ -22,6 +23,7 @@ export type CloudFrontPublicKeyAttributes = {
22
23
  /**
23
24
  * Type definition for `AWS::CloudFront::PublicKey.PublicKeyConfig`.
24
25
  * Configuration information about a public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html).
26
+ CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.
25
27
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.html}
26
28
  */
27
29
  export type PublicKeyConfig = {
@@ -45,6 +47,7 @@ export type PublicKeyConfig = {
45
47
  /**
46
48
  * Resource type definition for `AWS::CloudFront::PublicKey`.
47
49
  * A public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html).
50
+ CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.
48
51
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-publickey.html}
49
52
  */
50
53
  export declare class CloudFrontPublicKey extends $Resource<"AWS::CloudFront::PublicKey", CloudFrontPublicKeyProperties, CloudFrontPublicKeyAttributes> {
@@ -2,6 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
2
2
  /**
3
3
  * Resource type definition for `AWS::CloudFront::PublicKey`.
4
4
  * A public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html).
5
+ CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.
5
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-publickey.html}
6
7
  */
7
8
  export class CloudFrontPublicKey extends $Resource {
@@ -159,7 +159,7 @@ export type ObjectTypeKey = {
159
159
  /**
160
160
  * The types of keys that a ProfileObject can have. Each ProfileObject can have only 1 UNIQUE key but multiple PROFILE keys. PROFILE means that this key can be used to tie an object to a PROFILE. UNIQUE means that it can be used to uniquely identify an object. If a key a is marked as SECONDARY, it will be used to search for profiles after all other PROFILE keys have been searched. A LOOKUP_ONLY key is only used to match a profile but is not persisted to be used for searching of the profile. A NEW_ONLY key is only used if the profile does not already exist before the object is ingested, otherwise it is only used for matching objects to profiles.
161
161
  */
162
- StandardIdentifiers?: ("PROFILE" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY" | "ASSET" | "CASE" | "ORDER")[];
162
+ StandardIdentifiers?: ("PROFILE" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY" | "ASSET" | "CASE" | "ORDER" | "AIR_PREFERENCE" | "AIR_BOOKING" | "AIR_SEGMENT" | "HOTEL_PREFERENCE" | "HOTEL_STAY_REVENUE" | "HOTEL_RESERVATION" | "LOYALTY" | "LOYALTY_TRANSACTION" | "LOYALTY_PROMOTION")[];
163
163
  };
164
164
  /**
165
165
  * Type definition for `AWS::CustomerProfiles::ObjectType.Tag`.
@@ -11,8 +11,6 @@ export type DynamoDBGlobalTableProperties = {
11
11
  AttributeDefinitions: AttributeDefinition[];
12
12
  BillingMode?: string;
13
13
  GlobalSecondaryIndexes?: GlobalSecondaryIndex[];
14
- GlobalTableSettingsReplicationMode?: "ENABLED" | "DISABLED";
15
- GlobalTableSourceArn?: string;
16
14
  /**
17
15
  * @minLength `1`
18
16
  * @maxLength `1`
@@ -41,7 +41,6 @@ export type DynamoDBTableProperties = {
41
41
  + You can delete or add one global secondary index without interruption. If you do both in the same update (for example, by changing the index's logical ID), the update fails.
42
42
  */
43
43
  GlobalSecondaryIndexes?: GlobalSecondaryIndex[];
44
- GlobalTableSettingsReplicationMode?: "ENABLED" | "DISABLED";
45
44
  /**
46
45
  * Specifies the properties of data being imported from the S3 bucket source to the" table.
47
46
  If you specify the ``ImportSourceSpecification`` property, and also specify either the ``StreamSpecification``, the ``TableClass`` property, the ``DeletionProtectionEnabled`` property, or the ``WarmThroughput`` property, the IAM entity creating/updating stack must have ``UpdateTable`` permission.
@@ -48,12 +48,14 @@ export type EC2NatGatewayProperties = {
48
48
  * The tags for the NAT gateway.
49
49
  */
50
50
  Tags?: Tag[];
51
+ VpcId?: string;
51
52
  };
52
53
  /**
53
54
  * Attribute type definition for `AWS::EC2::NatGateway`.
54
55
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#aws-resource-ec2-natgateway-return-values}
55
56
  */
56
57
  export type EC2NatGatewayAttributes = {
58
+ EniId: string;
57
59
  NatGatewayId: string;
58
60
  };
59
61
  /**
@@ -14,15 +14,16 @@ export type ECRRepositoryProperties = {
14
14
  */
15
15
  EncryptionConfiguration?: EncryptionConfiguration;
16
16
  /**
17
- * The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
18
- */
17
+ * The ``imageScanningConfiguration`` parameter is being deprecated, in favor of specifying the image scanning configuration at the registry level. For more information, see ``PutRegistryScanningConfiguration``.
18
+ The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
19
+ */
19
20
  ImageScanningConfiguration?: ImageScanningConfiguration;
20
21
  /**
21
22
  * The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
22
23
  */
23
24
  ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "MUTABLE_WITH_EXCLUSION" | "IMMUTABLE_WITH_EXCLUSION";
24
25
  /**
25
- * The image tag mutability exclusion filters associated with the repository. These filters specify which image tags can override the repository's default image tag mutability setting.
26
+ * A list of filters that specify which image tags are excluded from the repository's image tag mutability setting.
26
27
  * @minLength `1`
27
28
  * @maxLength `5`
28
29
  */
@@ -100,7 +101,7 @@ export type ImageScanningConfiguration = {
100
101
  };
101
102
  /**
102
103
  * Type definition for `AWS::ECR::Repository.ImageTagMutabilityExclusionFilter`.
103
- * Overrides the default image tag mutability setting of the repository for image tags that match the specified filters.
104
+ * A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
104
105
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfilter.html}
105
106
  */
106
107
  export type ImageTagMutabilityExclusionFilter = {
@@ -77,7 +77,7 @@ export type ECSServiceProperties = {
77
77
  */
78
78
  ForceNewDeployment?: ForceNewDeployment;
79
79
  /**
80
- * The period of time, in seconds, that the Amazon Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you do not specify a health check grace period value, the default value of 0 is used. If you do not use any of the health checks, then ``healthCheckGracePeriodSeconds`` is unused.
80
+ * The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you do not specify a health check grace period value, the default value of 0 is used. If you do not use any of the health checks, then ``healthCheckGracePeriodSeconds`` is unused.
81
81
  If your service has more running tasks than desired, unhealthy tasks in the grace period might be stopped to reach the desired count.
82
82
  */
83
83
  HealthCheckGracePeriodSeconds?: number;
@@ -94,7 +94,7 @@ export type ECSTaskDefinitionProperties = {
94
94
  */
95
95
  ProxyConfiguration?: ProxyConfiguration;
96
96
  /**
97
- * The task launch types the task definition was validated against. The valid values are ``EC2``, ``FARGATE``, and ``EXTERNAL``. For more information, see [Amazon ECS launch types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide*.
97
+ * The task launch types the task definition was validated against. The valid values are ``MANAGED_INSTANCES``, ``EC2``, ``FARGATE``, and ``EXTERNAL``. For more information, see [Amazon ECS launch types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide*.
98
98
  */
99
99
  RequiresCompatibilities?: string[];
100
100
  /**
@@ -392,17 +392,13 @@ export type RDSDBClusterProperties = {
392
392
  PreferredMaintenanceWindow?: string;
393
393
  /**
394
394
  * Specifies whether the DB cluster is publicly accessible.
395
- When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
396
- When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
397
395
  Valid for Cluster Type: Multi-AZ DB clusters only
398
- Default: The default behavior varies depending on whether ``DBSubnetGroupName`` is specified.
399
- If ``DBSubnetGroupName`` isn't specified, and ``PubliclyAccessible`` isn't specified, the following applies:
400
- + If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.
401
- + If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.
402
-
403
- If ``DBSubnetGroupName`` is specified, and ``PubliclyAccessible`` isn't specified, the following applies:
404
- + If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.
405
- + If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.
396
+ When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.
397
+ When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
398
+ The default behavior when ``PubliclyAccessible`` is not specified depends on whether a ``DBSubnetGroup`` is specified.
399
+ If ``DBSubnetGroup`` isn't specified, ``PubliclyAccessible`` defaults to ``true``.
400
+ If ``DBSubnetGroup`` is specified, ``PubliclyAccessible`` defaults to ``false`` unless the value of ``DBSubnetGroup`` is ``default``, in which case ``PubliclyAccessible`` defaults to ``true``.
401
+ If ``PubliclyAccessible`` is true and the VPC that the ``DBSubnetGroup`` is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.
406
402
  */
407
403
  PubliclyAccessible?: boolean;
408
404
  /**
@@ -150,12 +150,16 @@ export type BrowserType = "CHROME" | "FIREFOX";
150
150
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html}
151
151
  */
152
152
  export type Code = {
153
+ /**
154
+ * @maxLength `1`
155
+ */
156
+ BlueprintTypes?: string[];
153
157
  /**
154
158
  * List of Lambda layers to attach to the canary
155
159
  * @maxLength `1`
156
160
  */
157
161
  Dependencies?: Dependency[];
158
- Handler: string;
162
+ Handler?: string;
159
163
  S3Bucket?: string;
160
164
  S3Key?: string;
161
165
  S3ObjectVersion?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.451",
3
+ "version": "0.1.453",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },