@aws-sdk/client-signer 3.686.0 → 3.691.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.
@@ -7,7 +7,7 @@ import { SignerServiceException as __BaseException } from "./SignerServiceExcept
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- code?: string;
10
+ code?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -26,7 +26,7 @@ export interface AddProfilePermissionRequest {
26
26
  * <p>The version of the signing profile.</p>
27
27
  * @public
28
28
  */
29
- profileVersion?: string;
29
+ profileVersion?: string | undefined;
30
30
  /**
31
31
  * <p>For cross-account signing. Grant a designated account permission to perform one or more of the following actions. Each action is associated with a specific API's operations. For more information about cross-account signing, see <a href="https://docs.aws.amazon.com/signer/latest/developerguide/signing-profile-cross-account.html">Using cross-account signing with signing profiles</a> in the <i>AWS Signer Developer Guide</i>.</p>
32
32
  * <p>You can designate the following actions to an account.</p>
@@ -62,7 +62,7 @@ export interface AddProfilePermissionRequest {
62
62
  * <p>A unique identifier for the current profile revision.</p>
63
63
  * @public
64
64
  */
65
- revisionId?: string;
65
+ revisionId?: string | undefined;
66
66
  /**
67
67
  * <p>A unique identifier for the cross-account permission statement.</p>
68
68
  * @public
@@ -77,7 +77,7 @@ export interface AddProfilePermissionResponse {
77
77
  * <p>A unique identifier for the current profile revision.</p>
78
78
  * @public
79
79
  */
80
- revisionId?: string;
80
+ revisionId?: string | undefined;
81
81
  }
82
82
  /**
83
83
  * <p>The resource encountered a conflicting state.</p>
@@ -86,7 +86,7 @@ export interface AddProfilePermissionResponse {
86
86
  export declare class ConflictException extends __BaseException {
87
87
  readonly name: "ConflictException";
88
88
  readonly $fault: "client";
89
- code?: string;
89
+ code?: string | undefined;
90
90
  /**
91
91
  * @internal
92
92
  */
@@ -99,7 +99,7 @@ export declare class ConflictException extends __BaseException {
99
99
  export declare class InternalServiceErrorException extends __BaseException {
100
100
  readonly name: "InternalServiceErrorException";
101
101
  readonly $fault: "server";
102
- code?: string;
102
+ code?: string | undefined;
103
103
  /**
104
104
  * @internal
105
105
  */
@@ -112,7 +112,7 @@ export declare class InternalServiceErrorException extends __BaseException {
112
112
  export declare class ResourceNotFoundException extends __BaseException {
113
113
  readonly name: "ResourceNotFoundException";
114
114
  readonly $fault: "client";
115
- code?: string;
115
+ code?: string | undefined;
116
116
  /**
117
117
  * @internal
118
118
  */
@@ -125,7 +125,7 @@ export declare class ResourceNotFoundException extends __BaseException {
125
125
  export declare class ServiceLimitExceededException extends __BaseException {
126
126
  readonly name: "ServiceLimitExceededException";
127
127
  readonly $fault: "client";
128
- code?: string;
128
+ code?: string | undefined;
129
129
  /**
130
130
  * @internal
131
131
  */
@@ -139,7 +139,7 @@ export declare class ServiceLimitExceededException extends __BaseException {
139
139
  export declare class TooManyRequestsException extends __BaseException {
140
140
  readonly name: "TooManyRequestsException";
141
141
  readonly $fault: "client";
142
- code?: string;
142
+ code?: string | undefined;
143
143
  /**
144
144
  * @internal
145
145
  */
@@ -152,7 +152,7 @@ export declare class TooManyRequestsException extends __BaseException {
152
152
  export declare class ValidationException extends __BaseException {
153
153
  readonly name: "ValidationException";
154
154
  readonly $fault: "client";
155
- code?: string;
155
+ code?: string | undefined;
156
156
  /**
157
157
  * @internal
158
158
  */
@@ -166,7 +166,7 @@ export declare class ValidationException extends __BaseException {
166
166
  export declare class BadRequestException extends __BaseException {
167
167
  readonly name: "BadRequestException";
168
168
  readonly $fault: "client";
169
- code?: string;
169
+ code?: string | undefined;
170
170
  /**
171
171
  * @internal
172
172
  */
@@ -238,13 +238,13 @@ export interface SigningConfigurationOverrides {
238
238
  * job.</p>
239
239
  * @public
240
240
  */
241
- encryptionAlgorithm?: EncryptionAlgorithm;
241
+ encryptionAlgorithm?: EncryptionAlgorithm | undefined;
242
242
  /**
243
243
  * <p>A specified override of the default hash algorithm that is used in a code-signing
244
244
  * job.</p>
245
245
  * @public
246
246
  */
247
- hashAlgorithm?: HashAlgorithm;
247
+ hashAlgorithm?: HashAlgorithm | undefined;
248
248
  }
249
249
  /**
250
250
  * @public
@@ -269,7 +269,7 @@ export interface SigningPlatformOverrides {
269
269
  * signing job.</p>
270
270
  * @public
271
271
  */
272
- signingConfiguration?: SigningConfigurationOverrides;
272
+ signingConfiguration?: SigningConfigurationOverrides | undefined;
273
273
  /**
274
274
  * <p>A signed image is a JSON object. When overriding the default signing platform
275
275
  * configuration, a customer can select either of two signing formats,
@@ -279,7 +279,7 @@ export interface SigningPlatformOverrides {
279
279
  * payload is not be embedded in the signing image.</p>
280
280
  * @public
281
281
  */
282
- signingImageFormat?: ImageFormat;
282
+ signingImageFormat?: ImageFormat | undefined;
283
283
  }
284
284
  /**
285
285
  * <p>Revocation information for a signing job.</p>
@@ -290,17 +290,17 @@ export interface SigningJobRevocationRecord {
290
290
  * <p>A caller-supplied reason for revocation.</p>
291
291
  * @public
292
292
  */
293
- reason?: string;
293
+ reason?: string | undefined;
294
294
  /**
295
295
  * <p>The time of revocation.</p>
296
296
  * @public
297
297
  */
298
- revokedAt?: Date;
298
+ revokedAt?: Date | undefined;
299
299
  /**
300
300
  * <p>The identity of the revoker.</p>
301
301
  * @public
302
302
  */
303
- revokedBy?: string;
303
+ revokedBy?: string | undefined;
304
304
  }
305
305
  /**
306
306
  * <p>The Amazon S3 bucket name and key where Signer saved your signed code image.</p>
@@ -311,12 +311,12 @@ export interface S3SignedObject {
311
311
  * <p>Name of the S3 bucket.</p>
312
312
  * @public
313
313
  */
314
- bucketName?: string;
314
+ bucketName?: string | undefined;
315
315
  /**
316
316
  * <p>Key name that uniquely identifies a signed code image in your bucket.</p>
317
317
  * @public
318
318
  */
319
- key?: string;
319
+ key?: string | undefined;
320
320
  }
321
321
  /**
322
322
  * <p>Points to an <code>S3SignedObject</code> object that contains information about your
@@ -328,7 +328,7 @@ export interface SignedObject {
328
328
  * <p>The <code>S3SignedObject</code>.</p>
329
329
  * @public
330
330
  */
331
- s3?: S3SignedObject;
331
+ s3?: S3SignedObject | undefined;
332
332
  }
333
333
  /**
334
334
  * <p>The ACM certificate that is used to sign your code.</p>
@@ -373,7 +373,7 @@ export interface Source {
373
373
  * <p>The <code>S3Source</code> object.</p>
374
374
  * @public
375
375
  */
376
- s3?: S3Source;
376
+ s3?: S3Source | undefined;
377
377
  }
378
378
  /**
379
379
  * @public
@@ -396,100 +396,100 @@ export interface DescribeSigningJobResponse {
396
396
  * <p>The ID of the signing job on output.</p>
397
397
  * @public
398
398
  */
399
- jobId?: string;
399
+ jobId?: string | undefined;
400
400
  /**
401
401
  * <p>The object that contains the name of your S3 bucket or your raw code.</p>
402
402
  * @public
403
403
  */
404
- source?: Source;
404
+ source?: Source | undefined;
405
405
  /**
406
406
  * <p>The Amazon Resource Name (ARN) of your code signing certificate.</p>
407
407
  * @public
408
408
  */
409
- signingMaterial?: SigningMaterial;
409
+ signingMaterial?: SigningMaterial | undefined;
410
410
  /**
411
411
  * <p>The microcontroller platform to which your signed code image will be
412
412
  * distributed.</p>
413
413
  * @public
414
414
  */
415
- platformId?: string;
415
+ platformId?: string | undefined;
416
416
  /**
417
417
  * <p>A human-readable name for the signing platform associated with the signing job.</p>
418
418
  * @public
419
419
  */
420
- platformDisplayName?: string;
420
+ platformDisplayName?: string | undefined;
421
421
  /**
422
422
  * <p>The name of the profile that initiated the signing operation.</p>
423
423
  * @public
424
424
  */
425
- profileName?: string;
425
+ profileName?: string | undefined;
426
426
  /**
427
427
  * <p>The version of the signing profile used to initiate the signing job.</p>
428
428
  * @public
429
429
  */
430
- profileVersion?: string;
430
+ profileVersion?: string | undefined;
431
431
  /**
432
432
  * <p>A list of any overrides that were applied to the signing operation.</p>
433
433
  * @public
434
434
  */
435
- overrides?: SigningPlatformOverrides;
435
+ overrides?: SigningPlatformOverrides | undefined;
436
436
  /**
437
437
  * <p>Map of user-assigned key-value pairs used during signing. These values contain any
438
438
  * information that you specified for use in your signing job. </p>
439
439
  * @public
440
440
  */
441
- signingParameters?: Record<string, string>;
441
+ signingParameters?: Record<string, string> | undefined;
442
442
  /**
443
443
  * <p>Date and time that the signing job was created.</p>
444
444
  * @public
445
445
  */
446
- createdAt?: Date;
446
+ createdAt?: Date | undefined;
447
447
  /**
448
448
  * <p>Date and time that the signing job was completed.</p>
449
449
  * @public
450
450
  */
451
- completedAt?: Date;
451
+ completedAt?: Date | undefined;
452
452
  /**
453
453
  * <p>Thr expiration timestamp for the signature generated by the signing job.</p>
454
454
  * @public
455
455
  */
456
- signatureExpiresAt?: Date;
456
+ signatureExpiresAt?: Date | undefined;
457
457
  /**
458
458
  * <p>The IAM principal that requested the signing job.</p>
459
459
  * @public
460
460
  */
461
- requestedBy?: string;
461
+ requestedBy?: string | undefined;
462
462
  /**
463
463
  * <p>Status of the signing job.</p>
464
464
  * @public
465
465
  */
466
- status?: SigningStatus;
466
+ status?: SigningStatus | undefined;
467
467
  /**
468
468
  * <p>String value that contains the status reason.</p>
469
469
  * @public
470
470
  */
471
- statusReason?: string;
471
+ statusReason?: string | undefined;
472
472
  /**
473
473
  * <p>A revocation record if the signature generated by the signing job has been revoked.
474
474
  * Contains a timestamp and the ID of the IAM entity that revoked the signature.</p>
475
475
  * @public
476
476
  */
477
- revocationRecord?: SigningJobRevocationRecord;
477
+ revocationRecord?: SigningJobRevocationRecord | undefined;
478
478
  /**
479
479
  * <p>Name of the S3 bucket where the signed code image is saved by AWS Signer.</p>
480
480
  * @public
481
481
  */
482
- signedObject?: SignedObject;
482
+ signedObject?: SignedObject | undefined;
483
483
  /**
484
484
  * <p>The AWS account ID of the job owner.</p>
485
485
  * @public
486
486
  */
487
- jobOwner?: string;
487
+ jobOwner?: string | undefined;
488
488
  /**
489
489
  * <p>The IAM entity that initiated the signing job.</p>
490
490
  * @public
491
491
  */
492
- jobInvoker?: string;
492
+ jobInvoker?: string | undefined;
493
493
  }
494
494
  /**
495
495
  * <p>The name and prefix of the Amazon S3 bucket where AWS Signer saves your signed objects.</p>
@@ -500,13 +500,13 @@ export interface S3Destination {
500
500
  * <p>Name of the S3 bucket.</p>
501
501
  * @public
502
502
  */
503
- bucketName?: string;
503
+ bucketName?: string | undefined;
504
504
  /**
505
505
  * <p>An S3 prefix that you can use to limit responses to those that begin with the specified
506
506
  * prefix.</p>
507
507
  * @public
508
508
  */
509
- prefix?: string;
509
+ prefix?: string | undefined;
510
510
  }
511
511
  /**
512
512
  * <p>Points to an <code>S3Destination</code> object that contains information about your S3
@@ -518,7 +518,7 @@ export interface Destination {
518
518
  * <p>The <code>S3Destination</code> object.</p>
519
519
  * @public
520
520
  */
521
- s3?: S3Destination;
521
+ s3?: S3Destination | undefined;
522
522
  }
523
523
  /**
524
524
  * <p>The encryption algorithm options that are available to a code-signing job.</p>
@@ -598,7 +598,7 @@ export interface GetRevocationStatusResponse {
598
598
  * ARN, and certificate hashes) supplied as input to the API.</p>
599
599
  * @public
600
600
  */
601
- revokedEntities?: string[];
601
+ revokedEntities?: string[] | undefined;
602
602
  }
603
603
  /**
604
604
  * @public
@@ -666,49 +666,49 @@ export interface GetSigningPlatformResponse {
666
666
  * <p>The ID of the target signing platform.</p>
667
667
  * @public
668
668
  */
669
- platformId?: string;
669
+ platformId?: string | undefined;
670
670
  /**
671
671
  * <p>The display name of the target signing platform.</p>
672
672
  * @public
673
673
  */
674
- displayName?: string;
674
+ displayName?: string | undefined;
675
675
  /**
676
676
  * <p>A list of partner entities that use the target signing platform.</p>
677
677
  * @public
678
678
  */
679
- partner?: string;
679
+ partner?: string | undefined;
680
680
  /**
681
681
  * <p>The validation template that is used by the target signing platform.</p>
682
682
  * @public
683
683
  */
684
- target?: string;
684
+ target?: string | undefined;
685
685
  /**
686
686
  * <p>The category type of the target signing platform.</p>
687
687
  * @public
688
688
  */
689
- category?: Category;
689
+ category?: Category | undefined;
690
690
  /**
691
691
  * <p>A list of configurations applied to the target platform at signing.</p>
692
692
  * @public
693
693
  */
694
- signingConfiguration?: SigningConfiguration;
694
+ signingConfiguration?: SigningConfiguration | undefined;
695
695
  /**
696
696
  * <p>The format of the target platform's signing image.</p>
697
697
  * @public
698
698
  */
699
- signingImageFormat?: SigningImageFormat;
699
+ signingImageFormat?: SigningImageFormat | undefined;
700
700
  /**
701
701
  * <p>The maximum size (in MB) of the payload that can be signed by the target
702
702
  * platform.</p>
703
703
  * @public
704
704
  */
705
- maxSizeInMB?: number;
705
+ maxSizeInMB?: number | undefined;
706
706
  /**
707
707
  * <p>A flag indicating whether signatures generated for the signing platform can be
708
708
  * revoked.</p>
709
709
  * @public
710
710
  */
711
- revocationSupported?: boolean;
711
+ revocationSupported?: boolean | undefined;
712
712
  }
713
713
  /**
714
714
  * @public
@@ -723,7 +723,7 @@ export interface GetSigningProfileRequest {
723
723
  * <p>The AWS account ID of the profile owner.</p>
724
724
  * @public
725
725
  */
726
- profileOwner?: string;
726
+ profileOwner?: string | undefined;
727
727
  }
728
728
  /**
729
729
  * <p>Revocation information for a signing profile.</p>
@@ -734,17 +734,17 @@ export interface SigningProfileRevocationRecord {
734
734
  * <p>The time when revocation becomes effective.</p>
735
735
  * @public
736
736
  */
737
- revocationEffectiveFrom?: Date;
737
+ revocationEffectiveFrom?: Date | undefined;
738
738
  /**
739
739
  * <p>The time when the signing profile was revoked.</p>
740
740
  * @public
741
741
  */
742
- revokedAt?: Date;
742
+ revokedAt?: Date | undefined;
743
743
  /**
744
744
  * <p>The identity of the revoker.</p>
745
745
  * @public
746
746
  */
747
- revokedBy?: string;
747
+ revokedBy?: string | undefined;
748
748
  }
749
749
  /**
750
750
  * @public
@@ -768,12 +768,12 @@ export interface SignatureValidityPeriod {
768
768
  * <p>The numerical value of the time unit for signature validity.</p>
769
769
  * @public
770
770
  */
771
- value?: number;
771
+ value?: number | undefined;
772
772
  /**
773
773
  * <p>The time unit for signature validity.</p>
774
774
  * @public
775
775
  */
776
- type?: ValidityType;
776
+ type?: ValidityType | undefined;
777
777
  }
778
778
  /**
779
779
  * @public
@@ -796,75 +796,75 @@ export interface GetSigningProfileResponse {
796
796
  * <p>The name of the target signing profile.</p>
797
797
  * @public
798
798
  */
799
- profileName?: string;
799
+ profileName?: string | undefined;
800
800
  /**
801
801
  * <p>The current version of the signing profile.</p>
802
802
  * @public
803
803
  */
804
- profileVersion?: string;
804
+ profileVersion?: string | undefined;
805
805
  /**
806
806
  * <p>The signing profile ARN, including the profile version.</p>
807
807
  * @public
808
808
  */
809
- profileVersionArn?: string;
809
+ profileVersionArn?: string | undefined;
810
810
  /**
811
811
  * <p>Revocation information for a signing profile.</p>
812
812
  * @public
813
813
  */
814
- revocationRecord?: SigningProfileRevocationRecord;
814
+ revocationRecord?: SigningProfileRevocationRecord | undefined;
815
815
  /**
816
816
  * <p>The ARN of the certificate that the target profile uses for signing operations.</p>
817
817
  * @public
818
818
  */
819
- signingMaterial?: SigningMaterial;
819
+ signingMaterial?: SigningMaterial | undefined;
820
820
  /**
821
821
  * <p>The ID of the platform that is used by the target signing profile.</p>
822
822
  * @public
823
823
  */
824
- platformId?: string;
824
+ platformId?: string | undefined;
825
825
  /**
826
826
  * <p>A human-readable name for the signing platform associated with the signing
827
827
  * profile.</p>
828
828
  * @public
829
829
  */
830
- platformDisplayName?: string;
830
+ platformDisplayName?: string | undefined;
831
831
  /**
832
832
  * <p>The validity period for a signing job.</p>
833
833
  * @public
834
834
  */
835
- signatureValidityPeriod?: SignatureValidityPeriod;
835
+ signatureValidityPeriod?: SignatureValidityPeriod | undefined;
836
836
  /**
837
837
  * <p>A list of overrides applied by the target signing profile for signing
838
838
  * operations.</p>
839
839
  * @public
840
840
  */
841
- overrides?: SigningPlatformOverrides;
841
+ overrides?: SigningPlatformOverrides | undefined;
842
842
  /**
843
843
  * <p>A map of key-value pairs for signing operations that is attached to the target signing
844
844
  * profile.</p>
845
845
  * @public
846
846
  */
847
- signingParameters?: Record<string, string>;
847
+ signingParameters?: Record<string, string> | undefined;
848
848
  /**
849
849
  * <p>The status of the target signing profile.</p>
850
850
  * @public
851
851
  */
852
- status?: SigningProfileStatus;
852
+ status?: SigningProfileStatus | undefined;
853
853
  /**
854
854
  * <p>Reason for the status of the target signing profile.</p>
855
855
  * @public
856
856
  */
857
- statusReason?: string;
857
+ statusReason?: string | undefined;
858
858
  /**
859
859
  * <p>The Amazon Resource Name (ARN) for the signing profile.</p>
860
860
  * @public
861
861
  */
862
- arn?: string;
862
+ arn?: string | undefined;
863
863
  /**
864
864
  * <p>A list of tags associated with the signing profile.</p>
865
865
  * @public
866
866
  */
867
- tags?: Record<string, string>;
867
+ tags?: Record<string, string> | undefined;
868
868
  }
869
869
  /**
870
870
  * @public
@@ -879,7 +879,7 @@ export interface ListProfilePermissionsRequest {
879
879
  * <p>String for specifying the next set of paginated results.</p>
880
880
  * @public
881
881
  */
882
- nextToken?: string;
882
+ nextToken?: string | undefined;
883
883
  }
884
884
  /**
885
885
  * <p>A cross-account permission for a signing profile.</p>
@@ -890,22 +890,22 @@ export interface Permission {
890
890
  * <p>An AWS Signer action permitted as part of cross-account permissions.</p>
891
891
  * @public
892
892
  */
893
- action?: string;
893
+ action?: string | undefined;
894
894
  /**
895
895
  * <p>The AWS principal that has been granted a cross-account permission.</p>
896
896
  * @public
897
897
  */
898
- principal?: string;
898
+ principal?: string | undefined;
899
899
  /**
900
900
  * <p>A unique identifier for a cross-account permission statement.</p>
901
901
  * @public
902
902
  */
903
- statementId?: string;
903
+ statementId?: string | undefined;
904
904
  /**
905
905
  * <p>The signing profile version that a permission applies to.</p>
906
906
  * @public
907
907
  */
908
- profileVersion?: string;
908
+ profileVersion?: string | undefined;
909
909
  }
910
910
  /**
911
911
  * @public
@@ -915,22 +915,22 @@ export interface ListProfilePermissionsResponse {
915
915
  * <p>The identifier for the current revision of profile permissions.</p>
916
916
  * @public
917
917
  */
918
- revisionId?: string;
918
+ revisionId?: string | undefined;
919
919
  /**
920
920
  * <p>Total size of the policy associated with the Signing Profile in bytes.</p>
921
921
  * @public
922
922
  */
923
- policySizeBytes?: number;
923
+ policySizeBytes?: number | undefined;
924
924
  /**
925
925
  * <p>List of permissions associated with the Signing Profile.</p>
926
926
  * @public
927
927
  */
928
- permissions?: Permission[];
928
+ permissions?: Permission[] | undefined;
929
929
  /**
930
930
  * <p>String for specifying the next set of paginated results.</p>
931
931
  * @public
932
932
  */
933
- nextToken?: string;
933
+ nextToken?: string | undefined;
934
934
  }
935
935
  /**
936
936
  * @public
@@ -940,18 +940,18 @@ export interface ListSigningJobsRequest {
940
940
  * <p>A status value with which to filter your results.</p>
941
941
  * @public
942
942
  */
943
- status?: SigningStatus;
943
+ status?: SigningStatus | undefined;
944
944
  /**
945
945
  * <p>The ID of microcontroller platform that you specified for the distribution of your
946
946
  * code image.</p>
947
947
  * @public
948
948
  */
949
- platformId?: string;
949
+ platformId?: string | undefined;
950
950
  /**
951
951
  * <p>The IAM principal that requested the signing job.</p>
952
952
  * @public
953
953
  */
954
- requestedBy?: string;
954
+ requestedBy?: string | undefined;
955
955
  /**
956
956
  * <p>Specifies the maximum number of items to return in the response. Use this parameter
957
957
  * when paginating results. If additional items exist beyond the number you specify, the
@@ -960,37 +960,37 @@ export interface ListSigningJobsRequest {
960
960
  * </p>
961
961
  * @public
962
962
  */
963
- maxResults?: number;
963
+ maxResults?: number | undefined;
964
964
  /**
965
965
  * <p>String for specifying the next set of paginated results to return. After you receive a
966
966
  * response with truncated results, use this parameter in a subsequent request. Set it to
967
967
  * the value of <code>nextToken</code> from the response that you just received.</p>
968
968
  * @public
969
969
  */
970
- nextToken?: string;
970
+ nextToken?: string | undefined;
971
971
  /**
972
972
  * <p>Filters results to return only signing jobs with revoked signatures.</p>
973
973
  * @public
974
974
  */
975
- isRevoked?: boolean;
975
+ isRevoked?: boolean | undefined;
976
976
  /**
977
977
  * <p>Filters results to return only signing jobs with signatures expiring before a
978
978
  * specified timestamp.</p>
979
979
  * @public
980
980
  */
981
- signatureExpiresBefore?: Date;
981
+ signatureExpiresBefore?: Date | undefined;
982
982
  /**
983
983
  * <p>Filters results to return only signing jobs with signatures expiring after a specified
984
984
  * timestamp.</p>
985
985
  * @public
986
986
  */
987
- signatureExpiresAfter?: Date;
987
+ signatureExpiresAfter?: Date | undefined;
988
988
  /**
989
989
  * <p>Filters results to return only signing jobs initiated by a specified IAM
990
990
  * entity.</p>
991
991
  * @public
992
992
  */
993
- jobInvoker?: string;
993
+ jobInvoker?: string | undefined;
994
994
  }
995
995
  /**
996
996
  * <p>Contains information about a signing job.</p>
@@ -1001,75 +1001,75 @@ export interface SigningJob {
1001
1001
  * <p>The ID of the signing job.</p>
1002
1002
  * @public
1003
1003
  */
1004
- jobId?: string;
1004
+ jobId?: string | undefined;
1005
1005
  /**
1006
1006
  * <p>A <code>Source</code> that contains information about a signing job's code image
1007
1007
  * source.</p>
1008
1008
  * @public
1009
1009
  */
1010
- source?: Source;
1010
+ source?: Source | undefined;
1011
1011
  /**
1012
1012
  * <p>A <code>SignedObject</code> structure that contains information about a signing job's
1013
1013
  * signed code image.</p>
1014
1014
  * @public
1015
1015
  */
1016
- signedObject?: SignedObject;
1016
+ signedObject?: SignedObject | undefined;
1017
1017
  /**
1018
1018
  * <p>A <code>SigningMaterial</code> object that contains the Amazon Resource Name (ARN) of
1019
1019
  * the certificate used for the signing job.</p>
1020
1020
  * @public
1021
1021
  */
1022
- signingMaterial?: SigningMaterial;
1022
+ signingMaterial?: SigningMaterial | undefined;
1023
1023
  /**
1024
1024
  * <p>The date and time that the signing job was created.</p>
1025
1025
  * @public
1026
1026
  */
1027
- createdAt?: Date;
1027
+ createdAt?: Date | undefined;
1028
1028
  /**
1029
1029
  * <p>The status of the signing job.</p>
1030
1030
  * @public
1031
1031
  */
1032
- status?: SigningStatus;
1032
+ status?: SigningStatus | undefined;
1033
1033
  /**
1034
1034
  * <p>Indicates whether the signing job is revoked.</p>
1035
1035
  * @public
1036
1036
  */
1037
- isRevoked?: boolean;
1037
+ isRevoked?: boolean | undefined;
1038
1038
  /**
1039
1039
  * <p>The name of the signing profile that created a signing job.</p>
1040
1040
  * @public
1041
1041
  */
1042
- profileName?: string;
1042
+ profileName?: string | undefined;
1043
1043
  /**
1044
1044
  * <p>The version of the signing profile that created a signing job.</p>
1045
1045
  * @public
1046
1046
  */
1047
- profileVersion?: string;
1047
+ profileVersion?: string | undefined;
1048
1048
  /**
1049
1049
  * <p>The unique identifier for a signing platform.</p>
1050
1050
  * @public
1051
1051
  */
1052
- platformId?: string;
1052
+ platformId?: string | undefined;
1053
1053
  /**
1054
1054
  * <p>The name of a signing platform.</p>
1055
1055
  * @public
1056
1056
  */
1057
- platformDisplayName?: string;
1057
+ platformDisplayName?: string | undefined;
1058
1058
  /**
1059
1059
  * <p>The time when the signature of a signing job expires.</p>
1060
1060
  * @public
1061
1061
  */
1062
- signatureExpiresAt?: Date;
1062
+ signatureExpiresAt?: Date | undefined;
1063
1063
  /**
1064
1064
  * <p>The AWS account ID of the job owner.</p>
1065
1065
  * @public
1066
1066
  */
1067
- jobOwner?: string;
1067
+ jobOwner?: string | undefined;
1068
1068
  /**
1069
1069
  * <p>The AWS account ID of the job invoker.</p>
1070
1070
  * @public
1071
1071
  */
1072
- jobInvoker?: string;
1072
+ jobInvoker?: string | undefined;
1073
1073
  }
1074
1074
  /**
1075
1075
  * @public
@@ -1079,12 +1079,12 @@ export interface ListSigningJobsResponse {
1079
1079
  * <p>A list of your signing jobs.</p>
1080
1080
  * @public
1081
1081
  */
1082
- jobs?: SigningJob[];
1082
+ jobs?: SigningJob[] | undefined;
1083
1083
  /**
1084
1084
  * <p>String for specifying the next set of paginated results.</p>
1085
1085
  * @public
1086
1086
  */
1087
- nextToken?: string;
1087
+ nextToken?: string | undefined;
1088
1088
  }
1089
1089
  /**
1090
1090
  * @public
@@ -1094,29 +1094,29 @@ export interface ListSigningPlatformsRequest {
1094
1094
  * <p>The category type of a signing platform.</p>
1095
1095
  * @public
1096
1096
  */
1097
- category?: string;
1097
+ category?: string | undefined;
1098
1098
  /**
1099
1099
  * <p>Any partner entities connected to a signing platform.</p>
1100
1100
  * @public
1101
1101
  */
1102
- partner?: string;
1102
+ partner?: string | undefined;
1103
1103
  /**
1104
1104
  * <p>The validation template that is used by the target signing platform.</p>
1105
1105
  * @public
1106
1106
  */
1107
- target?: string;
1107
+ target?: string | undefined;
1108
1108
  /**
1109
1109
  * <p>The maximum number of results to be returned by this operation.</p>
1110
1110
  * @public
1111
1111
  */
1112
- maxResults?: number;
1112
+ maxResults?: number | undefined;
1113
1113
  /**
1114
1114
  * <p>Value for specifying the next set of paginated results to return. After you receive a
1115
1115
  * response with truncated results, use this parameter in a subsequent request. Set it to
1116
1116
  * the value of <code>nextToken</code> from the response that you just received.</p>
1117
1117
  * @public
1118
1118
  */
1119
- nextToken?: string;
1119
+ nextToken?: string | undefined;
1120
1120
  }
1121
1121
  /**
1122
1122
  * <p>Contains information about the signing configurations and parameters that are used to
@@ -1128,48 +1128,48 @@ export interface SigningPlatform {
1128
1128
  * <p>The ID of a signing platform.</p>
1129
1129
  * @public
1130
1130
  */
1131
- platformId?: string;
1131
+ platformId?: string | undefined;
1132
1132
  /**
1133
1133
  * <p>The display name of a signing platform.</p>
1134
1134
  * @public
1135
1135
  */
1136
- displayName?: string;
1136
+ displayName?: string | undefined;
1137
1137
  /**
1138
1138
  * <p>Any partner entities linked to a signing platform.</p>
1139
1139
  * @public
1140
1140
  */
1141
- partner?: string;
1141
+ partner?: string | undefined;
1142
1142
  /**
1143
1143
  * <p>The types of targets that can be signed by a signing platform.</p>
1144
1144
  * @public
1145
1145
  */
1146
- target?: string;
1146
+ target?: string | undefined;
1147
1147
  /**
1148
1148
  * <p>The category of a signing platform.</p>
1149
1149
  * @public
1150
1150
  */
1151
- category?: Category;
1151
+ category?: Category | undefined;
1152
1152
  /**
1153
1153
  * <p>The configuration of a signing platform. This includes the designated hash algorithm and
1154
1154
  * encryption algorithm of a signing platform.</p>
1155
1155
  * @public
1156
1156
  */
1157
- signingConfiguration?: SigningConfiguration;
1157
+ signingConfiguration?: SigningConfiguration | undefined;
1158
1158
  /**
1159
1159
  * <p>The image format of a AWS Signer platform or profile.</p>
1160
1160
  * @public
1161
1161
  */
1162
- signingImageFormat?: SigningImageFormat;
1162
+ signingImageFormat?: SigningImageFormat | undefined;
1163
1163
  /**
1164
1164
  * <p>The maximum size (in MB) of code that can be signed by a signing platform.</p>
1165
1165
  * @public
1166
1166
  */
1167
- maxSizeInMB?: number;
1167
+ maxSizeInMB?: number | undefined;
1168
1168
  /**
1169
1169
  * <p>Indicates whether revocation is supported for the platform.</p>
1170
1170
  * @public
1171
1171
  */
1172
- revocationSupported?: boolean;
1172
+ revocationSupported?: boolean | undefined;
1173
1173
  }
1174
1174
  /**
1175
1175
  * @public
@@ -1179,12 +1179,12 @@ export interface ListSigningPlatformsResponse {
1179
1179
  * <p>A list of all platforms that match the request parameters.</p>
1180
1180
  * @public
1181
1181
  */
1182
- platforms?: SigningPlatform[];
1182
+ platforms?: SigningPlatform[] | undefined;
1183
1183
  /**
1184
1184
  * <p>Value for specifying the next set of paginated results to return.</p>
1185
1185
  * @public
1186
1186
  */
1187
- nextToken?: string;
1187
+ nextToken?: string | undefined;
1188
1188
  }
1189
1189
  /**
1190
1190
  * @public
@@ -1195,31 +1195,31 @@ export interface ListSigningProfilesRequest {
1195
1195
  * <code>CANCELED</code>.</p>
1196
1196
  * @public
1197
1197
  */
1198
- includeCanceled?: boolean;
1198
+ includeCanceled?: boolean | undefined;
1199
1199
  /**
1200
1200
  * <p>The maximum number of profiles to be returned.</p>
1201
1201
  * @public
1202
1202
  */
1203
- maxResults?: number;
1203
+ maxResults?: number | undefined;
1204
1204
  /**
1205
1205
  * <p>Value for specifying the next set of paginated results to return. After you receive a
1206
1206
  * response with truncated results, use this parameter in a subsequent request. Set it to
1207
1207
  * the value of <code>nextToken</code> from the response that you just received.</p>
1208
1208
  * @public
1209
1209
  */
1210
- nextToken?: string;
1210
+ nextToken?: string | undefined;
1211
1211
  /**
1212
1212
  * <p>Filters results to return only signing jobs initiated for a specified signing
1213
1213
  * platform.</p>
1214
1214
  * @public
1215
1215
  */
1216
- platformId?: string;
1216
+ platformId?: string | undefined;
1217
1217
  /**
1218
1218
  * <p>Filters results to return only signing jobs with statuses in the specified
1219
1219
  * list.</p>
1220
1220
  * @public
1221
1221
  */
1222
- statuses?: SigningProfileStatus[];
1222
+ statuses?: SigningProfileStatus[] | undefined;
1223
1223
  }
1224
1224
  /**
1225
1225
  * <p>Contains information about the ACM certificates and signing configuration parameters that
@@ -1231,57 +1231,57 @@ export interface SigningProfile {
1231
1231
  * <p>The name of the signing profile.</p>
1232
1232
  * @public
1233
1233
  */
1234
- profileName?: string;
1234
+ profileName?: string | undefined;
1235
1235
  /**
1236
1236
  * <p>The version of a signing profile.</p>
1237
1237
  * @public
1238
1238
  */
1239
- profileVersion?: string;
1239
+ profileVersion?: string | undefined;
1240
1240
  /**
1241
1241
  * <p>The ARN of a signing profile, including the profile version.</p>
1242
1242
  * @public
1243
1243
  */
1244
- profileVersionArn?: string;
1244
+ profileVersionArn?: string | undefined;
1245
1245
  /**
1246
1246
  * <p>The ACM certificate that is available for use by a signing profile.</p>
1247
1247
  * @public
1248
1248
  */
1249
- signingMaterial?: SigningMaterial;
1249
+ signingMaterial?: SigningMaterial | undefined;
1250
1250
  /**
1251
1251
  * <p>The validity period for a signing job created using this signing profile.</p>
1252
1252
  * @public
1253
1253
  */
1254
- signatureValidityPeriod?: SignatureValidityPeriod;
1254
+ signatureValidityPeriod?: SignatureValidityPeriod | undefined;
1255
1255
  /**
1256
1256
  * <p>The ID of a platform that is available for use by a signing profile.</p>
1257
1257
  * @public
1258
1258
  */
1259
- platformId?: string;
1259
+ platformId?: string | undefined;
1260
1260
  /**
1261
1261
  * <p>The name of the signing platform.</p>
1262
1262
  * @public
1263
1263
  */
1264
- platformDisplayName?: string;
1264
+ platformDisplayName?: string | undefined;
1265
1265
  /**
1266
1266
  * <p>The parameters that are available for use by a Signer user.</p>
1267
1267
  * @public
1268
1268
  */
1269
- signingParameters?: Record<string, string>;
1269
+ signingParameters?: Record<string, string> | undefined;
1270
1270
  /**
1271
1271
  * <p>The status of a signing profile.</p>
1272
1272
  * @public
1273
1273
  */
1274
- status?: SigningProfileStatus;
1274
+ status?: SigningProfileStatus | undefined;
1275
1275
  /**
1276
1276
  * <p>The Amazon Resource Name (ARN) for the signing profile.</p>
1277
1277
  * @public
1278
1278
  */
1279
- arn?: string;
1279
+ arn?: string | undefined;
1280
1280
  /**
1281
1281
  * <p>A list of tags associated with the signing profile.</p>
1282
1282
  * @public
1283
1283
  */
1284
- tags?: Record<string, string>;
1284
+ tags?: Record<string, string> | undefined;
1285
1285
  }
1286
1286
  /**
1287
1287
  * @public
@@ -1293,12 +1293,12 @@ export interface ListSigningProfilesResponse {
1293
1293
  * to <code>true</code>.</p>
1294
1294
  * @public
1295
1295
  */
1296
- profiles?: SigningProfile[];
1296
+ profiles?: SigningProfile[] | undefined;
1297
1297
  /**
1298
1298
  * <p>Value for specifying the next set of paginated results to return.</p>
1299
1299
  * @public
1300
1300
  */
1301
- nextToken?: string;
1301
+ nextToken?: string | undefined;
1302
1302
  }
1303
1303
  /**
1304
1304
  * @public
@@ -1318,7 +1318,7 @@ export interface ListTagsForResourceResponse {
1318
1318
  * <p>A list of tags associated with the signing profile.</p>
1319
1319
  * @public
1320
1320
  */
1321
- tags?: Record<string, string>;
1321
+ tags?: Record<string, string> | undefined;
1322
1322
  }
1323
1323
  /**
1324
1324
  * <p>The signing profile was not found.</p>
@@ -1327,7 +1327,7 @@ export interface ListTagsForResourceResponse {
1327
1327
  export declare class NotFoundException extends __BaseException {
1328
1328
  readonly name: "NotFoundException";
1329
1329
  readonly $fault: "client";
1330
- code?: string;
1330
+ code?: string | undefined;
1331
1331
  /**
1332
1332
  * @internal
1333
1333
  */
