@awboost/cfn-resource-types 0.1.22 → 0.1.24
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.
- package/lib/AWS-ACMPCA-Certificate.d.ts +106 -18
- package/lib/AWS-AppSync-ApiCache.d.ts +1 -0
- package/lib/AWS-AppSync-DataSource.d.ts +1 -0
- package/lib/AWS-AppSync-GraphQLApi.d.ts +10 -0
- package/lib/AWS-AppSync-Resolver.d.ts +1 -0
- package/lib/AWS-Batch-JobDefinition.d.ts +8 -0
- package/lib/AWS-ControlTower-EnabledBaseline.d.ts +80 -0
- package/lib/AWS-ControlTower-EnabledBaseline.js +12 -0
- package/lib/AWS-DMS-DataProvider.d.ts +1 -1
- package/lib/AWS-DynamoDB-Table.d.ts +9 -0
- package/lib/AWS-EC2-InstanceConnectEndpoint.d.ts +1 -1
- package/lib/AWS-EC2-NatGateway.d.ts +46 -4
- package/lib/AWS-EC2-NatGateway.js +5 -1
- package/lib/AWS-EC2-VPC.d.ts +30 -31
- package/lib/AWS-EC2-VPC.js +4 -1
- package/lib/AWS-ECS-TaskDefinition.d.ts +641 -25
- package/lib/AWS-ECS-TaskDefinition.js +3 -1
- package/lib/AWS-EFS-FileSystem.d.ts +106 -3
- package/lib/AWS-EFS-FileSystem.js +1 -1
- package/lib/AWS-EMR-Cluster.d.ts +1 -0
- package/lib/AWS-GuardDuty-Master.d.ts +14 -9
- package/lib/AWS-GuardDuty-Master.js +2 -1
- package/lib/AWS-IAM-User.d.ts +43 -25
- package/lib/AWS-IAM-User.js +3 -1
- package/lib/AWS-IoTWireless-WirelessDevice.d.ts +34 -0
- package/lib/AWS-KMS-Alias.d.ts +25 -11
- package/lib/AWS-KMS-Alias.js +3 -1
- package/lib/AWS-KMS-Key.d.ts +62 -28
- package/lib/AWS-KMS-Key.js +3 -1
- package/lib/AWS-S3-Bucket.d.ts +381 -139
- package/lib/AWS-S3-Bucket.js +3 -1
- package/lib/AWS-SageMaker-AppImageConfig.d.ts +1 -1
- package/lib/AWS-WAFv2-LoggingConfiguration.d.ts +0 -27
- package/lib/AWS-WAFv2-RuleGroup.d.ts +1 -1
- package/package.json +1 -1
package/lib/AWS-EC2-VPC.d.ts
CHANGED
|
@@ -1,38 +1,42 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource type definition for `AWS::EC2::VPC`.
|
|
5
|
+
* Specifies a virtual private cloud (VPC).
|
|
6
|
+
You can optionally request an IPv6 CIDR block for the VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).
|
|
7
|
+
For more information, see [Virtual private clouds (VPC)](https://docs.aws.amazon.com/vpc/latest/userguide/configure-your-vpc.html) in the *Amazon VPC User Guide*.
|
|
5
8
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html}
|
|
6
9
|
*/
|
|
7
10
|
export type EC2VPCProperties = {
|
|
8
11
|
/**
|
|
9
|
-
|
|
10
|
-
|
|
12
|
+
* The IPv4 network range for the VPC, in CIDR notation. For example, ``10.0.0.0/16``. We modify the specified CIDR block to its canonical form; for example, if you specify ``100.68.0.18/18``, we modify it to ``100.68.0.0/18``.
|
|
13
|
+
You must specify either``CidrBlock`` or ``Ipv4IpamPoolId``.
|
|
14
|
+
*/
|
|
11
15
|
CidrBlock?: string;
|
|
12
16
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
17
|
+
* Indicates whether the instances launched in the VPC get DNS hostnames. If enabled, instances in the VPC get DNS hostnames; otherwise, they do not. Disabled by default for nondefault VPCs. For more information, see [DNS attributes in your VPC](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-dns.html#vpc-dns-support).
|
|
18
|
+
You can only enable DNS hostnames if you've enabled DNS support.
|
|
19
|
+
*/
|
|
15
20
|
EnableDnsHostnames?: boolean;
|
|
16
21
|
/**
|
|
17
|
-
* Indicates whether the DNS resolution is supported for the VPC. If enabled, queries to the Amazon provided DNS server at the 169.254.169.253 IP address, or the reserved IP address at the base of the VPC network range "plus two" succeed. If disabled, the Amazon provided DNS service in the VPC that resolves public DNS hostnames to IP addresses is not enabled. Enabled by default.
|
|
22
|
+
* Indicates whether the DNS resolution is supported for the VPC. If enabled, queries to the Amazon provided DNS server at the 169.254.169.253 IP address, or the reserved IP address at the base of the VPC network range "plus two" succeed. If disabled, the Amazon provided DNS service in the VPC that resolves public DNS hostnames to IP addresses is not enabled. Enabled by default. For more information, see [DNS attributes in your VPC](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-dns.html#vpc-dns-support).
|
|
18
23
|
*/
|
|
19
24
|
EnableDnsSupport?: boolean;
|
|
20
25
|
/**
|
|
21
26
|
* The allowed tenancy of instances launched into the VPC.
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
Updating InstanceTenancy requires no replacement only if you are updating its value from "dedicated" to "default". Updating InstanceTenancy from "default" to "dedicated" requires replacement.
|
|
27
|
+
+ ``default``: An instance launched into the VPC runs on shared hardware by default, unless you explicitly specify a different tenancy during instance launch.
|
|
28
|
+
+ ``dedicated``: An instance launched into the VPC runs on dedicated hardware by default, unless you explicitly specify a tenancy of ``host`` during instance launch. You cannot specify a tenancy of ``default`` during instance launch.
|
|
29
|
+
|
|
30
|
+
Updating ``InstanceTenancy`` requires no replacement only if you are updating its value from ``dedicated`` to ``default``. Updating ``InstanceTenancy`` from ``default`` to ``dedicated`` requires replacement.
|
|
28
31
|
*/
|
|
29
32
|
InstanceTenancy?: string;
|
|
30
33
|
/**
|
|
31
|
-
|
|
32
|
-
|
|
34
|
+
* The ID of an IPv4 IPAM pool you want to use for allocating this VPC's CIDR. For more information, see [What is IPAM?](https://docs.aws.amazon.com//vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM User Guide*.
|
|
35
|
+
You must specify either``CidrBlock`` or ``Ipv4IpamPoolId``.
|
|
36
|
+
*/
|
|
33
37
|
Ipv4IpamPoolId?: string;
|
|
34
38
|
/**
|
|
35
|
-
* The netmask length of the IPv4 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool
|
|
39
|
+
* The netmask length of the IPv4 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see [What is IPAM?](https://docs.aws.amazon.com//vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM User Guide*.
|
|
36
40
|
*/
|
|
37
41
|
Ipv4NetmaskLength?: number;
|
|
38
42
|
/**
|
|
@@ -45,37 +49,32 @@ export type EC2VPCProperties = {
|
|
|
45
49
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html#aws-resource-ec2-vpc-return-values}
|
|
46
50
|
*/
|
|
47
51
|
export type EC2VPCAttributes = {
|
|
48
|
-
/**
|
|
49
|
-
* A list of IPv4 CIDR block association IDs for the VPC.
|
|
50
|
-
*/
|
|
51
52
|
CidrBlockAssociations: string[];
|
|
52
|
-
/**
|
|
53
|
-
* The default network ACL ID that is associated with the VPC.
|
|
54
|
-
*/
|
|
55
53
|
DefaultNetworkAcl: string;
|
|
56
|
-
/**
|
|
57
|
-
* The default security group ID that is associated with the VPC.
|
|
58
|
-
*/
|
|
59
54
|
DefaultSecurityGroup: string;
|
|
60
|
-
/**
|
|
61
|
-
* A list of IPv6 CIDR blocks that are associated with the VPC.
|
|
62
|
-
*/
|
|
63
55
|
Ipv6CidrBlocks: string[];
|
|
64
|
-
/**
|
|
65
|
-
* The Id for the model.
|
|
66
|
-
*/
|
|
67
56
|
VpcId: string;
|
|
68
57
|
};
|
|
69
58
|
/**
|
|
70
59
|
* Type definition for `AWS::EC2::VPC.Tag`.
|
|
60
|
+
* Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
|
|
71
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpc-tag.html}
|
|
72
62
|
*/
|
|
73
63
|
export type Tag = {
|
|
64
|
+
/**
|
|
65
|
+
* The tag key.
|
|
66
|
+
*/
|
|
74
67
|
Key: string;
|
|
68
|
+
/**
|
|
69
|
+
* The tag value.
|
|
70
|
+
*/
|
|
75
71
|
Value: string;
|
|
76
72
|
};
|
|
77
73
|
/**
|
|
78
|
-
* Resource
|
|
74
|
+
* Resource type definition for `AWS::EC2::VPC`.
|
|
75
|
+
* Specifies a virtual private cloud (VPC).
|
|
76
|
+
You can optionally request an IPv6 CIDR block for the VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).
|
|
77
|
+
For more information, see [Virtual private clouds (VPC)](https://docs.aws.amazon.com/vpc/latest/userguide/configure-your-vpc.html) in the *Amazon VPC User Guide*.
|
|
79
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html}
|
|
80
79
|
*/
|
|
81
80
|
export declare class EC2VPC extends $Resource<"AWS::EC2::VPC", EC2VPCProperties, EC2VPCAttributes> {
|
package/lib/AWS-EC2-VPC.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::EC2::VPC`.
|
|
4
|
+
* Specifies a virtual private cloud (VPC).
|
|
5
|
+
You can optionally request an IPv6 CIDR block for the VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).
|
|
6
|
+
For more information, see [Virtual private clouds (VPC)](https://docs.aws.amazon.com/vpc/latest/userguide/configure-your-vpc.html) in the *Amazon VPC User Guide*.
|
|
4
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html}
|
|
5
8
|
*/
|
|
6
9
|
export class EC2VPC extends $Resource {
|