@awboost/cfn-resource-types 0.1.398 → 0.1.399

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.
@@ -54,6 +54,12 @@ export type ARCRegionSwitchPlanAttributes = {
54
54
  * @pattern `^\d{12}$`
55
55
  */
56
56
  Owner: string;
57
+ Route53HealthChecks: {
58
+ HealthCheckIds: string[];
59
+ HostedZoneIds: string[];
60
+ RecordNames: string[];
61
+ Regions: string[];
62
+ };
57
63
  Version: string;
58
64
  };
59
65
  /**
@@ -10,17 +10,24 @@ export type EFSMountTargetProperties = {
10
10
  */
11
11
  FileSystemId: string;
12
12
  /**
13
- * Valid IPv4 address within the address range of the specified subnet.
13
+ * If the ``IpAddressType`` for the mount target is IPv4 ( ``IPV4_ONLY`` or ``DUAL_STACK``), then specify the IPv4 address to use. If you do not specify an ``IpAddress``, then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId``.
14
14
  */
15
15
  IpAddress?: string;
16
+ /**
17
+ * The IP address type for the mount target. The possible values are ``IPV4_ONLY`` (only IPv4 addresses), ``IPV6_ONLY`` (only IPv6 addresses), and ``DUAL_STACK`` (dual-stack, both IPv4 and IPv6 addresses). If you don’t specify an ``IpAddressType``, then ``IPV4_ONLY`` is used.
18
+ The ``IPAddressType`` must match the IP type of the subnet. Additionally, the ``IPAddressType`` parameter overrides the value set as the default IP address for the subnet in the VPC. For example, if the ``IPAddressType`` is ``IPV4_ONLY`` and ``AssignIpv6AddressOnCreation`` is ``true``, then IPv4 is used for the mount target. For more information, see [Modify the IP addressing attributes of your subnet](https://docs.aws.amazon.com/vpc/latest/userguide/subnet-public-ip.html).
19
+ */
16
20
  IpAddressType?: "IPV4_ONLY" | "IPV6_ONLY" | "DUAL_STACK";
21
+ /**
22
+ * If the ``IPAddressType`` for the mount target is IPv6 (``IPV6_ONLY`` or ``DUAL_STACK``), then specify the IPv6 address to use. If you do not specify an ``Ipv6Address``, then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId``.
23
+ */
17
24
  Ipv6Address?: string;
18
25
  /**
19
- * VPC security group IDs, of the form ``sg-xxxxxxxx``. These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see [Amazon VPC Quotas](https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html) in the *Amazon VPC User Guide* (see the *Security Groups* table).
26
+ * VPC security group IDs, of the form ``sg-xxxxxxxx``. These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see [Amazon VPC Quotas](https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html) in the *Amazon VPC User Guide* (see the *Security Groups* table). If you don't specify a security group, then Amazon EFS uses the default security group for the subnet's VPC.
20
27
  */
21
28
  SecurityGroups: string[];
22
29
  /**
23
- * The ID of the subnet to add the mount target in. For One Zone file systems, use the subnet that is associated with the file system's Availability Zone.
30
+ * The ID of the subnet to add the mount target in. For One Zone file systems, use the subnet that is associated with the file system's Availability Zone. The subnet type must be the same type as the ``IpAddressType``.
24
31
  */
25
32
  SubnetId: string;
26
33
  };
@@ -465,6 +465,9 @@ export type RDSDBClusterProperties = {
465
465
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
466
466
  */
467
467
  SourceDBClusterIdentifier?: string;
468
+ /**
469
+ * The resource ID of the source DB cluster from which to restore.
470
+ */
468
471
  SourceDbClusterResourceId?: string;
469
472
  /**
470
473
  * The AWS Region which contains the source DB cluster when replicating a DB cluster. For example, ``us-east-1``.
@@ -895,9 +895,6 @@ export type RDSDBInstanceAttributes = {
895
895
  ReadReplicaDBInstanceIdentifiers: string[];
896
896
  ResumeFullAutomationModeTime: string;
897
897
  SecondaryAvailabilityZone: string;
898
- /**
899
- * The status of a read replica. If the DB instance isn't a read replica, the value is blank.
900
- */
901
898
  StatusInfos: {
902
899
  /**
903
900
  * Details of the error if there is an error for the instance. If the instance isn't in an error state, this value is blank.
@@ -126,12 +126,34 @@ export type BaseScreenshot = {
126
126
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html}
127
127
  */
128
128
  export type Code = {
129
+ /**
130
+ * List of Lambda layers to attach to the canary
131
+ * @maxLength `1`
132
+ */
133
+ Dependencies?: Dependency[];
129
134
  Handler: string;
130
135
  S3Bucket?: string;
131
136
  S3Key?: string;
132
137
  S3ObjectVersion?: string;
133
138
  Script?: string;
134
139
  };
140
+ /**
141
+ * Type definition for `AWS::Synthetics::Canary.Dependency`.
142
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-dependency.html}
143
+ */
144
+ export type Dependency = {
145
+ /**
146
+ * ARN of the Lambda layer
147
+ * @minLength `1`
148
+ * @maxLength `140`
149
+ * @pattern `arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\d{12}:layer:[a-zA-Z0-9-_]+:[0-9]+`
150
+ */
151
+ Reference: string;
152
+ /**
153
+ * Type of dependency
154
+ */
155
+ Type?: "LambdaLayer";
156
+ };
135
157
  /**
136
158
  * Type definition for `AWS::Synthetics::Canary.ResourceToTag`.
137
159
  * Specifies which resources canary tags should be replicated to.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.398",
3
+ "version": "0.1.399",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },