signer.d.ts
30.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {WaiterConfiguration} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class Signer extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: Signer.Types.ClientConfiguration)
config: Config & Signer.Types.ClientConfiguration;
/**
* Changes the state of an ACTIVE signing profile to CANCELED. A canceled profile is still viewable with the ListSigningProfiles operation, but it cannot perform new signing jobs, and is deleted two years after cancelation.
*/
cancelSigningProfile(params: Signer.Types.CancelSigningProfileRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Changes the state of an ACTIVE signing profile to CANCELED. A canceled profile is still viewable with the ListSigningProfiles operation, but it cannot perform new signing jobs, and is deleted two years after cancelation.
*/
cancelSigningProfile(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Returns information about a specific code signing job. You specify the job by using the jobId value that is returned by the StartSigningJob operation.
*/
describeSigningJob(params: Signer.Types.DescribeSigningJobRequest, callback?: (err: AWSError, data: Signer.Types.DescribeSigningJobResponse) => void): Request<Signer.Types.DescribeSigningJobResponse, AWSError>;
/**
* Returns information about a specific code signing job. You specify the job by using the jobId value that is returned by the StartSigningJob operation.
*/
describeSigningJob(callback?: (err: AWSError, data: Signer.Types.DescribeSigningJobResponse) => void): Request<Signer.Types.DescribeSigningJobResponse, AWSError>;
/**
* Returns information on a specific signing platform.
*/
getSigningPlatform(params: Signer.Types.GetSigningPlatformRequest, callback?: (err: AWSError, data: Signer.Types.GetSigningPlatformResponse) => void): Request<Signer.Types.GetSigningPlatformResponse, AWSError>;
/**
* Returns information on a specific signing platform.
*/
getSigningPlatform(callback?: (err: AWSError, data: Signer.Types.GetSigningPlatformResponse) => void): Request<Signer.Types.GetSigningPlatformResponse, AWSError>;
/**
* Returns information on a specific signing profile.
*/
getSigningProfile(params: Signer.Types.GetSigningProfileRequest, callback?: (err: AWSError, data: Signer.Types.GetSigningProfileResponse) => void): Request<Signer.Types.GetSigningProfileResponse, AWSError>;
/**
* Returns information on a specific signing profile.
*/
getSigningProfile(callback?: (err: AWSError, data: Signer.Types.GetSigningProfileResponse) => void): Request<Signer.Types.GetSigningProfileResponse, AWSError>;
/**
* Lists all your signing jobs. You can use the maxResults parameter to limit the number of signing jobs that are returned in the response. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.
*/
listSigningJobs(params: Signer.Types.ListSigningJobsRequest, callback?: (err: AWSError, data: Signer.Types.ListSigningJobsResponse) => void): Request<Signer.Types.ListSigningJobsResponse, AWSError>;
/**
* Lists all your signing jobs. You can use the maxResults parameter to limit the number of signing jobs that are returned in the response. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.
*/
listSigningJobs(callback?: (err: AWSError, data: Signer.Types.ListSigningJobsResponse) => void): Request<Signer.Types.ListSigningJobsResponse, AWSError>;
/**
* Lists all signing platforms available in code signing that match the request parameters. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.
*/
listSigningPlatforms(params: Signer.Types.ListSigningPlatformsRequest, callback?: (err: AWSError, data: Signer.Types.ListSigningPlatformsResponse) => void): Request<Signer.Types.ListSigningPlatformsResponse, AWSError>;
/**
* Lists all signing platforms available in code signing that match the request parameters. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.
*/
listSigningPlatforms(callback?: (err: AWSError, data: Signer.Types.ListSigningPlatformsResponse) => void): Request<Signer.Types.ListSigningPlatformsResponse, AWSError>;
/**
* Lists all available signing profiles in your AWS account. Returns only profiles with an ACTIVE status unless the includeCanceled request field is set to true. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.
*/
listSigningProfiles(params: Signer.Types.ListSigningProfilesRequest, callback?: (err: AWSError, data: Signer.Types.ListSigningProfilesResponse) => void): Request<Signer.Types.ListSigningProfilesResponse, AWSError>;
/**
* Lists all available signing profiles in your AWS account. Returns only profiles with an ACTIVE status unless the includeCanceled request field is set to true. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.
*/
listSigningProfiles(callback?: (err: AWSError, data: Signer.Types.ListSigningProfilesResponse) => void): Request<Signer.Types.ListSigningProfilesResponse, AWSError>;
/**
* Returns a list of the tags associated with a signing profile resource.
*/
listTagsForResource(params: Signer.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Signer.Types.ListTagsForResourceResponse) => void): Request<Signer.Types.ListTagsForResourceResponse, AWSError>;
/**
* Returns a list of the tags associated with a signing profile resource.
*/
listTagsForResource(callback?: (err: AWSError, data: Signer.Types.ListTagsForResourceResponse) => void): Request<Signer.Types.ListTagsForResourceResponse, AWSError>;
/**
* Creates a signing profile. A signing profile is a code signing template that can be used to carry out a pre-defined signing job. For more information, see http://docs.aws.amazon.com/signer/latest/developerguide/gs-profile.html
*/
putSigningProfile(params: Signer.Types.PutSigningProfileRequest, callback?: (err: AWSError, data: Signer.Types.PutSigningProfileResponse) => void): Request<Signer.Types.PutSigningProfileResponse, AWSError>;
/**
* Creates a signing profile. A signing profile is a code signing template that can be used to carry out a pre-defined signing job. For more information, see http://docs.aws.amazon.com/signer/latest/developerguide/gs-profile.html
*/
putSigningProfile(callback?: (err: AWSError, data: Signer.Types.PutSigningProfileResponse) => void): Request<Signer.Types.PutSigningProfileResponse, AWSError>;
/**
* Initiates a signing job to be performed on the code provided. Signing jobs are viewable by the ListSigningJobs operation for two years after they are performed. Note the following requirements: You must create an Amazon S3 source bucket. For more information, see Create a Bucket in the Amazon S3 Getting Started Guide. Your S3 source bucket must be version enabled. You must create an S3 destination bucket. Code signing uses your S3 destination bucket to write your signed code. You specify the name of the source and destination buckets when calling the StartSigningJob operation. You must also specify a request token that identifies your request to code signing. You can call the DescribeSigningJob and the ListSigningJobs actions after you call StartSigningJob. For a Java example that shows how to use this action, see http://docs.aws.amazon.com/acm/latest/userguide/
*/
startSigningJob(params: Signer.Types.StartSigningJobRequest, callback?: (err: AWSError, data: Signer.Types.StartSigningJobResponse) => void): Request<Signer.Types.StartSigningJobResponse, AWSError>;
/**
* Initiates a signing job to be performed on the code provided. Signing jobs are viewable by the ListSigningJobs operation for two years after they are performed. Note the following requirements: You must create an Amazon S3 source bucket. For more information, see Create a Bucket in the Amazon S3 Getting Started Guide. Your S3 source bucket must be version enabled. You must create an S3 destination bucket. Code signing uses your S3 destination bucket to write your signed code. You specify the name of the source and destination buckets when calling the StartSigningJob operation. You must also specify a request token that identifies your request to code signing. You can call the DescribeSigningJob and the ListSigningJobs actions after you call StartSigningJob. For a Java example that shows how to use this action, see http://docs.aws.amazon.com/acm/latest/userguide/
*/
startSigningJob(callback?: (err: AWSError, data: Signer.Types.StartSigningJobResponse) => void): Request<Signer.Types.StartSigningJobResponse, AWSError>;
/**
* Adds one or more tags to a signing profile. Tags are labels that you can use to identify and organize your AWS resources. Each tag consists of a key and an optional value. You specify the signing profile using its Amazon Resource Name (ARN). You specify the tag by using a key-value pair.
*/
tagResource(params: Signer.Types.TagResourceRequest, callback?: (err: AWSError, data: Signer.Types.TagResourceResponse) => void): Request<Signer.Types.TagResourceResponse, AWSError>;
/**
* Adds one or more tags to a signing profile. Tags are labels that you can use to identify and organize your AWS resources. Each tag consists of a key and an optional value. You specify the signing profile using its Amazon Resource Name (ARN). You specify the tag by using a key-value pair.
*/
tagResource(callback?: (err: AWSError, data: Signer.Types.TagResourceResponse) => void): Request<Signer.Types.TagResourceResponse, AWSError>;
/**
* Remove one or more tags from a signing profile. Specify a list of tag keys to remove the tags.
*/
untagResource(params: Signer.Types.UntagResourceRequest, callback?: (err: AWSError, data: Signer.Types.UntagResourceResponse) => void): Request<Signer.Types.UntagResourceResponse, AWSError>;
/**
* Remove one or more tags from a signing profile. Specify a list of tag keys to remove the tags.
*/
untagResource(callback?: (err: AWSError, data: Signer.Types.UntagResourceResponse) => void): Request<Signer.Types.UntagResourceResponse, AWSError>;
/**
* Waits for the successfulSigningJob state by periodically calling the underlying Signer.describeSigningJoboperation every 20 seconds (at most 25 times).
*/
waitFor(state: "successfulSigningJob", params: Signer.Types.DescribeSigningJobRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Signer.Types.DescribeSigningJobResponse) => void): Request<Signer.Types.DescribeSigningJobResponse, AWSError>;
/**
* Waits for the successfulSigningJob state by periodically calling the underlying Signer.describeSigningJoboperation every 20 seconds (at most 25 times).
*/
waitFor(state: "successfulSigningJob", callback?: (err: AWSError, data: Signer.Types.DescribeSigningJobResponse) => void): Request<Signer.Types.DescribeSigningJobResponse, AWSError>;
}
declare namespace Signer {
export type key = string;
export type BucketName = string;
export interface CancelSigningProfileRequest {
/**
* The name of the signing profile to be canceled.
*/
profileName: ProfileName;
}
export type Category = "AWSIoT"|string;
export type CertificateArn = string;
export type ClientRequestToken = string;
export type CompletedAt = Date;
export type CreatedAt = Date;
export interface DescribeSigningJobRequest {
/**
* The ID of the signing job on input.
*/
jobId: JobId;
}
export interface DescribeSigningJobResponse {
/**
* The ID of the signing job on output.
*/
jobId?: JobId;
/**
* The object that contains the name of your S3 bucket or your raw code.
*/
source?: Source;
/**
* Amazon Resource Name (ARN) of your code signing certificate.
*/
signingMaterial?: SigningMaterial;
/**
* The microcontroller platform to which your signed code image will be distributed.
*/
platformId?: PlatformId;
/**
* The name of the profile that initiated the signing operation.
*/
profileName?: ProfileName;
/**
* A list of any overrides that were applied to the signing operation.
*/
overrides?: SigningPlatformOverrides;
/**
* Map of user-assigned key-value pairs used during signing. These values contain any information that you specified for use in your signing job.
*/
signingParameters?: SigningParameters;
/**
* Date and time that the signing job was created.
*/
createdAt?: CreatedAt;
/**
* Date and time that the signing job was completed.
*/
completedAt?: CompletedAt;
/**
* The IAM principal that requested the signing job.
*/
requestedBy?: RequestedBy;
/**
* Status of the signing job.
*/
status?: SigningStatus;
/**
* String value that contains the status reason.
*/
statusReason?: StatusReason;
/**
* Name of the S3 bucket where the signed code image is saved by code signing.
*/
signedObject?: SignedObject;
}
export interface Destination {
/**
* The S3Destination object.
*/
s3?: S3Destination;
}
export type DisplayName = string;
export type EncryptionAlgorithm = "RSA"|"ECDSA"|string;
export interface EncryptionAlgorithmOptions {
/**
* The set of accepted encryption algorithms that are allowed in a code signing job.
*/
allowedValues: EncryptionAlgorithms;
/**
* The default encryption algorithm that is used by a code signing job.
*/
defaultValue: EncryptionAlgorithm;
}
export type EncryptionAlgorithms = EncryptionAlgorithm[];
export interface GetSigningPlatformRequest {
/**
* The ID of the target signing platform.
*/
platformId: PlatformId;
}
export interface GetSigningPlatformResponse {
/**
* The ID of the target signing platform.
*/
platformId?: PlatformId;
/**
* The display name of the target signing platform.
*/
displayName?: DisplayName;
/**
* A list of partner entities that use the target signing platform.
*/
partner?: String;
/**
* The validation template that is used by the target signing platform.
*/
target?: String;
/**
* The category type of the target signing platform.
*/
category?: Category;
/**
* A list of configurations applied to the target platform at signing.
*/
signingConfiguration?: SigningConfiguration;
/**
* The format of the target platform's signing image.
*/
signingImageFormat?: SigningImageFormat;
/**
* The maximum size (in MB) of the payload that can be signed by the target platform.
*/
maxSizeInMB?: MaxSizeInMB;
}
export interface GetSigningProfileRequest {
/**
* The name of the target signing profile.
*/
profileName: ProfileName;
}
export interface GetSigningProfileResponse {
/**
* The name of the target signing profile.
*/
profileName?: ProfileName;
/**
* The ARN of the certificate that the target profile uses for signing operations.
*/
signingMaterial?: SigningMaterial;
/**
* The ID of the platform that is used by the target signing profile.
*/
platformId?: PlatformId;
/**
* A list of overrides applied by the target signing profile for signing operations.
*/
overrides?: SigningPlatformOverrides;
/**
* A map of key-value pairs for signing operations that is attached to the target signing profile.
*/
signingParameters?: SigningParameters;
/**
* The status of the target signing profile.
*/
status?: SigningProfileStatus;
/**
* The Amazon Resource Name (ARN) for the signing profile.
*/
arn?: string;
/**
* A list of tags associated with the signing profile.
*/
tags?: TagMap;
}
export type HashAlgorithm = "SHA1"|"SHA256"|string;
export interface HashAlgorithmOptions {
/**
* The set of accepted hash algorithms allowed in a code signing job.
*/
allowedValues: HashAlgorithms;
/**
* The default hash algorithm that is used in a code signing job.
*/
defaultValue: HashAlgorithm;
}
export type HashAlgorithms = HashAlgorithm[];
export type ImageFormat = "JSON"|string;
export type ImageFormats = ImageFormat[];
export type JobId = string;
export type Key = string;
export interface ListSigningJobsRequest {
/**
* A status value with which to filter your results.
*/
status?: SigningStatus;
/**
* The ID of microcontroller platform that you specified for the distribution of your code image.
*/
platformId?: PlatformId;
/**
* The IAM principal that requested the signing job.
*/
requestedBy?: RequestedBy;
/**
* Specifies the maximum number of items to return in the response. Use this parameter when paginating results. If additional items exist beyond the number you specify, the nextToken element is set in the response. Use the nextToken value in a subsequent request to retrieve additional items.
*/
maxResults?: MaxResults;
/**
* String for specifying the next set of paginated results to return. After you receive a response with truncated results, use this parameter in a subsequent request. Set it to the value of nextToken from the response that you just received.
*/
nextToken?: NextToken;
}
export interface ListSigningJobsResponse {
/**
* A list of your signing jobs.
*/
jobs?: SigningJobs;
/**
* String for specifying the next set of paginated results.
*/
nextToken?: NextToken;
}
export interface ListSigningPlatformsRequest {
/**
* The category type of a signing platform.
*/
category?: String;
/**
* Any partner entities connected to a signing platform.
*/
partner?: String;
/**
* The validation template that is used by the target signing platform.
*/
target?: String;
/**
* The maximum number of results to be returned by this operation.
*/
maxResults?: MaxResults;
/**
* Value for specifying the next set of paginated results to return. After you receive a response with truncated results, use this parameter in a subsequent request. Set it to the value of nextToken from the response that you just received.
*/
nextToken?: String;
}
export interface ListSigningPlatformsResponse {
/**
* A list of all platforms that match the request parameters.
*/
platforms?: SigningPlatforms;
/**
* Value for specifying the next set of paginated results to return.
*/
nextToken?: String;
}
export interface ListSigningProfilesRequest {
/**
* Designates whether to include profiles with the status of CANCELED.
*/
includeCanceled?: bool;
/**
* The maximum number of profiles to be returned.
*/
maxResults?: MaxResults;
/**
* Value for specifying the next set of paginated results to return. After you receive a response with truncated results, use this parameter in a subsequent request. Set it to the value of nextToken from the response that you just received.
*/
nextToken?: NextToken;
}
export interface ListSigningProfilesResponse {
/**
* A list of profiles that are available in the AWS account. This includes profiles with the status of CANCELED if the includeCanceled parameter is set to true.
*/
profiles?: SigningProfiles;
/**
* Value for specifying the next set of paginated results to return.
*/
nextToken?: NextToken;
}
export interface ListTagsForResourceRequest {
/**
* The Amazon Resource Name (ARN) for the signing profile.
*/
resourceArn: String;
}
export interface ListTagsForResourceResponse {
/**
* A list of tags associated with the signing profile.
*/
tags?: TagMap;
}
export type MaxResults = number;
export type MaxSizeInMB = number;
export type NextToken = string;
export type PlatformId = string;
export type Prefix = string;
export type ProfileName = string;
export interface PutSigningProfileRequest {
/**
* The name of the signing profile to be created.
*/
profileName: ProfileName;
/**
* The AWS Certificate Manager certificate that will be used to sign code with the new signing profile.
*/
signingMaterial: SigningMaterial;
/**
* The ID of the signing profile to be created.
*/
platformId: PlatformId;
/**
* A subfield of platform. This specifies any different configuration options that you want to apply to the chosen platform (such as a different hash-algorithm or signing-algorithm).
*/
overrides?: SigningPlatformOverrides;
/**
* Map of key-value pairs for signing. These can include any information that you want to use during signing.
*/
signingParameters?: SigningParameters;
/**
* Tags to be associated with the signing profile being created.
*/
tags?: TagMap;
}
export interface PutSigningProfileResponse {
/**
* The Amazon Resource Name (ARN) of the signing profile created.
*/
arn?: string;
}
export type RequestedBy = string;
export interface S3Destination {
/**
* Name of the S3 bucket.
*/
bucketName?: BucketName;
/**
* An Amazon S3 prefix that you can use to limit responses to those that begin with the specified prefix.
*/
prefix?: Prefix;
}
export interface S3SignedObject {
/**
* Name of the S3 bucket.
*/
bucketName?: BucketName;
/**
* Key name that uniquely identifies a signed code image in your bucket.
*/
key?: key;
}
export interface S3Source {
/**
* Name of the S3 bucket.
*/
bucketName: BucketName;
/**
* Key name of the bucket object that contains your unsigned code.
*/
key: Key;
/**
* Version of your source image in your version enabled S3 bucket.
*/
version: Version;
}
export interface SignedObject {
/**
* The S3SignedObject.
*/
s3?: S3SignedObject;
}
export interface SigningConfiguration {
/**
* The encryption algorithm options that are available for a code signing job.
*/
encryptionAlgorithmOptions: EncryptionAlgorithmOptions;
/**
* The hash algorithm options that are available for a a code signing job.
*/
hashAlgorithmOptions: HashAlgorithmOptions;
}
export interface SigningConfigurationOverrides {
/**
* A specified override of the default encryption algorithm that is used in a code signing job.
*/
encryptionAlgorithm?: EncryptionAlgorithm;
/**
* A specified override of the default hash algorithm that is used in a code signing job.
*/
hashAlgorithm?: HashAlgorithm;
}
export interface SigningImageFormat {
/**
* The supported formats of a code signing signing image.
*/
supportedFormats: ImageFormats;
/**
* The default format of a code signing signing image.
*/
defaultFormat: ImageFormat;
}
export interface SigningJob {
/**
* The ID of the signing job.
*/
jobId?: JobId;
/**
* A Source that contains information about a signing job's code image source.
*/
source?: Source;
/**
* A SignedObject structure that contains information about a signing job's signed code image.
*/
signedObject?: SignedObject;
/**
* A SigningMaterial object that contains the Amazon Resource Name (ARN) of the certificate used for the signing job.
*/
signingMaterial?: SigningMaterial;
/**
* The date and time that the signing job was created.
*/
createdAt?: CreatedAt;
/**
* The status of the signing job.
*/
status?: SigningStatus;
}
export type SigningJobs = SigningJob[];
export interface SigningMaterial {
/**
* The Amazon Resource Name (ARN) of the certificates that is used to sign your code.
*/
certificateArn: CertificateArn;
}
export type SigningParameterKey = string;
export type SigningParameterValue = string;
export type SigningParameters = {[key: string]: SigningParameterValue};
export interface SigningPlatform {
/**
* The ID of a code signing; platform.
*/
platformId?: String;
/**
* The display name of a code signing platform.
*/
displayName?: String;
/**
* Any partner entities linked to a code signing platform.
*/
partner?: String;
/**
* The types of targets that can be signed by a code signing platform.
*/
target?: String;
/**
* The category of a code signing platform.
*/
category?: Category;
/**
* The configuration of a code signing platform. This includes the designated hash algorithm and encryption algorithm of a signing platform.
*/
signingConfiguration?: SigningConfiguration;
signingImageFormat?: SigningImageFormat;
/**
* The maximum size (in MB) of code that can be signed by a code signing platform.
*/
maxSizeInMB?: MaxSizeInMB;
}
export interface SigningPlatformOverrides {
/**
* A signing configuration that overrides the default encryption or hash algorithm of a signing job.
*/
signingConfiguration?: SigningConfigurationOverrides;
}
export type SigningPlatforms = SigningPlatform[];
export interface SigningProfile {
/**
* The name of the signing profile.
*/
profileName?: ProfileName;
/**
* The ACM certificate that is available for use by a signing profile.
*/
signingMaterial?: SigningMaterial;
/**
* The ID of a platform that is available for use by a signing profile.
*/
platformId?: PlatformId;
/**
* The parameters that are available for use by a code signing user.
*/
signingParameters?: SigningParameters;
/**
* The status of a code signing profile.
*/
status?: SigningProfileStatus;
/**
* Amazon Resource Name (ARN) for the signing profile.
*/
arn?: string;
/**
* A list of tags associated with the signing profile.
*/
tags?: TagMap;
}
export type SigningProfileStatus = "Active"|"Canceled"|string;
export type SigningProfiles = SigningProfile[];
export type SigningStatus = "InProgress"|"Failed"|"Succeeded"|string;
export interface Source {
/**
* The S3Source object.
*/
s3?: S3Source;
}
export interface StartSigningJobRequest {
/**
* The S3 bucket that contains the object to sign or a BLOB that contains your raw code.
*/
source: Source;
/**
* The S3 bucket in which to save your signed object. The destination contains the name of your bucket and an optional prefix.
*/
destination: Destination;
/**
* The name of the signing profile.
*/
profileName?: ProfileName;
/**
* String that identifies the signing request. All calls after the first that use this token return the same response as the first call.
*/
clientRequestToken: ClientRequestToken;
}
export interface StartSigningJobResponse {
/**
* The ID of your signing job.
*/
jobId?: JobId;
}
export type StatusReason = string;
export type String = string;
export type TagKey = string;
export type TagKeyList = TagKey[];
export type TagMap = {[key: string]: TagValue};
export interface TagResourceRequest {
/**
* Amazon Resource Name (ARN) for the signing profile.
*/
resourceArn: String;
/**
* One or more tags to be associated with the signing profile.
*/
tags: TagMap;
}
export interface TagResourceResponse {
}
export type TagValue = string;
export interface UntagResourceRequest {
/**
* Amazon Resource Name (ARN) for the signing profile .
*/
resourceArn: String;
/**
* A list of tag keys to be removed from the signing profile .
*/
tagKeys: TagKeyList;
}
export interface UntagResourceResponse {
}
export type Version = string;
export type bool = boolean;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2017-08-25"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the Signer client.
*/
export import Types = Signer;
}
export = Signer;