@aws-sdk/client-migration-hub-refactor-spaces 3.687.0 → 3.692.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 +35 -35
|
@@ -15,26 +15,26 @@ export declare const ApiGatewayEndpointType: {
|
|
|
15
15
|
export type ApiGatewayEndpointType =
|
|
16
16
|
(typeof ApiGatewayEndpointType)[keyof typeof ApiGatewayEndpointType];
|
|
17
17
|
export interface ApiGatewayProxyConfig {
|
|
18
|
-
ProxyUrl?: string;
|
|
19
|
-
ApiGatewayId?: string;
|
|
20
|
-
VpcLinkId?: string;
|
|
21
|
-
NlbArn?: string;
|
|
22
|
-
NlbName?: string;
|
|
23
|
-
EndpointType?: ApiGatewayEndpointType;
|
|
24
|
-
StageName?: string;
|
|
18
|
+
ProxyUrl?: string | undefined;
|
|
19
|
+
ApiGatewayId?: string | undefined;
|
|
20
|
+
VpcLinkId?: string | undefined;
|
|
21
|
+
NlbArn?: string | undefined;
|
|
22
|
+
NlbName?: string | undefined;
|
|
23
|
+
EndpointType?: ApiGatewayEndpointType | undefined;
|
|
24
|
+
StageName?: string | undefined;
|
|
25
25
|
}
|
|
26
26
|
export interface ApiGatewayProxyInput {
|
|
27
|
-
EndpointType?: ApiGatewayEndpointType;
|
|
28
|
-
StageName?: string;
|
|
27
|
+
EndpointType?: ApiGatewayEndpointType | undefined;
|
|
28
|
+
StageName?: string | undefined;
|
|
29
29
|
}
|
|
30
30
|
export interface ApiGatewayProxySummary {
|
|
31
|
-
ProxyUrl?: string;
|
|
32
|
-
ApiGatewayId?: string;
|
|
33
|
-
VpcLinkId?: string;
|
|
34
|
-
NlbArn?: string;
|
|
35
|
-
NlbName?: string;
|
|
36
|
-
EndpointType?: ApiGatewayEndpointType;
|
|
37
|
-
StageName?: string;
|
|
31
|
+
ProxyUrl?: string | undefined;
|
|
32
|
+
ApiGatewayId?: string | undefined;
|
|
33
|
+
VpcLinkId?: string | undefined;
|
|
34
|
+
NlbArn?: string | undefined;
|
|
35
|
+
NlbName?: string | undefined;
|
|
36
|
+
EndpointType?: ApiGatewayEndpointType | undefined;
|
|
37
|
+
StageName?: string | undefined;
|
|
38
38
|
}
|
|
39
39
|
export declare const ApplicationState: {
|
|
40
40
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -84,32 +84,32 @@ export declare const ErrorResourceType: {
|
|
|
84
84
|
export type ErrorResourceType =
|
|
85
85
|
(typeof ErrorResourceType)[keyof typeof ErrorResourceType];
|
|
86
86
|
export interface ErrorResponse {
|
|
87
|
-
Code?: ErrorCode;
|
|
88
|
-
Message?: string;
|
|
89
|
-
AccountId?: string;
|
|
90
|
-
ResourceIdentifier?: string;
|
|
91
|
-
ResourceType?: ErrorResourceType;
|
|
92
|
-
AdditionalDetails?: Record<string, string
|
|
87
|
+
Code?: ErrorCode | undefined;
|
|
88
|
+
Message?: string | undefined;
|
|
89
|
+
AccountId?: string | undefined;
|
|
90
|
+
ResourceIdentifier?: string | undefined;
|
|
91
|
+
ResourceType?: ErrorResourceType | undefined;
|
|
92
|
+
AdditionalDetails?: Record<string, string> | undefined;
|
|
93
93
|
}
|
|
94
94
|
export declare const ProxyType: {
|
|
95
95
|
readonly API_GATEWAY: "API_GATEWAY";
|
|
96
96
|
};
|
|
97
97
|
export type ProxyType = (typeof ProxyType)[keyof typeof ProxyType];
|
|
98
98
|
export interface ApplicationSummary {
|
|
99
|
-
Name?: string;
|
|
100
|
-
Arn?: string;
|
|
101
|
-
OwnerAccountId?: string;
|
|
102
|
-
CreatedByAccountId?: string;
|
|
103
|
-
ApplicationId?: string;
|
|
104
|
-
EnvironmentId?: string;
|
|
105
|
-
VpcId?: string;
|
|
106
|
-
ProxyType?: ProxyType;
|
|
107
|
-
ApiGatewayProxy?: ApiGatewayProxySummary;
|
|
108
|
-
State?: ApplicationState;
|
|
109
|
-
Tags?: Record<string, string
|
|
110
|
-
Error?: ErrorResponse;
|
|
111
|
-
LastUpdatedTime?: Date;
|
|
112
|
-
CreatedTime?: Date;
|
|
99
|
+
Name?: string | undefined;
|
|
100
|
+
Arn?: string | undefined;
|
|
101
|
+
OwnerAccountId?: string | undefined;
|
|
102
|
+
CreatedByAccountId?: string | undefined;
|
|
103
|
+
ApplicationId?: string | undefined;
|
|
104
|
+
EnvironmentId?: string | undefined;
|
|
105
|
+
VpcId?: string | undefined;
|
|
106
|
+
ProxyType?: ProxyType | undefined;
|
|
107
|
+
ApiGatewayProxy?: ApiGatewayProxySummary | undefined;
|
|
108
|
+
State?: ApplicationState | undefined;
|
|
109
|
+
Tags?: Record<string, string> | undefined;
|
|
110
|
+
Error?: ErrorResponse | undefined;
|
|
111
|
+
LastUpdatedTime?: Date | undefined;
|
|
112
|
+
CreatedTime?: Date | undefined;
|
|
113
113
|
}
|
|
114
114
|
export declare class ConflictException extends __BaseException {
|
|
115
115
|
readonly name: "ConflictException";
|
|
@@ -124,24 +124,24 @@ export interface CreateApplicationRequest {
|
|
|
124
124
|
EnvironmentIdentifier: string | undefined;
|
|
125
125
|
VpcId: string | undefined;
|
|
126
126
|
ProxyType: ProxyType | undefined;
|
|
127
|
-
ApiGatewayProxy?: ApiGatewayProxyInput;
|
|
128
|
-
Tags?: Record<string, string
|
|
129
|
-
ClientToken?: string;
|
|
127
|
+
ApiGatewayProxy?: ApiGatewayProxyInput | undefined;
|
|
128
|
+
Tags?: Record<string, string> | undefined;
|
|
129
|
+
ClientToken?: string | undefined;
|
|
130
130
|
}
|
|
131
131
|
export interface CreateApplicationResponse {
|
|
132
|
-
Name?: string;
|
|
133
|
-
Arn?: string;
|
|
134
|
-
OwnerAccountId?: string;
|
|
135
|
-
CreatedByAccountId?: string;
|
|
136
|
-
ApplicationId?: string;
|
|
137
|
-
EnvironmentId?: string;
|
|
138
|
-
VpcId?: string;
|
|
139
|
-
ProxyType?: ProxyType;
|
|
140
|
-
ApiGatewayProxy?: ApiGatewayProxyInput;
|
|
141
|
-
State?: ApplicationState;
|
|
142
|
-
Tags?: Record<string, string
|
|
143
|
-
LastUpdatedTime?: Date;
|
|
144
|
-
CreatedTime?: Date;
|
|
132
|
+
Name?: string | undefined;
|
|
133
|
+
Arn?: string | undefined;
|
|
134
|
+
OwnerAccountId?: string | undefined;
|
|
135
|
+
CreatedByAccountId?: string | undefined;
|
|
136
|
+
ApplicationId?: string | undefined;
|
|
137
|
+
EnvironmentId?: string | undefined;
|
|
138
|
+
VpcId?: string | undefined;
|
|
139
|
+
ProxyType?: ProxyType | undefined;
|
|
140
|
+
ApiGatewayProxy?: ApiGatewayProxyInput | undefined;
|
|
141
|
+
State?: ApplicationState | undefined;
|
|
142
|
+
Tags?: Record<string, string> | undefined;
|
|
143
|
+
LastUpdatedTime?: Date | undefined;
|
|
144
|
+
CreatedTime?: Date | undefined;
|
|
145
145
|
}
|
|
146
146
|
export declare class InternalServerException extends __BaseException {
|
|
147
147
|
readonly name: "InternalServerException";
|
|
@@ -167,7 +167,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
167
167
|
Message: string | undefined;
|
|
168
168
|
ResourceId: string | undefined;
|
|
169
169
|
ResourceType: string | undefined;
|
|
170
|
-
QuotaCode?: string;
|
|
170
|
+
QuotaCode?: string | undefined;
|
|
171
171
|
ServiceCode: string | undefined;
|
|
172
172
|
constructor(
|
|
173
173
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
@@ -177,9 +177,9 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
177
177
|
readonly name: "ThrottlingException";
|
|
178
178
|
readonly $fault: "client";
|
|
179
179
|
Message: string | undefined;
|
|
180
|
-
QuotaCode?: string;
|
|
181
|
-
ServiceCode?: string;
|
|
182
|
-
RetryAfterSeconds?: number;
|
|
180
|
+
QuotaCode?: string | undefined;
|
|
181
|
+
ServiceCode?: string | undefined;
|
|
182
|
+
RetryAfterSeconds?: number | undefined;
|
|
183
183
|
constructor(
|
|
184
184
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
185
185
|
);
|
|
@@ -200,10 +200,10 @@ export type NetworkFabricType =
|
|
|
200
200
|
(typeof NetworkFabricType)[keyof typeof NetworkFabricType];
|
|
201
201
|
export interface CreateEnvironmentRequest {
|
|
202
202
|
Name: string | undefined;
|
|
203
|
-
Description?: string;
|
|
203
|
+
Description?: string | undefined;
|
|
204
204
|
NetworkFabricType: NetworkFabricType | undefined;
|
|
205
|
-
Tags?: Record<string, string
|
|
206
|
-
ClientToken?: string;
|
|
205
|
+
Tags?: Record<string, string> | undefined;
|
|
206
|
+
ClientToken?: string | undefined;
|
|
207
207
|
}
|
|
208
208
|
export declare const EnvironmentState: {
|
|
209
209
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -214,16 +214,16 @@ export declare const EnvironmentState: {
|
|
|
214
214
|
export type EnvironmentState =
|
|
215
215
|
(typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
216
216
|
export interface CreateEnvironmentResponse {
|
|
217
|
-
Name?: string;
|
|
218
|
-
Arn?: string;
|
|
219
|
-
Description?: string;
|
|
220
|
-
EnvironmentId?: string;
|
|
221
|
-
NetworkFabricType?: NetworkFabricType;
|
|
222
|
-
OwnerAccountId?: string;
|
|
223
|
-
State?: EnvironmentState;
|
|
224
|
-
Tags?: Record<string, string
|
|
225
|
-
LastUpdatedTime?: Date;
|
|
226
|
-
CreatedTime?: Date;
|
|
217
|
+
Name?: string | undefined;
|
|
218
|
+
Arn?: string | undefined;
|
|
219
|
+
Description?: string | undefined;
|
|
220
|
+
EnvironmentId?: string | undefined;
|
|
221
|
+
NetworkFabricType?: NetworkFabricType | undefined;
|
|
222
|
+
OwnerAccountId?: string | undefined;
|
|
223
|
+
State?: EnvironmentState | undefined;
|
|
224
|
+
Tags?: Record<string, string> | undefined;
|
|
225
|
+
LastUpdatedTime?: Date | undefined;
|
|
226
|
+
CreatedTime?: Date | undefined;
|
|
227
227
|
}
|
|
228
228
|
export declare const RouteActivationState: {
|
|
229
229
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -232,7 +232,7 @@ export declare const RouteActivationState: {
|
|
|
232
232
|
export type RouteActivationState =
|
|
233
233
|
(typeof RouteActivationState)[keyof typeof RouteActivationState];
|
|
234
234
|
export interface DefaultRouteInput {
|
|
235
|
-
ActivationState?: RouteActivationState;
|
|
235
|
+
ActivationState?: RouteActivationState | undefined;
|
|
236
236
|
}
|
|
237
237
|
export declare const RouteType: {
|
|
238
238
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -252,19 +252,19 @@ export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod];
|
|
|
252
252
|
export interface UriPathRouteInput {
|
|
253
253
|
SourcePath: string | undefined;
|
|
254
254
|
ActivationState: RouteActivationState | undefined;
|
|
255
|
-
Methods?: HttpMethod[];
|
|
256
|
-
IncludeChildPaths?: boolean;
|
|
257
|
-
AppendSourcePath?: boolean;
|
|
255
|
+
Methods?: HttpMethod[] | undefined;
|
|
256
|
+
IncludeChildPaths?: boolean | undefined;
|
|
257
|
+
AppendSourcePath?: boolean | undefined;
|
|
258
258
|
}
|
|
259
259
|
export interface CreateRouteRequest {
|
|
260
260
|
EnvironmentIdentifier: string | undefined;
|
|
261
261
|
ApplicationIdentifier: string | undefined;
|
|
262
262
|
ServiceIdentifier: string | undefined;
|
|
263
263
|
RouteType: RouteType | undefined;
|
|
264
|
-
DefaultRoute?: DefaultRouteInput;
|
|
265
|
-
UriPathRoute?: UriPathRouteInput;
|
|
266
|
-
Tags?: Record<string, string
|
|
267
|
-
ClientToken?: string;
|
|
264
|
+
DefaultRoute?: DefaultRouteInput | undefined;
|
|
265
|
+
UriPathRoute?: UriPathRouteInput | undefined;
|
|
266
|
+
Tags?: Record<string, string> | undefined;
|
|
267
|
+
ClientToken?: string | undefined;
|
|
268
268
|
}
|
|
269
269
|
export declare const RouteState: {
|
|
270
270
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -276,18 +276,18 @@ export declare const RouteState: {
|
|
|
276
276
|
};
|
|
277
277
|
export type RouteState = (typeof RouteState)[keyof typeof RouteState];
|
|
278
278
|
export interface CreateRouteResponse {
|
|
279
|
-
RouteId?: string;
|
|
280
|
-
Arn?: string;
|
|
281
|
-
OwnerAccountId?: string;
|
|
282
|
-
CreatedByAccountId?: string;
|
|
283
|
-
RouteType?: RouteType;
|
|
284
|
-
ServiceId?: string;
|
|
285
|
-
ApplicationId?: string;
|
|
286
|
-
UriPathRoute?: UriPathRouteInput;
|
|
287
|
-
State?: RouteState;
|
|
288
|
-
Tags?: Record<string, string
|
|
289
|
-
LastUpdatedTime?: Date;
|
|
290
|
-
CreatedTime?: Date;
|
|
279
|
+
RouteId?: string | undefined;
|
|
280
|
+
Arn?: string | undefined;
|
|
281
|
+
OwnerAccountId?: string | undefined;
|
|
282
|
+
CreatedByAccountId?: string | undefined;
|
|
283
|
+
RouteType?: RouteType | undefined;
|
|
284
|
+
ServiceId?: string | undefined;
|
|
285
|
+
ApplicationId?: string | undefined;
|
|
286
|
+
UriPathRoute?: UriPathRouteInput | undefined;
|
|
287
|
+
State?: RouteState | undefined;
|
|
288
|
+
Tags?: Record<string, string> | undefined;
|
|
289
|
+
LastUpdatedTime?: Date | undefined;
|
|
290
|
+
CreatedTime?: Date | undefined;
|
|
291
291
|
}
|
|
292
292
|
export declare const ServiceEndpointType: {
|
|
293
293
|
readonly LAMBDA: "LAMBDA";
|
|
@@ -300,19 +300,19 @@ export interface LambdaEndpointInput {
|
|
|
300
300
|
}
|
|
301
301
|
export interface UrlEndpointInput {
|
|
302
302
|
Url: string | undefined;
|
|
303
|
-
HealthUrl?: string;
|
|
303
|
+
HealthUrl?: string | undefined;
|
|
304
304
|
}
|
|
305
305
|
export interface CreateServiceRequest {
|
|
306
306
|
Name: string | undefined;
|
|
307
|
-
Description?: string;
|
|
307
|
+
Description?: string | undefined;
|
|
308
308
|
EnvironmentIdentifier: string | undefined;
|
|
309
309
|
ApplicationIdentifier: string | undefined;
|
|
310
|
-
VpcId?: string;
|
|
310
|
+
VpcId?: string | undefined;
|
|
311
311
|
EndpointType: ServiceEndpointType | undefined;
|
|
312
|
-
UrlEndpoint?: UrlEndpointInput;
|
|
313
|
-
LambdaEndpoint?: LambdaEndpointInput;
|
|
314
|
-
Tags?: Record<string, string
|
|
315
|
-
ClientToken?: string;
|
|
312
|
+
UrlEndpoint?: UrlEndpointInput | undefined;
|
|
313
|
+
LambdaEndpoint?: LambdaEndpointInput | undefined;
|
|
314
|
+
Tags?: Record<string, string> | undefined;
|
|
315
|
+
ClientToken?: string | undefined;
|
|
316
316
|
}
|
|
317
317
|
export declare const ServiceState: {
|
|
318
318
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -322,44 +322,44 @@ export declare const ServiceState: {
|
|
|
322
322
|
};
|
|
323
323
|
export type ServiceState = (typeof ServiceState)[keyof typeof ServiceState];
|
|
324
324
|
export interface CreateServiceResponse {
|
|
325
|
-
ServiceId?: string;
|
|
326
|
-
Name?: string;
|
|
327
|
-
Arn?: string;
|
|
328
|
-
OwnerAccountId?: string;
|
|
329
|
-
CreatedByAccountId?: string;
|
|
330
|
-
Description?: string;
|
|
331
|
-
EnvironmentId?: string;
|
|
332
|
-
ApplicationId?: string;
|
|
333
|
-
VpcId?: string;
|
|
334
|
-
EndpointType?: ServiceEndpointType;
|
|
335
|
-
UrlEndpoint?: UrlEndpointInput;
|
|
336
|
-
LambdaEndpoint?: LambdaEndpointInput;
|
|
337
|
-
State?: ServiceState;
|
|
338
|
-
Tags?: Record<string, string
|
|
339
|
-
LastUpdatedTime?: Date;
|
|
340
|
-
CreatedTime?: Date;
|
|
325
|
+
ServiceId?: string | undefined;
|
|
326
|
+
Name?: string | undefined;
|
|
327
|
+
Arn?: string | undefined;
|
|
328
|
+
OwnerAccountId?: string | undefined;
|
|
329
|
+
CreatedByAccountId?: string | undefined;
|
|
330
|
+
Description?: string | undefined;
|
|
331
|
+
EnvironmentId?: string | undefined;
|
|
332
|
+
ApplicationId?: string | undefined;
|
|
333
|
+
VpcId?: string | undefined;
|
|
334
|
+
EndpointType?: ServiceEndpointType | undefined;
|
|
335
|
+
UrlEndpoint?: UrlEndpointInput | undefined;
|
|
336
|
+
LambdaEndpoint?: LambdaEndpointInput | undefined;
|
|
337
|
+
State?: ServiceState | undefined;
|
|
338
|
+
Tags?: Record<string, string> | undefined;
|
|
339
|
+
LastUpdatedTime?: Date | undefined;
|
|
340
|
+
CreatedTime?: Date | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface DeleteApplicationRequest {
|
|
343
343
|
EnvironmentIdentifier: string | undefined;
|
|
344
344
|
ApplicationIdentifier: string | undefined;
|
|
345
345
|
}
|
|
346
346
|
export interface DeleteApplicationResponse {
|
|
347
|
-
Name?: string;
|
|
348
|
-
Arn?: string;
|
|
349
|
-
ApplicationId?: string;
|
|
350
|
-
EnvironmentId?: string;
|
|
351
|
-
State?: ApplicationState;
|
|
352
|
-
LastUpdatedTime?: Date;
|
|
347
|
+
Name?: string | undefined;
|
|
348
|
+
Arn?: string | undefined;
|
|
349
|
+
ApplicationId?: string | undefined;
|
|
350
|
+
EnvironmentId?: string | undefined;
|
|
351
|
+
State?: ApplicationState | undefined;
|
|
352
|
+
LastUpdatedTime?: Date | undefined;
|
|
353
353
|
}
|
|
354
354
|
export interface DeleteEnvironmentRequest {
|
|
355
355
|
EnvironmentIdentifier: string | undefined;
|
|
356
356
|
}
|
|
357
357
|
export interface DeleteEnvironmentResponse {
|
|
358
|
-
Name?: string;
|
|
359
|
-
Arn?: string;
|
|
360
|
-
EnvironmentId?: string;
|
|
361
|
-
State?: EnvironmentState;
|
|
362
|
-
LastUpdatedTime?: Date;
|
|
358
|
+
Name?: string | undefined;
|
|
359
|
+
Arn?: string | undefined;
|
|
360
|
+
EnvironmentId?: string | undefined;
|
|
361
|
+
State?: EnvironmentState | undefined;
|
|
362
|
+
LastUpdatedTime?: Date | undefined;
|
|
363
363
|
}
|
|
364
364
|
export interface DeleteResourcePolicyRequest {
|
|
365
365
|
Identifier: string | undefined;
|
|
@@ -371,12 +371,12 @@ export interface DeleteRouteRequest {
|
|
|
371
371
|
RouteIdentifier: string | undefined;
|
|
372
372
|
}
|
|
373
373
|
export interface DeleteRouteResponse {
|
|
374
|
-
RouteId?: string;
|
|
375
|
-
Arn?: string;
|
|
376
|
-
ServiceId?: string;
|
|
377
|
-
ApplicationId?: string;
|
|
378
|
-
State?: RouteState;
|
|
379
|
-
LastUpdatedTime?: Date;
|
|
374
|
+
RouteId?: string | undefined;
|
|
375
|
+
Arn?: string | undefined;
|
|
376
|
+
ServiceId?: string | undefined;
|
|
377
|
+
ApplicationId?: string | undefined;
|
|
378
|
+
State?: RouteState | undefined;
|
|
379
|
+
LastUpdatedTime?: Date | undefined;
|
|
380
380
|
}
|
|
381
381
|
export interface DeleteServiceRequest {
|
|
382
382
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -384,79 +384,79 @@ export interface DeleteServiceRequest {
|
|
|
384
384
|
ServiceIdentifier: string | undefined;
|
|
385
385
|
}
|
|
386
386
|
export interface DeleteServiceResponse {
|
|
387
|
-
ServiceId?: string;
|
|
388
|
-
Name?: string;
|
|
389
|
-
Arn?: string;
|
|
390
|
-
EnvironmentId?: string;
|
|
391
|
-
ApplicationId?: string;
|
|
392
|
-
State?: ServiceState;
|
|
393
|
-
LastUpdatedTime?: Date;
|
|
387
|
+
ServiceId?: string | undefined;
|
|
388
|
+
Name?: string | undefined;
|
|
389
|
+
Arn?: string | undefined;
|
|
390
|
+
EnvironmentId?: string | undefined;
|
|
391
|
+
ApplicationId?: string | undefined;
|
|
392
|
+
State?: ServiceState | undefined;
|
|
393
|
+
LastUpdatedTime?: Date | undefined;
|
|
394
394
|
}
|
|
395
395
|
export interface EnvironmentSummary {
|
|
396
|
-
Name?: string;
|
|
397
|
-
Arn?: string;
|
|
398
|
-
Description?: string;
|
|
399
|
-
EnvironmentId?: string;
|
|
400
|
-
NetworkFabricType?: NetworkFabricType;
|
|
401
|
-
OwnerAccountId?: string;
|
|
402
|
-
TransitGatewayId?: string;
|
|
403
|
-
State?: EnvironmentState;
|
|
404
|
-
Tags?: Record<string, string
|
|
405
|
-
Error?: ErrorResponse;
|
|
406
|
-
LastUpdatedTime?: Date;
|
|
407
|
-
CreatedTime?: Date;
|
|
396
|
+
Name?: string | undefined;
|
|
397
|
+
Arn?: string | undefined;
|
|
398
|
+
Description?: string | undefined;
|
|
399
|
+
EnvironmentId?: string | undefined;
|
|
400
|
+
NetworkFabricType?: NetworkFabricType | undefined;
|
|
401
|
+
OwnerAccountId?: string | undefined;
|
|
402
|
+
TransitGatewayId?: string | undefined;
|
|
403
|
+
State?: EnvironmentState | undefined;
|
|
404
|
+
Tags?: Record<string, string> | undefined;
|
|
405
|
+
Error?: ErrorResponse | undefined;
|
|
406
|
+
LastUpdatedTime?: Date | undefined;
|
|
407
|
+
CreatedTime?: Date | undefined;
|
|
408
408
|
}
|
|
409
409
|
export interface EnvironmentVpc {
|
|
410
|
-
EnvironmentId?: string;
|
|
411
|
-
VpcId?: string;
|
|
412
|
-
AccountId?: string;
|
|
413
|
-
CidrBlocks?: string[];
|
|
414
|
-
VpcName?: string;
|
|
415
|
-
LastUpdatedTime?: Date;
|
|
416
|
-
CreatedTime?: Date;
|
|
410
|
+
EnvironmentId?: string | undefined;
|
|
411
|
+
VpcId?: string | undefined;
|
|
412
|
+
AccountId?: string | undefined;
|
|
413
|
+
CidrBlocks?: string[] | undefined;
|
|
414
|
+
VpcName?: string | undefined;
|
|
415
|
+
LastUpdatedTime?: Date | undefined;
|
|
416
|
+
CreatedTime?: Date | undefined;
|
|
417
417
|
}
|
|
418
418
|
export interface GetApplicationRequest {
|
|
419
419
|
EnvironmentIdentifier: string | undefined;
|
|
420
420
|
ApplicationIdentifier: string | undefined;
|
|
421
421
|
}
|
|
422
422
|
export interface GetApplicationResponse {
|
|
423
|
-
Name?: string;
|
|
424
|
-
Arn?: string;
|
|
425
|
-
OwnerAccountId?: string;
|
|
426
|
-
CreatedByAccountId?: string;
|
|
427
|
-
ApplicationId?: string;
|
|
428
|
-
EnvironmentId?: string;
|
|
429
|
-
VpcId?: string;
|
|
430
|
-
ProxyType?: ProxyType;
|
|
431
|
-
ApiGatewayProxy?: ApiGatewayProxyConfig;
|
|
432
|
-
State?: ApplicationState;
|
|
433
|
-
Tags?: Record<string, string
|
|
434
|
-
Error?: ErrorResponse;
|
|
435
|
-
LastUpdatedTime?: Date;
|
|
436
|
-
CreatedTime?: Date;
|
|
423
|
+
Name?: string | undefined;
|
|
424
|
+
Arn?: string | undefined;
|
|
425
|
+
OwnerAccountId?: string | undefined;
|
|
426
|
+
CreatedByAccountId?: string | undefined;
|
|
427
|
+
ApplicationId?: string | undefined;
|
|
428
|
+
EnvironmentId?: string | undefined;
|
|
429
|
+
VpcId?: string | undefined;
|
|
430
|
+
ProxyType?: ProxyType | undefined;
|
|
431
|
+
ApiGatewayProxy?: ApiGatewayProxyConfig | undefined;
|
|
432
|
+
State?: ApplicationState | undefined;
|
|
433
|
+
Tags?: Record<string, string> | undefined;
|
|
434
|
+
Error?: ErrorResponse | undefined;
|
|
435
|
+
LastUpdatedTime?: Date | undefined;
|
|
436
|
+
CreatedTime?: Date | undefined;
|
|
437
437
|
}
|
|
438
438
|
export interface GetEnvironmentRequest {
|
|
439
439
|
EnvironmentIdentifier: string | undefined;
|
|
440
440
|
}
|
|
441
441
|
export interface GetEnvironmentResponse {
|
|
442
|
-
Name?: string;
|
|
443
|
-
Arn?: string;
|
|
444
|
-
Description?: string;
|
|
445
|
-
EnvironmentId?: string;
|
|
446
|
-
NetworkFabricType?: NetworkFabricType;
|
|
447
|
-
OwnerAccountId?: string;
|
|
448
|
-
TransitGatewayId?: string;
|
|
449
|
-
State?: EnvironmentState;
|
|
450
|
-
Tags?: Record<string, string
|
|
451
|
-
Error?: ErrorResponse;
|
|
452
|
-
LastUpdatedTime?: Date;
|
|
453
|
-
CreatedTime?: Date;
|
|
442
|
+
Name?: string | undefined;
|
|
443
|
+
Arn?: string | undefined;
|
|
444
|
+
Description?: string | undefined;
|
|
445
|
+
EnvironmentId?: string | undefined;
|
|
446
|
+
NetworkFabricType?: NetworkFabricType | undefined;
|
|
447
|
+
OwnerAccountId?: string | undefined;
|
|
448
|
+
TransitGatewayId?: string | undefined;
|
|
449
|
+
State?: EnvironmentState | undefined;
|
|
450
|
+
Tags?: Record<string, string> | undefined;
|
|
451
|
+
Error?: ErrorResponse | undefined;
|
|
452
|
+
LastUpdatedTime?: Date | undefined;
|
|
453
|
+
CreatedTime?: Date | undefined;
|
|
454
454
|
}
|
|
455
455
|
export interface GetResourcePolicyRequest {
|
|
456
456
|
Identifier: string | undefined;
|
|
457
457
|
}
|
|
458
458
|
export interface GetResourcePolicyResponse {
|
|
459
|
-
Policy?: string;
|
|
459
|
+
Policy?: string | undefined;
|
|
460
460
|
}
|
|
461
461
|
export interface GetRouteRequest {
|
|
462
462
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -464,24 +464,24 @@ export interface GetRouteRequest {
|
|
|
464
464
|
RouteIdentifier: string | undefined;
|
|
465
465
|
}
|
|
466
466
|
export interface GetRouteResponse {
|
|
467
|
-
RouteId?: string;
|
|
468
|
-
Arn?: string;
|
|
469
|
-
OwnerAccountId?: string;
|
|
470
|
-
CreatedByAccountId?: string;
|
|
471
|
-
RouteType?: RouteType;
|
|
472
|
-
ServiceId?: string;
|
|
473
|
-
ApplicationId?: string;
|
|
474
|
-
EnvironmentId?: string;
|
|
475
|
-
SourcePath?: string;
|
|
476
|
-
Methods?: HttpMethod[];
|
|
477
|
-
IncludeChildPaths?: boolean;
|
|
478
|
-
PathResourceToId?: Record<string, string
|
|
479
|
-
State?: RouteState;
|
|
480
|
-
Tags?: Record<string, string
|
|
481
|
-
Error?: ErrorResponse;
|
|
482
|
-
LastUpdatedTime?: Date;
|
|
483
|
-
CreatedTime?: Date;
|
|
484
|
-
AppendSourcePath?: boolean;
|
|
467
|
+
RouteId?: string | undefined;
|
|
468
|
+
Arn?: string | undefined;
|
|
469
|
+
OwnerAccountId?: string | undefined;
|
|
470
|
+
CreatedByAccountId?: string | undefined;
|
|
471
|
+
RouteType?: RouteType | undefined;
|
|
472
|
+
ServiceId?: string | undefined;
|
|
473
|
+
ApplicationId?: string | undefined;
|
|
474
|
+
EnvironmentId?: string | undefined;
|
|
475
|
+
SourcePath?: string | undefined;
|
|
476
|
+
Methods?: HttpMethod[] | undefined;
|
|
477
|
+
IncludeChildPaths?: boolean | undefined;
|
|
478
|
+
PathResourceToId?: Record<string, string> | undefined;
|
|
479
|
+
State?: RouteState | undefined;
|
|
480
|
+
Tags?: Record<string, string> | undefined;
|
|
481
|
+
Error?: ErrorResponse | undefined;
|
|
482
|
+
LastUpdatedTime?: Date | undefined;
|
|
483
|
+
CreatedTime?: Date | undefined;
|
|
484
|
+
AppendSourcePath?: boolean | undefined;
|
|
485
485
|
}
|
|
486
486
|
export interface GetServiceRequest {
|
|
487
487
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -489,30 +489,30 @@ export interface GetServiceRequest {
|
|
|
489
489
|
ServiceIdentifier: string | undefined;
|
|
490
490
|
}
|
|
491
491
|
export interface LambdaEndpointConfig {
|
|
492
|
-
Arn?: string;
|
|
492
|
+
Arn?: string | undefined;
|
|
493
493
|
}
|
|
494
494
|
export interface UrlEndpointConfig {
|
|
495
|
-
Url?: string;
|
|
496
|
-
HealthUrl?: string;
|
|
495
|
+
Url?: string | undefined;
|
|
496
|
+
HealthUrl?: string | undefined;
|
|
497
497
|
}
|
|
498
498
|
export interface GetServiceResponse {
|
|
499
|
-
ServiceId?: string;
|
|
500
|
-
Name?: string;
|
|
501
|
-
Arn?: string;
|
|
502
|
-
OwnerAccountId?: string;
|
|
503
|
-
CreatedByAccountId?: string;
|
|
504
|
-
Description?: string;
|
|
505
|
-
EnvironmentId?: string;
|
|
506
|
-
ApplicationId?: string;
|
|
507
|
-
VpcId?: string;
|
|
508
|
-
EndpointType?: ServiceEndpointType;
|
|
509
|
-
UrlEndpoint?: UrlEndpointConfig;
|
|
510
|
-
LambdaEndpoint?: LambdaEndpointConfig;
|
|
511
|
-
State?: ServiceState;
|
|
512
|
-
Tags?: Record<string, string
|
|
513
|
-
Error?: ErrorResponse;
|
|
514
|
-
LastUpdatedTime?: Date;
|
|
515
|
-
CreatedTime?: Date;
|
|
499
|
+
ServiceId?: string | undefined;
|
|
500
|
+
Name?: string | undefined;
|
|
501
|
+
Arn?: string | undefined;
|
|
502
|
+
OwnerAccountId?: string | undefined;
|
|
503
|
+
CreatedByAccountId?: string | undefined;
|
|
504
|
+
Description?: string | undefined;
|
|
505
|
+
EnvironmentId?: string | undefined;
|
|
506
|
+
ApplicationId?: string | undefined;
|
|
507
|
+
VpcId?: string | undefined;
|
|
508
|
+
EndpointType?: ServiceEndpointType | undefined;
|
|
509
|
+
UrlEndpoint?: UrlEndpointConfig | undefined;
|
|
510
|
+
LambdaEndpoint?: LambdaEndpointConfig | undefined;
|
|
511
|
+
State?: ServiceState | undefined;
|
|
512
|
+
Tags?: Record<string, string> | undefined;
|
|
513
|
+
Error?: ErrorResponse | undefined;
|
|
514
|
+
LastUpdatedTime?: Date | undefined;
|
|
515
|
+
CreatedTime?: Date | undefined;
|
|
516
516
|
}
|
|
517
517
|
export declare class InvalidResourcePolicyException extends __BaseException {
|
|
518
518
|
readonly name: "InvalidResourcePolicyException";
|
|
@@ -523,102 +523,102 @@ export declare class InvalidResourcePolicyException extends __BaseException {
|
|
|
523
523
|
);
|
|
524
524
|
}
|
|
525
525
|
export interface LambdaEndpointSummary {
|
|
526
|
-
Arn?: string;
|
|
526
|
+
Arn?: string | undefined;
|
|
527
527
|
}
|
|
528
528
|
export interface ListApplicationsRequest {
|
|
529
529
|
EnvironmentIdentifier: string | undefined;
|
|
530
|
-
NextToken?: string;
|
|
531
|
-
MaxResults?: number;
|
|
530
|
+
NextToken?: string | undefined;
|
|
531
|
+
MaxResults?: number | undefined;
|
|
532
532
|
}
|
|
533
533
|
export interface ListApplicationsResponse {
|
|
534
|
-
ApplicationSummaryList?: ApplicationSummary[];
|
|
535
|
-
NextToken?: string;
|
|
534
|
+
ApplicationSummaryList?: ApplicationSummary[] | undefined;
|
|
535
|
+
NextToken?: string | undefined;
|
|
536
536
|
}
|
|
537
537
|
export interface ListEnvironmentsRequest {
|
|
538
|
-
NextToken?: string;
|
|
539
|
-
MaxResults?: number;
|
|
538
|
+
NextToken?: string | undefined;
|
|
539
|
+
MaxResults?: number | undefined;
|
|
540
540
|
}
|
|
541
541
|
export interface ListEnvironmentsResponse {
|
|
542
|
-
EnvironmentSummaryList?: EnvironmentSummary[];
|
|
543
|
-
NextToken?: string;
|
|
542
|
+
EnvironmentSummaryList?: EnvironmentSummary[] | undefined;
|
|
543
|
+
NextToken?: string | undefined;
|
|
544
544
|
}
|
|
545
545
|
export interface ListEnvironmentVpcsRequest {
|
|
546
546
|
EnvironmentIdentifier: string | undefined;
|
|
547
|
-
NextToken?: string;
|
|
548
|
-
MaxResults?: number;
|
|
547
|
+
NextToken?: string | undefined;
|
|
548
|
+
MaxResults?: number | undefined;
|
|
549
549
|
}
|
|
550
550
|
export interface ListEnvironmentVpcsResponse {
|
|
551
|
-
EnvironmentVpcList?: EnvironmentVpc[];
|
|
552
|
-
NextToken?: string;
|
|
551
|
+
EnvironmentVpcList?: EnvironmentVpc[] | undefined;
|
|
552
|
+
NextToken?: string | undefined;
|
|
553
553
|
}
|
|
554
554
|
export interface ListRoutesRequest {
|
|
555
555
|
EnvironmentIdentifier: string | undefined;
|
|
556
556
|
ApplicationIdentifier: string | undefined;
|
|
557
|
-
NextToken?: string;
|
|
558
|
-
MaxResults?: number;
|
|
557
|
+
NextToken?: string | undefined;
|
|
558
|
+
MaxResults?: number | undefined;
|
|
559
559
|
}
|
|
560
560
|
export interface RouteSummary {
|
|
561
|
-
RouteId?: string;
|
|
562
|
-
Arn?: string;
|
|
563
|
-
OwnerAccountId?: string;
|
|
564
|
-
CreatedByAccountId?: string;
|
|
565
|
-
RouteType?: RouteType;
|
|
566
|
-
ServiceId?: string;
|
|
567
|
-
ApplicationId?: string;
|
|
568
|
-
EnvironmentId?: string;
|
|
569
|
-
SourcePath?: string;
|
|
570
|
-
Methods?: HttpMethod[];
|
|
571
|
-
IncludeChildPaths?: boolean;
|
|
572
|
-
PathResourceToId?: Record<string, string
|
|
573
|
-
State?: RouteState;
|
|
574
|
-
Tags?: Record<string, string
|
|
575
|
-
Error?: ErrorResponse;
|
|
576
|
-
LastUpdatedTime?: Date;
|
|
577
|
-
CreatedTime?: Date;
|
|
578
|
-
AppendSourcePath?: boolean;
|
|
561
|
+
RouteId?: string | undefined;
|
|
562
|
+
Arn?: string | undefined;
|
|
563
|
+
OwnerAccountId?: string | undefined;
|
|
564
|
+
CreatedByAccountId?: string | undefined;
|
|
565
|
+
RouteType?: RouteType | undefined;
|
|
566
|
+
ServiceId?: string | undefined;
|
|
567
|
+
ApplicationId?: string | undefined;
|
|
568
|
+
EnvironmentId?: string | undefined;
|
|
569
|
+
SourcePath?: string | undefined;
|
|
570
|
+
Methods?: HttpMethod[] | undefined;
|
|
571
|
+
IncludeChildPaths?: boolean | undefined;
|
|
572
|
+
PathResourceToId?: Record<string, string> | undefined;
|
|
573
|
+
State?: RouteState | undefined;
|
|
574
|
+
Tags?: Record<string, string> | undefined;
|
|
575
|
+
Error?: ErrorResponse | undefined;
|
|
576
|
+
LastUpdatedTime?: Date | undefined;
|
|
577
|
+
CreatedTime?: Date | undefined;
|
|
578
|
+
AppendSourcePath?: boolean | undefined;
|
|
579
579
|
}
|
|
580
580
|
export interface ListRoutesResponse {
|
|
581
|
-
RouteSummaryList?: RouteSummary[];
|
|
582
|
-
NextToken?: string;
|
|
581
|
+
RouteSummaryList?: RouteSummary[] | undefined;
|
|
582
|
+
NextToken?: string | undefined;
|
|
583
583
|
}
|
|
584
584
|
export interface ListServicesRequest {
|
|
585
585
|
EnvironmentIdentifier: string | undefined;
|
|
586
586
|
ApplicationIdentifier: string | undefined;
|
|
587
|
-
NextToken?: string;
|
|
588
|
-
MaxResults?: number;
|
|
587
|
+
NextToken?: string | undefined;
|
|
588
|
+
MaxResults?: number | undefined;
|
|
589
589
|
}
|
|
590
590
|
export interface UrlEndpointSummary {
|
|
591
|
-
Url?: string;
|
|
592
|
-
HealthUrl?: string;
|
|
591
|
+
Url?: string | undefined;
|
|
592
|
+
HealthUrl?: string | undefined;
|
|
593
593
|
}
|
|
594
594
|
export interface ServiceSummary {
|
|
595
|
-
ServiceId?: string;
|
|
596
|
-
Name?: string;
|
|
597
|
-
Arn?: string;
|
|
598
|
-
OwnerAccountId?: string;
|
|
599
|
-
CreatedByAccountId?: string;
|
|
600
|
-
Description?: string;
|
|
601
|
-
EnvironmentId?: string;
|
|
602
|
-
ApplicationId?: string;
|
|
603
|
-
VpcId?: string;
|
|
604
|
-
EndpointType?: ServiceEndpointType;
|
|
605
|
-
UrlEndpoint?: UrlEndpointSummary;
|
|
606
|
-
LambdaEndpoint?: LambdaEndpointSummary;
|
|
607
|
-
State?: ServiceState;
|
|
608
|
-
Tags?: Record<string, string
|
|
609
|
-
Error?: ErrorResponse;
|
|
610
|
-
LastUpdatedTime?: Date;
|
|
611
|
-
CreatedTime?: Date;
|
|
595
|
+
ServiceId?: string | undefined;
|
|
596
|
+
Name?: string | undefined;
|
|
597
|
+
Arn?: string | undefined;
|
|
598
|
+
OwnerAccountId?: string | undefined;
|
|
599
|
+
CreatedByAccountId?: string | undefined;
|
|
600
|
+
Description?: string | undefined;
|
|
601
|
+
EnvironmentId?: string | undefined;
|
|
602
|
+
ApplicationId?: string | undefined;
|
|
603
|
+
VpcId?: string | undefined;
|
|
604
|
+
EndpointType?: ServiceEndpointType | undefined;
|
|
605
|
+
UrlEndpoint?: UrlEndpointSummary | undefined;
|
|
606
|
+
LambdaEndpoint?: LambdaEndpointSummary | undefined;
|
|
607
|
+
State?: ServiceState | undefined;
|
|
608
|
+
Tags?: Record<string, string> | undefined;
|
|
609
|
+
Error?: ErrorResponse | undefined;
|
|
610
|
+
LastUpdatedTime?: Date | undefined;
|
|
611
|
+
CreatedTime?: Date | undefined;
|
|
612
612
|
}
|
|
613
613
|
export interface ListServicesResponse {
|
|
614
|
-
ServiceSummaryList?: ServiceSummary[];
|
|
615
|
-
NextToken?: string;
|
|
614
|
+
ServiceSummaryList?: ServiceSummary[] | undefined;
|
|
615
|
+
NextToken?: string | undefined;
|
|
616
616
|
}
|
|
617
617
|
export interface ListTagsForResourceRequest {
|
|
618
618
|
ResourceArn: string | undefined;
|
|
619
619
|
}
|
|
620
620
|
export interface ListTagsForResourceResponse {
|
|
621
|
-
Tags?: Record<string, string
|
|
621
|
+
Tags?: Record<string, string> | undefined;
|
|
622
622
|
}
|
|
623
623
|
export interface PutResourcePolicyRequest {
|
|
624
624
|
ResourceArn: string | undefined;
|
|
@@ -642,12 +642,12 @@ export interface UpdateRouteRequest {
|
|
|
642
642
|
ActivationState: RouteActivationState | undefined;
|
|
643
643
|
}
|
|
644
644
|
export interface UpdateRouteResponse {
|
|
645
|
-
RouteId?: string;
|
|
646
|
-
Arn?: string;
|
|
647
|
-
ServiceId?: string;
|
|
648
|
-
ApplicationId?: string;
|
|
649
|
-
State?: RouteState;
|
|
650
|
-
LastUpdatedTime?: Date;
|
|
645
|
+
RouteId?: string | undefined;
|
|
646
|
+
Arn?: string | undefined;
|
|
647
|
+
ServiceId?: string | undefined;
|
|
648
|
+
ApplicationId?: string | undefined;
|
|
649
|
+
State?: RouteState | undefined;
|
|
650
|
+
LastUpdatedTime?: Date | undefined;
|
|
651
651
|
}
|
|
652
652
|
export declare const ApplicationSummaryFilterSensitiveLog: (
|
|
653
653
|
obj: ApplicationSummary
|