@aws-sdk/client-migration-hub-refactor-spaces 3.686.0 → 3.691.0
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/dist-types/models/models_0.d.ts +285 -285
- package/dist-types/ts3.4/models/models_0.d.ts +285 -285
- package/package.json +7 -7
|
@@ -34,38 +34,38 @@ export interface ApiGatewayProxyConfig {
|
|
|
34
34
|
* <p>The endpoint URL of the API Gateway proxy. </p>
|
|
35
35
|
* @public
|
|
36
36
|
*/
|
|
37
|
-
ProxyUrl?: string;
|
|
37
|
+
ProxyUrl?: string | undefined;
|
|
38
38
|
/**
|
|
39
39
|
* <p>The resource ID of the API Gateway for the proxy. </p>
|
|
40
40
|
* @public
|
|
41
41
|
*/
|
|
42
|
-
ApiGatewayId?: string;
|
|
42
|
+
ApiGatewayId?: string | undefined;
|
|
43
43
|
/**
|
|
44
44
|
* <p>The <code>VpcLink</code> ID of the API Gateway proxy. </p>
|
|
45
45
|
* @public
|
|
46
46
|
*/
|
|
47
|
-
VpcLinkId?: string;
|
|
47
|
+
VpcLinkId?: string | undefined;
|
|
48
48
|
/**
|
|
49
49
|
* <p>The Amazon Resource Name (ARN) of the Network Load Balancer configured by the API Gateway proxy. </p>
|
|
50
50
|
* @public
|
|
51
51
|
*/
|
|
52
|
-
NlbArn?: string;
|
|
52
|
+
NlbArn?: string | undefined;
|
|
53
53
|
/**
|
|
54
54
|
* <p>The name of the Network Load Balancer that is configured by the API Gateway proxy.
|
|
55
55
|
* </p>
|
|
56
56
|
* @public
|
|
57
57
|
*/
|
|
58
|
-
NlbName?: string;
|
|
58
|
+
NlbName?: string | undefined;
|
|
59
59
|
/**
|
|
60
60
|
* <p>The type of API Gateway endpoint created. </p>
|
|
61
61
|
* @public
|
|
62
62
|
*/
|
|
63
|
-
EndpointType?: ApiGatewayEndpointType;
|
|
63
|
+
EndpointType?: ApiGatewayEndpointType | undefined;
|
|
64
64
|
/**
|
|
65
65
|
* <p>The name of the API Gateway stage. The name defaults to <code>prod</code>. </p>
|
|
66
66
|
* @public
|
|
67
67
|
*/
|
|
68
|
-
StageName?: string;
|
|
68
|
+
StageName?: string | undefined;
|
|
69
69
|
}
|
|
70
70
|
/**
|
|
71
71
|
* <p>A wrapper object holding the Amazon API Gateway endpoint input. </p>
|
|
@@ -83,12 +83,12 @@ export interface ApiGatewayProxyInput {
|
|
|
83
83
|
* Refactor Spaces using an interface endpoint (Amazon Web Services PrivateLink)</a>.</p>
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
|
-
EndpointType?: ApiGatewayEndpointType;
|
|
86
|
+
EndpointType?: ApiGatewayEndpointType | undefined;
|
|
87
87
|
/**
|
|
88
88
|
* <p>The name of the API Gateway stage. The name defaults to <code>prod</code>. </p>
|
|
89
89
|
* @public
|
|
90
90
|
*/
|
|
91
|
-
StageName?: string;
|
|
91
|
+
StageName?: string | undefined;
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
94
|
* <p>A wrapper object holding the Amazon API Gateway proxy summary. </p>
|
|
@@ -99,38 +99,38 @@ export interface ApiGatewayProxySummary {
|
|
|
99
99
|
* <p>The endpoint URL of the API Gateway proxy. </p>
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
|
-
ProxyUrl?: string;
|
|
102
|
+
ProxyUrl?: string | undefined;
|
|
103
103
|
/**
|
|
104
104
|
* <p>The resource ID of the API Gateway for the proxy. </p>
|
|
105
105
|
* @public
|
|
106
106
|
*/
|
|
107
|
-
ApiGatewayId?: string;
|
|
107
|
+
ApiGatewayId?: string | undefined;
|
|
108
108
|
/**
|
|
109
109
|
* <p>The <code>VpcLink</code> ID of the API Gateway proxy. </p>
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
VpcLinkId?: string;
|
|
112
|
+
VpcLinkId?: string | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* <p>The Amazon Resource Name (ARN) of the Network Load Balancer configured by the API Gateway proxy. </p>
|
|
115
115
|
* @public
|
|
116
116
|
*/
|
|
117
|
-
NlbArn?: string;
|
|
117
|
+
NlbArn?: string | undefined;
|
|
118
118
|
/**
|
|
119
119
|
* <p>The name of the Network Load Balancer that is configured by the API Gateway proxy.
|
|
120
120
|
* </p>
|
|
121
121
|
* @public
|
|
122
122
|
*/
|
|
123
|
-
NlbName?: string;
|
|
123
|
+
NlbName?: string | undefined;
|
|
124
124
|
/**
|
|
125
125
|
* <p>The type of API Gateway endpoint created. </p>
|
|
126
126
|
* @public
|
|
127
127
|
*/
|
|
128
|
-
EndpointType?: ApiGatewayEndpointType;
|
|
128
|
+
EndpointType?: ApiGatewayEndpointType | undefined;
|
|
129
129
|
/**
|
|
130
130
|
* <p>The name of the API Gateway stage. The name defaults to <code>prod</code>. </p>
|
|
131
131
|
* @public
|
|
132
132
|
*/
|
|
133
|
-
StageName?: string;
|
|
133
|
+
StageName?: string | undefined;
|
|
134
134
|
}
|
|
135
135
|
/**
|
|
136
136
|
* @public
|
|
@@ -207,32 +207,32 @@ export interface ErrorResponse {
|
|
|
207
207
|
* <p>The error code associated with the error. </p>
|
|
208
208
|
* @public
|
|
209
209
|
*/
|
|
210
|
-
Code?: ErrorCode;
|
|
210
|
+
Code?: ErrorCode | undefined;
|
|
211
211
|
/**
|
|
212
212
|
* <p>The message associated with the error. </p>
|
|
213
213
|
* @public
|
|
214
214
|
*/
|
|
215
|
-
Message?: string;
|
|
215
|
+
Message?: string | undefined;
|
|
216
216
|
/**
|
|
217
217
|
* <p>The Amazon Web Services account ID of the resource owner. </p>
|
|
218
218
|
* @public
|
|
219
219
|
*/
|
|
220
|
-
AccountId?: string;
|
|
220
|
+
AccountId?: string | undefined;
|
|
221
221
|
/**
|
|
222
222
|
* <p>The ID of the resource. </p>
|
|
223
223
|
* @public
|
|
224
224
|
*/
|
|
225
|
-
ResourceIdentifier?: string;
|
|
225
|
+
ResourceIdentifier?: string | undefined;
|
|
226
226
|
/**
|
|
227
227
|
* <p>The type of resource. </p>
|
|
228
228
|
* @public
|
|
229
229
|
*/
|
|
230
|
-
ResourceType?: ErrorResourceType;
|
|
230
|
+
ResourceType?: ErrorResourceType | undefined;
|
|
231
231
|
/**
|
|
232
232
|
* <p>Additional details about the error. </p>
|
|
233
233
|
* @public
|
|
234
234
|
*/
|
|
235
|
-
AdditionalDetails?: Record<string, string
|
|
235
|
+
AdditionalDetails?: Record<string, string> | undefined;
|
|
236
236
|
}
|
|
237
237
|
/**
|
|
238
238
|
* @public
|
|
@@ -254,73 +254,73 @@ export interface ApplicationSummary {
|
|
|
254
254
|
* <p>The name of the application. </p>
|
|
255
255
|
* @public
|
|
256
256
|
*/
|
|
257
|
-
Name?: string;
|
|
257
|
+
Name?: string | undefined;
|
|
258
258
|
/**
|
|
259
259
|
* <p>The Amazon Resource Name (ARN) of the application. </p>
|
|
260
260
|
* @public
|
|
261
261
|
*/
|
|
262
|
-
Arn?: string;
|
|
262
|
+
Arn?: string | undefined;
|
|
263
263
|
/**
|
|
264
264
|
* <p>The Amazon Web Services account ID of the application owner (which is always the same as
|
|
265
265
|
* the environment owner account ID).</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
OwnerAccountId?: string;
|
|
268
|
+
OwnerAccountId?: string | undefined;
|
|
269
269
|
/**
|
|
270
270
|
* <p>The Amazon Web Services account ID of the application creator. </p>
|
|
271
271
|
* @public
|
|
272
272
|
*/
|
|
273
|
-
CreatedByAccountId?: string;
|
|
273
|
+
CreatedByAccountId?: string | undefined;
|
|
274
274
|
/**
|
|
275
275
|
* <p>The unique identifier of the application. </p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
ApplicationId?: string;
|
|
278
|
+
ApplicationId?: string | undefined;
|
|
279
279
|
/**
|
|
280
280
|
* <p>The unique identifier of the environment. </p>
|
|
281
281
|
* @public
|
|
282
282
|
*/
|
|
283
|
-
EnvironmentId?: string;
|
|
283
|
+
EnvironmentId?: string | undefined;
|
|
284
284
|
/**
|
|
285
285
|
* <p>The ID of the virtual private cloud (VPC). </p>
|
|
286
286
|
* @public
|
|
287
287
|
*/
|
|
288
|
-
VpcId?: string;
|
|
288
|
+
VpcId?: string | undefined;
|
|
289
289
|
/**
|
|
290
290
|
* <p>The proxy type of the proxy created within the application. </p>
|
|
291
291
|
* @public
|
|
292
292
|
*/
|
|
293
|
-
ProxyType?: ProxyType;
|
|
293
|
+
ProxyType?: ProxyType | undefined;
|
|
294
294
|
/**
|
|
295
295
|
* <p>The endpoint URL of the Amazon API Gateway proxy. </p>
|
|
296
296
|
* @public
|
|
297
297
|
*/
|
|
298
|
-
ApiGatewayProxy?: ApiGatewayProxySummary;
|
|
298
|
+
ApiGatewayProxy?: ApiGatewayProxySummary | undefined;
|
|
299
299
|
/**
|
|
300
300
|
* <p>The current state of the application. </p>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
State?: ApplicationState;
|
|
303
|
+
State?: ApplicationState | undefined;
|
|
304
304
|
/**
|
|
305
305
|
* <p>The tags assigned to the application. </p>
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
|
-
Tags?: Record<string, string
|
|
308
|
+
Tags?: Record<string, string> | undefined;
|
|
309
309
|
/**
|
|
310
310
|
* <p>Any error associated with the application resource. </p>
|
|
311
311
|
* @public
|
|
312
312
|
*/
|
|
313
|
-
Error?: ErrorResponse;
|
|
313
|
+
Error?: ErrorResponse | undefined;
|
|
314
314
|
/**
|
|
315
315
|
* <p>A timestamp that indicates when the application was last updated. </p>
|
|
316
316
|
* @public
|
|
317
317
|
*/
|
|
318
|
-
LastUpdatedTime?: Date;
|
|
318
|
+
LastUpdatedTime?: Date | undefined;
|
|
319
319
|
/**
|
|
320
320
|
* <p>A timestamp that indicates when the application is created. </p>
|
|
321
321
|
* @public
|
|
322
322
|
*/
|
|
323
|
-
CreatedTime?: Date;
|
|
323
|
+
CreatedTime?: Date | undefined;
|
|
324
324
|
}
|
|
325
325
|
/**
|
|
326
326
|
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
@@ -374,18 +374,18 @@ export interface CreateApplicationRequest {
|
|
|
374
374
|
* proxy. </p>
|
|
375
375
|
* @public
|
|
376
376
|
*/
|
|
377
|
-
ApiGatewayProxy?: ApiGatewayProxyInput;
|
|
377
|
+
ApiGatewayProxy?: ApiGatewayProxyInput | undefined;
|
|
378
378
|
/**
|
|
379
379
|
* <p>The tags to assign to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.</p>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
Tags?: Record<string, string
|
|
382
|
+
Tags?: Record<string, string> | undefined;
|
|
383
383
|
/**
|
|
384
384
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
385
385
|
* request.</p>
|
|
386
386
|
* @public
|
|
387
387
|
*/
|
|
388
|
-
ClientToken?: string;
|
|
388
|
+
ClientToken?: string | undefined;
|
|
389
389
|
}
|
|
390
390
|
/**
|
|
391
391
|
* @public
|
|
@@ -395,7 +395,7 @@ export interface CreateApplicationResponse {
|
|
|
395
395
|
* <p>The name of the application.</p>
|
|
396
396
|
* @public
|
|
397
397
|
*/
|
|
398
|
-
Name?: string;
|
|
398
|
+
Name?: string | undefined;
|
|
399
399
|
/**
|
|
400
400
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is
|
|
401
401
|
* <code>arn:aws:refactor-spaces:<i>region</i>:<i>account-id</i>:<i>resource-type/resource-id</i>
|
|
@@ -405,64 +405,64 @@ export interface CreateApplicationResponse {
|
|
|
405
405
|
* <i>Amazon Web Services General Reference</i>.</p>
|
|
406
406
|
* @public
|
|
407
407
|
*/
|
|
408
|
-
Arn?: string;
|
|
408
|
+
Arn?: string | undefined;
|
|
409
409
|
/**
|
|
410
410
|
* <p>The Amazon Web Services account ID of the application owner (which is always the same as
|
|
411
411
|
* the environment owner account ID).</p>
|
|
412
412
|
* @public
|
|
413
413
|
*/
|
|
414
|
-
OwnerAccountId?: string;
|
|
414
|
+
OwnerAccountId?: string | undefined;
|
|
415
415
|
/**
|
|
416
416
|
* <p>The Amazon Web Services account ID of application creator.</p>
|
|
417
417
|
* @public
|
|
418
418
|
*/
|
|
419
|
-
CreatedByAccountId?: string;
|
|
419
|
+
CreatedByAccountId?: string | undefined;
|
|
420
420
|
/**
|
|
421
421
|
* <p>The unique identifier of the application.</p>
|
|
422
422
|
* @public
|
|
423
423
|
*/
|
|
424
|
-
ApplicationId?: string;
|
|
424
|
+
ApplicationId?: string | undefined;
|
|
425
425
|
/**
|
|
426
426
|
* <p>The ID of the environment in which the application is created.</p>
|
|
427
427
|
* @public
|
|
428
428
|
*/
|
|
429
|
-
EnvironmentId?: string;
|
|
429
|
+
EnvironmentId?: string | undefined;
|
|
430
430
|
/**
|
|
431
431
|
* <p>The ID of the Amazon VPC. </p>
|
|
432
432
|
* @public
|
|
433
433
|
*/
|
|
434
|
-
VpcId?: string;
|
|
434
|
+
VpcId?: string | undefined;
|
|
435
435
|
/**
|
|
436
436
|
* <p>The proxy type of the proxy created within the application. </p>
|
|
437
437
|
* @public
|
|
438
438
|
*/
|
|
439
|
-
ProxyType?: ProxyType;
|
|
439
|
+
ProxyType?: ProxyType | undefined;
|
|
440
440
|
/**
|
|
441
441
|
* <p>A wrapper object holding the API Gateway endpoint type and stage name for the
|
|
442
442
|
* proxy. </p>
|
|
443
443
|
* @public
|
|
444
444
|
*/
|
|
445
|
-
ApiGatewayProxy?: ApiGatewayProxyInput;
|
|
445
|
+
ApiGatewayProxy?: ApiGatewayProxyInput | undefined;
|
|
446
446
|
/**
|
|
447
447
|
* <p>The current state of the application. </p>
|
|
448
448
|
* @public
|
|
449
449
|
*/
|
|
450
|
-
State?: ApplicationState;
|
|
450
|
+
State?: ApplicationState | undefined;
|
|
451
451
|
/**
|
|
452
452
|
* <p>The tags assigned to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
453
453
|
* @public
|
|
454
454
|
*/
|
|
455
|
-
Tags?: Record<string, string
|
|
455
|
+
Tags?: Record<string, string> | undefined;
|
|
456
456
|
/**
|
|
457
457
|
* <p>A timestamp that indicates when the application was last updated. </p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
LastUpdatedTime?: Date;
|
|
460
|
+
LastUpdatedTime?: Date | undefined;
|
|
461
461
|
/**
|
|
462
462
|
* <p>A timestamp that indicates when the application is created.</p>
|
|
463
463
|
* @public
|
|
464
464
|
*/
|
|
465
|
-
CreatedTime?: Date;
|
|
465
|
+
CreatedTime?: Date | undefined;
|
|
466
466
|
}
|
|
467
467
|
/**
|
|
468
468
|
* <p>An unexpected error occurred while processing the request.</p>
|
|
@@ -523,7 +523,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
523
523
|
* exception. </p>
|
|
524
524
|
* @public
|
|
525
525
|
*/
|
|
526
|
-
QuotaCode?: string;
|
|
526
|
+
QuotaCode?: string | undefined;
|
|
527
527
|
/**
|
|
528
528
|
* <p>Service quota requirement to identify originating service. Reached throttling quota
|
|
529
529
|
* exception service code. </p>
|
|
@@ -548,18 +548,18 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
548
548
|
* exception. </p>
|
|
549
549
|
* @public
|
|
550
550
|
*/
|
|
551
|
-
QuotaCode?: string;
|
|
551
|
+
QuotaCode?: string | undefined;
|
|
552
552
|
/**
|
|
553
553
|
* <p>Service quota requirement to identify originating service. Reached throttling quota
|
|
554
554
|
* exception service code. </p>
|
|
555
555
|
* @public
|
|
556
556
|
*/
|
|
557
|
-
ServiceCode?: string;
|
|
557
|
+
ServiceCode?: string | undefined;
|
|
558
558
|
/**
|
|
559
559
|
* <p>The number of seconds to wait before retrying. </p>
|
|
560
560
|
* @public
|
|
561
561
|
*/
|
|
562
|
-
RetryAfterSeconds?: number;
|
|
562
|
+
RetryAfterSeconds?: number | undefined;
|
|
563
563
|
/**
|
|
564
564
|
* @internal
|
|
565
565
|
*/
|
|
@@ -604,7 +604,7 @@ export interface CreateEnvironmentRequest {
|
|
|
604
604
|
* <p>The description of the environment.</p>
|
|
605
605
|
* @public
|
|
606
606
|
*/
|
|
607
|
-
Description?: string;
|
|
607
|
+
Description?: string | undefined;
|
|
608
608
|
/**
|
|
609
609
|
* <p>The network fabric type of the environment.</p>
|
|
610
610
|
* @public
|
|
@@ -614,13 +614,13 @@ export interface CreateEnvironmentRequest {
|
|
|
614
614
|
* <p>The tags to assign to the environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.</p>
|
|
615
615
|
* @public
|
|
616
616
|
*/
|
|
617
|
-
Tags?: Record<string, string
|
|
617
|
+
Tags?: Record<string, string> | undefined;
|
|
618
618
|
/**
|
|
619
619
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
620
620
|
* request.</p>
|
|
621
621
|
* @public
|
|
622
622
|
*/
|
|
623
|
-
ClientToken?: string;
|
|
623
|
+
ClientToken?: string | undefined;
|
|
624
624
|
}
|
|
625
625
|
/**
|
|
626
626
|
* @public
|
|
@@ -644,52 +644,52 @@ export interface CreateEnvironmentResponse {
|
|
|
644
644
|
* <p>The name of the environment.</p>
|
|
645
645
|
* @public
|
|
646
646
|
*/
|
|
647
|
-
Name?: string;
|
|
647
|
+
Name?: string | undefined;
|
|
648
648
|
/**
|
|
649
649
|
* <p>The Amazon Resource Name (ARN) of the environment.</p>
|
|
650
650
|
* @public
|
|
651
651
|
*/
|
|
652
|
-
Arn?: string;
|
|
652
|
+
Arn?: string | undefined;
|
|
653
653
|
/**
|
|
654
654
|
* <p>A description of the environment.</p>
|
|
655
655
|
* @public
|
|
656
656
|
*/
|
|
657
|
-
Description?: string;
|
|
657
|
+
Description?: string | undefined;
|
|
658
658
|
/**
|
|
659
659
|
* <p>The unique identifier of the environment.</p>
|
|
660
660
|
* @public
|
|
661
661
|
*/
|
|
662
|
-
EnvironmentId?: string;
|
|
662
|
+
EnvironmentId?: string | undefined;
|
|
663
663
|
/**
|
|
664
664
|
* <p>The network fabric type of the environment.</p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
NetworkFabricType?: NetworkFabricType;
|
|
667
|
+
NetworkFabricType?: NetworkFabricType | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* <p>The Amazon Web Services account ID of environment owner.</p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
OwnerAccountId?: string;
|
|
672
|
+
OwnerAccountId?: string | undefined;
|
|
673
673
|
/**
|
|
674
674
|
* <p>The current state of the environment. </p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
State?: EnvironmentState;
|
|
677
|
+
State?: EnvironmentState | undefined;
|
|
678
678
|
/**
|
|
679
679
|
* <p>The tags assigned to the created environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..</p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
Tags?: Record<string, string
|
|
682
|
+
Tags?: Record<string, string> | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>A timestamp that indicates when the environment was last updated.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
LastUpdatedTime?: Date;
|
|
687
|
+
LastUpdatedTime?: Date | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>A timestamp that indicates when the environment is created.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
CreatedTime?: Date;
|
|
692
|
+
CreatedTime?: Date | undefined;
|
|
693
693
|
}
|
|
694
694
|
/**
|
|
695
695
|
* @public
|
|
@@ -713,7 +713,7 @@ export interface DefaultRouteInput {
|
|
|
713
713
|
* route is created. </p>
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
ActivationState?: RouteActivationState;
|
|
716
|
+
ActivationState?: RouteActivationState | undefined;
|
|
717
717
|
}
|
|
718
718
|
/**
|
|
719
719
|
* @public
|
|
@@ -767,19 +767,19 @@ export interface UriPathRouteInput {
|
|
|
767
767
|
* only HTTP requests using that method are forwarded to this route’s service. </p>
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
|
-
Methods?: HttpMethod[];
|
|
770
|
+
Methods?: HttpMethod[] | undefined;
|
|
771
771
|
/**
|
|
772
772
|
* <p>Indicates whether to match all subpaths of the given source path. If this value is
|
|
773
773
|
* <code>false</code>, requests must match the source path exactly before they are forwarded to
|
|
774
774
|
* this route's service. </p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
IncludeChildPaths?: boolean;
|
|
777
|
+
IncludeChildPaths?: boolean | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>If set to <code>true</code>, this option appends the source path to the service URL endpoint.</p>
|
|
780
780
|
* @public
|
|
781
781
|
*/
|
|
782
|
-
AppendSourcePath?: boolean;
|
|
782
|
+
AppendSourcePath?: boolean | undefined;
|
|
783
783
|
}
|
|
784
784
|
/**
|
|
785
785
|
* @public
|
|
@@ -813,23 +813,23 @@ export interface CreateRouteRequest {
|
|
|
813
813
|
* <p> Configuration for the default route type. </p>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
DefaultRoute?: DefaultRouteInput;
|
|
816
|
+
DefaultRoute?: DefaultRouteInput | undefined;
|
|
817
817
|
/**
|
|
818
818
|
* <p>The configuration for the URI path route type. </p>
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
UriPathRoute?: UriPathRouteInput;
|
|
821
|
+
UriPathRoute?: UriPathRouteInput | undefined;
|
|
822
822
|
/**
|
|
823
823
|
* <p>The tags to assign to the route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.. </p>
|
|
824
824
|
* @public
|
|
825
825
|
*/
|
|
826
|
-
Tags?: Record<string, string
|
|
826
|
+
Tags?: Record<string, string> | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
829
829
|
* request.</p>
|
|
830
830
|
* @public
|
|
831
831
|
*/
|
|
832
|
-
ClientToken?: string;
|
|
832
|
+
ClientToken?: string | undefined;
|
|
833
833
|
}
|
|
834
834
|
/**
|
|
835
835
|
* @public
|
|
@@ -855,7 +855,7 @@ export interface CreateRouteResponse {
|
|
|
855
855
|
* <p>The unique identifier of the route.</p>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
|
-
RouteId?: string;
|
|
858
|
+
RouteId?: string | undefined;
|
|
859
859
|
/**
|
|
860
860
|
* <p>The Amazon Resource Name (ARN) of the route. The format for this ARN is
|
|
861
861
|
* <code>arn:aws:refactor-spaces:<i>region</i>:<i>account-id</i>:<i>resource-type/resource-id</i>
|
|
@@ -865,60 +865,60 @@ export interface CreateRouteResponse {
|
|
|
865
865
|
* <i>Amazon Web Services General Reference</i>.</p>
|
|
866
866
|
* @public
|
|
867
867
|
*/
|
|
868
|
-
Arn?: string;
|
|
868
|
+
Arn?: string | undefined;
|
|
869
869
|
/**
|
|
870
870
|
* <p>The Amazon Web Services account ID of the route owner.</p>
|
|
871
871
|
* @public
|
|
872
872
|
*/
|
|
873
|
-
OwnerAccountId?: string;
|
|
873
|
+
OwnerAccountId?: string | undefined;
|
|
874
874
|
/**
|
|
875
875
|
* <p>The Amazon Web Services account ID of the route creator.</p>
|
|
876
876
|
* @public
|
|
877
877
|
*/
|
|
878
|
-
CreatedByAccountId?: string;
|
|
878
|
+
CreatedByAccountId?: string | undefined;
|
|
879
879
|
/**
|
|
880
880
|
* <p>The route type of the route.</p>
|
|
881
881
|
* @public
|
|
882
882
|
*/
|
|
883
|
-
RouteType?: RouteType;
|
|
883
|
+
RouteType?: RouteType | undefined;
|
|
884
884
|
/**
|
|
885
885
|
* <p>The ID of service in which the route is created. Traffic that matches this route is
|
|
886
886
|
* forwarded to this service.</p>
|
|
887
887
|
* @public
|
|
888
888
|
*/
|
|
889
|
-
ServiceId?: string;
|
|
889
|
+
ServiceId?: string | undefined;
|
|
890
890
|
/**
|
|
891
891
|
* <p>The ID of the application in which the route is created.</p>
|
|
892
892
|
* @public
|
|
893
893
|
*/
|
|
894
|
-
ApplicationId?: string;
|
|
894
|
+
ApplicationId?: string | undefined;
|
|
895
895
|
/**
|
|
896
896
|
* <p>Configuration for the URI path route type. </p>
|
|
897
897
|
* @public
|
|
898
898
|
*/
|
|
899
|
-
UriPathRoute?: UriPathRouteInput;
|
|
899
|
+
UriPathRoute?: UriPathRouteInput | undefined;
|
|
900
900
|
/**
|
|
901
901
|
* <p>The current state of the route. Activation state only allows <code>ACTIVE</code> or
|
|
902
902
|
* <code>INACTIVE</code> as user inputs. <code>FAILED</code> is a route state that is system
|
|
903
903
|
* generated.</p>
|
|
904
904
|
* @public
|
|
905
905
|
*/
|
|
906
|
-
State?: RouteState;
|
|
906
|
+
State?: RouteState | undefined;
|
|
907
907
|
/**
|
|
908
908
|
* <p>The tags assigned to the created route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
909
909
|
* @public
|
|
910
910
|
*/
|
|
911
|
-
Tags?: Record<string, string
|
|
911
|
+
Tags?: Record<string, string> | undefined;
|
|
912
912
|
/**
|
|
913
913
|
* <p>A timestamp that indicates when the route was last updated. </p>
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
LastUpdatedTime?: Date;
|
|
916
|
+
LastUpdatedTime?: Date | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* <p>A timestamp that indicates when the route is created.</p>
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
CreatedTime?: Date;
|
|
921
|
+
CreatedTime?: Date | undefined;
|
|
922
922
|
}
|
|
923
923
|
/**
|
|
924
924
|
* @public
|
|
@@ -962,7 +962,7 @@ export interface UrlEndpointInput {
|
|
|
962
962
|
* host must be the same as the URL. </p>
|
|
963
963
|
* @public
|
|
964
964
|
*/
|
|
965
|
-
HealthUrl?: string;
|
|
965
|
+
HealthUrl?: string | undefined;
|
|
966
966
|
}
|
|
967
967
|
/**
|
|
968
968
|
* @public
|
|
@@ -977,7 +977,7 @@ export interface CreateServiceRequest {
|
|
|
977
977
|
* <p>The description of the service.</p>
|
|
978
978
|
* @public
|
|
979
979
|
*/
|
|
980
|
-
Description?: string;
|
|
980
|
+
Description?: string | undefined;
|
|
981
981
|
/**
|
|
982
982
|
* <p>The ID of the environment in which the service is created.</p>
|
|
983
983
|
* @public
|
|
@@ -992,7 +992,7 @@ export interface CreateServiceRequest {
|
|
|
992
992
|
* <p>The ID of the VPC.</p>
|
|
993
993
|
* @public
|
|
994
994
|
*/
|
|
995
|
-
VpcId?: string;
|
|
995
|
+
VpcId?: string | undefined;
|
|
996
996
|
/**
|
|
997
997
|
* <p>The type of endpoint to use for the service. The type can be a URL in a VPC or an Lambda function.</p>
|
|
998
998
|
* @public
|
|
@@ -1005,23 +1005,23 @@ export interface CreateServiceRequest {
|
|
|
1005
1005
|
* seconds.</p>
|
|
1006
1006
|
* @public
|
|
1007
1007
|
*/
|
|
1008
|
-
UrlEndpoint?: UrlEndpointInput;
|
|
1008
|
+
UrlEndpoint?: UrlEndpointInput | undefined;
|
|
1009
1009
|
/**
|
|
1010
1010
|
* <p>The configuration for the Lambda endpoint type.</p>
|
|
1011
1011
|
* @public
|
|
1012
1012
|
*/
|
|
1013
|
-
LambdaEndpoint?: LambdaEndpointInput;
|
|
1013
|
+
LambdaEndpoint?: LambdaEndpointInput | undefined;
|
|
1014
1014
|
/**
|
|
1015
1015
|
* <p>The tags to assign to the service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.. </p>
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*/
|
|
1018
|
-
Tags?: Record<string, string
|
|
1018
|
+
Tags?: Record<string, string> | undefined;
|
|
1019
1019
|
/**
|
|
1020
1020
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1021
1021
|
* request.</p>
|
|
1022
1022
|
* @public
|
|
1023
1023
|
*/
|
|
1024
|
-
ClientToken?: string;
|
|
1024
|
+
ClientToken?: string | undefined;
|
|
1025
1025
|
}
|
|
1026
1026
|
/**
|
|
1027
1027
|
* @public
|
|
@@ -1045,82 +1045,82 @@ export interface CreateServiceResponse {
|
|
|
1045
1045
|
* <p>The unique identifier of the service.</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
ServiceId?: string;
|
|
1048
|
+
ServiceId?: string | undefined;
|
|
1049
1049
|
/**
|
|
1050
1050
|
* <p>The name of the service.</p>
|
|
1051
1051
|
* @public
|
|
1052
1052
|
*/
|
|
1053
|
-
Name?: string;
|
|
1053
|
+
Name?: string | undefined;
|
|
1054
1054
|
/**
|
|
1055
1055
|
* <p>The Amazon Resource Name (ARN) of the service.</p>
|
|
1056
1056
|
* @public
|
|
1057
1057
|
*/
|
|
1058
|
-
Arn?: string;
|
|
1058
|
+
Arn?: string | undefined;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* <p>The Amazon Web Services account ID of the service owner.</p>
|
|
1061
1061
|
* @public
|
|
1062
1062
|
*/
|
|
1063
|
-
OwnerAccountId?: string;
|
|
1063
|
+
OwnerAccountId?: string | undefined;
|
|
1064
1064
|
/**
|
|
1065
1065
|
* <p>The Amazon Web Services account ID of the service creator.</p>
|
|
1066
1066
|
* @public
|
|
1067
1067
|
*/
|
|
1068
|
-
CreatedByAccountId?: string;
|
|
1068
|
+
CreatedByAccountId?: string | undefined;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* <p>The description of the created service.</p>
|
|
1071
1071
|
* @public
|
|
1072
1072
|
*/
|
|
1073
|
-
Description?: string;
|
|
1073
|
+
Description?: string | undefined;
|
|
1074
1074
|
/**
|
|
1075
1075
|
* <p>The unique identifier of the environment.</p>
|
|
1076
1076
|
* @public
|
|
1077
1077
|
*/
|
|
1078
|
-
EnvironmentId?: string;
|
|
1078
|
+
EnvironmentId?: string | undefined;
|
|
1079
1079
|
/**
|
|
1080
1080
|
* <p>The ID of the application that the created service belongs to. </p>
|
|
1081
1081
|
* @public
|
|
1082
1082
|
*/
|
|
1083
|
-
ApplicationId?: string;
|
|
1083
|
+
ApplicationId?: string | undefined;
|
|
1084
1084
|
/**
|
|
1085
1085
|
* <p>The ID of the VPC. </p>
|
|
1086
1086
|
* @public
|
|
1087
1087
|
*/
|
|
1088
|
-
VpcId?: string;
|
|
1088
|
+
VpcId?: string | undefined;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* <p>The endpoint type of the service.</p>
|
|
1091
1091
|
* @public
|
|
1092
1092
|
*/
|
|
1093
|
-
EndpointType?: ServiceEndpointType;
|
|
1093
|
+
EndpointType?: ServiceEndpointType | undefined;
|
|
1094
1094
|
/**
|
|
1095
1095
|
* <p>The configuration for the URL endpoint type. </p>
|
|
1096
1096
|
* @public
|
|
1097
1097
|
*/
|
|
1098
|
-
UrlEndpoint?: UrlEndpointInput;
|
|
1098
|
+
UrlEndpoint?: UrlEndpointInput | undefined;
|
|
1099
1099
|
/**
|
|
1100
1100
|
* <p>The configuration for the Lambda endpoint type.</p>
|
|
1101
1101
|
* @public
|
|
1102
1102
|
*/
|
|
1103
|
-
LambdaEndpoint?: LambdaEndpointInput;
|
|
1103
|
+
LambdaEndpoint?: LambdaEndpointInput | undefined;
|
|
1104
1104
|
/**
|
|
1105
1105
|
* <p>The current state of the service. </p>
|
|
1106
1106
|
* @public
|
|
1107
1107
|
*/
|
|
1108
|
-
State?: ServiceState;
|
|
1108
|
+
State?: ServiceState | undefined;
|
|
1109
1109
|
/**
|
|
1110
1110
|
* <p>The tags assigned to the created service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.. </p>
|
|
1111
1111
|
* @public
|
|
1112
1112
|
*/
|
|
1113
|
-
Tags?: Record<string, string
|
|
1113
|
+
Tags?: Record<string, string> | undefined;
|
|
1114
1114
|
/**
|
|
1115
1115
|
* <p>A timestamp that indicates when the service was last updated. </p>
|
|
1116
1116
|
* @public
|
|
1117
1117
|
*/
|
|
1118
|
-
LastUpdatedTime?: Date;
|
|
1118
|
+
LastUpdatedTime?: Date | undefined;
|
|
1119
1119
|
/**
|
|
1120
1120
|
* <p>A timestamp that indicates when the service is created.</p>
|
|
1121
1121
|
* @public
|
|
1122
1122
|
*/
|
|
1123
|
-
CreatedTime?: Date;
|
|
1123
|
+
CreatedTime?: Date | undefined;
|
|
1124
1124
|
}
|
|
1125
1125
|
/**
|
|
1126
1126
|
* @public
|
|
@@ -1145,32 +1145,32 @@ export interface DeleteApplicationResponse {
|
|
|
1145
1145
|
* <p>The name of the application.</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
Name?: string;
|
|
1148
|
+
Name?: string | undefined;
|
|
1149
1149
|
/**
|
|
1150
1150
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
1151
1151
|
* @public
|
|
1152
1152
|
*/
|
|
1153
|
-
Arn?: string;
|
|
1153
|
+
Arn?: string | undefined;
|
|
1154
1154
|
/**
|
|
1155
1155
|
* <p>The ID of the application.</p>
|
|
1156
1156
|
* @public
|
|
1157
1157
|
*/
|
|
1158
|
-
ApplicationId?: string;
|
|
1158
|
+
ApplicationId?: string | undefined;
|
|
1159
1159
|
/**
|
|
1160
1160
|
* <p>The unique identifier of the application’s environment.</p>
|
|
1161
1161
|
* @public
|
|
1162
1162
|
*/
|
|
1163
|
-
EnvironmentId?: string;
|
|
1163
|
+
EnvironmentId?: string | undefined;
|
|
1164
1164
|
/**
|
|
1165
1165
|
* <p>The current state of the application. </p>
|
|
1166
1166
|
* @public
|
|
1167
1167
|
*/
|
|
1168
|
-
State?: ApplicationState;
|
|
1168
|
+
State?: ApplicationState | undefined;
|
|
1169
1169
|
/**
|
|
1170
1170
|
* <p>A timestamp that indicates when the environment was last updated. </p>
|
|
1171
1171
|
* @public
|
|
1172
1172
|
*/
|
|
1173
|
-
LastUpdatedTime?: Date;
|
|
1173
|
+
LastUpdatedTime?: Date | undefined;
|
|
1174
1174
|
}
|
|
1175
1175
|
/**
|
|
1176
1176
|
* @public
|
|
@@ -1190,27 +1190,27 @@ export interface DeleteEnvironmentResponse {
|
|
|
1190
1190
|
* <p>The name of the environment.</p>
|
|
1191
1191
|
* @public
|
|
1192
1192
|
*/
|
|
1193
|
-
Name?: string;
|
|
1193
|
+
Name?: string | undefined;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* <p>The Amazon Resource Name (ARN) of the environment.</p>
|
|
1196
1196
|
* @public
|
|
1197
1197
|
*/
|
|
1198
|
-
Arn?: string;
|
|
1198
|
+
Arn?: string | undefined;
|
|
1199
1199
|
/**
|
|
1200
1200
|
* <p>The unique identifier of the environment.</p>
|
|
1201
1201
|
* @public
|
|
1202
1202
|
*/
|
|
1203
|
-
EnvironmentId?: string;
|
|
1203
|
+
EnvironmentId?: string | undefined;
|
|
1204
1204
|
/**
|
|
1205
1205
|
* <p>The current state of the environment. </p>
|
|
1206
1206
|
* @public
|
|
1207
1207
|
*/
|
|
1208
|
-
State?: EnvironmentState;
|
|
1208
|
+
State?: EnvironmentState | undefined;
|
|
1209
1209
|
/**
|
|
1210
1210
|
* <p>A timestamp that indicates when the environment was last updated. </p>
|
|
1211
1211
|
* @public
|
|
1212
1212
|
*/
|
|
1213
|
-
LastUpdatedTime?: Date;
|
|
1213
|
+
LastUpdatedTime?: Date | undefined;
|
|
1214
1214
|
}
|
|
1215
1215
|
/**
|
|
1216
1216
|
* @public
|
|
@@ -1255,32 +1255,32 @@ export interface DeleteRouteResponse {
|
|
|
1255
1255
|
* <p>The ID of the route to delete.</p>
|
|
1256
1256
|
* @public
|
|
1257
1257
|
*/
|
|
1258
|
-
RouteId?: string;
|
|
1258
|
+
RouteId?: string | undefined;
|
|
1259
1259
|
/**
|
|
1260
1260
|
* <p>The Amazon Resource Name (ARN) of the route.</p>
|
|
1261
1261
|
* @public
|
|
1262
1262
|
*/
|
|
1263
|
-
Arn?: string;
|
|
1263
|
+
Arn?: string | undefined;
|
|
1264
1264
|
/**
|
|
1265
1265
|
* <p>The ID of the service that the route belongs to.</p>
|
|
1266
1266
|
* @public
|
|
1267
1267
|
*/
|
|
1268
|
-
ServiceId?: string;
|
|
1268
|
+
ServiceId?: string | undefined;
|
|
1269
1269
|
/**
|
|
1270
1270
|
* <p>The ID of the application that the route belongs to.</p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
ApplicationId?: string;
|
|
1273
|
+
ApplicationId?: string | undefined;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* <p>The current state of the route. </p>
|
|
1276
1276
|
* @public
|
|
1277
1277
|
*/
|
|
1278
|
-
State?: RouteState;
|
|
1278
|
+
State?: RouteState | undefined;
|
|
1279
1279
|
/**
|
|
1280
1280
|
* <p>A timestamp that indicates when the route was last updated. </p>
|
|
1281
1281
|
* @public
|
|
1282
1282
|
*/
|
|
1283
|
-
LastUpdatedTime?: Date;
|
|
1283
|
+
LastUpdatedTime?: Date | undefined;
|
|
1284
1284
|
}
|
|
1285
1285
|
/**
|
|
1286
1286
|
* @public
|
|
@@ -1315,37 +1315,37 @@ export interface DeleteServiceResponse {
|
|
|
1315
1315
|
* <p>The unique identifier of the service.</p>
|
|
1316
1316
|
* @public
|
|
1317
1317
|
*/
|
|
1318
|
-
ServiceId?: string;
|
|
1318
|
+
ServiceId?: string | undefined;
|
|
1319
1319
|
/**
|
|
1320
1320
|
* <p>The name of the service.</p>
|
|
1321
1321
|
* @public
|
|
1322
1322
|
*/
|
|
1323
|
-
Name?: string;
|
|
1323
|
+
Name?: string | undefined;
|
|
1324
1324
|
/**
|
|
1325
1325
|
* <p>The Amazon Resource Name (ARN) of the service.</p>
|
|
1326
1326
|
* @public
|
|
1327
1327
|
*/
|
|
1328
|
-
Arn?: string;
|
|
1328
|
+
Arn?: string | undefined;
|
|
1329
1329
|
/**
|
|
1330
1330
|
* <p>The unique identifier of the environment.</p>
|
|
1331
1331
|
* @public
|
|
1332
1332
|
*/
|
|
1333
|
-
EnvironmentId?: string;
|
|
1333
|
+
EnvironmentId?: string | undefined;
|
|
1334
1334
|
/**
|
|
1335
1335
|
* <p>The ID of the application that the service is in.</p>
|
|
1336
1336
|
* @public
|
|
1337
1337
|
*/
|
|
1338
|
-
ApplicationId?: string;
|
|
1338
|
+
ApplicationId?: string | undefined;
|
|
1339
1339
|
/**
|
|
1340
1340
|
* <p>The current state of the service. </p>
|
|
1341
1341
|
* @public
|
|
1342
1342
|
*/
|
|
1343
|
-
State?: ServiceState;
|
|
1343
|
+
State?: ServiceState | undefined;
|
|
1344
1344
|
/**
|
|
1345
1345
|
* <p>A timestamp that indicates when the service was last updated. </p>
|
|
1346
1346
|
* @public
|
|
1347
1347
|
*/
|
|
1348
|
-
LastUpdatedTime?: Date;
|
|
1348
|
+
LastUpdatedTime?: Date | undefined;
|
|
1349
1349
|
}
|
|
1350
1350
|
/**
|
|
1351
1351
|
* <p>The summary information for environments as a response to <code>ListEnvironments</code>.
|
|
@@ -1357,62 +1357,62 @@ export interface EnvironmentSummary {
|
|
|
1357
1357
|
* <p>The name of the environment. </p>
|
|
1358
1358
|
* @public
|
|
1359
1359
|
*/
|
|
1360
|
-
Name?: string;
|
|
1360
|
+
Name?: string | undefined;
|
|
1361
1361
|
/**
|
|
1362
1362
|
* <p>The Amazon Resource Name (ARN) of the environment. </p>
|
|
1363
1363
|
* @public
|
|
1364
1364
|
*/
|
|
1365
|
-
Arn?: string;
|
|
1365
|
+
Arn?: string | undefined;
|
|
1366
1366
|
/**
|
|
1367
1367
|
* <p>A description of the environment. </p>
|
|
1368
1368
|
* @public
|
|
1369
1369
|
*/
|
|
1370
|
-
Description?: string;
|
|
1370
|
+
Description?: string | undefined;
|
|
1371
1371
|
/**
|
|
1372
1372
|
* <p>The unique identifier of the environment. </p>
|
|
1373
1373
|
* @public
|
|
1374
1374
|
*/
|
|
1375
|
-
EnvironmentId?: string;
|
|
1375
|
+
EnvironmentId?: string | undefined;
|
|
1376
1376
|
/**
|
|
1377
1377
|
* <p>The network fabric type of the environment. </p>
|
|
1378
1378
|
* @public
|
|
1379
1379
|
*/
|
|
1380
|
-
NetworkFabricType?: NetworkFabricType;
|
|
1380
|
+
NetworkFabricType?: NetworkFabricType | undefined;
|
|
1381
1381
|
/**
|
|
1382
1382
|
* <p>The Amazon Web Services account ID of the environment owner.</p>
|
|
1383
1383
|
* @public
|
|
1384
1384
|
*/
|
|
1385
|
-
OwnerAccountId?: string;
|
|
1385
|
+
OwnerAccountId?: string | undefined;
|
|
1386
1386
|
/**
|
|
1387
1387
|
* <p>The ID of the Transit Gateway set up by the environment. </p>
|
|
1388
1388
|
* @public
|
|
1389
1389
|
*/
|
|
1390
|
-
TransitGatewayId?: string;
|
|
1390
|
+
TransitGatewayId?: string | undefined;
|
|
1391
1391
|
/**
|
|
1392
1392
|
* <p>The current state of the environment. </p>
|
|
1393
1393
|
* @public
|
|
1394
1394
|
*/
|
|
1395
|
-
State?: EnvironmentState;
|
|
1395
|
+
State?: EnvironmentState | undefined;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* <p>The tags assigned to the environment. </p>
|
|
1398
1398
|
* @public
|
|
1399
1399
|
*/
|
|
1400
|
-
Tags?: Record<string, string
|
|
1400
|
+
Tags?: Record<string, string> | undefined;
|
|
1401
1401
|
/**
|
|
1402
1402
|
* <p>Any error associated with the environment resource. </p>
|
|
1403
1403
|
* @public
|
|
1404
1404
|
*/
|
|
1405
|
-
Error?: ErrorResponse;
|
|
1405
|
+
Error?: ErrorResponse | undefined;
|
|
1406
1406
|
/**
|
|
1407
1407
|
* <p>A timestamp that indicates when the environment was last updated. </p>
|
|
1408
1408
|
* @public
|
|
1409
1409
|
*/
|
|
1410
|
-
LastUpdatedTime?: Date;
|
|
1410
|
+
LastUpdatedTime?: Date | undefined;
|
|
1411
1411
|
/**
|
|
1412
1412
|
* <p>A timestamp that indicates when the environment is created. </p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
CreatedTime?: Date;
|
|
1415
|
+
CreatedTime?: Date | undefined;
|
|
1416
1416
|
}
|
|
1417
1417
|
/**
|
|
1418
1418
|
* <p>Provides summary information for the <code>EnvironmentVpc</code> resource as a response to
|
|
@@ -1424,37 +1424,37 @@ export interface EnvironmentVpc {
|
|
|
1424
1424
|
* <p>The unique identifier of the environment. </p>
|
|
1425
1425
|
* @public
|
|
1426
1426
|
*/
|
|
1427
|
-
EnvironmentId?: string;
|
|
1427
|
+
EnvironmentId?: string | undefined;
|
|
1428
1428
|
/**
|
|
1429
1429
|
* <p>The ID of the VPC. </p>
|
|
1430
1430
|
* @public
|
|
1431
1431
|
*/
|
|
1432
|
-
VpcId?: string;
|
|
1432
|
+
VpcId?: string | undefined;
|
|
1433
1433
|
/**
|
|
1434
1434
|
* <p>The Amazon Web Services account ID of the virtual private cloud (VPC) owner. </p>
|
|
1435
1435
|
* @public
|
|
1436
1436
|
*/
|
|
1437
|
-
AccountId?: string;
|
|
1437
|
+
AccountId?: string | undefined;
|
|
1438
1438
|
/**
|
|
1439
1439
|
* <p>The list of Amazon Virtual Private Cloud (Amazon VPC) CIDR blocks. </p>
|
|
1440
1440
|
* @public
|
|
1441
1441
|
*/
|
|
1442
|
-
CidrBlocks?: string[];
|
|
1442
|
+
CidrBlocks?: string[] | undefined;
|
|
1443
1443
|
/**
|
|
1444
1444
|
* <p>The name of the VPC at the time it is added to the environment. </p>
|
|
1445
1445
|
* @public
|
|
1446
1446
|
*/
|
|
1447
|
-
VpcName?: string;
|
|
1447
|
+
VpcName?: string | undefined;
|
|
1448
1448
|
/**
|
|
1449
1449
|
* <p>A timestamp that indicates when the VPC was last updated by the environment. </p>
|
|
1450
1450
|
* @public
|
|
1451
1451
|
*/
|
|
1452
|
-
LastUpdatedTime?: Date;
|
|
1452
|
+
LastUpdatedTime?: Date | undefined;
|
|
1453
1453
|
/**
|
|
1454
1454
|
* <p>A timestamp that indicates when the VPC is first added to the environment. </p>
|
|
1455
1455
|
* @public
|
|
1456
1456
|
*/
|
|
1457
|
-
CreatedTime?: Date;
|
|
1457
|
+
CreatedTime?: Date | undefined;
|
|
1458
1458
|
}
|
|
1459
1459
|
/**
|
|
1460
1460
|
* @public
|
|
@@ -1479,73 +1479,73 @@ export interface GetApplicationResponse {
|
|
|
1479
1479
|
* <p>The name of the application.</p>
|
|
1480
1480
|
* @public
|
|
1481
1481
|
*/
|
|
1482
|
-
Name?: string;
|
|
1482
|
+
Name?: string | undefined;
|
|
1483
1483
|
/**
|
|
1484
1484
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
1485
1485
|
* @public
|
|
1486
1486
|
*/
|
|
1487
|
-
Arn?: string;
|
|
1487
|
+
Arn?: string | undefined;
|
|
1488
1488
|
/**
|
|
1489
1489
|
* <p>The Amazon Web Services account ID of the application owner (which is always the same as
|
|
1490
1490
|
* the environment owner account ID).</p>
|
|
1491
1491
|
* @public
|
|
1492
1492
|
*/
|
|
1493
|
-
OwnerAccountId?: string;
|
|
1493
|
+
OwnerAccountId?: string | undefined;
|
|
1494
1494
|
/**
|
|
1495
1495
|
* <p>The Amazon Web Services account ID of the application creator. </p>
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
CreatedByAccountId?: string;
|
|
1498
|
+
CreatedByAccountId?: string | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* <p>The unique identifier of the application.</p>
|
|
1501
1501
|
* @public
|
|
1502
1502
|
*/
|
|
1503
|
-
ApplicationId?: string;
|
|
1503
|
+
ApplicationId?: string | undefined;
|
|
1504
1504
|
/**
|
|
1505
1505
|
* <p>The unique identifier of the environment.</p>
|
|
1506
1506
|
* @public
|
|
1507
1507
|
*/
|
|
1508
|
-
EnvironmentId?: string;
|
|
1508
|
+
EnvironmentId?: string | undefined;
|
|
1509
1509
|
/**
|
|
1510
1510
|
* <p>The ID of the virtual private cloud (VPC). </p>
|
|
1511
1511
|
* @public
|
|
1512
1512
|
*/
|
|
1513
|
-
VpcId?: string;
|
|
1513
|
+
VpcId?: string | undefined;
|
|
1514
1514
|
/**
|
|
1515
1515
|
* <p>The proxy type of the proxy created within the application. </p>
|
|
1516
1516
|
* @public
|
|
1517
1517
|
*/
|
|
1518
|
-
ProxyType?: ProxyType;
|
|
1518
|
+
ProxyType?: ProxyType | undefined;
|
|
1519
1519
|
/**
|
|
1520
1520
|
* <p>The endpoint URL of the API Gateway proxy. </p>
|
|
1521
1521
|
* @public
|
|
1522
1522
|
*/
|
|
1523
|
-
ApiGatewayProxy?: ApiGatewayProxyConfig;
|
|
1523
|
+
ApiGatewayProxy?: ApiGatewayProxyConfig | undefined;
|
|
1524
1524
|
/**
|
|
1525
1525
|
* <p>The current state of the application. </p>
|
|
1526
1526
|
* @public
|
|
1527
1527
|
*/
|
|
1528
|
-
State?: ApplicationState;
|
|
1528
|
+
State?: ApplicationState | undefined;
|
|
1529
1529
|
/**
|
|
1530
1530
|
* <p>The tags assigned to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
1531
1531
|
* @public
|
|
1532
1532
|
*/
|
|
1533
|
-
Tags?: Record<string, string
|
|
1533
|
+
Tags?: Record<string, string> | undefined;
|
|
1534
1534
|
/**
|
|
1535
1535
|
* <p>Any error associated with the application resource. </p>
|
|
1536
1536
|
* @public
|
|
1537
1537
|
*/
|
|
1538
|
-
Error?: ErrorResponse;
|
|
1538
|
+
Error?: ErrorResponse | undefined;
|
|
1539
1539
|
/**
|
|
1540
1540
|
* <p>A timestamp that indicates when the application was last updated. </p>
|
|
1541
1541
|
* @public
|
|
1542
1542
|
*/
|
|
1543
|
-
LastUpdatedTime?: Date;
|
|
1543
|
+
LastUpdatedTime?: Date | undefined;
|
|
1544
1544
|
/**
|
|
1545
1545
|
* <p>A timestamp that indicates when the application is created. </p>
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
CreatedTime?: Date;
|
|
1548
|
+
CreatedTime?: Date | undefined;
|
|
1549
1549
|
}
|
|
1550
1550
|
/**
|
|
1551
1551
|
* @public
|
|
@@ -1565,62 +1565,62 @@ export interface GetEnvironmentResponse {
|
|
|
1565
1565
|
* <p>The name of the environment.</p>
|
|
1566
1566
|
* @public
|
|
1567
1567
|
*/
|
|
1568
|
-
Name?: string;
|
|
1568
|
+
Name?: string | undefined;
|
|
1569
1569
|
/**
|
|
1570
1570
|
* <p>The Amazon Resource Name (ARN) of the environment.</p>
|
|
1571
1571
|
* @public
|
|
1572
1572
|
*/
|
|
1573
|
-
Arn?: string;
|
|
1573
|
+
Arn?: string | undefined;
|
|
1574
1574
|
/**
|
|
1575
1575
|
* <p>The description of the environment. </p>
|
|
1576
1576
|
* @public
|
|
1577
1577
|
*/
|
|
1578
|
-
Description?: string;
|
|
1578
|
+
Description?: string | undefined;
|
|
1579
1579
|
/**
|
|
1580
1580
|
* <p>The unique identifier of the environment. </p>
|
|
1581
1581
|
* @public
|
|
1582
1582
|
*/
|
|
1583
|
-
EnvironmentId?: string;
|
|
1583
|
+
EnvironmentId?: string | undefined;
|
|
1584
1584
|
/**
|
|
1585
1585
|
* <p>The network fabric type of the environment. </p>
|
|
1586
1586
|
* @public
|
|
1587
1587
|
*/
|
|
1588
|
-
NetworkFabricType?: NetworkFabricType;
|
|
1588
|
+
NetworkFabricType?: NetworkFabricType | undefined;
|
|
1589
1589
|
/**
|
|
1590
1590
|
* <p>The Amazon Web Services account ID of the environment owner.</p>
|
|
1591
1591
|
* @public
|
|
1592
1592
|
*/
|
|
1593
|
-
OwnerAccountId?: string;
|
|
1593
|
+
OwnerAccountId?: string | undefined;
|
|
1594
1594
|
/**
|
|
1595
1595
|
* <p>The ID of the Transit Gateway set up by the environment, if applicable.</p>
|
|
1596
1596
|
* @public
|
|
1597
1597
|
*/
|
|
1598
|
-
TransitGatewayId?: string;
|
|
1598
|
+
TransitGatewayId?: string | undefined;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* <p>The current state of the environment. </p>
|
|
1601
1601
|
* @public
|
|
1602
1602
|
*/
|
|
1603
|
-
State?: EnvironmentState;
|
|
1603
|
+
State?: EnvironmentState | undefined;
|
|
1604
1604
|
/**
|
|
1605
1605
|
* <p>The tags to assign to the environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
1606
1606
|
* @public
|
|
1607
1607
|
*/
|
|
1608
|
-
Tags?: Record<string, string
|
|
1608
|
+
Tags?: Record<string, string> | undefined;
|
|
1609
1609
|
/**
|
|
1610
1610
|
* <p>Any error associated with the environment resource. </p>
|
|
1611
1611
|
* @public
|
|
1612
1612
|
*/
|
|
1613
|
-
Error?: ErrorResponse;
|
|
1613
|
+
Error?: ErrorResponse | undefined;
|
|
1614
1614
|
/**
|
|
1615
1615
|
* <p>A timestamp that indicates when the environment was last updated. </p>
|
|
1616
1616
|
* @public
|
|
1617
1617
|
*/
|
|
1618
|
-
LastUpdatedTime?: Date;
|
|
1618
|
+
LastUpdatedTime?: Date | undefined;
|
|
1619
1619
|
/**
|
|
1620
1620
|
* <p>A timestamp that indicates when the environment is created. </p>
|
|
1621
1621
|
* @public
|
|
1622
1622
|
*/
|
|
1623
|
-
CreatedTime?: Date;
|
|
1623
|
+
CreatedTime?: Date | undefined;
|
|
1624
1624
|
}
|
|
1625
1625
|
/**
|
|
1626
1626
|
* @public
|
|
@@ -1640,7 +1640,7 @@ export interface GetResourcePolicyResponse {
|
|
|
1640
1640
|
* <p>A JSON-formatted string for an Amazon Web Services resource-based policy. </p>
|
|
1641
1641
|
* @public
|
|
1642
1642
|
*/
|
|
1643
|
-
Policy?: string;
|
|
1643
|
+
Policy?: string | undefined;
|
|
1644
1644
|
}
|
|
1645
1645
|
/**
|
|
1646
1646
|
* @public
|
|
@@ -1676,97 +1676,97 @@ export interface GetRouteResponse {
|
|
|
1676
1676
|
* <b>URI_PATH</b>: A route that is based on a URI path.</p>
|
|
1677
1677
|
* @public
|
|
1678
1678
|
*/
|
|
1679
|
-
RouteId?: string;
|
|
1679
|
+
RouteId?: string | undefined;
|
|
1680
1680
|
/**
|
|
1681
1681
|
* <p>The Amazon Resource Name (ARN) of the route.</p>
|
|
1682
1682
|
* @public
|
|
1683
1683
|
*/
|
|
1684
|
-
Arn?: string;
|
|
1684
|
+
Arn?: string | undefined;
|
|
1685
1685
|
/**
|
|
1686
1686
|
* <p>The Amazon Web Services account ID of the route owner.</p>
|
|
1687
1687
|
* @public
|
|
1688
1688
|
*/
|
|
1689
|
-
OwnerAccountId?: string;
|
|
1689
|
+
OwnerAccountId?: string | undefined;
|
|
1690
1690
|
/**
|
|
1691
1691
|
* <p>The Amazon Web Services account ID of the route creator.</p>
|
|
1692
1692
|
* @public
|
|
1693
1693
|
*/
|
|
1694
|
-
CreatedByAccountId?: string;
|
|
1694
|
+
CreatedByAccountId?: string | undefined;
|
|
1695
1695
|
/**
|
|
1696
1696
|
* <p>The type of route.</p>
|
|
1697
1697
|
* @public
|
|
1698
1698
|
*/
|
|
1699
|
-
RouteType?: RouteType;
|
|
1699
|
+
RouteType?: RouteType | undefined;
|
|
1700
1700
|
/**
|
|
1701
1701
|
* <p>The unique identifier of the service.</p>
|
|
1702
1702
|
* @public
|
|
1703
1703
|
*/
|
|
1704
|
-
ServiceId?: string;
|
|
1704
|
+
ServiceId?: string | undefined;
|
|
1705
1705
|
/**
|
|
1706
1706
|
* <p>The ID of the application that the route belongs to. </p>
|
|
1707
1707
|
* @public
|
|
1708
1708
|
*/
|
|
1709
|
-
ApplicationId?: string;
|
|
1709
|
+
ApplicationId?: string | undefined;
|
|
1710
1710
|
/**
|
|
1711
1711
|
* <p>Unique identifier of the environment.</p>
|
|
1712
1712
|
* @public
|
|
1713
1713
|
*/
|
|
1714
|
-
EnvironmentId?: string;
|
|
1714
|
+
EnvironmentId?: string | undefined;
|
|
1715
1715
|
/**
|
|
1716
1716
|
* <p>This is the path that Refactor Spaces uses to match traffic. Paths must start with <code>/</code> and are relative to
|
|
1717
1717
|
* the base of the application. To use path parameters in the source path, add a variable in curly braces.
|
|
1718
1718
|
* For example, the resource path \{user\} represents a path parameter called 'user'.</p>
|
|
1719
1719
|
* @public
|
|
1720
1720
|
*/
|
|
1721
|
-
SourcePath?: string;
|
|
1721
|
+
SourcePath?: string | undefined;
|
|
1722
1722
|
/**
|
|
1723
1723
|
* <p>A list of HTTP methods to match. An empty list matches all values. If a method is present,
|
|
1724
1724
|
* only HTTP requests using that method are forwarded to this route’s service. </p>
|
|
1725
1725
|
* @public
|
|
1726
1726
|
*/
|
|
1727
|
-
Methods?: HttpMethod[];
|
|
1727
|
+
Methods?: HttpMethod[] | undefined;
|
|
1728
1728
|
/**
|
|
1729
1729
|
* <p>Indicates whether to match all subpaths of the given source path. If this value is
|
|
1730
1730
|
* <code>false</code>, requests must match the source path exactly before they are forwarded to
|
|
1731
1731
|
* this route's service. </p>
|
|
1732
1732
|
* @public
|
|
1733
1733
|
*/
|
|
1734
|
-
IncludeChildPaths?: boolean;
|
|
1734
|
+
IncludeChildPaths?: boolean | undefined;
|
|
1735
1735
|
/**
|
|
1736
1736
|
* <p>A mapping of Amazon API Gateway path resources to resource IDs. </p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
PathResourceToId?: Record<string, string
|
|
1739
|
+
PathResourceToId?: Record<string, string> | undefined;
|
|
1740
1740
|
/**
|
|
1741
1741
|
* <p>The current state of the route. </p>
|
|
1742
1742
|
* @public
|
|
1743
1743
|
*/
|
|
1744
|
-
State?: RouteState;
|
|
1744
|
+
State?: RouteState | undefined;
|
|
1745
1745
|
/**
|
|
1746
1746
|
* <p>The tags assigned to the route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
1747
1747
|
* @public
|
|
1748
1748
|
*/
|
|
1749
|
-
Tags?: Record<string, string
|
|
1749
|
+
Tags?: Record<string, string> | undefined;
|
|
1750
1750
|
/**
|
|
1751
1751
|
* <p>Any error associated with the route resource. </p>
|
|
1752
1752
|
* @public
|
|
1753
1753
|
*/
|
|
1754
|
-
Error?: ErrorResponse;
|
|
1754
|
+
Error?: ErrorResponse | undefined;
|
|
1755
1755
|
/**
|
|
1756
1756
|
* <p>A timestamp that indicates when the route was last updated. </p>
|
|
1757
1757
|
* @public
|
|
1758
1758
|
*/
|
|
1759
|
-
LastUpdatedTime?: Date;
|
|
1759
|
+
LastUpdatedTime?: Date | undefined;
|
|
1760
1760
|
/**
|
|
1761
1761
|
* <p>The timestamp of when the route is created. </p>
|
|
1762
1762
|
* @public
|
|
1763
1763
|
*/
|
|
1764
|
-
CreatedTime?: Date;
|
|
1764
|
+
CreatedTime?: Date | undefined;
|
|
1765
1765
|
/**
|
|
1766
1766
|
* <p>If set to <code>true</code>, this option appends the source path to the service URL endpoint.</p>
|
|
1767
1767
|
* @public
|
|
1768
1768
|
*/
|
|
1769
|
-
AppendSourcePath?: boolean;
|
|
1769
|
+
AppendSourcePath?: boolean | undefined;
|
|
1770
1770
|
}
|
|
1771
1771
|
/**
|
|
1772
1772
|
* @public
|
|
@@ -1797,7 +1797,7 @@ export interface LambdaEndpointConfig {
|
|
|
1797
1797
|
* <p>The Amazon Resource Name (ARN) of the Lambda endpoint. </p>
|
|
1798
1798
|
* @public
|
|
1799
1799
|
*/
|
|
1800
|
-
Arn?: string;
|
|
1800
|
+
Arn?: string | undefined;
|
|
1801
1801
|
}
|
|
1802
1802
|
/**
|
|
1803
1803
|
* <p>The configuration for the URL endpoint type. </p>
|
|
@@ -1808,12 +1808,12 @@ export interface UrlEndpointConfig {
|
|
|
1808
1808
|
* <p>The HTTP URL endpoint. </p>
|
|
1809
1809
|
* @public
|
|
1810
1810
|
*/
|
|
1811
|
-
Url?: string;
|
|
1811
|
+
Url?: string | undefined;
|
|
1812
1812
|
/**
|
|
1813
1813
|
* <p>The health check URL of the URL endpoint type. </p>
|
|
1814
1814
|
* @public
|
|
1815
1815
|
*/
|
|
1816
|
-
HealthUrl?: string;
|
|
1816
|
+
HealthUrl?: string | undefined;
|
|
1817
1817
|
}
|
|
1818
1818
|
/**
|
|
1819
1819
|
* @public
|
|
@@ -1823,52 +1823,52 @@ export interface GetServiceResponse {
|
|
|
1823
1823
|
* <p>The unique identifier of the service.</p>
|
|
1824
1824
|
* @public
|
|
1825
1825
|
*/
|
|
1826
|
-
ServiceId?: string;
|
|
1826
|
+
ServiceId?: string | undefined;
|
|
1827
1827
|
/**
|
|
1828
1828
|
* <p>The name of the service.</p>
|
|
1829
1829
|
* @public
|
|
1830
1830
|
*/
|
|
1831
|
-
Name?: string;
|
|
1831
|
+
Name?: string | undefined;
|
|
1832
1832
|
/**
|
|
1833
1833
|
* <p>The Amazon Resource Name (ARN) of the service.</p>
|
|
1834
1834
|
* @public
|
|
1835
1835
|
*/
|
|
1836
|
-
Arn?: string;
|
|
1836
|
+
Arn?: string | undefined;
|
|
1837
1837
|
/**
|
|
1838
1838
|
* <p>The Amazon Web Services account ID of the service owner.</p>
|
|
1839
1839
|
* @public
|
|
1840
1840
|
*/
|
|
1841
|
-
OwnerAccountId?: string;
|
|
1841
|
+
OwnerAccountId?: string | undefined;
|
|
1842
1842
|
/**
|
|
1843
1843
|
* <p>The Amazon Web Services account ID of the service creator.</p>
|
|
1844
1844
|
* @public
|
|
1845
1845
|
*/
|
|
1846
|
-
CreatedByAccountId?: string;
|
|
1846
|
+
CreatedByAccountId?: string | undefined;
|
|
1847
1847
|
/**
|
|
1848
1848
|
* <p>The description of the service. </p>
|
|
1849
1849
|
* @public
|
|
1850
1850
|
*/
|
|
1851
|
-
Description?: string;
|
|
1851
|
+
Description?: string | undefined;
|
|
1852
1852
|
/**
|
|
1853
1853
|
* <p>The unique identifier of the environment.</p>
|
|
1854
1854
|
* @public
|
|
1855
1855
|
*/
|
|
1856
|
-
EnvironmentId?: string;
|
|
1856
|
+
EnvironmentId?: string | undefined;
|
|
1857
1857
|
/**
|
|
1858
1858
|
* <p>The ID of the application.</p>
|
|
1859
1859
|
* @public
|
|
1860
1860
|
*/
|
|
1861
|
-
ApplicationId?: string;
|
|
1861
|
+
ApplicationId?: string | undefined;
|
|
1862
1862
|
/**
|
|
1863
1863
|
* <p>The ID of the virtual private cloud (VPC). </p>
|
|
1864
1864
|
* @public
|
|
1865
1865
|
*/
|
|
1866
|
-
VpcId?: string;
|
|
1866
|
+
VpcId?: string | undefined;
|
|
1867
1867
|
/**
|
|
1868
1868
|
* <p>The endpoint type of the service.</p>
|
|
1869
1869
|
* @public
|
|
1870
1870
|
*/
|
|
1871
|
-
EndpointType?: ServiceEndpointType;
|
|
1871
|
+
EndpointType?: ServiceEndpointType | undefined;
|
|
1872
1872
|
/**
|
|
1873
1873
|
* <p>The configuration for the URL endpoint type.</p>
|
|
1874
1874
|
* <p>The <b>Url</b> isthe URL of the endpoint type.</p>
|
|
@@ -1876,38 +1876,38 @@ export interface GetServiceResponse {
|
|
|
1876
1876
|
* type. </p>
|
|
1877
1877
|
* @public
|
|
1878
1878
|
*/
|
|
1879
|
-
UrlEndpoint?: UrlEndpointConfig;
|
|
1879
|
+
UrlEndpoint?: UrlEndpointConfig | undefined;
|
|
1880
1880
|
/**
|
|
1881
1881
|
* <p>The configuration for the Lambda endpoint type.</p>
|
|
1882
1882
|
* <p>The <b>Arn</b> is the Amazon Resource Name (ARN) of the Lambda function associated with this service. </p>
|
|
1883
1883
|
* @public
|
|
1884
1884
|
*/
|
|
1885
|
-
LambdaEndpoint?: LambdaEndpointConfig;
|
|
1885
|
+
LambdaEndpoint?: LambdaEndpointConfig | undefined;
|
|
1886
1886
|
/**
|
|
1887
1887
|
* <p>The current state of the service. </p>
|
|
1888
1888
|
* @public
|
|
1889
1889
|
*/
|
|
1890
|
-
State?: ServiceState;
|
|
1890
|
+
State?: ServiceState | undefined;
|
|
1891
1891
|
/**
|
|
1892
1892
|
* <p>The tags assigned to the service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
1893
1893
|
* @public
|
|
1894
1894
|
*/
|
|
1895
|
-
Tags?: Record<string, string
|
|
1895
|
+
Tags?: Record<string, string> | undefined;
|
|
1896
1896
|
/**
|
|
1897
1897
|
* <p>Any error associated with the service resource. </p>
|
|
1898
1898
|
* @public
|
|
1899
1899
|
*/
|
|
1900
|
-
Error?: ErrorResponse;
|
|
1900
|
+
Error?: ErrorResponse | undefined;
|
|
1901
1901
|
/**
|
|
1902
1902
|
* <p>A timestamp that indicates when the service was last updated. </p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
LastUpdatedTime?: Date;
|
|
1905
|
+
LastUpdatedTime?: Date | undefined;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* <p>The timestamp of when the service is created.</p>
|
|
1908
1908
|
* @public
|
|
1909
1909
|
*/
|
|
1910
|
-
CreatedTime?: Date;
|
|
1910
|
+
CreatedTime?: Date | undefined;
|
|
1911
1911
|
}
|
|
1912
1912
|
/**
|
|
1913
1913
|
* <p>The resource policy is not valid.</p>
|
|
@@ -1931,7 +1931,7 @@ export interface LambdaEndpointSummary {
|
|
|
1931
1931
|
* <p>The Amazon Resource Name (ARN) of the Lambda endpoint. </p>
|
|
1932
1932
|
* @public
|
|
1933
1933
|
*/
|
|
1934
|
-
Arn?: string;
|
|
1934
|
+
Arn?: string | undefined;
|
|
1935
1935
|
}
|
|
1936
1936
|
/**
|
|
1937
1937
|
* @public
|
|
@@ -1946,13 +1946,13 @@ export interface ListApplicationsRequest {
|
|
|
1946
1946
|
* <p>The token for the next page of results.</p>
|
|
1947
1947
|
* @public
|
|
1948
1948
|
*/
|
|
1949
|
-
NextToken?: string;
|
|
1949
|
+
NextToken?: string | undefined;
|
|
1950
1950
|
/**
|
|
1951
1951
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
1952
1952
|
* results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1953
1953
|
* @public
|
|
1954
1954
|
*/
|
|
1955
|
-
MaxResults?: number;
|
|
1955
|
+
MaxResults?: number | undefined;
|
|
1956
1956
|
}
|
|
1957
1957
|
/**
|
|
1958
1958
|
* @public
|
|
@@ -1962,12 +1962,12 @@ export interface ListApplicationsResponse {
|
|
|
1962
1962
|
* <p>The list of <code>ApplicationSummary</code> objects. </p>
|
|
1963
1963
|
* @public
|
|
1964
1964
|
*/
|
|
1965
|
-
ApplicationSummaryList?: ApplicationSummary[];
|
|
1965
|
+
ApplicationSummaryList?: ApplicationSummary[] | undefined;
|
|
1966
1966
|
/**
|
|
1967
1967
|
* <p>The token for the next page of results.</p>
|
|
1968
1968
|
* @public
|
|
1969
1969
|
*/
|
|
1970
|
-
NextToken?: string;
|
|
1970
|
+
NextToken?: string | undefined;
|
|
1971
1971
|
}
|
|
1972
1972
|
/**
|
|
1973
1973
|
* @public
|
|
@@ -1977,13 +1977,13 @@ export interface ListEnvironmentsRequest {
|
|
|
1977
1977
|
* <p>The token for the next page of results.</p>
|
|
1978
1978
|
* @public
|
|
1979
1979
|
*/
|
|
1980
|
-
NextToken?: string;
|
|
1980
|
+
NextToken?: string | undefined;
|
|
1981
1981
|
/**
|
|
1982
1982
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
1983
1983
|
* results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1984
1984
|
* @public
|
|
1985
1985
|
*/
|
|
1986
|
-
MaxResults?: number;
|
|
1986
|
+
MaxResults?: number | undefined;
|
|
1987
1987
|
}
|
|
1988
1988
|
/**
|
|
1989
1989
|
* @public
|
|
@@ -1993,12 +1993,12 @@ export interface ListEnvironmentsResponse {
|
|
|
1993
1993
|
* <p>The list of <code>EnvironmentSummary</code> objects. </p>
|
|
1994
1994
|
* @public
|
|
1995
1995
|
*/
|
|
1996
|
-
EnvironmentSummaryList?: EnvironmentSummary[];
|
|
1996
|
+
EnvironmentSummaryList?: EnvironmentSummary[] | undefined;
|
|
1997
1997
|
/**
|
|
1998
1998
|
* <p>The token for the next page of results.</p>
|
|
1999
1999
|
* @public
|
|
2000
2000
|
*/
|
|
2001
|
-
NextToken?: string;
|
|
2001
|
+
NextToken?: string | undefined;
|
|
2002
2002
|
}
|
|
2003
2003
|
/**
|
|
2004
2004
|
* @public
|
|
@@ -2013,13 +2013,13 @@ export interface ListEnvironmentVpcsRequest {
|
|
|
2013
2013
|
* <p>The token for the next page of results.</p>
|
|
2014
2014
|
* @public
|
|
2015
2015
|
*/
|
|
2016
|
-
NextToken?: string;
|
|
2016
|
+
NextToken?: string | undefined;
|
|
2017
2017
|
/**
|
|
2018
2018
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
2019
2019
|
* results, make another call with the returned <code>nextToken</code> value.</p>
|
|
2020
2020
|
* @public
|
|
2021
2021
|
*/
|
|
2022
|
-
MaxResults?: number;
|
|
2022
|
+
MaxResults?: number | undefined;
|
|
2023
2023
|
}
|
|
2024
2024
|
/**
|
|
2025
2025
|
* @public
|
|
@@ -2029,12 +2029,12 @@ export interface ListEnvironmentVpcsResponse {
|
|
|
2029
2029
|
* <p>The list of <code>EnvironmentVpc</code> objects. </p>
|
|
2030
2030
|
* @public
|
|
2031
2031
|
*/
|
|
2032
|
-
EnvironmentVpcList?: EnvironmentVpc[];
|
|
2032
|
+
EnvironmentVpcList?: EnvironmentVpc[] | undefined;
|
|
2033
2033
|
/**
|
|
2034
2034
|
* <p>The token for the next page of results.</p>
|
|
2035
2035
|
* @public
|
|
2036
2036
|
*/
|
|
2037
|
-
NextToken?: string;
|
|
2037
|
+
NextToken?: string | undefined;
|
|
2038
2038
|
}
|
|
2039
2039
|
/**
|
|
2040
2040
|
* @public
|
|
@@ -2054,13 +2054,13 @@ export interface ListRoutesRequest {
|
|
|
2054
2054
|
* <p>The token for the next page of results.</p>
|
|
2055
2055
|
* @public
|
|
2056
2056
|
*/
|
|
2057
|
-
NextToken?: string;
|
|
2057
|
+
NextToken?: string | undefined;
|
|
2058
2058
|
/**
|
|
2059
2059
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
2060
2060
|
* results, make another call with the returned <code>nextToken</code> value.</p>
|
|
2061
2061
|
* @public
|
|
2062
2062
|
*/
|
|
2063
|
-
MaxResults?: number;
|
|
2063
|
+
MaxResults?: number | undefined;
|
|
2064
2064
|
}
|
|
2065
2065
|
/**
|
|
2066
2066
|
* <p>The summary information for the routes as a response to <code>ListRoutes</code>. </p>
|
|
@@ -2071,96 +2071,96 @@ export interface RouteSummary {
|
|
|
2071
2071
|
* <p>The unique identifier of the route. </p>
|
|
2072
2072
|
* @public
|
|
2073
2073
|
*/
|
|
2074
|
-
RouteId?: string;
|
|
2074
|
+
RouteId?: string | undefined;
|
|
2075
2075
|
/**
|
|
2076
2076
|
* <p>The Amazon Resource Name (ARN) of the route. </p>
|
|
2077
2077
|
* @public
|
|
2078
2078
|
*/
|
|
2079
|
-
Arn?: string;
|
|
2079
|
+
Arn?: string | undefined;
|
|
2080
2080
|
/**
|
|
2081
2081
|
* <p>The Amazon Web Services account ID of the route owner.</p>
|
|
2082
2082
|
* @public
|
|
2083
2083
|
*/
|
|
2084
|
-
OwnerAccountId?: string;
|
|
2084
|
+
OwnerAccountId?: string | undefined;
|
|
2085
2085
|
/**
|
|
2086
2086
|
* <p>The Amazon Web Services account ID of the route creator. </p>
|
|
2087
2087
|
* @public
|
|
2088
2088
|
*/
|
|
2089
|
-
CreatedByAccountId?: string;
|
|
2089
|
+
CreatedByAccountId?: string | undefined;
|
|
2090
2090
|
/**
|
|
2091
2091
|
* <p>The route type of the route. </p>
|
|
2092
2092
|
* @public
|
|
2093
2093
|
*/
|
|
2094
|
-
RouteType?: RouteType;
|
|
2094
|
+
RouteType?: RouteType | undefined;
|
|
2095
2095
|
/**
|
|
2096
2096
|
* <p>The unique identifier of the service. </p>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
ServiceId?: string;
|
|
2099
|
+
ServiceId?: string | undefined;
|
|
2100
2100
|
/**
|
|
2101
2101
|
* <p>The unique identifier of the application. </p>
|
|
2102
2102
|
* @public
|
|
2103
2103
|
*/
|
|
2104
|
-
ApplicationId?: string;
|
|
2104
|
+
ApplicationId?: string | undefined;
|
|
2105
2105
|
/**
|
|
2106
2106
|
* <p>The unique identifier of the environment. </p>
|
|
2107
2107
|
* @public
|
|
2108
2108
|
*/
|
|
2109
|
-
EnvironmentId?: string;
|
|
2109
|
+
EnvironmentId?: string | undefined;
|
|
2110
2110
|
/**
|
|
2111
2111
|
* <p>This is the path that Refactor Spaces uses to match traffic. Paths must start with <code>/</code> and are relative to
|
|
2112
2112
|
* the base of the application. To use path parameters in the source path, add a variable in curly braces. For example, the resource path \{user\} represents a path parameter called 'user'.</p>
|
|
2113
2113
|
* @public
|
|
2114
2114
|
*/
|
|
2115
|
-
SourcePath?: string;
|
|
2115
|
+
SourcePath?: string | undefined;
|
|
2116
2116
|
/**
|
|
2117
2117
|
* <p>A list of HTTP methods to match. An empty list matches all values. If a method is present,
|
|
2118
2118
|
* only HTTP requests using that method are forwarded to this route’s service. </p>
|
|
2119
2119
|
* @public
|
|
2120
2120
|
*/
|
|
2121
|
-
Methods?: HttpMethod[];
|
|
2121
|
+
Methods?: HttpMethod[] | undefined;
|
|
2122
2122
|
/**
|
|
2123
2123
|
* <p>Indicates whether to match all subpaths of the given source path. If this value is
|
|
2124
2124
|
* <code>false</code>, requests must match the source path exactly before they are forwarded to
|
|
2125
2125
|
* this route's service.</p>
|
|
2126
2126
|
* @public
|
|
2127
2127
|
*/
|
|
2128
|
-
IncludeChildPaths?: boolean;
|
|
2128
|
+
IncludeChildPaths?: boolean | undefined;
|
|
2129
2129
|
/**
|
|
2130
2130
|
* <p>A mapping of Amazon API Gateway path resources to resource IDs. </p>
|
|
2131
2131
|
* @public
|
|
2132
2132
|
*/
|
|
2133
|
-
PathResourceToId?: Record<string, string
|
|
2133
|
+
PathResourceToId?: Record<string, string> | undefined;
|
|
2134
2134
|
/**
|
|
2135
2135
|
* <p>The current state of the route. </p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
State?: RouteState;
|
|
2138
|
+
State?: RouteState | undefined;
|
|
2139
2139
|
/**
|
|
2140
2140
|
* <p>The tags assigned to the route. </p>
|
|
2141
2141
|
* @public
|
|
2142
2142
|
*/
|
|
2143
|
-
Tags?: Record<string, string
|
|
2143
|
+
Tags?: Record<string, string> | undefined;
|
|
2144
2144
|
/**
|
|
2145
2145
|
* <p>Any error associated with the route resource. </p>
|
|
2146
2146
|
* @public
|
|
2147
2147
|
*/
|
|
2148
|
-
Error?: ErrorResponse;
|
|
2148
|
+
Error?: ErrorResponse | undefined;
|
|
2149
2149
|
/**
|
|
2150
2150
|
* <p>A timestamp that indicates when the route was last updated. </p>
|
|
2151
2151
|
* @public
|
|
2152
2152
|
*/
|
|
2153
|
-
LastUpdatedTime?: Date;
|
|
2153
|
+
LastUpdatedTime?: Date | undefined;
|
|
2154
2154
|
/**
|
|
2155
2155
|
* <p>A timestamp that indicates when the route is created. </p>
|
|
2156
2156
|
* @public
|
|
2157
2157
|
*/
|
|
2158
|
-
CreatedTime?: Date;
|
|
2158
|
+
CreatedTime?: Date | undefined;
|
|
2159
2159
|
/**
|
|
2160
2160
|
* <p>If set to <code>true</code>, this option appends the source path to the service URL endpoint.</p>
|
|
2161
2161
|
* @public
|
|
2162
2162
|
*/
|
|
2163
|
-
AppendSourcePath?: boolean;
|
|
2163
|
+
AppendSourcePath?: boolean | undefined;
|
|
2164
2164
|
}
|
|
2165
2165
|
/**
|
|
2166
2166
|
* @public
|
|
@@ -2170,12 +2170,12 @@ export interface ListRoutesResponse {
|
|
|
2170
2170
|
* <p>The list of <code>RouteSummary</code> objects. </p>
|
|
2171
2171
|
* @public
|
|
2172
2172
|
*/
|
|
2173
|
-
RouteSummaryList?: RouteSummary[];
|
|
2173
|
+
RouteSummaryList?: RouteSummary[] | undefined;
|
|
2174
2174
|
/**
|
|
2175
2175
|
* <p>The token for the next page of results.</p>
|
|
2176
2176
|
* @public
|
|
2177
2177
|
*/
|
|
2178
|
-
NextToken?: string;
|
|
2178
|
+
NextToken?: string | undefined;
|
|
2179
2179
|
}
|
|
2180
2180
|
/**
|
|
2181
2181
|
* @public
|
|
@@ -2195,13 +2195,13 @@ export interface ListServicesRequest {
|
|
|
2195
2195
|
* <p>The token for the next page of results.</p>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
NextToken?: string;
|
|
2198
|
+
NextToken?: string | undefined;
|
|
2199
2199
|
/**
|
|
2200
2200
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
2201
2201
|
* results, make another call with the returned <code>nextToken</code> value.</p>
|
|
2202
2202
|
* @public
|
|
2203
2203
|
*/
|
|
2204
|
-
MaxResults?: number;
|
|
2204
|
+
MaxResults?: number | undefined;
|
|
2205
2205
|
}
|
|
2206
2206
|
/**
|
|
2207
2207
|
* <p>The summary of the configuration for the URL endpoint type. </p>
|
|
@@ -2214,7 +2214,7 @@ export interface UrlEndpointSummary {
|
|
|
2214
2214
|
* <code>https</code>, the top level domain of the host must be listed in the <a href="https://www.iana.org/domains/root/db">IANA root zone database</a>. </p>
|
|
2215
2215
|
* @public
|
|
2216
2216
|
*/
|
|
2217
|
-
Url?: string;
|
|
2217
|
+
Url?: string | undefined;
|
|
2218
2218
|
/**
|
|
2219
2219
|
* <p>The health check URL of the URL endpoint type. If the URL is a public endpoint, the
|
|
2220
2220
|
* <code>HealthUrl</code> must also be a public endpoint. If the URL is a private endpoint
|
|
@@ -2222,7 +2222,7 @@ export interface UrlEndpointSummary {
|
|
|
2222
2222
|
* host must be the same as the URL.</p>
|
|
2223
2223
|
* @public
|
|
2224
2224
|
*/
|
|
2225
|
-
HealthUrl?: string;
|
|
2225
|
+
HealthUrl?: string | undefined;
|
|
2226
2226
|
}
|
|
2227
2227
|
/**
|
|
2228
2228
|
* <p>A summary for the service as a response to <code>ListServices</code>. </p>
|
|
@@ -2233,87 +2233,87 @@ export interface ServiceSummary {
|
|
|
2233
2233
|
* <p>The unique identifier of the service. </p>
|
|
2234
2234
|
* @public
|
|
2235
2235
|
*/
|
|
2236
|
-
ServiceId?: string;
|
|
2236
|
+
ServiceId?: string | undefined;
|
|
2237
2237
|
/**
|
|
2238
2238
|
* <p>The name of the service. </p>
|
|
2239
2239
|
* @public
|
|
2240
2240
|
*/
|
|
2241
|
-
Name?: string;
|
|
2241
|
+
Name?: string | undefined;
|
|
2242
2242
|
/**
|
|
2243
2243
|
* <p>The Amazon Resource Name (ARN) of the service. </p>
|
|
2244
2244
|
* @public
|
|
2245
2245
|
*/
|
|
2246
|
-
Arn?: string;
|
|
2246
|
+
Arn?: string | undefined;
|
|
2247
2247
|
/**
|
|
2248
2248
|
* <p>The Amazon Web Services account ID of the service owner.</p>
|
|
2249
2249
|
* @public
|
|
2250
2250
|
*/
|
|
2251
|
-
OwnerAccountId?: string;
|
|
2251
|
+
OwnerAccountId?: string | undefined;
|
|
2252
2252
|
/**
|
|
2253
2253
|
* <p>The Amazon Web Services account ID of the service creator. </p>
|
|
2254
2254
|
* @public
|
|
2255
2255
|
*/
|
|
2256
|
-
CreatedByAccountId?: string;
|
|
2256
|
+
CreatedByAccountId?: string | undefined;
|
|
2257
2257
|
/**
|
|
2258
2258
|
* <p>A description of the service. </p>
|
|
2259
2259
|
* @public
|
|
2260
2260
|
*/
|
|
2261
|
-
Description?: string;
|
|
2261
|
+
Description?: string | undefined;
|
|
2262
2262
|
/**
|
|
2263
2263
|
* <p>The unique identifier of the environment. </p>
|
|
2264
2264
|
* @public
|
|
2265
2265
|
*/
|
|
2266
|
-
EnvironmentId?: string;
|
|
2266
|
+
EnvironmentId?: string | undefined;
|
|
2267
2267
|
/**
|
|
2268
2268
|
* <p>The unique identifier of the application. </p>
|
|
2269
2269
|
* @public
|
|
2270
2270
|
*/
|
|
2271
|
-
ApplicationId?: string;
|
|
2271
|
+
ApplicationId?: string | undefined;
|
|
2272
2272
|
/**
|
|
2273
2273
|
* <p>The ID of the virtual private cloud (VPC). </p>
|
|
2274
2274
|
* @public
|
|
2275
2275
|
*/
|
|
2276
|
-
VpcId?: string;
|
|
2276
|
+
VpcId?: string | undefined;
|
|
2277
2277
|
/**
|
|
2278
2278
|
* <p>The endpoint type of the service. </p>
|
|
2279
2279
|
* @public
|
|
2280
2280
|
*/
|
|
2281
|
-
EndpointType?: ServiceEndpointType;
|
|
2281
|
+
EndpointType?: ServiceEndpointType | undefined;
|
|
2282
2282
|
/**
|
|
2283
2283
|
* <p>The summary of the configuration for the URL endpoint type. </p>
|
|
2284
2284
|
* @public
|
|
2285
2285
|
*/
|
|
2286
|
-
UrlEndpoint?: UrlEndpointSummary;
|
|
2286
|
+
UrlEndpoint?: UrlEndpointSummary | undefined;
|
|
2287
2287
|
/**
|
|
2288
2288
|
* <p>A summary of the configuration for the Lambda endpoint type. </p>
|
|
2289
2289
|
* @public
|
|
2290
2290
|
*/
|
|
2291
|
-
LambdaEndpoint?: LambdaEndpointSummary;
|
|
2291
|
+
LambdaEndpoint?: LambdaEndpointSummary | undefined;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* <p>The current state of the service. </p>
|
|
2294
2294
|
* @public
|
|
2295
2295
|
*/
|
|
2296
|
-
State?: ServiceState;
|
|
2296
|
+
State?: ServiceState | undefined;
|
|
2297
2297
|
/**
|
|
2298
2298
|
* <p>The tags assigned to the service. </p>
|
|
2299
2299
|
* @public
|
|
2300
2300
|
*/
|
|
2301
|
-
Tags?: Record<string, string
|
|
2301
|
+
Tags?: Record<string, string> | undefined;
|
|
2302
2302
|
/**
|
|
2303
2303
|
* <p>Any error associated with the service resource. </p>
|
|
2304
2304
|
* @public
|
|
2305
2305
|
*/
|
|
2306
|
-
Error?: ErrorResponse;
|
|
2306
|
+
Error?: ErrorResponse | undefined;
|
|
2307
2307
|
/**
|
|
2308
2308
|
* <p>A timestamp that indicates when the service was last updated. </p>
|
|
2309
2309
|
* @public
|
|
2310
2310
|
*/
|
|
2311
|
-
LastUpdatedTime?: Date;
|
|
2311
|
+
LastUpdatedTime?: Date | undefined;
|
|
2312
2312
|
/**
|
|
2313
2313
|
* <p>A timestamp that indicates when the service is created. </p>
|
|
2314
2314
|
* @public
|
|
2315
2315
|
*/
|
|
2316
|
-
CreatedTime?: Date;
|
|
2316
|
+
CreatedTime?: Date | undefined;
|
|
2317
2317
|
}
|
|
2318
2318
|
/**
|
|
2319
2319
|
* @public
|
|
@@ -2323,12 +2323,12 @@ export interface ListServicesResponse {
|
|
|
2323
2323
|
* <p> The list of <code>ServiceSummary</code> objects. </p>
|
|
2324
2324
|
* @public
|
|
2325
2325
|
*/
|
|
2326
|
-
ServiceSummaryList?: ServiceSummary[];
|
|
2326
|
+
ServiceSummaryList?: ServiceSummary[] | undefined;
|
|
2327
2327
|
/**
|
|
2328
2328
|
* <p>The token for the next page of results.</p>
|
|
2329
2329
|
* @public
|
|
2330
2330
|
*/
|
|
2331
|
-
NextToken?: string;
|
|
2331
|
+
NextToken?: string | undefined;
|
|
2332
2332
|
}
|
|
2333
2333
|
/**
|
|
2334
2334
|
* @public
|
|
@@ -2348,7 +2348,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2348
2348
|
* <p>The list of tags assigned to the resource. </p>
|
|
2349
2349
|
* @public
|
|
2350
2350
|
*/
|
|
2351
|
-
Tags?: Record<string, string
|
|
2351
|
+
Tags?: Record<string, string> | undefined;
|
|
2352
2352
|
}
|
|
2353
2353
|
/**
|
|
2354
2354
|
* @public
|
|
@@ -2445,7 +2445,7 @@ export interface UpdateRouteResponse {
|
|
|
2445
2445
|
* <p> The unique identifier of the route. </p>
|
|
2446
2446
|
* @public
|
|
2447
2447
|
*/
|
|
2448
|
-
RouteId?: string;
|
|
2448
|
+
RouteId?: string | undefined;
|
|
2449
2449
|
/**
|
|
2450
2450
|
* <p> The Amazon Resource Name (ARN) of the route. The format for this ARN is
|
|
2451
2451
|
* <code>arn:aws:refactor-spaces:<i>region</i>:<i>account-id</i>:<i>resource-type/resource-id</i>
|
|
@@ -2455,28 +2455,28 @@ export interface UpdateRouteResponse {
|
|
|
2455
2455
|
* <i>Amazon Web Services General Reference</i>. </p>
|
|
2456
2456
|
* @public
|
|
2457
2457
|
*/
|
|
2458
|
-
Arn?: string;
|
|
2458
|
+
Arn?: string | undefined;
|
|
2459
2459
|
/**
|
|
2460
2460
|
* <p> The ID of service in which the route was created. Traffic that matches this route is
|
|
2461
2461
|
* forwarded to this service. </p>
|
|
2462
2462
|
* @public
|
|
2463
2463
|
*/
|
|
2464
|
-
ServiceId?: string;
|
|
2464
|
+
ServiceId?: string | undefined;
|
|
2465
2465
|
/**
|
|
2466
2466
|
* <p> The ID of the application in which the route is being updated. </p>
|
|
2467
2467
|
* @public
|
|
2468
2468
|
*/
|
|
2469
|
-
ApplicationId?: string;
|
|
2469
|
+
ApplicationId?: string | undefined;
|
|
2470
2470
|
/**
|
|
2471
2471
|
* <p> The current state of the route. </p>
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
State?: RouteState;
|
|
2474
|
+
State?: RouteState | undefined;
|
|
2475
2475
|
/**
|
|
2476
2476
|
* <p> A timestamp that indicates when the route was last updated. </p>
|
|
2477
2477
|
* @public
|
|
2478
2478
|
*/
|
|
2479
|
-
LastUpdatedTime?: Date;
|
|
2479
|
+
LastUpdatedTime?: Date | undefined;
|
|
2480
2480
|
}
|
|
2481
2481
|
/**
|
|
2482
2482
|
* @internal
|