@@ -1347,13 +1347,13 @@ export interface PutSigningProfileRequest {
1347
1347
  * profile.</p>
1348
1348
  * @public
1349
1349
  */
1350
- signingMaterial?: SigningMaterial;
1350
+ signingMaterial?: SigningMaterial | undefined;
1351
1351
  /**
1352
1352
  * <p>The default validity period override for any signature generated using this signing
1353
1353
  * profile. If unspecified, the default is 135 months.</p>
1354
1354
  * @public
1355
1355
  */
1356
- signatureValidityPeriod?: SignatureValidityPeriod;
1356
+ signatureValidityPeriod?: SignatureValidityPeriod | undefined;
1357
1357
  /**
1358
1358
  * <p>The ID of the signing platform to be created.</p>
1359
1359
  * @public
@@ -1365,18 +1365,18 @@ export interface PutSigningProfileRequest {
1365
1365
  * <code>hash-algorithm</code> or <code>signing-algorithm</code>).</p>
1366
1366
  * @public
1367
1367
  */
1368
- overrides?: SigningPlatformOverrides;
1368
+ overrides?: SigningPlatformOverrides | undefined;
1369
1369
  /**
1370
1370
  * <p>Map of key-value pairs for signing. These can include any information that you want to
1371
1371
  * use during signing.</p>
1372
1372
  * @public
1373
1373
  */
1374
- signingParameters?: Record<string, string>;
1374
+ signingParameters?: Record<string, string> | undefined;
1375
1375
  /**
1376
1376
  * <p>Tags to be associated with the signing profile that is being created.</p>
1377
1377
  * @public
1378
1378
  */
1379
- tags?: Record<string, string>;
1379
+ tags?: Record<string, string> | undefined;
1380
1380
  }
1381
1381
  /**
1382
1382
  * @public
@@ -1386,17 +1386,17 @@ export interface PutSigningProfileResponse {
1386
1386
  * <p>The Amazon Resource Name (ARN) of the signing profile created.</p>
1387
1387
  * @public
1388
1388
  */
1389
- arn?: string;
1389
+ arn?: string | undefined;
1390
1390
  /**
1391
1391
  * <p>The version of the signing profile being created.</p>
1392
1392
  * @public
1393
1393
  */
1394
- profileVersion?: string;
1394
+ profileVersion?: string | undefined;
1395
1395
  /**
1396
1396
  * <p>The signing profile ARN, including the profile version.</p>
1397
1397
  * @public
1398
1398
  */
1399
- profileVersionArn?: string;
1399
+ profileVersionArn?: string | undefined;
1400
1400
  }
1401
1401
  /**
1402
1402
  * @public
@@ -1426,7 +1426,7 @@ export interface RemoveProfilePermissionResponse {
1426
1426
  * <p>An identifier for the current revision of the profile permissions.</p>
1427
1427
  * @public
1428
1428
  */
1429
- revisionId?: string;
1429
+ revisionId?: string | undefined;
1430
1430
  }
1431
1431
  /**
1432
1432
  * @public
@@ -1441,7 +1441,7 @@ export interface RevokeSignatureRequest {
1441
1441
  * <p>AWS account ID of the job owner.</p>
1442
1442
  * @public
1443
1443
  */
1444
- jobOwner?: string;
1444
+ jobOwner?: string | undefined;
1445
1445
  /**
1446
1446
  * <p>The reason for revoking the signing job.</p>
1447
1447
  * @public
@@ -1488,7 +1488,7 @@ export interface SignPayloadRequest {
1488
1488
  * <p>The AWS account ID of the profile owner.</p>
1489
1489
  * @public
1490
1490
  */
1491
- profileOwner?: string;
1491
+ profileOwner?: string | undefined;
1492
1492
  /**
1493
1493
  * <p>Specifies the object digest (hash) to sign.</p>
1494
1494
  * @public
@@ -1509,22 +1509,22 @@ export interface SignPayloadResponse {
1509
1509
  * <p>Unique identifier of the signing job.</p>
1510
1510
  * @public
1511
1511
  */
1512
- jobId?: string;
1512
+ jobId?: string | undefined;
1513
1513
  /**
1514
1514
  * <p>The AWS account ID of the job owner.</p>
1515
1515
  * @public
1516
1516
  */
1517
- jobOwner?: string;
1517
+ jobOwner?: string | undefined;
1518
1518
  /**
1519
1519
  * <p>Information including the signing profile ARN and the signing job ID.</p>
1520
1520
  * @public
1521
1521
  */
1522
- metadata?: Record<string, string>;
1522
+ metadata?: Record<string, string> | undefined;
1523
1523
  /**
1524
1524
  * <p>A cryptographic signature.</p>
1525
1525
  * @public
1526
1526
  */
1527
- signature?: Uint8Array;
1527
+ signature?: Uint8Array | undefined;
1528
1528
  }
1529
1529
  /**
1530
1530
  * @public
@@ -1552,12 +1552,12 @@ export interface StartSigningJobRequest {
1552
1552
  * token return the same response as the first call.</p>
1553
1553
  * @public
1554
1554
  */
1555
- clientRequestToken?: string;
1555
+ clientRequestToken?: string | undefined;
1556
1556
  /**
1557
1557
  * <p>The AWS account ID of the signing profile owner.</p>
1558
1558
  * @public
1559
1559
  */
1560
- profileOwner?: string;
1560
+ profileOwner?: string | undefined;
1561
1561
  }
1562
1562
  /**
1563
1563
  * @public
@@ -1567,12 +1567,12 @@ export interface StartSigningJobResponse {
1567
1567
  * <p>The ID of your signing job.</p>
1568
1568
  * @public
1569
1569
  */
1570
- jobId?: string;
1570
+ jobId?: string | undefined;
1571
1571
  /**
1572
1572
  * <p>The AWS account ID of the signing job owner.</p>
1573
1573
  * @public
1574
1574
  */
1575
- jobOwner?: string;
1575
+ jobOwner?: string | undefined;
1576
1576
  }
1577
1577
  /**
1578
1578
  * <p>The request was denied due to request throttling.</p>
@@ -1584,7 +1584,7 @@ export interface StartSigningJobResponse {
1584
1584
  export declare class ThrottlingException extends __BaseException {
1585
1585
  readonly name: "ThrottlingException";
1586
1586
  readonly $fault: "client";
1587
- code?: string;
1587
+ code?: string | undefined;
1588
1588
  /**
1589
1589
  * @internal
1590
1590
  */