@aws-sdk/client-migration-hub-refactor-spaces 3.50.0 → 3.51.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/MigrationHubRefactorSpaces.d.ts +120 -0
- package/dist-types/ts3.4/MigrationHubRefactorSpacesClient.d.ts +96 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetRouteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentVpcsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListRoutesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +23 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1235 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentVpcsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListRoutesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +71 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,1235 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
|
|
3
|
+
export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
|
|
4
|
+
name: "AccessDeniedException";
|
|
5
|
+
$fault: "client";
|
|
6
|
+
Message: string | undefined;
|
|
7
|
+
}
|
|
8
|
+
export declare enum ApiGatewayEndpointType {
|
|
9
|
+
PRIVATE = "PRIVATE",
|
|
10
|
+
REGIONAL = "REGIONAL"
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface ApiGatewayProxyConfig {
|
|
14
|
+
|
|
15
|
+
ProxyUrl?: string;
|
|
16
|
+
|
|
17
|
+
ApiGatewayId?: string;
|
|
18
|
+
|
|
19
|
+
VpcLinkId?: string;
|
|
20
|
+
|
|
21
|
+
NlbArn?: string;
|
|
22
|
+
|
|
23
|
+
NlbName?: string;
|
|
24
|
+
|
|
25
|
+
EndpointType?: ApiGatewayEndpointType | string;
|
|
26
|
+
|
|
27
|
+
StageName?: string;
|
|
28
|
+
}
|
|
29
|
+
export declare namespace ApiGatewayProxyConfig {
|
|
30
|
+
|
|
31
|
+
const filterSensitiveLog: (obj: ApiGatewayProxyConfig) => any;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface ApiGatewayProxyInput {
|
|
35
|
+
|
|
36
|
+
EndpointType?: ApiGatewayEndpointType | string;
|
|
37
|
+
|
|
38
|
+
StageName?: string;
|
|
39
|
+
}
|
|
40
|
+
export declare namespace ApiGatewayProxyInput {
|
|
41
|
+
|
|
42
|
+
const filterSensitiveLog: (obj: ApiGatewayProxyInput) => any;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export interface ApiGatewayProxySummary {
|
|
46
|
+
|
|
47
|
+
ProxyUrl?: string;
|
|
48
|
+
|
|
49
|
+
ApiGatewayId?: string;
|
|
50
|
+
|
|
51
|
+
VpcLinkId?: string;
|
|
52
|
+
|
|
53
|
+
NlbArn?: string;
|
|
54
|
+
|
|
55
|
+
NlbName?: string;
|
|
56
|
+
|
|
57
|
+
EndpointType?: ApiGatewayEndpointType | string;
|
|
58
|
+
|
|
59
|
+
StageName?: string;
|
|
60
|
+
}
|
|
61
|
+
export declare namespace ApiGatewayProxySummary {
|
|
62
|
+
|
|
63
|
+
const filterSensitiveLog: (obj: ApiGatewayProxySummary) => any;
|
|
64
|
+
}
|
|
65
|
+
export declare enum ApplicationState {
|
|
66
|
+
ACTIVE = "ACTIVE",
|
|
67
|
+
CREATING = "CREATING",
|
|
68
|
+
DELETING = "DELETING",
|
|
69
|
+
FAILED = "FAILED",
|
|
70
|
+
UPDATING = "UPDATING"
|
|
71
|
+
}
|
|
72
|
+
export declare enum ErrorCode {
|
|
73
|
+
INVALID_RESOURCE_STATE = "INVALID_RESOURCE_STATE",
|
|
74
|
+
NOT_AUTHORIZED = "NOT_AUTHORIZED",
|
|
75
|
+
REQUEST_LIMIT_EXCEEDED = "REQUEST_LIMIT_EXCEEDED",
|
|
76
|
+
RESOURCE_CREATION_FAILURE = "RESOURCE_CREATION_FAILURE",
|
|
77
|
+
RESOURCE_DELETION_FAILURE = "RESOURCE_DELETION_FAILURE",
|
|
78
|
+
RESOURCE_IN_USE = "RESOURCE_IN_USE",
|
|
79
|
+
RESOURCE_LIMIT_EXCEEDED = "RESOURCE_LIMIT_EXCEEDED",
|
|
80
|
+
RESOURCE_NOT_FOUND = "RESOURCE_NOT_FOUND",
|
|
81
|
+
RESOURCE_RETRIEVAL_FAILURE = "RESOURCE_RETRIEVAL_FAILURE",
|
|
82
|
+
RESOURCE_UPDATE_FAILURE = "RESOURCE_UPDATE_FAILURE",
|
|
83
|
+
SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE = "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
|
|
84
|
+
STATE_TRANSITION_FAILURE = "STATE_TRANSITION_FAILURE"
|
|
85
|
+
}
|
|
86
|
+
export declare enum ErrorResourceType {
|
|
87
|
+
API_GATEWAY = "API_GATEWAY",
|
|
88
|
+
APPLICATION = "APPLICATION",
|
|
89
|
+
ENVIRONMENT = "ENVIRONMENT",
|
|
90
|
+
IAM_ROLE = "IAM_ROLE",
|
|
91
|
+
LAMBDA = "LAMBDA",
|
|
92
|
+
LOAD_BALANCER_LISTENER = "LOAD_BALANCER_LISTENER",
|
|
93
|
+
NLB = "NLB",
|
|
94
|
+
RESOURCE_SHARE = "RESOURCE_SHARE",
|
|
95
|
+
ROUTE = "ROUTE",
|
|
96
|
+
ROUTE_TABLE = "ROUTE_TABLE",
|
|
97
|
+
SECURITY_GROUP = "SECURITY_GROUP",
|
|
98
|
+
SERVICE = "SERVICE",
|
|
99
|
+
SUBNET = "SUBNET",
|
|
100
|
+
TARGET_GROUP = "TARGET_GROUP",
|
|
101
|
+
TRANSIT_GATEWAY = "TRANSIT_GATEWAY",
|
|
102
|
+
TRANSIT_GATEWAY_ATTACHMENT = "TRANSIT_GATEWAY_ATTACHMENT",
|
|
103
|
+
VPC = "VPC",
|
|
104
|
+
VPC_ENDPOINT_SERVICE_CONFIGURATION = "VPC_ENDPOINT_SERVICE_CONFIGURATION",
|
|
105
|
+
VPC_LINK = "VPC_LINK"
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export interface ErrorResponse {
|
|
109
|
+
|
|
110
|
+
Code?: ErrorCode | string;
|
|
111
|
+
|
|
112
|
+
Message?: string;
|
|
113
|
+
|
|
114
|
+
AccountId?: string;
|
|
115
|
+
|
|
116
|
+
ResourceIdentifier?: string;
|
|
117
|
+
|
|
118
|
+
ResourceType?: ErrorResourceType | string;
|
|
119
|
+
|
|
120
|
+
AdditionalDetails?: {
|
|
121
|
+
[key: string]: string;
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
export declare namespace ErrorResponse {
|
|
125
|
+
|
|
126
|
+
const filterSensitiveLog: (obj: ErrorResponse) => any;
|
|
127
|
+
}
|
|
128
|
+
export declare enum ProxyType {
|
|
129
|
+
API_GATEWAY = "API_GATEWAY"
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export interface ApplicationSummary {
|
|
133
|
+
|
|
134
|
+
Name?: string;
|
|
135
|
+
|
|
136
|
+
Arn?: string;
|
|
137
|
+
|
|
138
|
+
OwnerAccountId?: string;
|
|
139
|
+
|
|
140
|
+
CreatedByAccountId?: string;
|
|
141
|
+
|
|
142
|
+
ApplicationId?: string;
|
|
143
|
+
|
|
144
|
+
EnvironmentId?: string;
|
|
145
|
+
|
|
146
|
+
VpcId?: string;
|
|
147
|
+
|
|
148
|
+
ProxyType?: ProxyType | string;
|
|
149
|
+
|
|
150
|
+
ApiGatewayProxy?: ApiGatewayProxySummary;
|
|
151
|
+
|
|
152
|
+
State?: ApplicationState | string;
|
|
153
|
+
|
|
154
|
+
Tags?: {
|
|
155
|
+
[key: string]: string;
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
Error?: ErrorResponse;
|
|
159
|
+
|
|
160
|
+
LastUpdatedTime?: Date;
|
|
161
|
+
|
|
162
|
+
CreatedTime?: Date;
|
|
163
|
+
}
|
|
164
|
+
export declare namespace ApplicationSummary {
|
|
165
|
+
|
|
166
|
+
const filterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
170
|
+
name: "ConflictException";
|
|
171
|
+
$fault: "client";
|
|
172
|
+
Message: string | undefined;
|
|
173
|
+
|
|
174
|
+
ResourceId: string | undefined;
|
|
175
|
+
|
|
176
|
+
ResourceType: string | undefined;
|
|
177
|
+
}
|
|
178
|
+
export interface CreateApplicationRequest {
|
|
179
|
+
|
|
180
|
+
Name: string | undefined;
|
|
181
|
+
|
|
182
|
+
EnvironmentIdentifier: string | undefined;
|
|
183
|
+
|
|
184
|
+
VpcId: string | undefined;
|
|
185
|
+
|
|
186
|
+
ProxyType: ProxyType | string | undefined;
|
|
187
|
+
|
|
188
|
+
ApiGatewayProxy?: ApiGatewayProxyInput;
|
|
189
|
+
|
|
190
|
+
Tags?: {
|
|
191
|
+
[key: string]: string;
|
|
192
|
+
};
|
|
193
|
+
|
|
194
|
+
ClientToken?: string;
|
|
195
|
+
}
|
|
196
|
+
export declare namespace CreateApplicationRequest {
|
|
197
|
+
|
|
198
|
+
const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
199
|
+
}
|
|
200
|
+
export interface CreateApplicationResponse {
|
|
201
|
+
|
|
202
|
+
Name?: string;
|
|
203
|
+
|
|
204
|
+
Arn?: string;
|
|
205
|
+
|
|
206
|
+
OwnerAccountId?: string;
|
|
207
|
+
|
|
208
|
+
CreatedByAccountId?: string;
|
|
209
|
+
|
|
210
|
+
ApplicationId?: string;
|
|
211
|
+
|
|
212
|
+
EnvironmentId?: string;
|
|
213
|
+
|
|
214
|
+
VpcId?: string;
|
|
215
|
+
|
|
216
|
+
ProxyType?: ProxyType | string;
|
|
217
|
+
|
|
218
|
+
ApiGatewayProxy?: ApiGatewayProxyInput;
|
|
219
|
+
|
|
220
|
+
State?: ApplicationState | string;
|
|
221
|
+
|
|
222
|
+
Tags?: {
|
|
223
|
+
[key: string]: string;
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
LastUpdatedTime?: Date;
|
|
227
|
+
|
|
228
|
+
CreatedTime?: Date;
|
|
229
|
+
}
|
|
230
|
+
export declare namespace CreateApplicationResponse {
|
|
231
|
+
|
|
232
|
+
const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
236
|
+
name: "InternalServerException";
|
|
237
|
+
$fault: "server";
|
|
238
|
+
Message: string | undefined;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
242
|
+
name: "ResourceNotFoundException";
|
|
243
|
+
$fault: "client";
|
|
244
|
+
Message: string | undefined;
|
|
245
|
+
|
|
246
|
+
ResourceId: string | undefined;
|
|
247
|
+
|
|
248
|
+
ResourceType: string | undefined;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
252
|
+
name: "ServiceQuotaExceededException";
|
|
253
|
+
$fault: "client";
|
|
254
|
+
Message: string | undefined;
|
|
255
|
+
|
|
256
|
+
ResourceId: string | undefined;
|
|
257
|
+
|
|
258
|
+
ResourceType: string | undefined;
|
|
259
|
+
|
|
260
|
+
QuotaCode?: string;
|
|
261
|
+
|
|
262
|
+
ServiceCode: string | undefined;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
266
|
+
name: "ThrottlingException";
|
|
267
|
+
$fault: "client";
|
|
268
|
+
Message: string | undefined;
|
|
269
|
+
|
|
270
|
+
QuotaCode?: string;
|
|
271
|
+
|
|
272
|
+
ServiceCode?: string;
|
|
273
|
+
|
|
274
|
+
RetryAfterSeconds?: number;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
278
|
+
name: "ValidationException";
|
|
279
|
+
$fault: "client";
|
|
280
|
+
Message: string | undefined;
|
|
281
|
+
}
|
|
282
|
+
export declare enum NetworkFabricType {
|
|
283
|
+
TRANSIT_GATEWAY = "TRANSIT_GATEWAY"
|
|
284
|
+
}
|
|
285
|
+
export interface CreateEnvironmentRequest {
|
|
286
|
+
|
|
287
|
+
Name: string | undefined;
|
|
288
|
+
|
|
289
|
+
Description?: string;
|
|
290
|
+
|
|
291
|
+
NetworkFabricType: NetworkFabricType | string | undefined;
|
|
292
|
+
|
|
293
|
+
Tags?: {
|
|
294
|
+
[key: string]: string;
|
|
295
|
+
};
|
|
296
|
+
|
|
297
|
+
ClientToken?: string;
|
|
298
|
+
}
|
|
299
|
+
export declare namespace CreateEnvironmentRequest {
|
|
300
|
+
|
|
301
|
+
const filterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
|
|
302
|
+
}
|
|
303
|
+
export declare enum EnvironmentState {
|
|
304
|
+
ACTIVE = "ACTIVE",
|
|
305
|
+
CREATING = "CREATING",
|
|
306
|
+
DELETING = "DELETING",
|
|
307
|
+
FAILED = "FAILED"
|
|
308
|
+
}
|
|
309
|
+
export interface CreateEnvironmentResponse {
|
|
310
|
+
|
|
311
|
+
Name?: string;
|
|
312
|
+
|
|
313
|
+
Arn?: string;
|
|
314
|
+
|
|
315
|
+
Description?: string;
|
|
316
|
+
|
|
317
|
+
EnvironmentId?: string;
|
|
318
|
+
|
|
319
|
+
NetworkFabricType?: NetworkFabricType | string;
|
|
320
|
+
|
|
321
|
+
OwnerAccountId?: string;
|
|
322
|
+
|
|
323
|
+
State?: EnvironmentState | string;
|
|
324
|
+
|
|
325
|
+
Tags?: {
|
|
326
|
+
[key: string]: string;
|
|
327
|
+
};
|
|
328
|
+
|
|
329
|
+
LastUpdatedTime?: Date;
|
|
330
|
+
|
|
331
|
+
CreatedTime?: Date;
|
|
332
|
+
}
|
|
333
|
+
export declare namespace CreateEnvironmentResponse {
|
|
334
|
+
|
|
335
|
+
const filterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
|
|
336
|
+
}
|
|
337
|
+
export declare enum RouteType {
|
|
338
|
+
DEFAULT = "DEFAULT",
|
|
339
|
+
URI_PATH = "URI_PATH"
|
|
340
|
+
}
|
|
341
|
+
export declare enum RouteActivationState {
|
|
342
|
+
ACTIVE = "ACTIVE"
|
|
343
|
+
}
|
|
344
|
+
export declare enum HttpMethod {
|
|
345
|
+
DELETE = "DELETE",
|
|
346
|
+
GET = "GET",
|
|
347
|
+
HEAD = "HEAD",
|
|
348
|
+
OPTIONS = "OPTIONS",
|
|
349
|
+
PATCH = "PATCH",
|
|
350
|
+
POST = "POST",
|
|
351
|
+
PUT = "PUT"
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
export interface UriPathRouteInput {
|
|
355
|
+
|
|
356
|
+
SourcePath: string | undefined;
|
|
357
|
+
|
|
358
|
+
ActivationState: RouteActivationState | string | undefined;
|
|
359
|
+
|
|
360
|
+
Methods?: (HttpMethod | string)[];
|
|
361
|
+
|
|
362
|
+
IncludeChildPaths?: boolean;
|
|
363
|
+
}
|
|
364
|
+
export declare namespace UriPathRouteInput {
|
|
365
|
+
|
|
366
|
+
const filterSensitiveLog: (obj: UriPathRouteInput) => any;
|
|
367
|
+
}
|
|
368
|
+
export interface CreateRouteRequest {
|
|
369
|
+
|
|
370
|
+
EnvironmentIdentifier: string | undefined;
|
|
371
|
+
|
|
372
|
+
ApplicationIdentifier: string | undefined;
|
|
373
|
+
|
|
374
|
+
ServiceIdentifier: string | undefined;
|
|
375
|
+
|
|
376
|
+
RouteType: RouteType | string | undefined;
|
|
377
|
+
|
|
378
|
+
UriPathRoute?: UriPathRouteInput;
|
|
379
|
+
|
|
380
|
+
Tags?: {
|
|
381
|
+
[key: string]: string;
|
|
382
|
+
};
|
|
383
|
+
|
|
384
|
+
ClientToken?: string;
|
|
385
|
+
}
|
|
386
|
+
export declare namespace CreateRouteRequest {
|
|
387
|
+
|
|
388
|
+
const filterSensitiveLog: (obj: CreateRouteRequest) => any;
|
|
389
|
+
}
|
|
390
|
+
export declare enum RouteState {
|
|
391
|
+
ACTIVE = "ACTIVE",
|
|
392
|
+
CREATING = "CREATING",
|
|
393
|
+
DELETING = "DELETING",
|
|
394
|
+
FAILED = "FAILED",
|
|
395
|
+
INACTIVE = "INACTIVE",
|
|
396
|
+
UPDATING = "UPDATING"
|
|
397
|
+
}
|
|
398
|
+
export interface CreateRouteResponse {
|
|
399
|
+
|
|
400
|
+
RouteId?: string;
|
|
401
|
+
|
|
402
|
+
Arn?: string;
|
|
403
|
+
|
|
404
|
+
OwnerAccountId?: string;
|
|
405
|
+
|
|
406
|
+
CreatedByAccountId?: string;
|
|
407
|
+
|
|
408
|
+
RouteType?: RouteType | string;
|
|
409
|
+
|
|
410
|
+
ServiceId?: string;
|
|
411
|
+
|
|
412
|
+
ApplicationId?: string;
|
|
413
|
+
|
|
414
|
+
UriPathRoute?: UriPathRouteInput;
|
|
415
|
+
|
|
416
|
+
State?: RouteState | string;
|
|
417
|
+
|
|
418
|
+
Tags?: {
|
|
419
|
+
[key: string]: string;
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
LastUpdatedTime?: Date;
|
|
423
|
+
|
|
424
|
+
CreatedTime?: Date;
|
|
425
|
+
}
|
|
426
|
+
export declare namespace CreateRouteResponse {
|
|
427
|
+
|
|
428
|
+
const filterSensitiveLog: (obj: CreateRouteResponse) => any;
|
|
429
|
+
}
|
|
430
|
+
export declare enum ServiceEndpointType {
|
|
431
|
+
LAMBDA = "LAMBDA",
|
|
432
|
+
URL = "URL"
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
export interface LambdaEndpointInput {
|
|
436
|
+
|
|
437
|
+
Arn: string | undefined;
|
|
438
|
+
}
|
|
439
|
+
export declare namespace LambdaEndpointInput {
|
|
440
|
+
|
|
441
|
+
const filterSensitiveLog: (obj: LambdaEndpointInput) => any;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
export interface UrlEndpointInput {
|
|
445
|
+
|
|
446
|
+
Url: string | undefined;
|
|
447
|
+
|
|
448
|
+
HealthUrl?: string;
|
|
449
|
+
}
|
|
450
|
+
export declare namespace UrlEndpointInput {
|
|
451
|
+
|
|
452
|
+
const filterSensitiveLog: (obj: UrlEndpointInput) => any;
|
|
453
|
+
}
|
|
454
|
+
export interface CreateServiceRequest {
|
|
455
|
+
|
|
456
|
+
Name: string | undefined;
|
|
457
|
+
|
|
458
|
+
Description?: string;
|
|
459
|
+
|
|
460
|
+
EnvironmentIdentifier: string | undefined;
|
|
461
|
+
|
|
462
|
+
ApplicationIdentifier: string | undefined;
|
|
463
|
+
|
|
464
|
+
VpcId?: string;
|
|
465
|
+
|
|
466
|
+
EndpointType: ServiceEndpointType | string | undefined;
|
|
467
|
+
|
|
468
|
+
UrlEndpoint?: UrlEndpointInput;
|
|
469
|
+
|
|
470
|
+
LambdaEndpoint?: LambdaEndpointInput;
|
|
471
|
+
|
|
472
|
+
Tags?: {
|
|
473
|
+
[key: string]: string;
|
|
474
|
+
};
|
|
475
|
+
|
|
476
|
+
ClientToken?: string;
|
|
477
|
+
}
|
|
478
|
+
export declare namespace CreateServiceRequest {
|
|
479
|
+
|
|
480
|
+
const filterSensitiveLog: (obj: CreateServiceRequest) => any;
|
|
481
|
+
}
|
|
482
|
+
export declare enum ServiceState {
|
|
483
|
+
ACTIVE = "ACTIVE",
|
|
484
|
+
CREATING = "CREATING",
|
|
485
|
+
DELETING = "DELETING",
|
|
486
|
+
FAILED = "FAILED"
|
|
487
|
+
}
|
|
488
|
+
export interface CreateServiceResponse {
|
|
489
|
+
|
|
490
|
+
ServiceId?: string;
|
|
491
|
+
|
|
492
|
+
Name?: string;
|
|
493
|
+
|
|
494
|
+
Arn?: string;
|
|
495
|
+
|
|
496
|
+
OwnerAccountId?: string;
|
|
497
|
+
|
|
498
|
+
CreatedByAccountId?: string;
|
|
499
|
+
|
|
500
|
+
Description?: string;
|
|
501
|
+
|
|
502
|
+
EnvironmentId?: string;
|
|
503
|
+
|
|
504
|
+
ApplicationId?: string;
|
|
505
|
+
|
|
506
|
+
VpcId?: string;
|
|
507
|
+
|
|
508
|
+
EndpointType?: ServiceEndpointType | string;
|
|
509
|
+
|
|
510
|
+
UrlEndpoint?: UrlEndpointInput;
|
|
511
|
+
|
|
512
|
+
LambdaEndpoint?: LambdaEndpointInput;
|
|
513
|
+
|
|
514
|
+
State?: ServiceState | string;
|
|
515
|
+
|
|
516
|
+
Tags?: {
|
|
517
|
+
[key: string]: string;
|
|
518
|
+
};
|
|
519
|
+
|
|
520
|
+
LastUpdatedTime?: Date;
|
|
521
|
+
|
|
522
|
+
CreatedTime?: Date;
|
|
523
|
+
}
|
|
524
|
+
export declare namespace CreateServiceResponse {
|
|
525
|
+
|
|
526
|
+
const filterSensitiveLog: (obj: CreateServiceResponse) => any;
|
|
527
|
+
}
|
|
528
|
+
export interface DeleteApplicationRequest {
|
|
529
|
+
|
|
530
|
+
EnvironmentIdentifier: string | undefined;
|
|
531
|
+
|
|
532
|
+
ApplicationIdentifier: string | undefined;
|
|
533
|
+
}
|
|
534
|
+
export declare namespace DeleteApplicationRequest {
|
|
535
|
+
|
|
536
|
+
const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
537
|
+
}
|
|
538
|
+
export interface DeleteApplicationResponse {
|
|
539
|
+
|
|
540
|
+
Name?: string;
|
|
541
|
+
|
|
542
|
+
Arn?: string;
|
|
543
|
+
|
|
544
|
+
ApplicationId?: string;
|
|
545
|
+
|
|
546
|
+
EnvironmentId?: string;
|
|
547
|
+
|
|
548
|
+
State?: ApplicationState | string;
|
|
549
|
+
|
|
550
|
+
LastUpdatedTime?: Date;
|
|
551
|
+
}
|
|
552
|
+
export declare namespace DeleteApplicationResponse {
|
|
553
|
+
|
|
554
|
+
const filterSensitiveLog: (obj: DeleteApplicationResponse) => any;
|
|
555
|
+
}
|
|
556
|
+
export interface DeleteEnvironmentRequest {
|
|
557
|
+
|
|
558
|
+
EnvironmentIdentifier: string | undefined;
|
|
559
|
+
}
|
|
560
|
+
export declare namespace DeleteEnvironmentRequest {
|
|
561
|
+
|
|
562
|
+
const filterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
|
|
563
|
+
}
|
|
564
|
+
export interface DeleteEnvironmentResponse {
|
|
565
|
+
|
|
566
|
+
Name?: string;
|
|
567
|
+
|
|
568
|
+
Arn?: string;
|
|
569
|
+
|
|
570
|
+
EnvironmentId?: string;
|
|
571
|
+
|
|
572
|
+
State?: EnvironmentState | string;
|
|
573
|
+
|
|
574
|
+
LastUpdatedTime?: Date;
|
|
575
|
+
}
|
|
576
|
+
export declare namespace DeleteEnvironmentResponse {
|
|
577
|
+
|
|
578
|
+
const filterSensitiveLog: (obj: DeleteEnvironmentResponse) => any;
|
|
579
|
+
}
|
|
580
|
+
export interface DeleteResourcePolicyRequest {
|
|
581
|
+
|
|
582
|
+
Identifier: string | undefined;
|
|
583
|
+
}
|
|
584
|
+
export declare namespace DeleteResourcePolicyRequest {
|
|
585
|
+
|
|
586
|
+
const filterSensitiveLog: (obj: DeleteResourcePolicyRequest) => any;
|
|
587
|
+
}
|
|
588
|
+
export interface DeleteResourcePolicyResponse {
|
|
589
|
+
}
|
|
590
|
+
export declare namespace DeleteResourcePolicyResponse {
|
|
591
|
+
|
|
592
|
+
const filterSensitiveLog: (obj: DeleteResourcePolicyResponse) => any;
|
|
593
|
+
}
|
|
594
|
+
export interface DeleteRouteRequest {
|
|
595
|
+
|
|
596
|
+
EnvironmentIdentifier: string | undefined;
|
|
597
|
+
|
|
598
|
+
ApplicationIdentifier: string | undefined;
|
|
599
|
+
|
|
600
|
+
RouteIdentifier: string | undefined;
|
|
601
|
+
}
|
|
602
|
+
export declare namespace DeleteRouteRequest {
|
|
603
|
+
|
|
604
|
+
const filterSensitiveLog: (obj: DeleteRouteRequest) => any;
|
|
605
|
+
}
|
|
606
|
+
export interface DeleteRouteResponse {
|
|
607
|
+
|
|
608
|
+
RouteId?: string;
|
|
609
|
+
|
|
610
|
+
Arn?: string;
|
|
611
|
+
|
|
612
|
+
ServiceId?: string;
|
|
613
|
+
|
|
614
|
+
ApplicationId?: string;
|
|
615
|
+
|
|
616
|
+
State?: RouteState | string;
|
|
617
|
+
|
|
618
|
+
LastUpdatedTime?: Date;
|
|
619
|
+
}
|
|
620
|
+
export declare namespace DeleteRouteResponse {
|
|
621
|
+
|
|
622
|
+
const filterSensitiveLog: (obj: DeleteRouteResponse) => any;
|
|
623
|
+
}
|
|
624
|
+
export interface DeleteServiceRequest {
|
|
625
|
+
|
|
626
|
+
EnvironmentIdentifier: string | undefined;
|
|
627
|
+
|
|
628
|
+
ApplicationIdentifier: string | undefined;
|
|
629
|
+
|
|
630
|
+
ServiceIdentifier: string | undefined;
|
|
631
|
+
}
|
|
632
|
+
export declare namespace DeleteServiceRequest {
|
|
633
|
+
|
|
634
|
+
const filterSensitiveLog: (obj: DeleteServiceRequest) => any;
|
|
635
|
+
}
|
|
636
|
+
export interface DeleteServiceResponse {
|
|
637
|
+
|
|
638
|
+
ServiceId?: string;
|
|
639
|
+
|
|
640
|
+
Name?: string;
|
|
641
|
+
|
|
642
|
+
Arn?: string;
|
|
643
|
+
|
|
644
|
+
EnvironmentId?: string;
|
|
645
|
+
|
|
646
|
+
ApplicationId?: string;
|
|
647
|
+
|
|
648
|
+
State?: ServiceState | string;
|
|
649
|
+
|
|
650
|
+
LastUpdatedTime?: Date;
|
|
651
|
+
}
|
|
652
|
+
export declare namespace DeleteServiceResponse {
|
|
653
|
+
|
|
654
|
+
const filterSensitiveLog: (obj: DeleteServiceResponse) => any;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
export interface EnvironmentSummary {
|
|
658
|
+
|
|
659
|
+
Name?: string;
|
|
660
|
+
|
|
661
|
+
Arn?: string;
|
|
662
|
+
|
|
663
|
+
Description?: string;
|
|
664
|
+
|
|
665
|
+
EnvironmentId?: string;
|
|
666
|
+
|
|
667
|
+
NetworkFabricType?: NetworkFabricType | string;
|
|
668
|
+
|
|
669
|
+
OwnerAccountId?: string;
|
|
670
|
+
|
|
671
|
+
TransitGatewayId?: string;
|
|
672
|
+
|
|
673
|
+
State?: EnvironmentState | string;
|
|
674
|
+
|
|
675
|
+
Tags?: {
|
|
676
|
+
[key: string]: string;
|
|
677
|
+
};
|
|
678
|
+
|
|
679
|
+
Error?: ErrorResponse;
|
|
680
|
+
|
|
681
|
+
LastUpdatedTime?: Date;
|
|
682
|
+
|
|
683
|
+
CreatedTime?: Date;
|
|
684
|
+
}
|
|
685
|
+
export declare namespace EnvironmentSummary {
|
|
686
|
+
|
|
687
|
+
const filterSensitiveLog: (obj: EnvironmentSummary) => any;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
export interface EnvironmentVpc {
|
|
691
|
+
|
|
692
|
+
EnvironmentId?: string;
|
|
693
|
+
|
|
694
|
+
VpcId?: string;
|
|
695
|
+
|
|
696
|
+
AccountId?: string;
|
|
697
|
+
|
|
698
|
+
CidrBlocks?: string[];
|
|
699
|
+
|
|
700
|
+
VpcName?: string;
|
|
701
|
+
|
|
702
|
+
LastUpdatedTime?: Date;
|
|
703
|
+
|
|
704
|
+
CreatedTime?: Date;
|
|
705
|
+
}
|
|
706
|
+
export declare namespace EnvironmentVpc {
|
|
707
|
+
|
|
708
|
+
const filterSensitiveLog: (obj: EnvironmentVpc) => any;
|
|
709
|
+
}
|
|
710
|
+
export interface GetApplicationRequest {
|
|
711
|
+
|
|
712
|
+
EnvironmentIdentifier: string | undefined;
|
|
713
|
+
|
|
714
|
+
ApplicationIdentifier: string | undefined;
|
|
715
|
+
}
|
|
716
|
+
export declare namespace GetApplicationRequest {
|
|
717
|
+
|
|
718
|
+
const filterSensitiveLog: (obj: GetApplicationRequest) => any;
|
|
719
|
+
}
|
|
720
|
+
export interface GetApplicationResponse {
|
|
721
|
+
|
|
722
|
+
Name?: string;
|
|
723
|
+
|
|
724
|
+
Arn?: string;
|
|
725
|
+
|
|
726
|
+
OwnerAccountId?: string;
|
|
727
|
+
|
|
728
|
+
CreatedByAccountId?: string;
|
|
729
|
+
|
|
730
|
+
ApplicationId?: string;
|
|
731
|
+
|
|
732
|
+
EnvironmentId?: string;
|
|
733
|
+
|
|
734
|
+
VpcId?: string;
|
|
735
|
+
|
|
736
|
+
ProxyType?: ProxyType | string;
|
|
737
|
+
|
|
738
|
+
ApiGatewayProxy?: ApiGatewayProxyConfig;
|
|
739
|
+
|
|
740
|
+
State?: ApplicationState | string;
|
|
741
|
+
|
|
742
|
+
Tags?: {
|
|
743
|
+
[key: string]: string;
|
|
744
|
+
};
|
|
745
|
+
|
|
746
|
+
Error?: ErrorResponse;
|
|
747
|
+
|
|
748
|
+
LastUpdatedTime?: Date;
|
|
749
|
+
|
|
750
|
+
CreatedTime?: Date;
|
|
751
|
+
}
|
|
752
|
+
export declare namespace GetApplicationResponse {
|
|
753
|
+
|
|
754
|
+
const filterSensitiveLog: (obj: GetApplicationResponse) => any;
|
|
755
|
+
}
|
|
756
|
+
export interface GetEnvironmentRequest {
|
|
757
|
+
|
|
758
|
+
EnvironmentIdentifier: string | undefined;
|
|
759
|
+
}
|
|
760
|
+
export declare namespace GetEnvironmentRequest {
|
|
761
|
+
|
|
762
|
+
const filterSensitiveLog: (obj: GetEnvironmentRequest) => any;
|
|
763
|
+
}
|
|
764
|
+
export interface GetEnvironmentResponse {
|
|
765
|
+
|
|
766
|
+
Name?: string;
|
|
767
|
+
|
|
768
|
+
Arn?: string;
|
|
769
|
+
|
|
770
|
+
Description?: string;
|
|
771
|
+
|
|
772
|
+
EnvironmentId?: string;
|
|
773
|
+
|
|
774
|
+
NetworkFabricType?: NetworkFabricType | string;
|
|
775
|
+
|
|
776
|
+
OwnerAccountId?: string;
|
|
777
|
+
|
|
778
|
+
TransitGatewayId?: string;
|
|
779
|
+
|
|
780
|
+
State?: EnvironmentState | string;
|
|
781
|
+
|
|
782
|
+
Tags?: {
|
|
783
|
+
[key: string]: string;
|
|
784
|
+
};
|
|
785
|
+
|
|
786
|
+
Error?: ErrorResponse;
|
|
787
|
+
|
|
788
|
+
LastUpdatedTime?: Date;
|
|
789
|
+
|
|
790
|
+
CreatedTime?: Date;
|
|
791
|
+
}
|
|
792
|
+
export declare namespace GetEnvironmentResponse {
|
|
793
|
+
|
|
794
|
+
const filterSensitiveLog: (obj: GetEnvironmentResponse) => any;
|
|
795
|
+
}
|
|
796
|
+
export interface GetResourcePolicyRequest {
|
|
797
|
+
|
|
798
|
+
Identifier: string | undefined;
|
|
799
|
+
}
|
|
800
|
+
export declare namespace GetResourcePolicyRequest {
|
|
801
|
+
|
|
802
|
+
const filterSensitiveLog: (obj: GetResourcePolicyRequest) => any;
|
|
803
|
+
}
|
|
804
|
+
export interface GetResourcePolicyResponse {
|
|
805
|
+
|
|
806
|
+
Policy?: string;
|
|
807
|
+
}
|
|
808
|
+
export declare namespace GetResourcePolicyResponse {
|
|
809
|
+
|
|
810
|
+
const filterSensitiveLog: (obj: GetResourcePolicyResponse) => any;
|
|
811
|
+
}
|
|
812
|
+
export interface GetRouteRequest {
|
|
813
|
+
|
|
814
|
+
EnvironmentIdentifier: string | undefined;
|
|
815
|
+
|
|
816
|
+
ApplicationIdentifier: string | undefined;
|
|
817
|
+
|
|
818
|
+
RouteIdentifier: string | undefined;
|
|
819
|
+
}
|
|
820
|
+
export declare namespace GetRouteRequest {
|
|
821
|
+
|
|
822
|
+
const filterSensitiveLog: (obj: GetRouteRequest) => any;
|
|
823
|
+
}
|
|
824
|
+
export interface GetRouteResponse {
|
|
825
|
+
|
|
826
|
+
RouteId?: string;
|
|
827
|
+
|
|
828
|
+
Arn?: string;
|
|
829
|
+
|
|
830
|
+
OwnerAccountId?: string;
|
|
831
|
+
|
|
832
|
+
CreatedByAccountId?: string;
|
|
833
|
+
|
|
834
|
+
RouteType?: RouteType | string;
|
|
835
|
+
|
|
836
|
+
ServiceId?: string;
|
|
837
|
+
|
|
838
|
+
ApplicationId?: string;
|
|
839
|
+
|
|
840
|
+
EnvironmentId?: string;
|
|
841
|
+
|
|
842
|
+
SourcePath?: string;
|
|
843
|
+
|
|
844
|
+
Methods?: (HttpMethod | string)[];
|
|
845
|
+
|
|
846
|
+
IncludeChildPaths?: boolean;
|
|
847
|
+
|
|
848
|
+
PathResourceToId?: {
|
|
849
|
+
[key: string]: string;
|
|
850
|
+
};
|
|
851
|
+
|
|
852
|
+
State?: RouteState | string;
|
|
853
|
+
|
|
854
|
+
Tags?: {
|
|
855
|
+
[key: string]: string;
|
|
856
|
+
};
|
|
857
|
+
|
|
858
|
+
Error?: ErrorResponse;
|
|
859
|
+
|
|
860
|
+
LastUpdatedTime?: Date;
|
|
861
|
+
|
|
862
|
+
CreatedTime?: Date;
|
|
863
|
+
}
|
|
864
|
+
export declare namespace GetRouteResponse {
|
|
865
|
+
|
|
866
|
+
const filterSensitiveLog: (obj: GetRouteResponse) => any;
|
|
867
|
+
}
|
|
868
|
+
export interface GetServiceRequest {
|
|
869
|
+
|
|
870
|
+
EnvironmentIdentifier: string | undefined;
|
|
871
|
+
|
|
872
|
+
ApplicationIdentifier: string | undefined;
|
|
873
|
+
|
|
874
|
+
ServiceIdentifier: string | undefined;
|
|
875
|
+
}
|
|
876
|
+
export declare namespace GetServiceRequest {
|
|
877
|
+
|
|
878
|
+
const filterSensitiveLog: (obj: GetServiceRequest) => any;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
export interface LambdaEndpointConfig {
|
|
882
|
+
|
|
883
|
+
Arn?: string;
|
|
884
|
+
}
|
|
885
|
+
export declare namespace LambdaEndpointConfig {
|
|
886
|
+
|
|
887
|
+
const filterSensitiveLog: (obj: LambdaEndpointConfig) => any;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
export interface UrlEndpointConfig {
|
|
891
|
+
|
|
892
|
+
Url?: string;
|
|
893
|
+
|
|
894
|
+
HealthUrl?: string;
|
|
895
|
+
}
|
|
896
|
+
export declare namespace UrlEndpointConfig {
|
|
897
|
+
|
|
898
|
+
const filterSensitiveLog: (obj: UrlEndpointConfig) => any;
|
|
899
|
+
}
|
|
900
|
+
export interface GetServiceResponse {
|
|
901
|
+
|
|
902
|
+
ServiceId?: string;
|
|
903
|
+
|
|
904
|
+
Name?: string;
|
|
905
|
+
|
|
906
|
+
Arn?: string;
|
|
907
|
+
|
|
908
|
+
OwnerAccountId?: string;
|
|
909
|
+
|
|
910
|
+
CreatedByAccountId?: string;
|
|
911
|
+
|
|
912
|
+
Description?: string;
|
|
913
|
+
|
|
914
|
+
EnvironmentId?: string;
|
|
915
|
+
|
|
916
|
+
ApplicationId?: string;
|
|
917
|
+
|
|
918
|
+
VpcId?: string;
|
|
919
|
+
|
|
920
|
+
EndpointType?: ServiceEndpointType | string;
|
|
921
|
+
|
|
922
|
+
UrlEndpoint?: UrlEndpointConfig;
|
|
923
|
+
|
|
924
|
+
LambdaEndpoint?: LambdaEndpointConfig;
|
|
925
|
+
|
|
926
|
+
State?: ServiceState | string;
|
|
927
|
+
|
|
928
|
+
Tags?: {
|
|
929
|
+
[key: string]: string;
|
|
930
|
+
};
|
|
931
|
+
|
|
932
|
+
Error?: ErrorResponse;
|
|
933
|
+
|
|
934
|
+
LastUpdatedTime?: Date;
|
|
935
|
+
|
|
936
|
+
CreatedTime?: Date;
|
|
937
|
+
}
|
|
938
|
+
export declare namespace GetServiceResponse {
|
|
939
|
+
|
|
940
|
+
const filterSensitiveLog: (obj: GetServiceResponse) => any;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
export interface InvalidResourcePolicyException extends __SmithyException, $MetadataBearer {
|
|
944
|
+
name: "InvalidResourcePolicyException";
|
|
945
|
+
$fault: "client";
|
|
946
|
+
Message: string | undefined;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
export interface LambdaEndpointSummary {
|
|
950
|
+
|
|
951
|
+
Arn?: string;
|
|
952
|
+
}
|
|
953
|
+
export declare namespace LambdaEndpointSummary {
|
|
954
|
+
|
|
955
|
+
const filterSensitiveLog: (obj: LambdaEndpointSummary) => any;
|
|
956
|
+
}
|
|
957
|
+
export interface ListApplicationsRequest {
|
|
958
|
+
|
|
959
|
+
EnvironmentIdentifier: string | undefined;
|
|
960
|
+
|
|
961
|
+
NextToken?: string;
|
|
962
|
+
|
|
963
|
+
MaxResults?: number;
|
|
964
|
+
}
|
|
965
|
+
export declare namespace ListApplicationsRequest {
|
|
966
|
+
|
|
967
|
+
const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
968
|
+
}
|
|
969
|
+
export interface ListApplicationsResponse {
|
|
970
|
+
|
|
971
|
+
ApplicationSummaryList?: ApplicationSummary[];
|
|
972
|
+
|
|
973
|
+
NextToken?: string;
|
|
974
|
+
}
|
|
975
|
+
export declare namespace ListApplicationsResponse {
|
|
976
|
+
|
|
977
|
+
const filterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
978
|
+
}
|
|
979
|
+
export interface ListEnvironmentsRequest {
|
|
980
|
+
|
|
981
|
+
NextToken?: string;
|
|
982
|
+
|
|
983
|
+
MaxResults?: number;
|
|
984
|
+
}
|
|
985
|
+
export declare namespace ListEnvironmentsRequest {
|
|
986
|
+
|
|
987
|
+
const filterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
|
|
988
|
+
}
|
|
989
|
+
export interface ListEnvironmentsResponse {
|
|
990
|
+
|
|
991
|
+
EnvironmentSummaryList?: EnvironmentSummary[];
|
|
992
|
+
|
|
993
|
+
NextToken?: string;
|
|
994
|
+
}
|
|
995
|
+
export declare namespace ListEnvironmentsResponse {
|
|
996
|
+
|
|
997
|
+
const filterSensitiveLog: (obj: ListEnvironmentsResponse) => any;
|
|
998
|
+
}
|
|
999
|
+
export interface ListEnvironmentVpcsRequest {
|
|
1000
|
+
|
|
1001
|
+
EnvironmentIdentifier: string | undefined;
|
|
1002
|
+
|
|
1003
|
+
NextToken?: string;
|
|
1004
|
+
|
|
1005
|
+
MaxResults?: number;
|
|
1006
|
+
}
|
|
1007
|
+
export declare namespace ListEnvironmentVpcsRequest {
|
|
1008
|
+
|
|
1009
|
+
const filterSensitiveLog: (obj: ListEnvironmentVpcsRequest) => any;
|
|
1010
|
+
}
|
|
1011
|
+
export interface ListEnvironmentVpcsResponse {
|
|
1012
|
+
|
|
1013
|
+
EnvironmentVpcList?: EnvironmentVpc[];
|
|
1014
|
+
|
|
1015
|
+
NextToken?: string;
|
|
1016
|
+
}
|
|
1017
|
+
export declare namespace ListEnvironmentVpcsResponse {
|
|
1018
|
+
|
|
1019
|
+
const filterSensitiveLog: (obj: ListEnvironmentVpcsResponse) => any;
|
|
1020
|
+
}
|
|
1021
|
+
export interface ListRoutesRequest {
|
|
1022
|
+
|
|
1023
|
+
EnvironmentIdentifier: string | undefined;
|
|
1024
|
+
|
|
1025
|
+
ApplicationIdentifier: string | undefined;
|
|
1026
|
+
|
|
1027
|
+
NextToken?: string;
|
|
1028
|
+
|
|
1029
|
+
MaxResults?: number;
|
|
1030
|
+
}
|
|
1031
|
+
export declare namespace ListRoutesRequest {
|
|
1032
|
+
|
|
1033
|
+
const filterSensitiveLog: (obj: ListRoutesRequest) => any;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
export interface RouteSummary {
|
|
1037
|
+
|
|
1038
|
+
RouteId?: string;
|
|
1039
|
+
|
|
1040
|
+
Arn?: string;
|
|
1041
|
+
|
|
1042
|
+
OwnerAccountId?: string;
|
|
1043
|
+
|
|
1044
|
+
CreatedByAccountId?: string;
|
|
1045
|
+
|
|
1046
|
+
RouteType?: RouteType | string;
|
|
1047
|
+
|
|
1048
|
+
ServiceId?: string;
|
|
1049
|
+
|
|
1050
|
+
ApplicationId?: string;
|
|
1051
|
+
|
|
1052
|
+
EnvironmentId?: string;
|
|
1053
|
+
|
|
1054
|
+
SourcePath?: string;
|
|
1055
|
+
|
|
1056
|
+
Methods?: (HttpMethod | string)[];
|
|
1057
|
+
|
|
1058
|
+
IncludeChildPaths?: boolean;
|
|
1059
|
+
|
|
1060
|
+
PathResourceToId?: {
|
|
1061
|
+
[key: string]: string;
|
|
1062
|
+
};
|
|
1063
|
+
|
|
1064
|
+
State?: RouteState | string;
|
|
1065
|
+
|
|
1066
|
+
Tags?: {
|
|
1067
|
+
[key: string]: string;
|
|
1068
|
+
};
|
|
1069
|
+
|
|
1070
|
+
Error?: ErrorResponse;
|
|
1071
|
+
|
|
1072
|
+
LastUpdatedTime?: Date;
|
|
1073
|
+
|
|
1074
|
+
CreatedTime?: Date;
|
|
1075
|
+
}
|
|
1076
|
+
export declare namespace RouteSummary {
|
|
1077
|
+
|
|
1078
|
+
const filterSensitiveLog: (obj: RouteSummary) => any;
|
|
1079
|
+
}
|
|
1080
|
+
export interface ListRoutesResponse {
|
|
1081
|
+
|
|
1082
|
+
RouteSummaryList?: RouteSummary[];
|
|
1083
|
+
|
|
1084
|
+
NextToken?: string;
|
|
1085
|
+
}
|
|
1086
|
+
export declare namespace ListRoutesResponse {
|
|
1087
|
+
|
|
1088
|
+
const filterSensitiveLog: (obj: ListRoutesResponse) => any;
|
|
1089
|
+
}
|
|
1090
|
+
export interface ListServicesRequest {
|
|
1091
|
+
|
|
1092
|
+
EnvironmentIdentifier: string | undefined;
|
|
1093
|
+
|
|
1094
|
+
ApplicationIdentifier: string | undefined;
|
|
1095
|
+
|
|
1096
|
+
NextToken?: string;
|
|
1097
|
+
|
|
1098
|
+
MaxResults?: number;
|
|
1099
|
+
}
|
|
1100
|
+
export declare namespace ListServicesRequest {
|
|
1101
|
+
|
|
1102
|
+
const filterSensitiveLog: (obj: ListServicesRequest) => any;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
export interface UrlEndpointSummary {
|
|
1106
|
+
|
|
1107
|
+
Url?: string;
|
|
1108
|
+
|
|
1109
|
+
HealthUrl?: string;
|
|
1110
|
+
}
|
|
1111
|
+
export declare namespace UrlEndpointSummary {
|
|
1112
|
+
|
|
1113
|
+
const filterSensitiveLog: (obj: UrlEndpointSummary) => any;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
export interface ServiceSummary {
|
|
1117
|
+
|
|
1118
|
+
ServiceId?: string;
|
|
1119
|
+
|
|
1120
|
+
Name?: string;
|
|
1121
|
+
|
|
1122
|
+
Arn?: string;
|
|
1123
|
+
|
|
1124
|
+
OwnerAccountId?: string;
|
|
1125
|
+
|
|
1126
|
+
CreatedByAccountId?: string;
|
|
1127
|
+
|
|
1128
|
+
Description?: string;
|
|
1129
|
+
|
|
1130
|
+
EnvironmentId?: string;
|
|
1131
|
+
|
|
1132
|
+
ApplicationId?: string;
|
|
1133
|
+
|
|
1134
|
+
VpcId?: string;
|
|
1135
|
+
|
|
1136
|
+
EndpointType?: ServiceEndpointType | string;
|
|
1137
|
+
|
|
1138
|
+
UrlEndpoint?: UrlEndpointSummary;
|
|
1139
|
+
|
|
1140
|
+
LambdaEndpoint?: LambdaEndpointSummary;
|
|
1141
|
+
|
|
1142
|
+
State?: ServiceState | string;
|
|
1143
|
+
|
|
1144
|
+
Tags?: {
|
|
1145
|
+
[key: string]: string;
|
|
1146
|
+
};
|
|
1147
|
+
|
|
1148
|
+
Error?: ErrorResponse;
|
|
1149
|
+
|
|
1150
|
+
LastUpdatedTime?: Date;
|
|
1151
|
+
|
|
1152
|
+
CreatedTime?: Date;
|
|
1153
|
+
}
|
|
1154
|
+
export declare namespace ServiceSummary {
|
|
1155
|
+
|
|
1156
|
+
const filterSensitiveLog: (obj: ServiceSummary) => any;
|
|
1157
|
+
}
|
|
1158
|
+
export interface ListServicesResponse {
|
|
1159
|
+
|
|
1160
|
+
ServiceSummaryList?: ServiceSummary[];
|
|
1161
|
+
|
|
1162
|
+
NextToken?: string;
|
|
1163
|
+
}
|
|
1164
|
+
export declare namespace ListServicesResponse {
|
|
1165
|
+
|
|
1166
|
+
const filterSensitiveLog: (obj: ListServicesResponse) => any;
|
|
1167
|
+
}
|
|
1168
|
+
export interface ListTagsForResourceRequest {
|
|
1169
|
+
|
|
1170
|
+
ResourceArn: string | undefined;
|
|
1171
|
+
}
|
|
1172
|
+
export declare namespace ListTagsForResourceRequest {
|
|
1173
|
+
|
|
1174
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1175
|
+
}
|
|
1176
|
+
export interface ListTagsForResourceResponse {
|
|
1177
|
+
|
|
1178
|
+
Tags?: {
|
|
1179
|
+
[key: string]: string;
|
|
1180
|
+
};
|
|
1181
|
+
}
|
|
1182
|
+
export declare namespace ListTagsForResourceResponse {
|
|
1183
|
+
|
|
1184
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1185
|
+
}
|
|
1186
|
+
export interface PutResourcePolicyRequest {
|
|
1187
|
+
|
|
1188
|
+
ResourceArn: string | undefined;
|
|
1189
|
+
|
|
1190
|
+
Policy: string | undefined;
|
|
1191
|
+
}
|
|
1192
|
+
export declare namespace PutResourcePolicyRequest {
|
|
1193
|
+
|
|
1194
|
+
const filterSensitiveLog: (obj: PutResourcePolicyRequest) => any;
|
|
1195
|
+
}
|
|
1196
|
+
export interface PutResourcePolicyResponse {
|
|
1197
|
+
}
|
|
1198
|
+
export declare namespace PutResourcePolicyResponse {
|
|
1199
|
+
|
|
1200
|
+
const filterSensitiveLog: (obj: PutResourcePolicyResponse) => any;
|
|
1201
|
+
}
|
|
1202
|
+
export interface TagResourceRequest {
|
|
1203
|
+
|
|
1204
|
+
ResourceArn: string | undefined;
|
|
1205
|
+
|
|
1206
|
+
Tags: {
|
|
1207
|
+
[key: string]: string;
|
|
1208
|
+
} | undefined;
|
|
1209
|
+
}
|
|
1210
|
+
export declare namespace TagResourceRequest {
|
|
1211
|
+
|
|
1212
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1213
|
+
}
|
|
1214
|
+
export interface TagResourceResponse {
|
|
1215
|
+
}
|
|
1216
|
+
export declare namespace TagResourceResponse {
|
|
1217
|
+
|
|
1218
|
+
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1219
|
+
}
|
|
1220
|
+
export interface UntagResourceRequest {
|
|
1221
|
+
|
|
1222
|
+
ResourceArn: string | undefined;
|
|
1223
|
+
|
|
1224
|
+
TagKeys: string[] | undefined;
|
|
1225
|
+
}
|
|
1226
|
+
export declare namespace UntagResourceRequest {
|
|
1227
|
+
|
|
1228
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1229
|
+
}
|
|
1230
|
+
export interface UntagResourceResponse {
|
|
1231
|
+
}
|
|
1232
|
+
export declare namespace UntagResourceResponse {
|
|
1233
|
+
|
|
1234
|
+
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1235
|
+
}
|