@aws-sdk/client-apprunner 3.170.0 → 3.171.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/AppRunner.d.ts +0 -30
- package/dist-types/ts3.4/AppRunnerClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AssociateCustomDomainCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateAutoScalingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateObservabilityConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateVpcConnectorCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteAutoScalingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteObservabilityConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteVpcConnectorCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAutoScalingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeCustomDomainsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeObservabilityConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeServiceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeVpcConnectorCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisassociateCustomDomainCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAutoScalingConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListObservabilityConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListVpcConnectorsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PauseServiceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ResumeServiceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/AppRunnerServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -281
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -2,9 +2,7 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
|
|
3
3
|
export interface AssociateCustomDomainRequest {
|
|
4
4
|
ServiceArn: string | undefined;
|
|
5
|
-
|
|
6
5
|
DomainName: string | undefined;
|
|
7
|
-
|
|
8
6
|
EnableWWWSubdomain?: boolean;
|
|
9
7
|
}
|
|
10
8
|
export declare enum CertificateValidationRecordStatus {
|
|
@@ -12,14 +10,10 @@ export declare enum CertificateValidationRecordStatus {
|
|
|
12
10
|
PENDING_VALIDATION = "PENDING_VALIDATION",
|
|
13
11
|
SUCCESS = "SUCCESS",
|
|
14
12
|
}
|
|
15
|
-
|
|
16
13
|
export interface CertificateValidationRecord {
|
|
17
14
|
Name?: string;
|
|
18
|
-
|
|
19
15
|
Type?: string;
|
|
20
|
-
|
|
21
16
|
Value?: string;
|
|
22
|
-
|
|
23
17
|
Status?: CertificateValidationRecordStatus | string;
|
|
24
18
|
}
|
|
25
19
|
export declare enum CustomDomainAssociationStatus {
|
|
@@ -31,105 +25,75 @@ export declare enum CustomDomainAssociationStatus {
|
|
|
31
25
|
DELETING = "DELETING",
|
|
32
26
|
PENDING_CERTIFICATE_DNS_VALIDATION = "PENDING_CERTIFICATE_DNS_VALIDATION",
|
|
33
27
|
}
|
|
34
|
-
|
|
35
28
|
export interface CustomDomain {
|
|
36
29
|
DomainName: string | undefined;
|
|
37
|
-
|
|
38
30
|
EnableWWWSubdomain: boolean | undefined;
|
|
39
|
-
|
|
40
31
|
CertificateValidationRecords?: CertificateValidationRecord[];
|
|
41
|
-
|
|
42
32
|
Status: CustomDomainAssociationStatus | string | undefined;
|
|
43
33
|
}
|
|
44
34
|
export interface AssociateCustomDomainResponse {
|
|
45
35
|
DNSTarget: string | undefined;
|
|
46
|
-
|
|
47
36
|
ServiceArn: string | undefined;
|
|
48
|
-
|
|
49
37
|
CustomDomain: CustomDomain | undefined;
|
|
50
38
|
}
|
|
51
|
-
|
|
52
39
|
export declare class InternalServiceErrorException extends __BaseException {
|
|
53
40
|
readonly name: "InternalServiceErrorException";
|
|
54
41
|
readonly $fault: "server";
|
|
55
42
|
Message?: string;
|
|
56
|
-
|
|
57
43
|
constructor(
|
|
58
44
|
opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
|
|
59
45
|
);
|
|
60
46
|
}
|
|
61
|
-
|
|
62
47
|
export declare class InvalidRequestException extends __BaseException {
|
|
63
48
|
readonly name: "InvalidRequestException";
|
|
64
49
|
readonly $fault: "client";
|
|
65
50
|
Message?: string;
|
|
66
|
-
|
|
67
51
|
constructor(
|
|
68
52
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
69
53
|
);
|
|
70
54
|
}
|
|
71
|
-
|
|
72
55
|
export declare class InvalidStateException extends __BaseException {
|
|
73
56
|
readonly name: "InvalidStateException";
|
|
74
57
|
readonly $fault: "client";
|
|
75
58
|
Message?: string;
|
|
76
|
-
|
|
77
59
|
constructor(
|
|
78
60
|
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
79
61
|
);
|
|
80
62
|
}
|
|
81
|
-
|
|
82
63
|
export interface Tag {
|
|
83
64
|
Key?: string;
|
|
84
|
-
|
|
85
65
|
Value?: string;
|
|
86
66
|
}
|
|
87
67
|
export interface CreateAutoScalingConfigurationRequest {
|
|
88
68
|
AutoScalingConfigurationName: string | undefined;
|
|
89
|
-
|
|
90
69
|
MaxConcurrency?: number;
|
|
91
|
-
|
|
92
70
|
MinSize?: number;
|
|
93
|
-
|
|
94
71
|
MaxSize?: number;
|
|
95
|
-
|
|
96
72
|
Tags?: Tag[];
|
|
97
73
|
}
|
|
98
74
|
export declare enum AutoScalingConfigurationStatus {
|
|
99
75
|
ACTIVE = "ACTIVE",
|
|
100
76
|
INACTIVE = "INACTIVE",
|
|
101
77
|
}
|
|
102
|
-
|
|
103
78
|
export interface AutoScalingConfiguration {
|
|
104
79
|
AutoScalingConfigurationArn?: string;
|
|
105
|
-
|
|
106
80
|
AutoScalingConfigurationName?: string;
|
|
107
|
-
|
|
108
81
|
AutoScalingConfigurationRevision?: number;
|
|
109
|
-
|
|
110
82
|
Latest?: boolean;
|
|
111
|
-
|
|
112
83
|
Status?: AutoScalingConfigurationStatus | string;
|
|
113
|
-
|
|
114
84
|
MaxConcurrency?: number;
|
|
115
|
-
|
|
116
85
|
MinSize?: number;
|
|
117
|
-
|
|
118
86
|
MaxSize?: number;
|
|
119
|
-
|
|
120
87
|
CreatedAt?: Date;
|
|
121
|
-
|
|
122
88
|
DeletedAt?: Date;
|
|
123
89
|
}
|
|
124
90
|
export interface CreateAutoScalingConfigurationResponse {
|
|
125
91
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
126
92
|
}
|
|
127
|
-
|
|
128
93
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
129
94
|
readonly name: "ServiceQuotaExceededException";
|
|
130
95
|
readonly $fault: "client";
|
|
131
96
|
Message?: string;
|
|
132
|
-
|
|
133
97
|
constructor(
|
|
134
98
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
135
99
|
);
|
|
@@ -139,9 +103,7 @@ export declare enum ProviderType {
|
|
|
139
103
|
}
|
|
140
104
|
export interface CreateConnectionRequest {
|
|
141
105
|
ConnectionName: string | undefined;
|
|
142
|
-
|
|
143
106
|
ProviderType: ProviderType | string | undefined;
|
|
144
|
-
|
|
145
107
|
Tags?: Tag[];
|
|
146
108
|
}
|
|
147
109
|
export declare enum ConnectionStatus {
|
|
@@ -150,16 +112,11 @@ export declare enum ConnectionStatus {
|
|
|
150
112
|
ERROR = "ERROR",
|
|
151
113
|
PENDING_HANDSHAKE = "PENDING_HANDSHAKE",
|
|
152
114
|
}
|
|
153
|
-
|
|
154
115
|
export interface Connection {
|
|
155
116
|
ConnectionName?: string;
|
|
156
|
-
|
|
157
117
|
ConnectionArn?: string;
|
|
158
|
-
|
|
159
118
|
ProviderType?: ProviderType | string;
|
|
160
|
-
|
|
161
119
|
Status?: ConnectionStatus | string;
|
|
162
|
-
|
|
163
120
|
CreatedAt?: Date;
|
|
164
121
|
}
|
|
165
122
|
export interface CreateConnectionResponse {
|
|
@@ -168,43 +125,31 @@ export interface CreateConnectionResponse {
|
|
|
168
125
|
export declare enum TracingVendor {
|
|
169
126
|
AWSXRAY = "AWSXRAY",
|
|
170
127
|
}
|
|
171
|
-
|
|
172
128
|
export interface TraceConfiguration {
|
|
173
129
|
Vendor: TracingVendor | string | undefined;
|
|
174
130
|
}
|
|
175
131
|
export interface CreateObservabilityConfigurationRequest {
|
|
176
132
|
ObservabilityConfigurationName: string | undefined;
|
|
177
|
-
|
|
178
133
|
TraceConfiguration?: TraceConfiguration;
|
|
179
|
-
|
|
180
134
|
Tags?: Tag[];
|
|
181
135
|
}
|
|
182
136
|
export declare enum ObservabilityConfigurationStatus {
|
|
183
137
|
ACTIVE = "ACTIVE",
|
|
184
138
|
INACTIVE = "INACTIVE",
|
|
185
139
|
}
|
|
186
|
-
|
|
187
140
|
export interface ObservabilityConfiguration {
|
|
188
141
|
ObservabilityConfigurationArn?: string;
|
|
189
|
-
|
|
190
142
|
ObservabilityConfigurationName?: string;
|
|
191
|
-
|
|
192
143
|
TraceConfiguration?: TraceConfiguration;
|
|
193
|
-
|
|
194
144
|
ObservabilityConfigurationRevision?: number;
|
|
195
|
-
|
|
196
145
|
Latest?: boolean;
|
|
197
|
-
|
|
198
146
|
Status?: ObservabilityConfigurationStatus | string;
|
|
199
|
-
|
|
200
147
|
CreatedAt?: Date;
|
|
201
|
-
|
|
202
148
|
DeletedAt?: Date;
|
|
203
149
|
}
|
|
204
150
|
export interface CreateObservabilityConfigurationResponse {
|
|
205
151
|
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
206
152
|
}
|
|
207
|
-
|
|
208
153
|
export interface EncryptionConfiguration {
|
|
209
154
|
KmsKey: string | undefined;
|
|
210
155
|
}
|
|
@@ -212,52 +157,36 @@ export declare enum HealthCheckProtocol {
|
|
|
212
157
|
HTTP = "HTTP",
|
|
213
158
|
TCP = "TCP",
|
|
214
159
|
}
|
|
215
|
-
|
|
216
160
|
export interface HealthCheckConfiguration {
|
|
217
161
|
Protocol?: HealthCheckProtocol | string;
|
|
218
|
-
|
|
219
162
|
Path?: string;
|
|
220
|
-
|
|
221
163
|
Interval?: number;
|
|
222
|
-
|
|
223
164
|
Timeout?: number;
|
|
224
|
-
|
|
225
165
|
HealthyThreshold?: number;
|
|
226
|
-
|
|
227
166
|
UnhealthyThreshold?: number;
|
|
228
167
|
}
|
|
229
|
-
|
|
230
168
|
export interface InstanceConfiguration {
|
|
231
169
|
Cpu?: string;
|
|
232
|
-
|
|
233
170
|
Memory?: string;
|
|
234
|
-
|
|
235
171
|
InstanceRoleArn?: string;
|
|
236
172
|
}
|
|
237
173
|
export declare enum EgressType {
|
|
238
174
|
DEFAULT = "DEFAULT",
|
|
239
175
|
VPC = "VPC",
|
|
240
176
|
}
|
|
241
|
-
|
|
242
177
|
export interface EgressConfiguration {
|
|
243
178
|
EgressType?: EgressType | string;
|
|
244
|
-
|
|
245
179
|
VpcConnectorArn?: string;
|
|
246
180
|
}
|
|
247
|
-
|
|
248
181
|
export interface NetworkConfiguration {
|
|
249
182
|
EgressConfiguration?: EgressConfiguration;
|
|
250
183
|
}
|
|
251
|
-
|
|
252
184
|
export interface ServiceObservabilityConfiguration {
|
|
253
185
|
ObservabilityEnabled: boolean | undefined;
|
|
254
|
-
|
|
255
186
|
ObservabilityConfigurationArn?: string;
|
|
256
187
|
}
|
|
257
|
-
|
|
258
188
|
export interface AuthenticationConfiguration {
|
|
259
189
|
ConnectionArn?: string;
|
|
260
|
-
|
|
261
190
|
AccessRoleArn?: string;
|
|
262
191
|
}
|
|
263
192
|
export declare enum Runtime {
|
|
@@ -267,100 +196,67 @@ export declare enum Runtime {
|
|
|
267
196
|
NODEJS_14 = "NODEJS_14",
|
|
268
197
|
PYTHON_3 = "PYTHON_3",
|
|
269
198
|
}
|
|
270
|
-
|
|
271
199
|
export interface CodeConfigurationValues {
|
|
272
200
|
Runtime: Runtime | string | undefined;
|
|
273
|
-
|
|
274
201
|
BuildCommand?: string;
|
|
275
|
-
|
|
276
202
|
StartCommand?: string;
|
|
277
|
-
|
|
278
203
|
Port?: string;
|
|
279
|
-
|
|
280
204
|
RuntimeEnvironmentVariables?: Record<string, string>;
|
|
281
205
|
}
|
|
282
206
|
export declare enum ConfigurationSource {
|
|
283
207
|
API = "API",
|
|
284
208
|
REPOSITORY = "REPOSITORY",
|
|
285
209
|
}
|
|
286
|
-
|
|
287
210
|
export interface CodeConfiguration {
|
|
288
211
|
ConfigurationSource: ConfigurationSource | string | undefined;
|
|
289
|
-
|
|
290
212
|
CodeConfigurationValues?: CodeConfigurationValues;
|
|
291
213
|
}
|
|
292
214
|
export declare enum SourceCodeVersionType {
|
|
293
215
|
BRANCH = "BRANCH",
|
|
294
216
|
}
|
|
295
|
-
|
|
296
217
|
export interface SourceCodeVersion {
|
|
297
218
|
Type: SourceCodeVersionType | string | undefined;
|
|
298
|
-
|
|
299
219
|
Value: string | undefined;
|
|
300
220
|
}
|
|
301
|
-
|
|
302
221
|
export interface CodeRepository {
|
|
303
222
|
RepositoryUrl: string | undefined;
|
|
304
|
-
|
|
305
223
|
SourceCodeVersion: SourceCodeVersion | undefined;
|
|
306
|
-
|
|
307
224
|
CodeConfiguration?: CodeConfiguration;
|
|
308
225
|
}
|
|
309
|
-
|
|
310
226
|
export interface ImageConfiguration {
|
|
311
227
|
RuntimeEnvironmentVariables?: Record<string, string>;
|
|
312
|
-
|
|
313
228
|
StartCommand?: string;
|
|
314
|
-
|
|
315
229
|
Port?: string;
|
|
316
230
|
}
|
|
317
231
|
export declare enum ImageRepositoryType {
|
|
318
232
|
ECR = "ECR",
|
|
319
233
|
ECR_PUBLIC = "ECR_PUBLIC",
|
|
320
234
|
}
|
|
321
|
-
|
|
322
235
|
export interface ImageRepository {
|
|
323
236
|
ImageIdentifier: string | undefined;
|
|
324
|
-
|
|
325
237
|
ImageConfiguration?: ImageConfiguration;
|
|
326
|
-
|
|
327
238
|
ImageRepositoryType: ImageRepositoryType | string | undefined;
|
|
328
239
|
}
|
|
329
|
-
|
|
330
240
|
export interface SourceConfiguration {
|
|
331
241
|
CodeRepository?: CodeRepository;
|
|
332
|
-
|
|
333
242
|
ImageRepository?: ImageRepository;
|
|
334
|
-
|
|
335
243
|
AutoDeploymentsEnabled?: boolean;
|
|
336
|
-
|
|
337
244
|
AuthenticationConfiguration?: AuthenticationConfiguration;
|
|
338
245
|
}
|
|
339
246
|
export interface CreateServiceRequest {
|
|
340
247
|
ServiceName: string | undefined;
|
|
341
|
-
|
|
342
248
|
SourceConfiguration: SourceConfiguration | undefined;
|
|
343
|
-
|
|
344
249
|
InstanceConfiguration?: InstanceConfiguration;
|
|
345
|
-
|
|
346
250
|
Tags?: Tag[];
|
|
347
|
-
|
|
348
251
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
349
|
-
|
|
350
252
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
351
|
-
|
|
352
253
|
AutoScalingConfigurationArn?: string;
|
|
353
|
-
|
|
354
254
|
NetworkConfiguration?: NetworkConfiguration;
|
|
355
|
-
|
|
356
255
|
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
357
256
|
}
|
|
358
|
-
|
|
359
257
|
export interface AutoScalingConfigurationSummary {
|
|
360
258
|
AutoScalingConfigurationArn?: string;
|
|
361
|
-
|
|
362
259
|
AutoScalingConfigurationName?: string;
|
|
363
|
-
|
|
364
260
|
AutoScalingConfigurationRevision?: number;
|
|
365
261
|
}
|
|
366
262
|
export declare enum ServiceStatus {
|
|
@@ -371,72 +267,45 @@ export declare enum ServiceStatus {
|
|
|
371
267
|
PAUSED = "PAUSED",
|
|
372
268
|
RUNNING = "RUNNING",
|
|
373
269
|
}
|
|
374
|
-
|
|
375
270
|
export interface Service {
|
|
376
271
|
ServiceName: string | undefined;
|
|
377
|
-
|
|
378
272
|
ServiceId: string | undefined;
|
|
379
|
-
|
|
380
273
|
ServiceArn: string | undefined;
|
|
381
|
-
|
|
382
274
|
ServiceUrl: string | undefined;
|
|
383
|
-
|
|
384
275
|
CreatedAt: Date | undefined;
|
|
385
|
-
|
|
386
276
|
UpdatedAt: Date | undefined;
|
|
387
|
-
|
|
388
277
|
DeletedAt?: Date;
|
|
389
|
-
|
|
390
278
|
Status: ServiceStatus | string | undefined;
|
|
391
|
-
|
|
392
279
|
SourceConfiguration: SourceConfiguration | undefined;
|
|
393
|
-
|
|
394
280
|
InstanceConfiguration: InstanceConfiguration | undefined;
|
|
395
|
-
|
|
396
281
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
397
|
-
|
|
398
282
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
399
|
-
|
|
400
283
|
AutoScalingConfigurationSummary: AutoScalingConfigurationSummary | undefined;
|
|
401
|
-
|
|
402
284
|
NetworkConfiguration: NetworkConfiguration | undefined;
|
|
403
|
-
|
|
404
285
|
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
405
286
|
}
|
|
406
287
|
export interface CreateServiceResponse {
|
|
407
288
|
Service: Service | undefined;
|
|
408
|
-
|
|
409
289
|
OperationId: string | undefined;
|
|
410
290
|
}
|
|
411
291
|
export interface CreateVpcConnectorRequest {
|
|
412
292
|
VpcConnectorName: string | undefined;
|
|
413
|
-
|
|
414
293
|
Subnets: string[] | undefined;
|
|
415
|
-
|
|
416
294
|
SecurityGroups?: string[];
|
|
417
|
-
|
|
418
295
|
Tags?: Tag[];
|
|
419
296
|
}
|
|
420
297
|
export declare enum VpcConnectorStatus {
|
|
421
298
|
ACTIVE = "ACTIVE",
|
|
422
299
|
INACTIVE = "INACTIVE",
|
|
423
300
|
}
|
|
424
|
-
|
|
425
301
|
export interface VpcConnector {
|
|
426
302
|
VpcConnectorName?: string;
|
|
427
|
-
|
|
428
303
|
VpcConnectorArn?: string;
|
|
429
|
-
|
|
430
304
|
VpcConnectorRevision?: number;
|
|
431
|
-
|
|
432
305
|
Subnets?: string[];
|
|
433
|
-
|
|
434
306
|
SecurityGroups?: string[];
|
|
435
|
-
|
|
436
307
|
Status?: VpcConnectorStatus | string;
|
|
437
|
-
|
|
438
308
|
CreatedAt?: Date;
|
|
439
|
-
|
|
440
309
|
DeletedAt?: Date;
|
|
441
310
|
}
|
|
442
311
|
export interface CreateVpcConnectorResponse {
|
|
@@ -448,12 +317,10 @@ export interface DeleteAutoScalingConfigurationRequest {
|
|
|
448
317
|
export interface DeleteAutoScalingConfigurationResponse {
|
|
449
318
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
450
319
|
}
|
|
451
|
-
|
|
452
320
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
453
321
|
readonly name: "ResourceNotFoundException";
|
|
454
322
|
readonly $fault: "client";
|
|
455
323
|
Message?: string;
|
|
456
|
-
|
|
457
324
|
constructor(
|
|
458
325
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
459
326
|
);
|
|
@@ -475,7 +342,6 @@ export interface DeleteServiceRequest {
|
|
|
475
342
|
}
|
|
476
343
|
export interface DeleteServiceResponse {
|
|
477
344
|
Service: Service | undefined;
|
|
478
|
-
|
|
479
345
|
OperationId: string | undefined;
|
|
480
346
|
}
|
|
481
347
|
export interface DeleteVpcConnectorRequest {
|
|
@@ -492,18 +358,13 @@ export interface DescribeAutoScalingConfigurationResponse {
|
|
|
492
358
|
}
|
|
493
359
|
export interface DescribeCustomDomainsRequest {
|
|
494
360
|
ServiceArn: string | undefined;
|
|
495
|
-
|
|
496
361
|
NextToken?: string;
|
|
497
|
-
|
|
498
362
|
MaxResults?: number;
|
|
499
363
|
}
|
|
500
364
|
export interface DescribeCustomDomainsResponse {
|
|
501
365
|
DNSTarget: string | undefined;
|
|
502
|
-
|
|
503
366
|
ServiceArn: string | undefined;
|
|
504
|
-
|
|
505
367
|
CustomDomains: CustomDomain[] | undefined;
|
|
506
|
-
|
|
507
368
|
NextToken?: string;
|
|
508
369
|
}
|
|
509
370
|
export interface DescribeObservabilityConfigurationRequest {
|
|
@@ -526,85 +387,61 @@ export interface DescribeVpcConnectorResponse {
|
|
|
526
387
|
}
|
|
527
388
|
export interface DisassociateCustomDomainRequest {
|
|
528
389
|
ServiceArn: string | undefined;
|
|
529
|
-
|
|
530
390
|
DomainName: string | undefined;
|
|
531
391
|
}
|
|
532
392
|
export interface DisassociateCustomDomainResponse {
|
|
533
393
|
DNSTarget: string | undefined;
|
|
534
|
-
|
|
535
394
|
ServiceArn: string | undefined;
|
|
536
|
-
|
|
537
395
|
CustomDomain: CustomDomain | undefined;
|
|
538
396
|
}
|
|
539
397
|
export interface ListAutoScalingConfigurationsRequest {
|
|
540
398
|
AutoScalingConfigurationName?: string;
|
|
541
|
-
|
|
542
399
|
LatestOnly?: boolean;
|
|
543
|
-
|
|
544
400
|
MaxResults?: number;
|
|
545
|
-
|
|
546
401
|
NextToken?: string;
|
|
547
402
|
}
|
|
548
403
|
export interface ListAutoScalingConfigurationsResponse {
|
|
549
404
|
AutoScalingConfigurationSummaryList:
|
|
550
405
|
| AutoScalingConfigurationSummary[]
|
|
551
406
|
| undefined;
|
|
552
|
-
|
|
553
407
|
NextToken?: string;
|
|
554
408
|
}
|
|
555
409
|
export interface ListConnectionsRequest {
|
|
556
410
|
ConnectionName?: string;
|
|
557
|
-
|
|
558
411
|
MaxResults?: number;
|
|
559
|
-
|
|
560
412
|
NextToken?: string;
|
|
561
413
|
}
|
|
562
|
-
|
|
563
414
|
export interface ConnectionSummary {
|
|
564
415
|
ConnectionName?: string;
|
|
565
|
-
|
|
566
416
|
ConnectionArn?: string;
|
|
567
|
-
|
|
568
417
|
ProviderType?: ProviderType | string;
|
|
569
|
-
|
|
570
418
|
Status?: ConnectionStatus | string;
|
|
571
|
-
|
|
572
419
|
CreatedAt?: Date;
|
|
573
420
|
}
|
|
574
421
|
export interface ListConnectionsResponse {
|
|
575
422
|
ConnectionSummaryList: ConnectionSummary[] | undefined;
|
|
576
|
-
|
|
577
423
|
NextToken?: string;
|
|
578
424
|
}
|
|
579
425
|
export interface ListObservabilityConfigurationsRequest {
|
|
580
426
|
ObservabilityConfigurationName?: string;
|
|
581
|
-
|
|
582
427
|
LatestOnly?: boolean;
|
|
583
|
-
|
|
584
428
|
MaxResults?: number;
|
|
585
|
-
|
|
586
429
|
NextToken?: string;
|
|
587
430
|
}
|
|
588
|
-
|
|
589
431
|
export interface ObservabilityConfigurationSummary {
|
|
590
432
|
ObservabilityConfigurationArn?: string;
|
|
591
|
-
|
|
592
433
|
ObservabilityConfigurationName?: string;
|
|
593
|
-
|
|
594
434
|
ObservabilityConfigurationRevision?: number;
|
|
595
435
|
}
|
|
596
436
|
export interface ListObservabilityConfigurationsResponse {
|
|
597
437
|
ObservabilityConfigurationSummaryList:
|
|
598
438
|
| ObservabilityConfigurationSummary[]
|
|
599
439
|
| undefined;
|
|
600
|
-
|
|
601
440
|
NextToken?: string;
|
|
602
441
|
}
|
|
603
442
|
export interface ListOperationsRequest {
|
|
604
443
|
ServiceArn: string | undefined;
|
|
605
|
-
|
|
606
444
|
NextToken?: string;
|
|
607
|
-
|
|
608
445
|
MaxResults?: number;
|
|
609
446
|
}
|
|
610
447
|
export declare enum OperationStatus {
|
|
@@ -623,51 +460,34 @@ export declare enum OperationType {
|
|
|
623
460
|
RESUME_SERVICE = "RESUME_SERVICE",
|
|
624
461
|
START_DEPLOYMENT = "START_DEPLOYMENT",
|
|
625
462
|
}
|
|
626
|
-
|
|
627
463
|
export interface OperationSummary {
|
|
628
464
|
Id?: string;
|
|
629
|
-
|
|
630
465
|
Type?: OperationType | string;
|
|
631
|
-
|
|
632
466
|
Status?: OperationStatus | string;
|
|
633
|
-
|
|
634
467
|
TargetArn?: string;
|
|
635
|
-
|
|
636
468
|
StartedAt?: Date;
|
|
637
|
-
|
|
638
469
|
EndedAt?: Date;
|
|
639
|
-
|
|
640
470
|
UpdatedAt?: Date;
|
|
641
471
|
}
|
|
642
472
|
export interface ListOperationsResponse {
|
|
643
473
|
OperationSummaryList?: OperationSummary[];
|
|
644
|
-
|
|
645
474
|
NextToken?: string;
|
|
646
475
|
}
|
|
647
476
|
export interface ListServicesRequest {
|
|
648
477
|
NextToken?: string;
|
|
649
|
-
|
|
650
478
|
MaxResults?: number;
|
|
651
479
|
}
|
|
652
|
-
|
|
653
480
|
export interface ServiceSummary {
|
|
654
481
|
ServiceName?: string;
|
|
655
|
-
|
|
656
482
|
ServiceId?: string;
|
|
657
|
-
|
|
658
483
|
ServiceArn?: string;
|
|
659
|
-
|
|
660
484
|
ServiceUrl?: string;
|
|
661
|
-
|
|
662
485
|
CreatedAt?: Date;
|
|
663
|
-
|
|
664
486
|
UpdatedAt?: Date;
|
|
665
|
-
|
|
666
487
|
Status?: ServiceStatus | string;
|
|
667
488
|
}
|
|
668
489
|
export interface ListServicesResponse {
|
|
669
490
|
ServiceSummaryList: ServiceSummary[] | undefined;
|
|
670
|
-
|
|
671
491
|
NextToken?: string;
|
|
672
492
|
}
|
|
673
493
|
export interface ListTagsForResourceRequest {
|
|
@@ -678,12 +498,10 @@ export interface ListTagsForResourceResponse {
|
|
|
678
498
|
}
|
|
679
499
|
export interface ListVpcConnectorsRequest {
|
|
680
500
|
MaxResults?: number;
|
|
681
|
-
|
|
682
501
|
NextToken?: string;
|
|
683
502
|
}
|
|
684
503
|
export interface ListVpcConnectorsResponse {
|
|
685
504
|
VpcConnectors: VpcConnector[] | undefined;
|
|
686
|
-
|
|
687
505
|
NextToken?: string;
|
|
688
506
|
}
|
|
689
507
|
export interface PauseServiceRequest {
|
|
@@ -691,7 +509,6 @@ export interface PauseServiceRequest {
|
|
|
691
509
|
}
|
|
692
510
|
export interface PauseServiceResponse {
|
|
693
511
|
Service: Service | undefined;
|
|
694
|
-
|
|
695
512
|
OperationId?: string;
|
|
696
513
|
}
|
|
697
514
|
export interface ResumeServiceRequest {
|
|
@@ -699,7 +516,6 @@ export interface ResumeServiceRequest {
|
|
|
699
516
|
}
|
|
700
517
|
export interface ResumeServiceResponse {
|
|
701
518
|
Service: Service | undefined;
|
|
702
|
-
|
|
703
519
|
OperationId?: string;
|
|
704
520
|
}
|
|
705
521
|
export interface StartDeploymentRequest {
|
|
@@ -710,375 +526,278 @@ export interface StartDeploymentResponse {
|
|
|
710
526
|
}
|
|
711
527
|
export interface TagResourceRequest {
|
|
712
528
|
ResourceArn: string | undefined;
|
|
713
|
-
|
|
714
529
|
Tags: Tag[] | undefined;
|
|
715
530
|
}
|
|
716
531
|
export interface TagResourceResponse {}
|
|
717
532
|
export interface UntagResourceRequest {
|
|
718
533
|
ResourceArn: string | undefined;
|
|
719
|
-
|
|
720
534
|
TagKeys: string[] | undefined;
|
|
721
535
|
}
|
|
722
536
|
export interface UntagResourceResponse {}
|
|
723
537
|
export interface UpdateServiceRequest {
|
|
724
538
|
ServiceArn: string | undefined;
|
|
725
|
-
|
|
726
539
|
SourceConfiguration?: SourceConfiguration;
|
|
727
|
-
|
|
728
540
|
InstanceConfiguration?: InstanceConfiguration;
|
|
729
|
-
|
|
730
541
|
AutoScalingConfigurationArn?: string;
|
|
731
|
-
|
|
732
542
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
733
|
-
|
|
734
543
|
NetworkConfiguration?: NetworkConfiguration;
|
|
735
|
-
|
|
736
544
|
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
737
545
|
}
|
|
738
546
|
export interface UpdateServiceResponse {
|
|
739
547
|
Service: Service | undefined;
|
|
740
|
-
|
|
741
548
|
OperationId: string | undefined;
|
|
742
549
|
}
|
|
743
|
-
|
|
744
550
|
export declare const AssociateCustomDomainRequestFilterSensitiveLog: (
|
|
745
551
|
obj: AssociateCustomDomainRequest
|
|
746
552
|
) => any;
|
|
747
|
-
|
|
748
553
|
export declare const CertificateValidationRecordFilterSensitiveLog: (
|
|
749
554
|
obj: CertificateValidationRecord
|
|
750
555
|
) => any;
|
|
751
|
-
|
|
752
556
|
export declare const CustomDomainFilterSensitiveLog: (obj: CustomDomain) => any;
|
|
753
|
-
|
|
754
557
|
export declare const AssociateCustomDomainResponseFilterSensitiveLog: (
|
|
755
558
|
obj: AssociateCustomDomainResponse
|
|
756
559
|
) => any;
|
|
757
|
-
|
|
758
560
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
759
|
-
|
|
760
561
|
export declare const CreateAutoScalingConfigurationRequestFilterSensitiveLog: (
|
|
761
562
|
obj: CreateAutoScalingConfigurationRequest
|
|
762
563
|
) => any;
|
|
763
|
-
|
|
764
564
|
export declare const AutoScalingConfigurationFilterSensitiveLog: (
|
|
765
565
|
obj: AutoScalingConfiguration
|
|
766
566
|
) => any;
|
|
767
|
-
|
|
768
567
|
export declare const CreateAutoScalingConfigurationResponseFilterSensitiveLog: (
|
|
769
568
|
obj: CreateAutoScalingConfigurationResponse
|
|
770
569
|
) => any;
|
|
771
|
-
|
|
772
570
|
export declare const CreateConnectionRequestFilterSensitiveLog: (
|
|
773
571
|
obj: CreateConnectionRequest
|
|
774
572
|
) => any;
|
|
775
|
-
|
|
776
573
|
export declare const ConnectionFilterSensitiveLog: (obj: Connection) => any;
|
|
777
|
-
|
|
778
574
|
export declare const CreateConnectionResponseFilterSensitiveLog: (
|
|
779
575
|
obj: CreateConnectionResponse
|
|
780
576
|
) => any;
|
|
781
|
-
|
|
782
577
|
export declare const TraceConfigurationFilterSensitiveLog: (
|
|
783
578
|
obj: TraceConfiguration
|
|
784
579
|
) => any;
|
|
785
|
-
|
|
786
580
|
export declare const CreateObservabilityConfigurationRequestFilterSensitiveLog: (
|
|
787
581
|
obj: CreateObservabilityConfigurationRequest
|
|
788
582
|
) => any;
|
|
789
|
-
|
|
790
583
|
export declare const ObservabilityConfigurationFilterSensitiveLog: (
|
|
791
584
|
obj: ObservabilityConfiguration
|
|
792
585
|
) => any;
|
|
793
|
-
|
|
794
586
|
export declare const CreateObservabilityConfigurationResponseFilterSensitiveLog: (
|
|
795
587
|
obj: CreateObservabilityConfigurationResponse
|
|
796
588
|
) => any;
|
|
797
|
-
|
|
798
589
|
export declare const EncryptionConfigurationFilterSensitiveLog: (
|
|
799
590
|
obj: EncryptionConfiguration
|
|
800
591
|
) => any;
|
|
801
|
-
|
|
802
592
|
export declare const HealthCheckConfigurationFilterSensitiveLog: (
|
|
803
593
|
obj: HealthCheckConfiguration
|
|
804
594
|
) => any;
|
|
805
|
-
|
|
806
595
|
export declare const InstanceConfigurationFilterSensitiveLog: (
|
|
807
596
|
obj: InstanceConfiguration
|
|
808
597
|
) => any;
|
|
809
|
-
|
|
810
598
|
export declare const EgressConfigurationFilterSensitiveLog: (
|
|
811
599
|
obj: EgressConfiguration
|
|
812
600
|
) => any;
|
|
813
|
-
|
|
814
601
|
export declare const NetworkConfigurationFilterSensitiveLog: (
|
|
815
602
|
obj: NetworkConfiguration
|
|
816
603
|
) => any;
|
|
817
|
-
|
|
818
604
|
export declare const ServiceObservabilityConfigurationFilterSensitiveLog: (
|
|
819
605
|
obj: ServiceObservabilityConfiguration
|
|
820
606
|
) => any;
|
|
821
|
-
|
|
822
607
|
export declare const AuthenticationConfigurationFilterSensitiveLog: (
|
|
823
608
|
obj: AuthenticationConfiguration
|
|
824
609
|
) => any;
|
|
825
|
-
|
|
826
610
|
export declare const CodeConfigurationValuesFilterSensitiveLog: (
|
|
827
611
|
obj: CodeConfigurationValues
|
|
828
612
|
) => any;
|
|
829
|
-
|
|
830
613
|
export declare const CodeConfigurationFilterSensitiveLog: (
|
|
831
614
|
obj: CodeConfiguration
|
|
832
615
|
) => any;
|
|
833
|
-
|
|
834
616
|
export declare const SourceCodeVersionFilterSensitiveLog: (
|
|
835
617
|
obj: SourceCodeVersion
|
|
836
618
|
) => any;
|
|
837
|
-
|
|
838
619
|
export declare const CodeRepositoryFilterSensitiveLog: (
|
|
839
620
|
obj: CodeRepository
|
|
840
621
|
) => any;
|
|
841
|
-
|
|
842
622
|
export declare const ImageConfigurationFilterSensitiveLog: (
|
|
843
623
|
obj: ImageConfiguration
|
|
844
624
|
) => any;
|
|
845
|
-
|
|
846
625
|
export declare const ImageRepositoryFilterSensitiveLog: (
|
|
847
626
|
obj: ImageRepository
|
|
848
627
|
) => any;
|
|
849
|
-
|
|
850
628
|
export declare const SourceConfigurationFilterSensitiveLog: (
|
|
851
629
|
obj: SourceConfiguration
|
|
852
630
|
) => any;
|
|
853
|
-
|
|
854
631
|
export declare const CreateServiceRequestFilterSensitiveLog: (
|
|
855
632
|
obj: CreateServiceRequest
|
|
856
633
|
) => any;
|
|
857
|
-
|
|
858
634
|
export declare const AutoScalingConfigurationSummaryFilterSensitiveLog: (
|
|
859
635
|
obj: AutoScalingConfigurationSummary
|
|
860
636
|
) => any;
|
|
861
|
-
|
|
862
637
|
export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
|
|
863
|
-
|
|
864
638
|
export declare const CreateServiceResponseFilterSensitiveLog: (
|
|
865
639
|
obj: CreateServiceResponse
|
|
866
640
|
) => any;
|
|
867
|
-
|
|
868
641
|
export declare const CreateVpcConnectorRequestFilterSensitiveLog: (
|
|
869
642
|
obj: CreateVpcConnectorRequest
|
|
870
643
|
) => any;
|
|
871
|
-
|
|
872
644
|
export declare const VpcConnectorFilterSensitiveLog: (obj: VpcConnector) => any;
|
|
873
|
-
|
|
874
645
|
export declare const CreateVpcConnectorResponseFilterSensitiveLog: (
|
|
875
646
|
obj: CreateVpcConnectorResponse
|
|
876
647
|
) => any;
|
|
877
|
-
|
|
878
648
|
export declare const DeleteAutoScalingConfigurationRequestFilterSensitiveLog: (
|
|
879
649
|
obj: DeleteAutoScalingConfigurationRequest
|
|
880
650
|
) => any;
|
|
881
|
-
|
|
882
651
|
export declare const DeleteAutoScalingConfigurationResponseFilterSensitiveLog: (
|
|
883
652
|
obj: DeleteAutoScalingConfigurationResponse
|
|
884
653
|
) => any;
|
|
885
|
-
|
|
886
654
|
export declare const DeleteConnectionRequestFilterSensitiveLog: (
|
|
887
655
|
obj: DeleteConnectionRequest
|
|
888
656
|
) => any;
|
|
889
|
-
|
|
890
657
|
export declare const DeleteConnectionResponseFilterSensitiveLog: (
|
|
891
658
|
obj: DeleteConnectionResponse
|
|
892
659
|
) => any;
|
|
893
|
-
|
|
894
660
|
export declare const DeleteObservabilityConfigurationRequestFilterSensitiveLog: (
|
|
895
661
|
obj: DeleteObservabilityConfigurationRequest
|
|
896
662
|
) => any;
|
|
897
|
-
|
|
898
663
|
export declare const DeleteObservabilityConfigurationResponseFilterSensitiveLog: (
|
|
899
664
|
obj: DeleteObservabilityConfigurationResponse
|
|
900
665
|
) => any;
|
|
901
|
-
|
|
902
666
|
export declare const DeleteServiceRequestFilterSensitiveLog: (
|
|
903
667
|
obj: DeleteServiceRequest
|
|
904
668
|
) => any;
|
|
905
|
-
|
|
906
669
|
export declare const DeleteServiceResponseFilterSensitiveLog: (
|
|
907
670
|
obj: DeleteServiceResponse
|
|
908
671
|
) => any;
|
|
909
|
-
|
|
910
672
|
export declare const DeleteVpcConnectorRequestFilterSensitiveLog: (
|
|
911
673
|
obj: DeleteVpcConnectorRequest
|
|
912
674
|
) => any;
|
|
913
|
-
|
|
914
675
|
export declare const DeleteVpcConnectorResponseFilterSensitiveLog: (
|
|
915
676
|
obj: DeleteVpcConnectorResponse
|
|
916
677
|
) => any;
|
|
917
|
-
|
|
918
678
|
export declare const DescribeAutoScalingConfigurationRequestFilterSensitiveLog: (
|
|
919
679
|
obj: DescribeAutoScalingConfigurationRequest
|
|
920
680
|
) => any;
|
|
921
|
-
|
|
922
681
|
export declare const DescribeAutoScalingConfigurationResponseFilterSensitiveLog: (
|
|
923
682
|
obj: DescribeAutoScalingConfigurationResponse
|
|
924
683
|
) => any;
|
|
925
|
-
|
|
926
684
|
export declare const DescribeCustomDomainsRequestFilterSensitiveLog: (
|
|
927
685
|
obj: DescribeCustomDomainsRequest
|
|
928
686
|
) => any;
|
|
929
|
-
|
|
930
687
|
export declare const DescribeCustomDomainsResponseFilterSensitiveLog: (
|
|
931
688
|
obj: DescribeCustomDomainsResponse
|
|
932
689
|
) => any;
|
|
933
|
-
|
|
934
690
|
export declare const DescribeObservabilityConfigurationRequestFilterSensitiveLog: (
|
|
935
691
|
obj: DescribeObservabilityConfigurationRequest
|
|
936
692
|
) => any;
|
|
937
|
-
|
|
938
693
|
export declare const DescribeObservabilityConfigurationResponseFilterSensitiveLog: (
|
|
939
694
|
obj: DescribeObservabilityConfigurationResponse
|
|
940
695
|
) => any;
|
|
941
|
-
|
|
942
696
|
export declare const DescribeServiceRequestFilterSensitiveLog: (
|
|
943
697
|
obj: DescribeServiceRequest
|
|
944
698
|
) => any;
|
|
945
|
-
|
|
946
699
|
export declare const DescribeServiceResponseFilterSensitiveLog: (
|
|
947
700
|
obj: DescribeServiceResponse
|
|
948
701
|
) => any;
|
|
949
|
-
|
|
950
702
|
export declare const DescribeVpcConnectorRequestFilterSensitiveLog: (
|
|
951
703
|
obj: DescribeVpcConnectorRequest
|
|
952
704
|
) => any;
|
|
953
|
-
|
|
954
705
|
export declare const DescribeVpcConnectorResponseFilterSensitiveLog: (
|
|
955
706
|
obj: DescribeVpcConnectorResponse
|
|
956
707
|
) => any;
|
|
957
|
-
|
|
958
708
|
export declare const DisassociateCustomDomainRequestFilterSensitiveLog: (
|
|
959
709
|
obj: DisassociateCustomDomainRequest
|
|
960
710
|
) => any;
|
|
961
|
-
|
|
962
711
|
export declare const DisassociateCustomDomainResponseFilterSensitiveLog: (
|
|
963
712
|
obj: DisassociateCustomDomainResponse
|
|
964
713
|
) => any;
|
|
965
|
-
|
|
966
714
|
export declare const ListAutoScalingConfigurationsRequestFilterSensitiveLog: (
|
|
967
715
|
obj: ListAutoScalingConfigurationsRequest
|
|
968
716
|
) => any;
|
|
969
|
-
|
|
970
717
|
export declare const ListAutoScalingConfigurationsResponseFilterSensitiveLog: (
|
|
971
718
|
obj: ListAutoScalingConfigurationsResponse
|
|
972
719
|
) => any;
|
|
973
|
-
|
|
974
720
|
export declare const ListConnectionsRequestFilterSensitiveLog: (
|
|
975
721
|
obj: ListConnectionsRequest
|
|
976
722
|
) => any;
|
|
977
|
-
|
|
978
723
|
export declare const ConnectionSummaryFilterSensitiveLog: (
|
|
979
724
|
obj: ConnectionSummary
|
|
980
725
|
) => any;
|
|
981
|
-
|
|
982
726
|
export declare const ListConnectionsResponseFilterSensitiveLog: (
|
|
983
727
|
obj: ListConnectionsResponse
|
|
984
728
|
) => any;
|
|
985
|
-
|
|
986
729
|
export declare const ListObservabilityConfigurationsRequestFilterSensitiveLog: (
|
|
987
730
|
obj: ListObservabilityConfigurationsRequest
|
|
988
731
|
) => any;
|
|
989
|
-
|
|
990
732
|
export declare const ObservabilityConfigurationSummaryFilterSensitiveLog: (
|
|
991
733
|
obj: ObservabilityConfigurationSummary
|
|
992
734
|
) => any;
|
|
993
|
-
|
|
994
735
|
export declare const ListObservabilityConfigurationsResponseFilterSensitiveLog: (
|
|
995
736
|
obj: ListObservabilityConfigurationsResponse
|
|
996
737
|
) => any;
|
|
997
|
-
|
|
998
738
|
export declare const ListOperationsRequestFilterSensitiveLog: (
|
|
999
739
|
obj: ListOperationsRequest
|
|
1000
740
|
) => any;
|
|
1001
|
-
|
|
1002
741
|
export declare const OperationSummaryFilterSensitiveLog: (
|
|
1003
742
|
obj: OperationSummary
|
|
1004
743
|
) => any;
|
|
1005
|
-
|
|
1006
744
|
export declare const ListOperationsResponseFilterSensitiveLog: (
|
|
1007
745
|
obj: ListOperationsResponse
|
|
1008
746
|
) => any;
|
|
1009
|
-
|
|
1010
747
|
export declare const ListServicesRequestFilterSensitiveLog: (
|
|
1011
748
|
obj: ListServicesRequest
|
|
1012
749
|
) => any;
|
|
1013
|
-
|
|
1014
750
|
export declare const ServiceSummaryFilterSensitiveLog: (
|
|
1015
751
|
obj: ServiceSummary
|
|
1016
752
|
) => any;
|
|
1017
|
-
|
|
1018
753
|
export declare const ListServicesResponseFilterSensitiveLog: (
|
|
1019
754
|
obj: ListServicesResponse
|
|
1020
755
|
) => any;
|
|
1021
|
-
|
|
1022
756
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1023
757
|
obj: ListTagsForResourceRequest
|
|
1024
758
|
) => any;
|
|
1025
|
-
|
|
1026
759
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1027
760
|
obj: ListTagsForResourceResponse
|
|
1028
761
|
) => any;
|
|
1029
|
-
|
|
1030
762
|
export declare const ListVpcConnectorsRequestFilterSensitiveLog: (
|
|
1031
763
|
obj: ListVpcConnectorsRequest
|
|
1032
764
|
) => any;
|
|
1033
|
-
|
|
1034
765
|
export declare const ListVpcConnectorsResponseFilterSensitiveLog: (
|
|
1035
766
|
obj: ListVpcConnectorsResponse
|
|
1036
767
|
) => any;
|
|
1037
|
-
|
|
1038
768
|
export declare const PauseServiceRequestFilterSensitiveLog: (
|
|
1039
769
|
obj: PauseServiceRequest
|
|
1040
770
|
) => any;
|
|
1041
|
-
|
|
1042
771
|
export declare const PauseServiceResponseFilterSensitiveLog: (
|
|
1043
772
|
obj: PauseServiceResponse
|
|
1044
773
|
) => any;
|
|
1045
|
-
|
|
1046
774
|
export declare const ResumeServiceRequestFilterSensitiveLog: (
|
|
1047
775
|
obj: ResumeServiceRequest
|
|
1048
776
|
) => any;
|
|
1049
|
-
|
|
1050
777
|
export declare const ResumeServiceResponseFilterSensitiveLog: (
|
|
1051
778
|
obj: ResumeServiceResponse
|
|
1052
779
|
) => any;
|
|
1053
|
-
|
|
1054
780
|
export declare const StartDeploymentRequestFilterSensitiveLog: (
|
|
1055
781
|
obj: StartDeploymentRequest
|
|
1056
782
|
) => any;
|
|
1057
|
-
|
|
1058
783
|
export declare const StartDeploymentResponseFilterSensitiveLog: (
|
|
1059
784
|
obj: StartDeploymentResponse
|
|
1060
785
|
) => any;
|
|
1061
|
-
|
|
1062
786
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1063
787
|
obj: TagResourceRequest
|
|
1064
788
|
) => any;
|
|
1065
|
-
|
|
1066
789
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1067
790
|
obj: TagResourceResponse
|
|
1068
791
|
) => any;
|
|
1069
|
-
|
|
1070
792
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1071
793
|
obj: UntagResourceRequest
|
|
1072
794
|
) => any;
|
|
1073
|
-
|
|
1074
795
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1075
796
|
obj: UntagResourceResponse
|
|
1076
797
|
) => any;
|
|
1077
|
-
|
|
1078
798
|
export declare const UpdateServiceRequestFilterSensitiveLog: (
|
|
1079
799
|
obj: UpdateServiceRequest
|
|
1080
800
|
) => any;
|
|
1081
|
-
|
|
1082
801
|
export declare const UpdateServiceResponseFilterSensitiveLog: (
|
|
1083
802
|
obj: UpdateServiceResponse
|
|
1084
803
|
) => any;
|