forked from aws/aws-cdk-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext-queries.ts
More file actions
436 lines (379 loc) · 9.39 KB
/
context-queries.ts
File metadata and controls
436 lines (379 loc) · 9.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
import type { Tag } from './metadata-schema';
/**
* Identifier for the context provider
*/
export enum ContextProvider {
/**
* AMI provider
*/
AMI_PROVIDER = 'ami',
/**
* AZ provider
*/
AVAILABILITY_ZONE_PROVIDER = 'availability-zones',
/**
* Route53 Hosted Zone provider
*/
HOSTED_ZONE_PROVIDER = 'hosted-zone',
/**
* SSM Parameter Provider
*/
SSM_PARAMETER_PROVIDER = 'ssm',
/**
* VPC Provider
*/
VPC_PROVIDER = 'vpc-provider',
/**
* VPC Endpoint Service AZ Provider
*/
ENDPOINT_SERVICE_AVAILABILITY_ZONE_PROVIDER = 'endpoint-service-availability-zones',
/**
* Load balancer provider
*/
LOAD_BALANCER_PROVIDER = 'load-balancer',
/**
* Load balancer listener provider
*/
LOAD_BALANCER_LISTENER_PROVIDER = 'load-balancer-listener',
/**
* Security group provider
*/
SECURITY_GROUP_PROVIDER = 'security-group',
/**
* KMS Key Provider
*/
KEY_PROVIDER = 'key-provider',
/**
* CCAPI Provider
*/
CC_API_PROVIDER = 'cc-api-provider',
/**
* A plugin provider (the actual plugin name will be in the properties)
*/
PLUGIN = 'plugin',
}
/**
* Options for context lookup roles.
*/
export interface ContextLookupRoleOptions {
/**
* Query account
*/
readonly account: string;
/**
* Query region
*/
readonly region: string;
/**
* The ARN of the role that should be used to look up the missing values
*
* @default - None
*/
readonly lookupRoleArn?: string;
/**
* The ExternalId that needs to be supplied while assuming this role
*
* @default - No ExternalId will be supplied
*/
readonly lookupRoleExternalId?: string;
/**
* Additional options to pass to STS when assuming the lookup role.
*
* - `RoleArn` should not be used. Use the dedicated `lookupRoleArn` property instead.
* - `ExternalId` should not be used. Use the dedicated `lookupRoleExternalId` instead.
*
* @see https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/STS.html#assumeRole-property
* @default - No additional options.
*/
readonly assumeRoleAdditionalOptions?: { [key: string]: any };
}
/**
* Query to AMI context provider
*/
export interface AmiContextQuery extends ContextLookupRoleOptions {
/**
* Owners to DescribeImages call
*
* @default - All owners
*/
readonly owners?: string[];
/**
* Filters to DescribeImages call
*/
readonly filters: { [key: string]: string[] };
}
/**
* Query to availability zone context provider
*/
export interface AvailabilityZonesContextQuery extends ContextLookupRoleOptions {
}
/**
* Query to hosted zone context provider
*/
export interface HostedZoneContextQuery extends ContextLookupRoleOptions {
/**
* The domain name e.g. example.com to lookup
*/
readonly domainName: string;
/**
* True if the zone you want to find is a private hosted zone
*
* @default false
*/
readonly privateZone?: boolean;
/**
* The VPC ID to that the private zone must be associated with
*
* If you provide VPC ID and privateZone is false, this will return no results
* and raise an error.
*
* @default - Required if privateZone=true
*/
readonly vpcId?: string;
}
/**
* Query to SSM Parameter Context Provider
*/
export interface SSMParameterContextQuery extends ContextLookupRoleOptions {
/**
* Parameter name to query
*/
readonly parameterName: string;
}
/**
* Query input for looking up a VPC
*/
export interface VpcContextQuery extends ContextLookupRoleOptions {
/**
* Filters to apply to the VPC
*
* Filter parameters are the same as passed to DescribeVpcs.
*
* @see https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeVpcs.html
*/
readonly filter: { [key: string]: string };
/**
* Whether to populate the subnetGroups field of the `VpcContextResponse`,
* which contains potentially asymmetric subnet groups.
*
* @default false
*/
readonly returnAsymmetricSubnets?: boolean;
/**
* Optional tag for subnet group name.
* If not provided, we'll look at the aws-cdk:subnet-name tag.
* If the subnet does not have the specified tag,
* we'll use its type as the name.
*
* @default 'aws-cdk:subnet-name'
*/
readonly subnetGroupNameTag?: string;
/**
* Whether to populate the `vpnGatewayId` field of the `VpcContextResponse`,
* which contains the VPN Gateway ID, if one exists. You can explicitly
* disable this in order to avoid the lookup if you know the VPC does not have
* a VPN Gatway attached.
*
* @default true
*/
readonly returnVpnGateways?: boolean;
}
/**
* Query to endpoint service context provider
*/
export interface EndpointServiceAvailabilityZonesContextQuery extends ContextLookupRoleOptions {
/**
* Query service name
*/
readonly serviceName: string;
}
/**
* Type of load balancer
*/
export enum LoadBalancerType {
/**
* Network load balancer
*/
NETWORK = 'network',
/**
* Application load balancer
*/
APPLICATION = 'application',
}
/**
* Filters for selecting load balancers
*/
export interface LoadBalancerFilter extends ContextLookupRoleOptions {
/**
* Filter load balancers by their type
*/
readonly loadBalancerType: LoadBalancerType;
/**
* Find by load balancer's ARN
* @default - does not search by load balancer arn
*/
readonly loadBalancerArn?: string;
/**
* Match load balancer tags
* @default - does not match load balancers by tags
*/
readonly loadBalancerTags?: Tag[];
}
/**
* Query input for looking up a load balancer
*/
export interface LoadBalancerContextQuery extends LoadBalancerFilter {
}
/**
* The protocol for connections from clients to the load balancer
*/
export enum LoadBalancerListenerProtocol {
/**
* HTTP protocol
*/
HTTP = 'HTTP',
/**
* HTTPS protocol
*/
HTTPS = 'HTTPS',
/**
* TCP protocol
*/
TCP = 'TCP',
/**
* TLS protocol
*/
TLS = 'TLS',
/**
* UDP protocol
* */
UDP = 'UDP',
/**
* TCP and UDP protocol
* */
TCP_UDP = 'TCP_UDP',
}
/**
* Query input for looking up a load balancer listener
*/
export interface LoadBalancerListenerContextQuery extends LoadBalancerFilter {
/**
* Find by listener's arn
* @default - does not find by listener arn
*/
readonly listenerArn?: string;
/**
* Filter by listener protocol
* @default - does not filter by listener protocol
*/
readonly listenerProtocol?: LoadBalancerListenerProtocol;
/**
* Filter listeners by listener port
* @default - does not filter by a listener port
*/
readonly listenerPort?: number;
}
/**
* Query input for looking up a security group
*/
export interface SecurityGroupContextQuery extends ContextLookupRoleOptions {
/**
* Security group id
*
* @default - None
*/
readonly securityGroupId?: string;
/**
* Security group name
*
* @default - None
*/
readonly securityGroupName?: string;
/**
* VPC ID
*
* @default - None
*/
readonly vpcId?: string;
}
/**
* Query input for looking up a KMS Key
*/
export interface KeyContextQuery extends ContextLookupRoleOptions {
/**
* Alias name used to search the Key
*/
readonly aliasName: string;
}
/**
* Query input for lookup up Cloudformation resources using CC API
*/
export interface CcApiContextQuery extends ContextLookupRoleOptions {
/**
* The Cloudformation resource type.
* See https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/supported-resources.html
*/
readonly typeName: string;
/**
* exactIdentifier of the resource.
* Specifying exactIdentifier will return at most one result.
* Either exactIdentifier or propertyMatch should be specified.
* @default - None
*/
readonly exactIdentifier?: string;
/**
* This indicates the property to search for.
* If both exactIdentifier and propertyMatch are specified, then exactIdentifier is used.
* To restrict the number of results to return, specify allowEmptyResult or exactResult.
* Either exactIdentifier or propertyMatch should be specified.
* @default - None
*/
readonly propertyMatch?: Record<string, unknown>;
/**
* This is a set of properties returned from CC API that we want to return from ContextQuery.
*/
readonly propertiesToReturn: string[];
/**
* Whether to allow to return empty result when propertyMatch is specified.
* @default false
*/
readonly allowEmptyResult?: boolean;
/**
* Whether to restrict to return exact one result when propertyMatch is specified.
* @default false
*/
readonly exactResult?: boolean;
}
/**
* Query input for plugins
*
* This alternate branch is necessary because it needs to be able to escape all type checking
* we do on on the cloud assembly -- we cannot know the properties that will be used a priori.
*/
export interface PluginContextQuery {
/**
* The name of the plugin
*/
readonly pluginName: string;
/**
* Arbitrary other arguments for the plugin.
*
* This index signature is not usable in non-TypeScript/JavaScript languages.
*
* @jsii ignore
*/
[key: string]: any;
}
export type ContextQueryProperties =
| AmiContextQuery
| AvailabilityZonesContextQuery
| HostedZoneContextQuery
| SSMParameterContextQuery
| VpcContextQuery
| EndpointServiceAvailabilityZonesContextQuery
| LoadBalancerContextQuery
| LoadBalancerListenerContextQuery
| SecurityGroupContextQuery
| KeyContextQuery
| CcApiContextQuery
| PluginContextQuery;