@awboost/cfn-resource-types 0.1.246 → 0.1.247
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.
|
@@ -8,11 +8,15 @@ export type EC2VerifiedAccessEndpointProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The DNS name for users to reach your application.
|
|
10
10
|
*/
|
|
11
|
-
ApplicationDomain
|
|
11
|
+
ApplicationDomain?: string;
|
|
12
12
|
/**
|
|
13
13
|
* The type of attachment used to provide connectivity between the AWS Verified Access endpoint and the application.
|
|
14
14
|
*/
|
|
15
15
|
AttachmentType: string;
|
|
16
|
+
/**
|
|
17
|
+
* The options for cidr type endpoint.
|
|
18
|
+
*/
|
|
19
|
+
CidrOptions?: CidrOptions;
|
|
16
20
|
/**
|
|
17
21
|
* A description for the AWS Verified Access endpoint.
|
|
18
22
|
*/
|
|
@@ -20,11 +24,11 @@ export type EC2VerifiedAccessEndpointProperties = {
|
|
|
20
24
|
/**
|
|
21
25
|
* The ARN of a public TLS/SSL certificate imported into or created with ACM.
|
|
22
26
|
*/
|
|
23
|
-
DomainCertificateArn
|
|
27
|
+
DomainCertificateArn?: string;
|
|
24
28
|
/**
|
|
25
29
|
* A custom identifier that gets prepended to a DNS name that is generated for the endpoint.
|
|
26
30
|
*/
|
|
27
|
-
EndpointDomainPrefix
|
|
31
|
+
EndpointDomainPrefix?: string;
|
|
28
32
|
/**
|
|
29
33
|
* The type of AWS Verified Access endpoint. Incoming application requests will be sent to an IP address, load balancer or a network interface depending on the endpoint type specified.The type of AWS Verified Access endpoint. Incoming application requests will be sent to an IP address, load balancer or a network interface depending on the endpoint type specified.
|
|
30
34
|
*/
|
|
@@ -45,6 +49,10 @@ export type EC2VerifiedAccessEndpointProperties = {
|
|
|
45
49
|
* The status of the Verified Access policy.
|
|
46
50
|
*/
|
|
47
51
|
PolicyEnabled?: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* The options for rds type endpoint.
|
|
54
|
+
*/
|
|
55
|
+
RdsOptions?: RdsOptions;
|
|
48
56
|
/**
|
|
49
57
|
* The IDs of the security groups for the endpoint.
|
|
50
58
|
*/
|
|
@@ -96,6 +104,29 @@ export type EC2VerifiedAccessEndpointAttributes = {
|
|
|
96
104
|
*/
|
|
97
105
|
VerifiedAccessInstanceId: string;
|
|
98
106
|
};
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.CidrOptions`.
|
|
109
|
+
* The options for cidr type endpoint.
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-cidroptions.html}
|
|
111
|
+
*/
|
|
112
|
+
export type CidrOptions = {
|
|
113
|
+
/**
|
|
114
|
+
* The IP address range, in CIDR notation.
|
|
115
|
+
*/
|
|
116
|
+
Cidr?: string;
|
|
117
|
+
/**
|
|
118
|
+
* The list of port range.
|
|
119
|
+
*/
|
|
120
|
+
PortRanges?: PortRange[];
|
|
121
|
+
/**
|
|
122
|
+
* The IP protocol.
|
|
123
|
+
*/
|
|
124
|
+
Protocol?: string;
|
|
125
|
+
/**
|
|
126
|
+
* The IDs of the subnets.
|
|
127
|
+
*/
|
|
128
|
+
SubnetIds?: string[];
|
|
129
|
+
};
|
|
99
130
|
/**
|
|
100
131
|
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.LoadBalancerOptions`.
|
|
101
132
|
* The load balancer details if creating the AWS Verified Access endpoint as load-balancertype.
|
|
@@ -112,6 +143,10 @@ export type LoadBalancerOptions = {
|
|
|
112
143
|
* @max `65535`
|
|
113
144
|
*/
|
|
114
145
|
Port?: number;
|
|
146
|
+
/**
|
|
147
|
+
* The list of port range.
|
|
148
|
+
*/
|
|
149
|
+
PortRanges?: PortRange[];
|
|
115
150
|
/**
|
|
116
151
|
* The IP protocol.
|
|
117
152
|
*/
|
|
@@ -137,11 +172,71 @@ export type NetworkInterfaceOptions = {
|
|
|
137
172
|
* @max `65535`
|
|
138
173
|
*/
|
|
139
174
|
Port?: number;
|
|
175
|
+
/**
|
|
176
|
+
* The list of port ranges.
|
|
177
|
+
*/
|
|
178
|
+
PortRanges?: PortRange[];
|
|
140
179
|
/**
|
|
141
180
|
* The IP protocol.
|
|
142
181
|
*/
|
|
143
182
|
Protocol?: string;
|
|
144
183
|
};
|
|
184
|
+
/**
|
|
185
|
+
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.PortRange`.
|
|
186
|
+
* The IP port range.
|
|
187
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-portrange.html}
|
|
188
|
+
*/
|
|
189
|
+
export type PortRange = {
|
|
190
|
+
/**
|
|
191
|
+
* The first port in the range.
|
|
192
|
+
* @min `1`
|
|
193
|
+
* @max `65535`
|
|
194
|
+
*/
|
|
195
|
+
FromPort?: number;
|
|
196
|
+
/**
|
|
197
|
+
* The last port in the range.
|
|
198
|
+
* @min `1`
|
|
199
|
+
* @max `65535`
|
|
200
|
+
*/
|
|
201
|
+
ToPort?: number;
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.RdsOptions`.
|
|
205
|
+
* The options for rds type endpoint.
|
|
206
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html}
|
|
207
|
+
*/
|
|
208
|
+
export type RdsOptions = {
|
|
209
|
+
/**
|
|
210
|
+
* The IP port number.
|
|
211
|
+
* @min `1`
|
|
212
|
+
* @max `65535`
|
|
213
|
+
*/
|
|
214
|
+
Port?: number;
|
|
215
|
+
/**
|
|
216
|
+
* The IP protocol.
|
|
217
|
+
*/
|
|
218
|
+
Protocol?: string;
|
|
219
|
+
/**
|
|
220
|
+
* The ARN of the RDS DB cluster.
|
|
221
|
+
*/
|
|
222
|
+
RdsDbClusterArn?: string;
|
|
223
|
+
/**
|
|
224
|
+
* The ARN of the RDS DB instance.
|
|
225
|
+
*/
|
|
226
|
+
RdsDbInstanceArn?: string;
|
|
227
|
+
/**
|
|
228
|
+
* The ARN of the RDS DB proxy.
|
|
229
|
+
*/
|
|
230
|
+
RdsDbProxyArn?: string;
|
|
231
|
+
/**
|
|
232
|
+
* The RDS endpoint.
|
|
233
|
+
*/
|
|
234
|
+
RdsEndpoint?: string;
|
|
235
|
+
/**
|
|
236
|
+
* The IDs of the subnets.
|
|
237
|
+
*/
|
|
238
|
+
SubnetIds?: string[];
|
|
239
|
+
};
|
|
145
240
|
/**
|
|
146
241
|
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.SseSpecification`.
|
|
147
242
|
* The configuration options for customer provided KMS encryption.
|