@aws-sdk/client-signer 3.131.0 → 3.137.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/AddProfilePermissionCommand.js +2 -2
  3. package/dist-cjs/commands/CancelSigningProfileCommand.js +1 -1
  4. package/dist-cjs/commands/DescribeSigningJobCommand.js +2 -2
  5. package/dist-cjs/commands/GetSigningPlatformCommand.js +2 -2
  6. package/dist-cjs/commands/GetSigningProfileCommand.js +2 -2
  7. package/dist-cjs/commands/ListProfilePermissionsCommand.js +2 -2
  8. package/dist-cjs/commands/ListSigningJobsCommand.js +2 -2
  9. package/dist-cjs/commands/ListSigningPlatformsCommand.js +2 -2
  10. package/dist-cjs/commands/ListSigningProfilesCommand.js +2 -2
  11. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  12. package/dist-cjs/commands/PutSigningProfileCommand.js +2 -2
  13. package/dist-cjs/commands/RemoveProfilePermissionCommand.js +2 -2
  14. package/dist-cjs/commands/RevokeSignatureCommand.js +1 -1
  15. package/dist-cjs/commands/RevokeSigningProfileCommand.js +1 -1
  16. package/dist-cjs/commands/StartSigningJobCommand.js +2 -2
  17. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  18. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  19. package/dist-cjs/models/models_0.js +206 -308
  20. package/dist-es/commands/AddProfilePermissionCommand.js +3 -3
  21. package/dist-es/commands/CancelSigningProfileCommand.js +2 -2
  22. package/dist-es/commands/DescribeSigningJobCommand.js +3 -3
  23. package/dist-es/commands/GetSigningPlatformCommand.js +3 -3
  24. package/dist-es/commands/GetSigningProfileCommand.js +3 -3
  25. package/dist-es/commands/ListProfilePermissionsCommand.js +3 -3
  26. package/dist-es/commands/ListSigningJobsCommand.js +3 -3
  27. package/dist-es/commands/ListSigningPlatformsCommand.js +3 -3
  28. package/dist-es/commands/ListSigningProfilesCommand.js +3 -3
  29. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  30. package/dist-es/commands/PutSigningProfileCommand.js +3 -3
  31. package/dist-es/commands/RemoveProfilePermissionCommand.js +3 -3
  32. package/dist-es/commands/RevokeSignatureCommand.js +2 -2
  33. package/dist-es/commands/RevokeSigningProfileCommand.js +2 -2
  34. package/dist-es/commands/StartSigningJobCommand.js +3 -3
  35. package/dist-es/commands/TagResourceCommand.js +3 -3
  36. package/dist-es/commands/UntagResourceCommand.js +3 -3
  37. package/dist-es/models/models_0.js +51 -204
  38. package/dist-types/models/models_0.d.ts +204 -306
  39. package/dist-types/ts3.4/models/models_0.d.ts +102 -204
  40. package/package.json +6 -6
@@ -39,24 +39,12 @@ export interface AddProfilePermissionRequest {
39
39
  */
40
40
  statementId: string | undefined;
41
41
  }
42
- export declare namespace AddProfilePermissionRequest {
43
- /**
44
- * @internal
45
- */
46
- const filterSensitiveLog: (obj: AddProfilePermissionRequest) => any;
47
- }
48
42
  export interface AddProfilePermissionResponse {
49
43
  /**
50
44
  * <p>A unique identifier for the current profile revision.</p>
51
45
  */
52
46
  revisionId?: string;
53
47
  }
54
- export declare namespace AddProfilePermissionResponse {
55
- /**
56
- * @internal
57
- */
58
- const filterSensitiveLog: (obj: AddProfilePermissionResponse) => any;
59
- }
60
48
  /**
61
49
  * <p>The resource encountered a conflicting state.</p>
62
50
  */
@@ -149,12 +137,6 @@ export interface CancelSigningProfileRequest {
149
137
  */
150
138
  profileName: string | undefined;
151
139
  }
152
- export declare namespace CancelSigningProfileRequest {
153
- /**
154
- * @internal
155
- */
156
- const filterSensitiveLog: (obj: CancelSigningProfileRequest) => any;
157
- }
158
140
  export declare type Category = "AWSIoT";
159
141
  export interface DescribeSigningJobRequest {
160
142
  /**
@@ -162,12 +144,6 @@ export interface DescribeSigningJobRequest {
162
144
  */
163
145
  jobId: string | undefined;
164
146
  }
165
- export declare namespace DescribeSigningJobRequest {
166
- /**
167
- * @internal
168
- */
169
- const filterSensitiveLog: (obj: DescribeSigningJobRequest) => any;
170
- }
171
147
  export declare type EncryptionAlgorithm = "ECDSA" | "RSA";
172
148
  export declare type HashAlgorithm = "SHA1" | "SHA256";
173
149
  /**
@@ -186,12 +162,6 @@ export interface SigningConfigurationOverrides {
186
162
  */
187
163
  hashAlgorithm?: HashAlgorithm | string;
188
164
  }
189
- export declare namespace SigningConfigurationOverrides {
190
- /**
191
- * @internal
192
- */
193
- const filterSensitiveLog: (obj: SigningConfigurationOverrides) => any;
194
- }
195
165
  export declare type ImageFormat = "JSON" | "JSONDetached" | "JSONEmbedded";
196
166
  /**
197
167
  * <p>Any overrides that are applied to the signing configuration of a code signing
@@ -213,12 +183,6 @@ export interface SigningPlatformOverrides {
213
183
  */
214
184
  signingImageFormat?: ImageFormat | string;
215
185
  }
216
- export declare namespace SigningPlatformOverrides {
217
- /**
218
- * @internal
219
- */
220
- const filterSensitiveLog: (obj: SigningPlatformOverrides) => any;
221
- }
222
186
  /**
223
187
  * <p>Revocation information for a signing job.</p>
224
188
  */
@@ -236,12 +200,6 @@ export interface SigningJobRevocationRecord {
236
200
  */
237
201
  revokedBy?: string;
238
202
  }
239
- export declare namespace SigningJobRevocationRecord {
240
- /**
241
- * @internal
242
- */
243
- const filterSensitiveLog: (obj: SigningJobRevocationRecord) => any;
244
- }
245
203
  /**
246
204
  * <p>The S3 bucket name and key where code signing saved your signed code image.</p>
247
205
  */
@@ -255,12 +213,6 @@ export interface S3SignedObject {
255
213
  */
256
214
  key?: string;
257
215
  }
258
- export declare namespace S3SignedObject {
259
- /**
260
- * @internal
261
- */
262
- const filterSensitiveLog: (obj: S3SignedObject) => any;
263
- }
264
216
  /**
265
217
  * <p>Points to an <code>S3SignedObject</code> object that contains information about your
266
218
  * signed code image.</p>
@@ -271,12 +223,6 @@ export interface SignedObject {
271
223
  */
272
224
  s3?: S3SignedObject;
273
225
  }
274
- export declare namespace SignedObject {
275
- /**
276
- * @internal
277
- */
278
- const filterSensitiveLog: (obj: SignedObject) => any;
279
- }
280
226
  /**
281
227
  * <p>The ACM certificate that is used to sign your code.</p>
282
228
  */
@@ -287,12 +233,6 @@ export interface SigningMaterial {
287
233
  */
288
234
  certificateArn: string | undefined;
289
235
  }
290
- export declare namespace SigningMaterial {
291
- /**
292
- * @internal
293
- */
294
- const filterSensitiveLog: (obj: SigningMaterial) => any;
295
- }
296
236
  /**
297
237
  * <p>Information about the S3 bucket where you saved your unsigned code.</p>
298
238
  */
@@ -310,12 +250,6 @@ export interface S3Source {
310
250
  */
311
251
  version: string | undefined;
312
252
  }
313
- export declare namespace S3Source {
314
- /**
315
- * @internal
316
- */
317
- const filterSensitiveLog: (obj: S3Source) => any;
318
- }
319
253
  /**
320
254
  * <p>An <code>S3Source</code> object that contains information about the S3 bucket where
321
255
  * you saved your unsigned code.</p>
@@ -326,12 +260,6 @@ export interface Source {
326
260
  */
327
261
  s3?: S3Source;
328
262
  }
329
- export declare namespace Source {
330
- /**
331
- * @internal
332
- */
333
- const filterSensitiveLog: (obj: Source) => any;
334
- }
335
263
  export declare type SigningStatus = "Failed" | "InProgress" | "Succeeded";
336
264
  export interface DescribeSigningJobResponse {
337
265
  /**
@@ -414,12 +342,6 @@ export interface DescribeSigningJobResponse {
414
342
  */
415
343
  jobInvoker?: string;
416
344
  }
417
- export declare namespace DescribeSigningJobResponse {
418
- /**
419
- * @internal
420
- */
421
- const filterSensitiveLog: (obj: DescribeSigningJobResponse) => any;
422
- }
423
345
  /**
424
346
  * <p>The name and prefix of the S3 bucket where code signing saves your signed objects.</p>
425
347
  */
@@ -434,12 +356,6 @@ export interface S3Destination {
434
356
  */
435
357
  prefix?: string;
436
358
  }
437
- export declare namespace S3Destination {
438
- /**
439
- * @internal
440
- */
441
- const filterSensitiveLog: (obj: S3Destination) => any;
442
- }
443
359
  /**
444
360
  * <p>Points to an <code>S3Destination</code> object that contains information about your S3
445
361
  * bucket.</p>
@@ -450,12 +366,6 @@ export interface Destination {
450
366
  */
451
367
  s3?: S3Destination;
452
368
  }
453
- export declare namespace Destination {
454
- /**
455
- * @internal
456
- */
457
- const filterSensitiveLog: (obj: Destination) => any;
458
- }
459
369
  /**
460
370
  * <p>The encryption algorithm options that are available to a code signing job.</p>
461
371
  */
@@ -469,24 +379,12 @@ export interface EncryptionAlgorithmOptions {
469
379
  */
470
380
  defaultValue: EncryptionAlgorithm | string | undefined;
471
381
  }
472
- export declare namespace EncryptionAlgorithmOptions {
473
- /**
474
- * @internal
475
- */
476
- const filterSensitiveLog: (obj: EncryptionAlgorithmOptions) => any;
477
- }
478
382
  export interface GetSigningPlatformRequest {
479
383
  /**
480
384
  * <p>The ID of the target signing platform.</p>
481
385
  */
482
386
  platformId: string | undefined;
483
387
  }
484
- export declare namespace GetSigningPlatformRequest {
485
- /**
486
- * @internal
487
- */
488
- const filterSensitiveLog: (obj: GetSigningPlatformRequest) => any;
489
- }
490
388
  /**
491
389
  * <p>The hash algorithms that are available to a code signing job.</p>
492
390
  */
@@ -500,12 +398,6 @@ export interface HashAlgorithmOptions {
500
398
  */
501
399
  defaultValue: HashAlgorithm | string | undefined;
502
400
  }
503
- export declare namespace HashAlgorithmOptions {
504
- /**
505
- * @internal
506
- */
507
- const filterSensitiveLog: (obj: HashAlgorithmOptions) => any;
508
- }
509
401
  /**
510
402
  * <p>The configuration of a code signing operation.</p>
511
403
  */
@@ -519,12 +411,6 @@ export interface SigningConfiguration {
519
411
  */
520
412
  hashAlgorithmOptions: HashAlgorithmOptions | undefined;
521
413
  }
522
- export declare namespace SigningConfiguration {
523
- /**
524
- * @internal
525
- */
526
- const filterSensitiveLog: (obj: SigningConfiguration) => any;
527
- }
528
414
  /**
529
415
  * <p>The image format of a code signing platform or profile.</p>
530
416
  */
@@ -538,12 +424,6 @@ export interface SigningImageFormat {
538
424
  */
539
425
  defaultFormat: ImageFormat | string | undefined;
540
426
  }
541
- export declare namespace SigningImageFormat {
542
- /**
543
- * @internal
544
- */
545
- const filterSensitiveLog: (obj: SigningImageFormat) => any;
546
- }
547
427
  export interface GetSigningPlatformResponse {
548
428
  /**
549
429
  * <p>The ID of the target signing platform.</p>
@@ -584,12 +464,6 @@ export interface GetSigningPlatformResponse {
584
464
  */
585
465
  revocationSupported?: boolean;
586
466
  }
587
- export declare namespace GetSigningPlatformResponse {
588
- /**
589
- * @internal
590
- */
591
- const filterSensitiveLog: (obj: GetSigningPlatformResponse) => any;
592
- }
593
467
  export interface GetSigningProfileRequest {
594
468
  /**
595
469
  * <p>The name of the target signing profile.</p>
@@ -600,12 +474,6 @@ export interface GetSigningProfileRequest {
600
474
  */
601
475
  profileOwner?: string;
602
476
  }
603
- export declare namespace GetSigningProfileRequest {
604
- /**
605
- * @internal
606
- */
607
- const filterSensitiveLog: (obj: GetSigningProfileRequest) => any;
608
- }
609
477
  /**
610
478
  * <p>Revocation information for a signing profile.</p>
611
479
  */
@@ -623,12 +491,6 @@ export interface SigningProfileRevocationRecord {
623
491
  */
624
492
  revokedBy?: string;
625
493
  }
626
- export declare namespace SigningProfileRevocationRecord {
627
- /**
628
- * @internal
629
- */
630
- const filterSensitiveLog: (obj: SigningProfileRevocationRecord) => any;
631
- }
632
494
  export declare type ValidityType = "DAYS" | "MONTHS" | "YEARS";
633
495
  /**
634
496
  * <p>The validity period for a signing job.</p>
@@ -644,12 +506,6 @@ export interface SignatureValidityPeriod {
644
506
  */
645
507
  type?: ValidityType | string;
646
508
  }
647
- export declare namespace SignatureValidityPeriod {
648
- /**
649
- * @internal
650
- */
651
- const filterSensitiveLog: (obj: SignatureValidityPeriod) => any;
652
- }
653
509
  export declare type SigningProfileStatus = "Active" | "Canceled" | "Revoked";
654
510
  export interface GetSigningProfileResponse {
655
511
  /**
@@ -712,12 +568,6 @@ export interface GetSigningProfileResponse {
712
568
  */
713
569
  tags?: Record<string, string>;
714
570
  }
715
- export declare namespace GetSigningProfileResponse {
716
- /**
717
- * @internal
718
- */
719
- const filterSensitiveLog: (obj: GetSigningProfileResponse) => any;
720
- }
721
571
  export interface ListProfilePermissionsRequest {
722
572
  /**
723
573
  * <p>Name of the signing profile containing the cross-account permissions.</p>
@@ -728,12 +578,6 @@ export interface ListProfilePermissionsRequest {
728
578
  */
729
579
  nextToken?: string;
730
580
  }
731
- export declare namespace ListProfilePermissionsRequest {
732
- /**
733
- * @internal
734
- */
735
- const filterSensitiveLog: (obj: ListProfilePermissionsRequest) => any;
736
- }
737
581
  /**
738
582
  * <p>A cross-account permission for a signing profile.</p>
739
583
  */
@@ -755,12 +599,6 @@ export interface Permission {
755
599
  */
756
600
  profileVersion?: string;
757
601
  }
758
- export declare namespace Permission {
759
- /**
760
- * @internal
761
- */
762
- const filterSensitiveLog: (obj: Permission) => any;
763
- }
764
602
  export interface ListProfilePermissionsResponse {
765
603
  /**
766
604
  * <p>The identifier for the current revision of profile permissions.</p>
@@ -779,12 +617,6 @@ export interface ListProfilePermissionsResponse {
779
617
  */
780
618
  nextToken?: string;
781
619
  }
782
- export declare namespace ListProfilePermissionsResponse {
783
- /**
784
- * @internal
785
- */
786
- const filterSensitiveLog: (obj: ListProfilePermissionsResponse) => any;
787
- }
788
620
  export interface ListSigningJobsRequest {
789
621
  /**
790
622
  * <p>A status value with which to filter your results.</p>
@@ -833,12 +665,6 @@ export interface ListSigningJobsRequest {
833
665
  */
834
666
  jobInvoker?: string;
835
667
  }
836
- export declare namespace ListSigningJobsRequest {
837
- /**
838
- * @internal
839
- */
840
- const filterSensitiveLog: (obj: ListSigningJobsRequest) => any;
841
- }
842
668
  /**
843
669
  * <p>Contains information about a signing job.</p>
844
670
  */
@@ -903,12 +729,6 @@ export interface SigningJob {
903
729
  */
904
730
  jobInvoker?: string;
905
731
  }
906
- export declare namespace SigningJob {
907
- /**
908
- * @internal
909
- */
910
- const filterSensitiveLog: (obj: SigningJob) => any;
911
- }
912
732
  export interface ListSigningJobsResponse {
913
733
  /**
914
734
  * <p>A list of your signing jobs.</p>
@@ -919,12 +739,6 @@ export interface ListSigningJobsResponse {
919
739
  */
920
740
  nextToken?: string;
921
741
  }
922
- export declare namespace ListSigningJobsResponse {
923
- /**
924
- * @internal
925
- */
926
- const filterSensitiveLog: (obj: ListSigningJobsResponse) => any;
927
- }
928
742
  export interface ListSigningPlatformsRequest {
929
743
  /**
930
744
  * <p>The category type of a signing platform.</p>
@@ -949,12 +763,6 @@ export interface ListSigningPlatformsRequest {
949
763
  */
950
764
  nextToken?: string;
951
765
  }
952
- export declare namespace ListSigningPlatformsRequest {
953
- /**
954
- * @internal
955
- */
956
- const filterSensitiveLog: (obj: ListSigningPlatformsRequest) => any;
957
- }
958
766
  /**
959
767
  * <p>Contains information about the signing configurations and parameters that are used to
960
768
  * perform a code signing job.</p>
@@ -998,12 +806,6 @@ export interface SigningPlatform {
998
806
  */
999
807
  revocationSupported?: boolean;
1000
808
  }
1001
- export declare namespace SigningPlatform {
1002
- /**
1003
- * @internal
1004
- */
1005
- const filterSensitiveLog: (obj: SigningPlatform) => any;
1006
- }
1007
809
  export interface ListSigningPlatformsResponse {
1008
810
  /**
1009
811
  * <p>A list of all platforms that match the request parameters.</p>
@@ -1014,12 +816,6 @@ export interface ListSigningPlatformsResponse {
1014
816
  */
1015
817
  nextToken?: string;
1016
818
  }
1017
- export declare namespace ListSigningPlatformsResponse {
1018
- /**
1019
- * @internal
1020
- */
1021
- const filterSensitiveLog: (obj: ListSigningPlatformsResponse) => any;
1022
- }
1023
819
  export interface ListSigningProfilesRequest {
1024
820
  /**
1025
821
  * <p>Designates whether to include profiles with the status of
@@ -1047,12 +843,6 @@ export interface ListSigningProfilesRequest {
1047
843
  */
1048
844
  statuses?: (SigningProfileStatus | string)[];
1049
845
  }
1050
- export declare namespace ListSigningProfilesRequest {
1051
- /**
1052
- * @internal
1053
- */
1054
- const filterSensitiveLog: (obj: ListSigningProfilesRequest) => any;
1055
- }
1056
846
  /**
1057
847
  * <p>Contains information about the ACM certificates and code signing configuration parameters
1058
848
  * that can be used by a given code signing user.</p>
@@ -1103,12 +893,6 @@ export interface SigningProfile {
1103
893
  */
1104
894
  tags?: Record<string, string>;
1105
895
  }
1106
- export declare namespace SigningProfile {
1107
- /**
1108
- * @internal
1109
- */
1110
- const filterSensitiveLog: (obj: SigningProfile) => any;
1111
- }
1112
896
  export interface ListSigningProfilesResponse {
1113
897
  /**
1114
898
  * <p>A list of profiles that are available in the AWS account. This includes profiles with
@@ -1121,36 +905,18 @@ export interface ListSigningProfilesResponse {
1121
905
  */
1122
906
  nextToken?: string;
1123
907
  }
1124
- export declare namespace ListSigningProfilesResponse {
1125
- /**
1126
- * @internal
1127
- */
1128
- const filterSensitiveLog: (obj: ListSigningProfilesResponse) => any;
1129
- }
1130
908
  export interface ListTagsForResourceRequest {
1131
909
  /**
1132
910
  * <p>The Amazon Resource Name (ARN) for the signing profile.</p>
1133
911
  */
1134
912
  resourceArn: string | undefined;
1135
913
  }
1136
- export declare namespace ListTagsForResourceRequest {
1137
- /**
1138
- * @internal
1139
- */
1140
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1141
- }
1142
914
  export interface ListTagsForResourceResponse {
1143
915
  /**
1144
916
  * <p>A list of tags associated with the signing profile.</p>
1145
917
  */
1146
918
  tags?: Record<string, string>;
1147
919
  }
1148
- export declare namespace ListTagsForResourceResponse {
1149
- /**
1150
- * @internal
1151
- */
1152
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1153
- }
1154
920
  /**
1155
921
  * <p>The signing profile was not found.</p>
1156
922
  */
@@ -1198,12 +964,6 @@ export interface PutSigningProfileRequest {
1198
964
  */
1199
965
  tags?: Record<string, string>;
1200
966
  }
1201
- export declare namespace PutSigningProfileRequest {
1202
- /**
1203
- * @internal
1204
- */
1205
- const filterSensitiveLog: (obj: PutSigningProfileRequest) => any;
1206
- }
1207
967
  export interface PutSigningProfileResponse {
1208
968
  /**
1209
969
  * <p>The Amazon Resource Name (ARN) of the signing profile created.</p>
@@ -1218,12 +978,6 @@ export interface PutSigningProfileResponse {
1218
978
  */
1219
979
  profileVersionArn?: string;
1220
980
  }
1221
- export declare namespace PutSigningProfileResponse {
1222
- /**
1223
- * @internal
1224
- */
1225
- const filterSensitiveLog: (obj: PutSigningProfileResponse) => any;
1226
- }
1227
981
  export interface RemoveProfilePermissionRequest {
1228
982
  /**
1229
983
  * <p>A human-readable name for the signing profile with permissions to be removed.</p>
@@ -1238,24 +992,12 @@ export interface RemoveProfilePermissionRequest {
1238
992
  */
1239
993
  statementId: string | undefined;
1240
994
  }
1241
- export declare namespace RemoveProfilePermissionRequest {
1242
- /**
1243
- * @internal
1244
- */
1245
- const filterSensitiveLog: (obj: RemoveProfilePermissionRequest) => any;
1246
- }
1247
995
  export interface RemoveProfilePermissionResponse {
1248
996
  /**
1249
997
  * <p>An identifier for the current revision of the profile permissions.</p>
1250
998
  */
1251
999
  revisionId?: string;
1252
1000
  }
1253
- export declare namespace RemoveProfilePermissionResponse {
1254
- /**
1255
- * @internal
1256
- */
1257
- const filterSensitiveLog: (obj: RemoveProfilePermissionResponse) => any;
1258
- }
1259
1001
  export interface RevokeSignatureRequest {
1260
1002
  /**
1261
1003
  * <p>ID of the signing job to be revoked.</p>
@@ -1270,12 +1012,6 @@ export interface RevokeSignatureRequest {
1270
1012
  */
1271
1013
  reason: string | undefined;
1272
1014
  }
1273
- export declare namespace RevokeSignatureRequest {
1274
- /**
1275
- * @internal
1276
- */
1277
- const filterSensitiveLog: (obj: RevokeSignatureRequest) => any;
1278
- }
1279
1015
  export interface RevokeSigningProfileRequest {
1280
1016
  /**
1281
1017
  * <p>The name of the signing profile to be revoked.</p>
@@ -1296,12 +1032,6 @@ export interface RevokeSigningProfileRequest {
1296
1032
  */
1297
1033
  effectiveTime: Date | undefined;
1298
1034
  }
1299
- export declare namespace RevokeSigningProfileRequest {
1300
- /**
1301
- * @internal
1302
- */
1303
- const filterSensitiveLog: (obj: RevokeSigningProfileRequest) => any;
1304
- }
1305
1035
  export interface StartSigningJobRequest {
1306
1036
  /**
1307
1037
  * <p>The S3 bucket that contains the object to sign or a BLOB that contains your raw
@@ -1327,12 +1057,6 @@ export interface StartSigningJobRequest {
1327
1057
  */
1328
1058
  profileOwner?: string;
1329
1059
  }
1330
- export declare namespace StartSigningJobRequest {
1331
- /**
1332
- * @internal
1333
- */
1334
- const filterSensitiveLog: (obj: StartSigningJobRequest) => any;
1335
- }
1336
1060
  export interface StartSigningJobResponse {
1337
1061
  /**
1338
1062
  * <p>The ID of your signing job.</p>
@@ -1343,12 +1067,6 @@ export interface StartSigningJobResponse {
1343
1067
  */
1344
1068
  jobOwner?: string;
1345
1069
  }
1346
- export declare namespace StartSigningJobResponse {
1347
- /**
1348
- * @internal
1349
- */
1350
- const filterSensitiveLog: (obj: StartSigningJobResponse) => any;
1351
- }
1352
1070
  /**
1353
1071
  * @deprecated
1354
1072
  *
@@ -1374,20 +1092,8 @@ export interface TagResourceRequest {
1374
1092
  */
1375
1093
  tags: Record<string, string> | undefined;
1376
1094
  }
1377
- export declare namespace TagResourceRequest {
1378
- /**
1379
- * @internal
1380
- */
1381
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
1382
- }
1383
1095
  export interface TagResourceResponse {
1384
1096
  }
1385
- export declare namespace TagResourceResponse {
1386
- /**
1387
- * @internal
1388
- */
1389
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
1390
- }
1391
1097
  export interface UntagResourceRequest {
1392
1098
  /**
1393
1099
  * <p>The Amazon Resource Name (ARN) for the signing profile.</p>
@@ -1398,17 +1104,209 @@ export interface UntagResourceRequest {
1398
1104
  */
1399
1105
  tagKeys: string[] | undefined;
1400
1106
  }
1401
- export declare namespace UntagResourceRequest {
1402
- /**
1403
- * @internal
1404
- */
1405
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
1406
- }
1407
1107
  export interface UntagResourceResponse {
1408
1108
  }
