@aws-sdk/client-signer 3.170.0 → 3.178.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 +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Signer.d.ts +0 -17
- package/dist-types/ts3.4/SignerClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AddProfilePermissionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CancelSigningProfileCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeSigningJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSigningPlatformCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSigningProfileCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListProfilePermissionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListSigningJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListSigningPlatformsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListSigningProfilesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutSigningProfileCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemoveProfilePermissionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RevokeSignatureCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RevokeSigningProfileCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartSigningJobCommand.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/models/SignerServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -230
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/dist-types/ts3.4/waiters/waitForSuccessfulSigningJob.d.ts +0 -2
- package/package.json +27 -27
|
@@ -1,95 +1,74 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { SignerServiceException as __BaseException } from "./SignerServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
6
|
code?: string;
|
|
8
|
-
|
|
9
7
|
constructor(
|
|
10
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
9
|
);
|
|
12
10
|
}
|
|
13
11
|
export interface AddProfilePermissionRequest {
|
|
14
12
|
profileName: string | undefined;
|
|
15
|
-
|
|
16
13
|
profileVersion?: string;
|
|
17
|
-
|
|
18
14
|
action: string | undefined;
|
|
19
|
-
|
|
20
15
|
principal: string | undefined;
|
|
21
|
-
|
|
22
16
|
revisionId?: string;
|
|
23
|
-
|
|
24
17
|
statementId: string | undefined;
|
|
25
18
|
}
|
|
26
19
|
export interface AddProfilePermissionResponse {
|
|
27
20
|
revisionId?: string;
|
|
28
21
|
}
|
|
29
|
-
|
|
30
22
|
export declare class ConflictException extends __BaseException {
|
|
31
23
|
readonly name: "ConflictException";
|
|
32
24
|
readonly $fault: "client";
|
|
33
25
|
code?: string;
|
|
34
|
-
|
|
35
26
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
36
27
|
}
|
|
37
|
-
|
|
38
28
|
export declare class InternalServiceErrorException extends __BaseException {
|
|
39
29
|
readonly name: "InternalServiceErrorException";
|
|
40
30
|
readonly $fault: "server";
|
|
41
31
|
code?: string;
|
|
42
|
-
|
|
43
32
|
constructor(
|
|
44
33
|
opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
|
|
45
34
|
);
|
|
46
35
|
}
|
|
47
|
-
|
|
48
36
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
49
37
|
readonly name: "ResourceNotFoundException";
|
|
50
38
|
readonly $fault: "client";
|
|
51
39
|
code?: string;
|
|
52
|
-
|
|
53
40
|
constructor(
|
|
54
41
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
55
42
|
);
|
|
56
43
|
}
|
|
57
|
-
|
|
58
44
|
export declare class ServiceLimitExceededException extends __BaseException {
|
|
59
45
|
readonly name: "ServiceLimitExceededException";
|
|
60
46
|
readonly $fault: "client";
|
|
61
47
|
code?: string;
|
|
62
|
-
|
|
63
48
|
constructor(
|
|
64
49
|
opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
|
|
65
50
|
);
|
|
66
51
|
}
|
|
67
|
-
|
|
68
52
|
export declare class TooManyRequestsException extends __BaseException {
|
|
69
53
|
readonly name: "TooManyRequestsException";
|
|
70
54
|
readonly $fault: "client";
|
|
71
55
|
code?: string;
|
|
72
|
-
|
|
73
56
|
constructor(
|
|
74
57
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
75
58
|
);
|
|
76
59
|
}
|
|
77
|
-
|
|
78
60
|
export declare class ValidationException extends __BaseException {
|
|
79
61
|
readonly name: "ValidationException";
|
|
80
62
|
readonly $fault: "client";
|
|
81
63
|
code?: string;
|
|
82
|
-
|
|
83
64
|
constructor(
|
|
84
65
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
85
66
|
);
|
|
86
67
|
}
|
|
87
|
-
|
|
88
68
|
export declare class BadRequestException extends __BaseException {
|
|
89
69
|
readonly name: "BadRequestException";
|
|
90
70
|
readonly $fault: "client";
|
|
91
71
|
code?: string;
|
|
92
|
-
|
|
93
72
|
constructor(
|
|
94
73
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
95
74
|
);
|
|
@@ -103,351 +82,219 @@ export interface DescribeSigningJobRequest {
|
|
|
103
82
|
}
|
|
104
83
|
export declare type EncryptionAlgorithm = "ECDSA" | "RSA";
|
|
105
84
|
export declare type HashAlgorithm = "SHA1" | "SHA256";
|
|
106
|
-
|
|
107
85
|
export interface SigningConfigurationOverrides {
|
|
108
86
|
encryptionAlgorithm?: EncryptionAlgorithm | string;
|
|
109
|
-
|
|
110
87
|
hashAlgorithm?: HashAlgorithm | string;
|
|
111
88
|
}
|
|
112
89
|
export declare type ImageFormat = "JSON" | "JSONDetached" | "JSONEmbedded";
|
|
113
|
-
|
|
114
90
|
export interface SigningPlatformOverrides {
|
|
115
91
|
signingConfiguration?: SigningConfigurationOverrides;
|
|
116
|
-
|
|
117
92
|
signingImageFormat?: ImageFormat | string;
|
|
118
93
|
}
|
|
119
|
-
|
|
120
94
|
export interface SigningJobRevocationRecord {
|
|
121
95
|
reason?: string;
|
|
122
|
-
|
|
123
96
|
revokedAt?: Date;
|
|
124
|
-
|
|
125
97
|
revokedBy?: string;
|
|
126
98
|
}
|
|
127
|
-
|
|
128
99
|
export interface S3SignedObject {
|
|
129
100
|
bucketName?: string;
|
|
130
|
-
|
|
131
101
|
key?: string;
|
|
132
102
|
}
|
|
133
|
-
|
|
134
103
|
export interface SignedObject {
|
|
135
104
|
s3?: S3SignedObject;
|
|
136
105
|
}
|
|
137
|
-
|
|
138
106
|
export interface SigningMaterial {
|
|
139
107
|
certificateArn: string | undefined;
|
|
140
108
|
}
|
|
141
|
-
|
|
142
109
|
export interface S3Source {
|
|
143
110
|
bucketName: string | undefined;
|
|
144
|
-
|
|
145
111
|
key: string | undefined;
|
|
146
|
-
|
|
147
112
|
version: string | undefined;
|
|
148
113
|
}
|
|
149
|
-
|
|
150
114
|
export interface Source {
|
|
151
115
|
s3?: S3Source;
|
|
152
116
|
}
|
|
153
117
|
export declare type SigningStatus = "Failed" | "InProgress" | "Succeeded";
|
|
154
118
|
export interface DescribeSigningJobResponse {
|
|
155
119
|
jobId?: string;
|
|
156
|
-
|
|
157
120
|
source?: Source;
|
|
158
|
-
|
|
159
121
|
signingMaterial?: SigningMaterial;
|
|
160
|
-
|
|
161
122
|
platformId?: string;
|
|
162
|
-
|
|
163
123
|
platformDisplayName?: string;
|
|
164
|
-
|
|
165
124
|
profileName?: string;
|
|
166
|
-
|
|
167
125
|
profileVersion?: string;
|
|
168
|
-
|
|
169
126
|
overrides?: SigningPlatformOverrides;
|
|
170
|
-
|
|
171
127
|
signingParameters?: Record<string, string>;
|
|
172
|
-
|
|
173
128
|
createdAt?: Date;
|
|
174
|
-
|
|
175
129
|
completedAt?: Date;
|
|
176
|
-
|
|
177
130
|
signatureExpiresAt?: Date;
|
|
178
|
-
|
|
179
131
|
requestedBy?: string;
|
|
180
|
-
|
|
181
132
|
status?: SigningStatus | string;
|
|
182
|
-
|
|
183
133
|
statusReason?: string;
|
|
184
|
-
|
|
185
134
|
revocationRecord?: SigningJobRevocationRecord;
|
|
186
|
-
|
|
187
135
|
signedObject?: SignedObject;
|
|
188
|
-
|
|
189
136
|
jobOwner?: string;
|
|
190
|
-
|
|
191
137
|
jobInvoker?: string;
|
|
192
138
|
}
|
|
193
|
-
|
|
194
139
|
export interface S3Destination {
|
|
195
140
|
bucketName?: string;
|
|
196
|
-
|
|
197
141
|
prefix?: string;
|
|
198
142
|
}
|
|
199
|
-
|
|
200
143
|
export interface Destination {
|
|
201
144
|
s3?: S3Destination;
|
|
202
145
|
}
|
|
203
|
-
|
|
204
146
|
export interface EncryptionAlgorithmOptions {
|
|
205
147
|
allowedValues: (EncryptionAlgorithm | string)[] | undefined;
|
|
206
|
-
|
|
207
148
|
defaultValue: EncryptionAlgorithm | string | undefined;
|
|
208
149
|
}
|
|
209
150
|
export interface GetSigningPlatformRequest {
|
|
210
151
|
platformId: string | undefined;
|
|
211
152
|
}
|
|
212
|
-
|
|
213
153
|
export interface HashAlgorithmOptions {
|
|
214
154
|
allowedValues: (HashAlgorithm | string)[] | undefined;
|
|
215
|
-
|
|
216
155
|
defaultValue: HashAlgorithm | string | undefined;
|
|
217
156
|
}
|
|
218
|
-
|
|
219
157
|
export interface SigningConfiguration {
|
|
220
158
|
encryptionAlgorithmOptions: EncryptionAlgorithmOptions | undefined;
|
|
221
|
-
|
|
222
159
|
hashAlgorithmOptions: HashAlgorithmOptions | undefined;
|
|
223
160
|
}
|
|
224
|
-
|
|
225
161
|
export interface SigningImageFormat {
|
|
226
162
|
supportedFormats: (ImageFormat | string)[] | undefined;
|
|
227
|
-
|
|
228
163
|
defaultFormat: ImageFormat | string | undefined;
|
|
229
164
|
}
|
|
230
165
|
export interface GetSigningPlatformResponse {
|
|
231
166
|
platformId?: string;
|
|
232
|
-
|
|
233
167
|
displayName?: string;
|
|
234
|
-
|
|
235
168
|
partner?: string;
|
|
236
|
-
|
|
237
169
|
target?: string;
|
|
238
|
-
|
|
239
170
|
category?: Category | string;
|
|
240
|
-
|
|
241
171
|
signingConfiguration?: SigningConfiguration;
|
|
242
|
-
|
|
243
172
|
signingImageFormat?: SigningImageFormat;
|
|
244
|
-
|
|
245
173
|
maxSizeInMB?: number;
|
|
246
|
-
|
|
247
174
|
revocationSupported?: boolean;
|
|
248
175
|
}
|
|
249
176
|
export interface GetSigningProfileRequest {
|
|
250
177
|
profileName: string | undefined;
|
|
251
|
-
|
|
252
178
|
profileOwner?: string;
|
|
253
179
|
}
|
|
254
|
-
|
|
255
180
|
export interface SigningProfileRevocationRecord {
|
|
256
181
|
revocationEffectiveFrom?: Date;
|
|
257
|
-
|
|
258
182
|
revokedAt?: Date;
|
|
259
|
-
|
|
260
183
|
revokedBy?: string;
|
|
261
184
|
}
|
|
262
185
|
export declare type ValidityType = "DAYS" | "MONTHS" | "YEARS";
|
|
263
|
-
|
|
264
186
|
export interface SignatureValidityPeriod {
|
|
265
187
|
value?: number;
|
|
266
|
-
|
|
267
188
|
type?: ValidityType | string;
|
|
268
189
|
}
|
|
269
190
|
export declare type SigningProfileStatus = "Active" | "Canceled" | "Revoked";
|
|
270
191
|
export interface GetSigningProfileResponse {
|
|
271
192
|
profileName?: string;
|
|
272
|
-
|
|
273
193
|
profileVersion?: string;
|
|
274
|
-
|
|
275
194
|
profileVersionArn?: string;
|
|
276
|
-
|
|
277
195
|
revocationRecord?: SigningProfileRevocationRecord;
|
|
278
|
-
|
|
279
196
|
signingMaterial?: SigningMaterial;
|
|
280
|
-
|
|
281
197
|
platformId?: string;
|
|
282
|
-
|
|
283
198
|
platformDisplayName?: string;
|
|
284
|
-
|
|
285
199
|
signatureValidityPeriod?: SignatureValidityPeriod;
|
|
286
|
-
|
|
287
200
|
overrides?: SigningPlatformOverrides;
|
|
288
|
-
|
|
289
201
|
signingParameters?: Record<string, string>;
|
|
290
|
-
|
|
291
202
|
status?: SigningProfileStatus | string;
|
|
292
|
-
|
|
293
203
|
statusReason?: string;
|
|
294
|
-
|
|
295
204
|
arn?: string;
|
|
296
|
-
|
|
297
205
|
tags?: Record<string, string>;
|
|
298
206
|
}
|
|
299
207
|
export interface ListProfilePermissionsRequest {
|
|
300
208
|
profileName: string | undefined;
|
|
301
|
-
|
|
302
209
|
nextToken?: string;
|
|
303
210
|
}
|
|
304
|
-
|
|
305
211
|
export interface Permission {
|
|
306
212
|
action?: string;
|
|
307
|
-
|
|
308
213
|
principal?: string;
|
|
309
|
-
|
|
310
214
|
statementId?: string;
|
|
311
|
-
|
|
312
215
|
profileVersion?: string;
|
|
313
216
|
}
|
|
314
217
|
export interface ListProfilePermissionsResponse {
|
|
315
218
|
revisionId?: string;
|
|
316
|
-
|
|
317
219
|
policySizeBytes?: number;
|
|
318
|
-
|
|
319
220
|
permissions?: Permission[];
|
|
320
|
-
|
|
321
221
|
nextToken?: string;
|
|
322
222
|
}
|
|
323
223
|
export interface ListSigningJobsRequest {
|
|
324
224
|
status?: SigningStatus | string;
|
|
325
|
-
|
|
326
225
|
platformId?: string;
|
|
327
|
-
|
|
328
226
|
requestedBy?: string;
|
|
329
|
-
|
|
330
227
|
maxResults?: number;
|
|
331
|
-
|
|
332
228
|
nextToken?: string;
|
|
333
|
-
|
|
334
229
|
isRevoked?: boolean;
|
|
335
|
-
|
|
336
230
|
signatureExpiresBefore?: Date;
|
|
337
|
-
|
|
338
231
|
signatureExpiresAfter?: Date;
|
|
339
|
-
|
|
340
232
|
jobInvoker?: string;
|
|
341
233
|
}
|
|
342
|
-
|
|
343
234
|
export interface SigningJob {
|
|
344
235
|
jobId?: string;
|
|
345
|
-
|
|
346
236
|
source?: Source;
|
|
347
|
-
|
|
348
237
|
signedObject?: SignedObject;
|
|
349
|
-
|
|
350
238
|
signingMaterial?: SigningMaterial;
|
|
351
|
-
|
|
352
239
|
createdAt?: Date;
|
|
353
|
-
|
|
354
240
|
status?: SigningStatus | string;
|
|
355
|
-
|
|
356
241
|
isRevoked?: boolean;
|
|
357
|
-
|
|
358
242
|
profileName?: string;
|
|
359
|
-
|
|
360
243
|
profileVersion?: string;
|
|
361
|
-
|
|
362
244
|
platformId?: string;
|
|
363
|
-
|
|
364
245
|
platformDisplayName?: string;
|
|
365
|
-
|
|
366
246
|
signatureExpiresAt?: Date;
|
|
367
|
-
|
|
368
247
|
jobOwner?: string;
|
|
369
|
-
|
|
370
248
|
jobInvoker?: string;
|
|
371
249
|
}
|
|
372
250
|
export interface ListSigningJobsResponse {
|
|
373
251
|
jobs?: SigningJob[];
|
|
374
|
-
|
|
375
252
|
nextToken?: string;
|
|
376
253
|
}
|
|
377
254
|
export interface ListSigningPlatformsRequest {
|
|
378
255
|
category?: string;
|
|
379
|
-
|
|
380
256
|
partner?: string;
|
|
381
|
-
|
|
382
257
|
target?: string;
|
|
383
|
-
|
|
384
258
|
maxResults?: number;
|
|
385
|
-
|
|
386
259
|
nextToken?: string;
|
|
387
260
|
}
|
|
388
|
-
|
|
389
261
|
export interface SigningPlatform {
|
|
390
262
|
platformId?: string;
|
|
391
|
-
|
|
392
263
|
displayName?: string;
|
|
393
|
-
|
|
394
264
|
partner?: string;
|
|
395
|
-
|
|
396
265
|
target?: string;
|
|
397
|
-
|
|
398
266
|
category?: Category | string;
|
|
399
|
-
|
|
400
267
|
signingConfiguration?: SigningConfiguration;
|
|
401
|
-
|
|
402
268
|
signingImageFormat?: SigningImageFormat;
|
|
403
|
-
|
|
404
269
|
maxSizeInMB?: number;
|
|
405
|
-
|
|
406
270
|
revocationSupported?: boolean;
|
|
407
271
|
}
|
|
408
272
|
export interface ListSigningPlatformsResponse {
|
|
409
273
|
platforms?: SigningPlatform[];
|
|
410
|
-
|
|
411
274
|
nextToken?: string;
|
|
412
275
|
}
|
|
413
276
|
export interface ListSigningProfilesRequest {
|
|
414
277
|
includeCanceled?: boolean;
|
|
415
|
-
|
|
416
278
|
maxResults?: number;
|
|
417
|
-
|
|
418
279
|
nextToken?: string;
|
|
419
|
-
|
|
420
280
|
platformId?: string;
|
|
421
|
-
|
|
422
281
|
statuses?: (SigningProfileStatus | string)[];
|
|
423
282
|
}
|
|
424
|
-
|
|
425
283
|
export interface SigningProfile {
|
|
426
284
|
profileName?: string;
|
|
427
|
-
|
|
428
285
|
profileVersion?: string;
|
|
429
|
-
|
|
430
286
|
profileVersionArn?: string;
|
|
431
|
-
|
|
432
287
|
signingMaterial?: SigningMaterial;
|
|
433
|
-
|
|
434
288
|
signatureValidityPeriod?: SignatureValidityPeriod;
|
|
435
|
-
|
|
436
289
|
platformId?: string;
|
|
437
|
-
|
|
438
290
|
platformDisplayName?: string;
|
|
439
|
-
|
|
440
291
|
signingParameters?: Record<string, string>;
|
|
441
|
-
|
|
442
292
|
status?: SigningProfileStatus | string;
|
|
443
|
-
|
|
444
293
|
arn?: string;
|
|
445
|
-
|
|
446
294
|
tags?: Record<string, string>;
|
|
447
295
|
}
|
|
448
296
|
export interface ListSigningProfilesResponse {
|
|
449
297
|
profiles?: SigningProfile[];
|
|
450
|
-
|
|
451
298
|
nextToken?: string;
|
|
452
299
|
}
|
|
453
300
|
export interface ListTagsForResourceRequest {
|
|
@@ -456,41 +303,29 @@ export interface ListTagsForResourceRequest {
|
|
|
456
303
|
export interface ListTagsForResourceResponse {
|
|
457
304
|
tags?: Record<string, string>;
|
|
458
305
|
}
|
|
459
|
-
|
|
460
306
|
export declare class NotFoundException extends __BaseException {
|
|
461
307
|
readonly name: "NotFoundException";
|
|
462
308
|
readonly $fault: "client";
|
|
463
309
|
code?: string;
|
|
464
|
-
|
|
465
310
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
466
311
|
}
|
|
467
312
|
export interface PutSigningProfileRequest {
|
|
468
313
|
profileName: string | undefined;
|
|
469
|
-
|
|
470
314
|
signingMaterial?: SigningMaterial;
|
|
471
|
-
|
|
472
315
|
signatureValidityPeriod?: SignatureValidityPeriod;
|
|
473
|
-
|
|
474
316
|
platformId: string | undefined;
|
|
475
|
-
|
|
476
317
|
overrides?: SigningPlatformOverrides;
|
|
477
|
-
|
|
478
318
|
signingParameters?: Record<string, string>;
|
|
479
|
-
|
|
480
319
|
tags?: Record<string, string>;
|
|
481
320
|
}
|
|
482
321
|
export interface PutSigningProfileResponse {
|
|
483
322
|
arn?: string;
|
|
484
|
-
|
|
485
323
|
profileVersion?: string;
|
|
486
|
-
|
|
487
324
|
profileVersionArn?: string;
|
|
488
325
|
}
|
|
489
326
|
export interface RemoveProfilePermissionRequest {
|
|
490
327
|
profileName: string | undefined;
|
|
491
|
-
|
|
492
328
|
revisionId: string | undefined;
|
|
493
|
-
|
|
494
329
|
statementId: string | undefined;
|
|
495
330
|
}
|
|
496
331
|
export interface RemoveProfilePermissionResponse {
|
|
@@ -498,247 +333,182 @@ export interface RemoveProfilePermissionResponse {
|
|
|
498
333
|
}
|
|
499
334
|
export interface RevokeSignatureRequest {
|
|
500
335
|
jobId: string | undefined;
|
|
501
|
-
|
|
502
336
|
jobOwner?: string;
|
|
503
|
-
|
|
504
337
|
reason: string | undefined;
|
|
505
338
|
}
|
|
506
339
|
export interface RevokeSigningProfileRequest {
|
|
507
340
|
profileName: string | undefined;
|
|
508
|
-
|
|
509
341
|
profileVersion: string | undefined;
|
|
510
|
-
|
|
511
342
|
reason: string | undefined;
|
|
512
|
-
|
|
513
343
|
effectiveTime: Date | undefined;
|
|
514
344
|
}
|
|
515
345
|
export interface StartSigningJobRequest {
|
|
516
346
|
source: Source | undefined;
|
|
517
|
-
|
|
518
347
|
destination: Destination | undefined;
|
|
519
|
-
|
|
520
348
|
profileName: string | undefined;
|
|
521
|
-
|
|
522
349
|
clientRequestToken?: string;
|
|
523
|
-
|
|
524
350
|
profileOwner?: string;
|
|
525
351
|
}
|
|
526
352
|
export interface StartSigningJobResponse {
|
|
527
353
|
jobId?: string;
|
|
528
|
-
|
|
529
354
|
jobOwner?: string;
|
|
530
355
|
}
|
|
531
|
-
|
|
532
356
|
export declare class ThrottlingException extends __BaseException {
|
|
533
357
|
readonly name: "ThrottlingException";
|
|
534
358
|
readonly $fault: "client";
|
|
535
359
|
code?: string;
|
|
536
|
-
|
|
537
360
|
constructor(
|
|
538
361
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
539
362
|
);
|
|
540
363
|
}
|
|
541
364
|
export interface TagResourceRequest {
|
|
542
365
|
resourceArn: string | undefined;
|
|
543
|
-
|
|
544
366
|
tags: Record<string, string> | undefined;
|
|
545
367
|
}
|
|
546
368
|
export interface TagResourceResponse {}
|
|
547
369
|
export interface UntagResourceRequest {
|
|
548
370
|
resourceArn: string | undefined;
|
|
549
|
-
|
|
550
371
|
tagKeys: string[] | undefined;
|
|
551
372
|
}
|
|
552
373
|
export interface UntagResourceResponse {}
|
|
553
|
-
|
|
554
374
|
export declare const AddProfilePermissionRequestFilterSensitiveLog: (
|
|
555
375
|
obj: AddProfilePermissionRequest
|
|
556
376
|
) => any;
|
|
557
|
-
|
|
558
377
|
export declare const AddProfilePermissionResponseFilterSensitiveLog: (
|
|
559
378
|
obj: AddProfilePermissionResponse
|
|
560
379
|
) => any;
|
|
561
|
-
|
|
562
380
|
export declare const CancelSigningProfileRequestFilterSensitiveLog: (
|
|
563
381
|
obj: CancelSigningProfileRequest
|
|
564
382
|
) => any;
|
|
565
|
-
|
|
566
383
|
export declare const DescribeSigningJobRequestFilterSensitiveLog: (
|
|
567
384
|
obj: DescribeSigningJobRequest
|
|
568
385
|
) => any;
|
|
569
|
-
|
|
570
386
|
export declare const SigningConfigurationOverridesFilterSensitiveLog: (
|
|
571
387
|
obj: SigningConfigurationOverrides
|
|
572
388
|
) => any;
|
|
573
|
-
|
|
574
389
|
export declare const SigningPlatformOverridesFilterSensitiveLog: (
|
|
575
390
|
obj: SigningPlatformOverrides
|
|
576
391
|
) => any;
|
|
577
|
-
|
|
578
392
|
export declare const SigningJobRevocationRecordFilterSensitiveLog: (
|
|
579
393
|
obj: SigningJobRevocationRecord
|
|
580
394
|
) => any;
|
|
581
|
-
|
|
582
395
|
export declare const S3SignedObjectFilterSensitiveLog: (
|
|
583
396
|
obj: S3SignedObject
|
|
584
397
|
) => any;
|
|
585
|
-
|
|
586
398
|
export declare const SignedObjectFilterSensitiveLog: (obj: SignedObject) => any;
|
|
587
|
-
|
|
588
399
|
export declare const SigningMaterialFilterSensitiveLog: (
|
|
589
400
|
obj: SigningMaterial
|
|
590
401
|
) => any;
|
|
591
|
-
|
|
592
402
|
export declare const S3SourceFilterSensitiveLog: (obj: S3Source) => any;
|
|
593
|
-
|
|
594
403
|
export declare const SourceFilterSensitiveLog: (obj: Source) => any;
|
|
595
|
-
|
|
596
404
|
export declare const DescribeSigningJobResponseFilterSensitiveLog: (
|
|
597
405
|
obj: DescribeSigningJobResponse
|
|
598
406
|
) => any;
|
|
599
|
-
|
|
600
407
|
export declare const S3DestinationFilterSensitiveLog: (
|
|
601
408
|
obj: S3Destination
|
|
602
409
|
) => any;
|
|
603
|
-
|
|
604
410
|
export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
|
|
605
|
-
|
|
606
411
|
export declare const EncryptionAlgorithmOptionsFilterSensitiveLog: (
|
|
607
412
|
obj: EncryptionAlgorithmOptions
|
|
608
413
|
) => any;
|
|
609
|
-
|
|
610
414
|
export declare const GetSigningPlatformRequestFilterSensitiveLog: (
|
|
611
415
|
obj: GetSigningPlatformRequest
|
|
612
416
|
) => any;
|
|
613
|
-
|
|
614
417
|
export declare const HashAlgorithmOptionsFilterSensitiveLog: (
|
|
615
418
|
obj: HashAlgorithmOptions
|
|
616
419
|
) => any;
|
|
617
|
-
|
|
618
420
|
export declare const SigningConfigurationFilterSensitiveLog: (
|
|
619
421
|
obj: SigningConfiguration
|
|
620
422
|
) => any;
|
|
621
|
-
|
|
622
423
|
export declare const SigningImageFormatFilterSensitiveLog: (
|
|
623
424
|
obj: SigningImageFormat
|
|
624
425
|
) => any;
|
|
625
|
-
|
|
626
426
|
export declare const GetSigningPlatformResponseFilterSensitiveLog: (
|
|
627
427
|
obj: GetSigningPlatformResponse
|
|
628
428
|
) => any;
|
|
629
|
-
|
|
630
429
|
export declare const GetSigningProfileRequestFilterSensitiveLog: (
|
|
631
430
|
obj: GetSigningProfileRequest
|
|
632
431
|
) => any;
|
|
633
|
-
|
|
634
432
|
export declare const SigningProfileRevocationRecordFilterSensitiveLog: (
|
|
635
433
|
obj: SigningProfileRevocationRecord
|
|
636
434
|
) => any;
|
|
637
|
-
|
|
638
435
|
export declare const SignatureValidityPeriodFilterSensitiveLog: (
|
|
639
436
|
obj: SignatureValidityPeriod
|
|
640
437
|
) => any;
|
|
641
|
-
|
|
642
438
|
export declare const GetSigningProfileResponseFilterSensitiveLog: (
|
|
643
439
|
obj: GetSigningProfileResponse
|
|
644
440
|
) => any;
|
|
645
|
-
|
|
646
441
|
export declare const ListProfilePermissionsRequestFilterSensitiveLog: (
|
|
647
442
|
obj: ListProfilePermissionsRequest
|
|
648
443
|
) => any;
|
|
649
|
-
|
|
650
444
|
export declare const PermissionFilterSensitiveLog: (obj: Permission) => any;
|
|
651
|
-
|
|
652
445
|
export declare const ListProfilePermissionsResponseFilterSensitiveLog: (
|
|
653
446
|
obj: ListProfilePermissionsResponse
|
|
654
447
|
) => any;
|
|
655
|
-
|
|
656
448
|
export declare const ListSigningJobsRequestFilterSensitiveLog: (
|
|
657
449
|
obj: ListSigningJobsRequest
|
|
658
450
|
) => any;
|
|
659
|
-
|
|
660
451
|
export declare const SigningJobFilterSensitiveLog: (obj: SigningJob) => any;
|
|
661
|
-
|
|
662
452
|
export declare const ListSigningJobsResponseFilterSensitiveLog: (
|
|
663
453
|
obj: ListSigningJobsResponse
|
|
664
454
|
) => any;
|
|
665
|
-
|
|
666
455
|
export declare const ListSigningPlatformsRequestFilterSensitiveLog: (
|
|
667
456
|
obj: ListSigningPlatformsRequest
|
|
668
457
|
) => any;
|
|
669
|
-
|
|
670
458
|
export declare const SigningPlatformFilterSensitiveLog: (
|
|
671
459
|
obj: SigningPlatform
|
|
672
460
|
) => any;
|
|
673
|
-
|
|
674
461
|
export declare const ListSigningPlatformsResponseFilterSensitiveLog: (
|
|
675
462
|
obj: ListSigningPlatformsResponse
|
|
676
463
|
) => any;
|
|
677
|
-
|
|
678
464
|
export declare const ListSigningProfilesRequestFilterSensitiveLog: (
|
|
679
465
|
obj: ListSigningProfilesRequest
|
|
680
466
|
) => any;
|
|
681
|
-
|
|
682
467
|
export declare const SigningProfileFilterSensitiveLog: (
|
|
683
468
|
obj: SigningProfile
|
|
684
469
|
) => any;
|
|
685
|
-
|
|
686
470
|
export declare const ListSigningProfilesResponseFilterSensitiveLog: (
|
|
687
471
|
obj: ListSigningProfilesResponse
|
|
688
472
|
) => any;
|
|
689
|
-
|
|
690
473
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
691
474
|
obj: ListTagsForResourceRequest
|
|
692
475
|
) => any;
|
|
693
|
-
|
|
694
476
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
695
477
|
obj: ListTagsForResourceResponse
|
|
696
478
|
) => any;
|
|
697
|
-
|
|
698
479
|
export declare const PutSigningProfileRequestFilterSensitiveLog: (
|
|
699
480
|
obj: PutSigningProfileRequest
|
|
700
481
|
) => any;
|
|
701
|
-
|
|
702
482
|
export declare const PutSigningProfileResponseFilterSensitiveLog: (
|
|
703
483
|
obj: PutSigningProfileResponse
|
|
704
484
|
) => any;
|
|
705
|
-
|
|
706
485
|
export declare const RemoveProfilePermissionRequestFilterSensitiveLog: (
|
|
707
486
|
obj: RemoveProfilePermissionRequest
|
|
708
487
|
) => any;
|
|
709
|
-
|
|
710
488
|
export declare const RemoveProfilePermissionResponseFilterSensitiveLog: (
|
|
711
489
|
obj: RemoveProfilePermissionResponse
|
|
712
490
|
) => any;
|
|
713
|
-
|
|
714
491
|
export declare const RevokeSignatureRequestFilterSensitiveLog: (
|
|
715
492
|
obj: RevokeSignatureRequest
|
|
716
493
|
) => any;
|
|
717
|
-
|
|
718
494
|
export declare const RevokeSigningProfileRequestFilterSensitiveLog: (
|
|
719
495
|
obj: RevokeSigningProfileRequest
|
|
720
496
|
) => any;
|
|
721
|
-
|
|
722
497
|
export declare const StartSigningJobRequestFilterSensitiveLog: (
|
|
723
498
|
obj: StartSigningJobRequest
|
|
724
499
|
) => any;
|
|
725
|
-
|
|
726
500
|
export declare const StartSigningJobResponseFilterSensitiveLog: (
|
|
727
501
|
obj: StartSigningJobResponse
|
|
728
502
|
) => any;
|
|
729
|
-
|
|
730
503
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
731
504
|
obj: TagResourceRequest
|
|
732
505
|
) => any;
|
|
733
|
-
|
|
734
506
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
735
507
|
obj: TagResourceResponse
|
|
736
508
|
) => any;
|
|
737
|
-
|
|
738
509
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
739
510
|
obj: UntagResourceRequest
|
|
740
511
|
) => any;
|
|
741
|
-
|
|
742
512
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
743
513
|
obj: UntagResourceResponse
|
|
744
514
|
) => any;
|