1409
- export declare namespace UntagResourceResponse {
1410
- /**
1411
- * @internal
1412
- */
1413
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1414
- }
1109
+ /**
1110
+ * @internal
1111
+ */
1112
+ export declare const AddProfilePermissionRequestFilterSensitiveLog: (obj: AddProfilePermissionRequest) => any;
1113
+ /**
1114
+ * @internal
1115
+ */
1116
+ export declare const AddProfilePermissionResponseFilterSensitiveLog: (obj: AddProfilePermissionResponse) => any;
1117
+ /**
1118
+ * @internal
1119
+ */
1120
+ export declare const CancelSigningProfileRequestFilterSensitiveLog: (obj: CancelSigningProfileRequest) => any;
1121
+ /**
1122
+ * @internal
1123
+ */
1124
+ export declare const DescribeSigningJobRequestFilterSensitiveLog: (obj: DescribeSigningJobRequest) => any;
1125
+ /**
1126
+ * @internal
1127
+ */
1128
+ export declare const SigningConfigurationOverridesFilterSensitiveLog: (obj: SigningConfigurationOverrides) => any;
1129
+ /**
1130
+ * @internal
1131
+ */
1132
+ export declare const SigningPlatformOverridesFilterSensitiveLog: (obj: SigningPlatformOverrides) => any;
1133
+ /**
1134
+ * @internal
1135
+ */
1136
+ export declare const SigningJobRevocationRecordFilterSensitiveLog: (obj: SigningJobRevocationRecord) => any;
1137
+ /**
1138
+ * @internal
1139
+ */
1140
+ export declare const S3SignedObjectFilterSensitiveLog: (obj: S3SignedObject) => any;
1141
+ /**
1142
+ * @internal
1143
+ */
1144
+ export declare const SignedObjectFilterSensitiveLog: (obj: SignedObject) => any;
1145
+ /**
1146
+ * @internal
1147
+ */
1148
+ export declare const SigningMaterialFilterSensitiveLog: (obj: SigningMaterial) => any;
1149
+ /**
1150
+ * @internal
1151
+ */
1152
+ export declare const S3SourceFilterSensitiveLog: (obj: S3Source) => any;
1153
+ /**
1154
+ * @internal
1155
+ */
1156
+ export declare const SourceFilterSensitiveLog: (obj: Source) => any;
1157
+ /**
1158
+ * @internal
1159
+ */
1160
+ export declare const DescribeSigningJobResponseFilterSensitiveLog: (obj: DescribeSigningJobResponse) => any;
1161
+ /**
1162
+ * @internal
1163
+ */
1164
+ export declare const S3DestinationFilterSensitiveLog: (obj: S3Destination) => any;
1165
+ /**
1166
+ * @internal
1167
+ */
1168
+ export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
1169
+ /**
1170
+ * @internal
1171
+ */
1172
+ export declare const EncryptionAlgorithmOptionsFilterSensitiveLog: (obj: EncryptionAlgorithmOptions) => any;
1173
+ /**
1174
+ * @internal
1175
+ */
1176
+ export declare const GetSigningPlatformRequestFilterSensitiveLog: (obj: GetSigningPlatformRequest) => any;
1177
+ /**
1178
+ * @internal
1179
+ */
1180
+ export declare const HashAlgorithmOptionsFilterSensitiveLog: (obj: HashAlgorithmOptions) => any;
1181
+ /**
1182
+ * @internal
1183
+ */
1184
+ export declare const SigningConfigurationFilterSensitiveLog: (obj: SigningConfiguration) => any;
1185
+ /**
1186
+ * @internal
1187
+ */
1188
+ export declare const SigningImageFormatFilterSensitiveLog: (obj: SigningImageFormat) => any;
1189
+ /**
1190
+ * @internal
1191
+ */
1192
+ export declare const GetSigningPlatformResponseFilterSensitiveLog: (obj: GetSigningPlatformResponse) => any;
1193
+ /**
1194
+ * @internal
1195
+ */
1196
+ export declare const GetSigningProfileRequestFilterSensitiveLog: (obj: GetSigningProfileRequest) => any;
1197
+ /**
1198
+ * @internal
1199
+ */
1200
+ export declare const SigningProfileRevocationRecordFilterSensitiveLog: (obj: SigningProfileRevocationRecord) => any;
1201
+ /**
1202
+ * @internal
1203
+ */
1204
+ export declare const SignatureValidityPeriodFilterSensitiveLog: (obj: SignatureValidityPeriod) => any;
1205
+ /**
1206
+ * @internal
1207
+ */
1208
+ export declare const GetSigningProfileResponseFilterSensitiveLog: (obj: GetSigningProfileResponse) => any;
1209
+ /**
1210
+ * @internal
1211
+ */
1212
+ export declare const ListProfilePermissionsRequestFilterSensitiveLog: (obj: ListProfilePermissionsRequest) => any;
1213
+ /**
1214
+ * @internal
1215
+ */
1216
+ export declare const PermissionFilterSensitiveLog: (obj: Permission) => any;
1217
+ /**
1218
+ * @internal
1219
+ */
1220
+ export declare const ListProfilePermissionsResponseFilterSensitiveLog: (obj: ListProfilePermissionsResponse) => any;
1221
+ /**
1222
+ * @internal
1223
+ */
1224
+ export declare const ListSigningJobsRequestFilterSensitiveLog: (obj: ListSigningJobsRequest) => any;
1225
+ /**
1226
+ * @internal
1227
+ */
1228
+ export declare const SigningJobFilterSensitiveLog: (obj: SigningJob) => any;
1229
+ /**
1230
+ * @internal
1231
+ */
1232
+ export declare const ListSigningJobsResponseFilterSensitiveLog: (obj: ListSigningJobsResponse) => any;
1233
+ /**
1234
+ * @internal
1235
+ */
1236
+ export declare const ListSigningPlatformsRequestFilterSensitiveLog: (obj: ListSigningPlatformsRequest) => any;
1237
+ /**
1238
+ * @internal
1239
+ */
1240
+ export declare const SigningPlatformFilterSensitiveLog: (obj: SigningPlatform) => any;
1241
+ /**
1242
+ * @internal
1243
+ */
1244
+ export declare const ListSigningPlatformsResponseFilterSensitiveLog: (obj: ListSigningPlatformsResponse) => any;
1245
+ /**
1246
+ * @internal
1247
+ */
1248
+ export declare const ListSigningProfilesRequestFilterSensitiveLog: (obj: ListSigningProfilesRequest) => any;
1249
+ /**
1250
+ * @internal
1251
+ */
1252
+ export declare const SigningProfileFilterSensitiveLog: (obj: SigningProfile) => any;
1253
+ /**
1254
+ * @internal
1255
+ */
1256
+ export declare const ListSigningProfilesResponseFilterSensitiveLog: (obj: ListSigningProfilesResponse) => any;
1257
+ /**
1258
+ * @internal
1259
+ */
1260
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1261
+ /**
1262
+ * @internal
1263
+ */
1264
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1265
+ /**
1266
+ * @internal
1267
+ */
1268
+ export declare const PutSigningProfileRequestFilterSensitiveLog: (obj: PutSigningProfileRequest) => any;
1269
+ /**
1270
+ * @internal
1271
+ */
1272
+ export declare const PutSigningProfileResponseFilterSensitiveLog: (obj: PutSigningProfileResponse) => any;
1273
+ /**
1274
+ * @internal
1275
+ */
1276
+ export declare const RemoveProfilePermissionRequestFilterSensitiveLog: (obj: RemoveProfilePermissionRequest) => any;
1277
+ /**
1278
+ * @internal
1279
+ */
1280
+ export declare const RemoveProfilePermissionResponseFilterSensitiveLog: (obj: RemoveProfilePermissionResponse) => any;
1281
+ /**
1282
+ * @internal
1283
+ */
1284
+ export declare const RevokeSignatureRequestFilterSensitiveLog: (obj: RevokeSignatureRequest) => any;
1285
+ /**
1286
+ * @internal
1287
+ */
1288
+ export declare const RevokeSigningProfileRequestFilterSensitiveLog: (obj: RevokeSigningProfileRequest) => any;
1289
+ /**
1290
+ * @internal
1291
+ */
1292
+ export declare const StartSigningJobRequestFilterSensitiveLog: (obj: StartSigningJobRequest) => any;
1293
+ /**
1294
+ * @internal
1295
+ */
1296
+ export declare const StartSigningJobResponseFilterSensitiveLog: (obj: StartSigningJobResponse) => any;
1297
+ /**
1298
+ * @internal
1299
+ */
1300
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1301
+ /**
1302
+ * @internal
1303
+ */
1304
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1305
+ /**
1306
+ * @internal
1307
+ */
1308
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1309
+ /**
1310
+ * @internal
1311
+ */
1312
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;