aws-sdk 2.1391.0 → 2.1392.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -1
- package/README.md +1 -1
- package/apis/inspector2-2020-06-08.min.json +29 -12
- package/apis/iot-2015-05-28.min.json +714 -214
- package/apis/iot-2015-05-28.paginators.json +12 -0
- package/apis/models.lex.v2-2020-08-07.min.json +1496 -286
- package/apis/models.lex.v2-2020-08-07.paginators.json +20 -0
- package/apis/quicksight-2018-04-01.min.json +625 -594
- package/apis/signer-2017-08-25.min.json +105 -16
- package/apis/sqs-2012-11-05.min.json +120 -31
- package/clients/connect.d.ts +3 -3
- package/clients/emr.d.ts +2 -2
- package/clients/iam.d.ts +7 -7
- package/clients/inspector2.d.ts +20 -1
- package/clients/iot.d.ts +500 -3
- package/clients/lexmodelsv2.d.ts +1516 -127
- package/clients/quicksight.d.ts +50 -14
- package/clients/signer.d.ts +90 -5
- package/clients/sqs.d.ts +151 -39
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +849 -248
- package/dist/aws-sdk.min.js +48 -48
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/quicksight.d.ts
CHANGED
@@ -1853,11 +1853,11 @@ declare namespace QuickSight {
|
|
1853
1853
|
}
|
1854
1854
|
export interface AssetBundleImportJobDataSourceCredentials {
|
1855
1855
|
/**
|
1856
|
-
* A username and password credential pair to be used to create the imported data source.
|
1856
|
+
* A username and password credential pair to be used to create the imported data source. Keep this field blank if you are using a Secrets Manager secret to provide credentials.
|
1857
1857
|
*/
|
1858
1858
|
CredentialPair?: AssetBundleImportJobDataSourceCredentialPair;
|
1859
1859
|
/**
|
1860
|
-
* The ARN of the Secrets Manager
|
1860
|
+
* The ARN of the Secrets Manager secret that's used to create the imported data source. Keep this field blank, unless you are using a secret in place of a credential pair.
|
1861
1861
|
*/
|
1862
1862
|
SecretArn?: SecretArn;
|
1863
1863
|
}
|
@@ -1938,7 +1938,7 @@ declare namespace QuickSight {
|
|
1938
1938
|
*/
|
1939
1939
|
ScheduleId: String;
|
1940
1940
|
/**
|
1941
|
-
* An override for the StartAfterDateTime of a RefreshSchedule
|
1941
|
+
* An override for the StartAfterDateTime of a RefreshSchedule. Make sure that the StartAfterDateTime is set to a time that takes place in the future.
|
1942
1942
|
*/
|
1943
1943
|
StartAfterDateTime?: Timestamp;
|
1944
1944
|
}
|
@@ -1994,15 +1994,15 @@ declare namespace QuickSight {
|
|
1994
1994
|
*/
|
1995
1995
|
Name?: ResourceName;
|
1996
1996
|
/**
|
1997
|
-
* A list of new subnet IDs for the VPC connection you are importing. This field is required if you are importing the VPC connection from another Amazon Web Services account or
|
1997
|
+
* A list of new subnet IDs for the VPC connection you are importing. This field is required if you are importing the VPC connection from another Amazon Web Services account or Region.
|
1998
1998
|
*/
|
1999
1999
|
SubnetIds?: SubnetIdList;
|
2000
2000
|
/**
|
2001
|
-
* A new security group ID for the VPC connection you are importing. This field is required if you are importing the VPC connection from another Amazon Web Services account or
|
2001
|
+
* A new security group ID for the VPC connection you are importing. This field is required if you are importing the VPC connection from another Amazon Web Services account or Region.
|
2002
2002
|
*/
|
2003
2003
|
SecurityGroupIds?: SecurityGroupIdList;
|
2004
2004
|
/**
|
2005
|
-
* An optional override of
|
2005
|
+
* An optional override of DNS resolvers to be used by the VPC connection.
|
2006
2006
|
*/
|
2007
2007
|
DnsResolvers?: DnsResolverList;
|
2008
2008
|
/**
|
@@ -2013,21 +2013,21 @@ declare namespace QuickSight {
|
|
2013
2013
|
export type AssetBundleImportJobVPCConnectionOverrideParametersList = AssetBundleImportJobVPCConnectionOverrideParameters[];
|
2014
2014
|
export interface AssetBundleImportSource {
|
2015
2015
|
/**
|
2016
|
-
* The bytes of the
|
2016
|
+
* The bytes of the base64 encoded asset bundle import zip file. This file can't exceed 20 MB. If you are calling the API operations from the Amazon Web Services SDK for Java, JavaScript, Python, or PHP, the SDK encodes base64 automatically to allow the direct setting of the zip file's bytes. If you are using an SDK for a different language or receiving related errors, try to base64 encode your data.
|
2017
2017
|
*/
|
2018
2018
|
Body?: AssetBundleImportBodyBlob;
|
2019
2019
|
/**
|
2020
|
-
* The Amazon S3
|
2020
|
+
* The Amazon S3 URI for an asset bundle import file that exists in an Amazon S3 bucket that the caller has read access to. The file must be a zip format file and can't exceed 20 MB.
|
2021
2021
|
*/
|
2022
2022
|
S3Uri?: S3Uri;
|
2023
2023
|
}
|
2024
2024
|
export interface AssetBundleImportSourceDescription {
|
2025
2025
|
/**
|
2026
|
-
*
|
2026
|
+
* An HTTPS download URL for the provided asset bundle that you optionally provided at the start of the import job. This URL is valid for five minutes after issuance. Call DescribeAssetBundleExportJob again for a fresh URL if needed. The downloaded asset bundle is a .qs zip file.
|
2027
2027
|
*/
|
2028
2028
|
Body?: String;
|
2029
2029
|
/**
|
2030
|
-
* The Amazon S3
|
2030
|
+
* The Amazon S3 URI that you provided at the start of the import job.
|
2031
2031
|
*/
|
2032
2032
|
S3Uri?: S3Uri;
|
2033
2033
|
}
|
@@ -6620,7 +6620,7 @@ declare namespace QuickSight {
|
|
6620
6620
|
}
|
6621
6621
|
export interface DescribeAssetBundleExportJobResponse {
|
6622
6622
|
/**
|
6623
|
-
* Indicates
|
6623
|
+
* Indicates the status of a job through its queuing and execution. Poll this DescribeAssetBundleExportApi until JobStatus is either SUCCESSFUL or FAILED.
|
6624
6624
|
*/
|
6625
6625
|
JobStatus?: AssetBundleExportJobStatus;
|
6626
6626
|
/**
|
@@ -6684,7 +6684,7 @@ declare namespace QuickSight {
|
|
6684
6684
|
}
|
6685
6685
|
export interface DescribeAssetBundleImportJobResponse {
|
6686
6686
|
/**
|
6687
|
-
* Indicates
|
6687
|
+
* Indicates the status of a job through its queuing and execution. Poll the DescribeAssetBundleImport API until JobStatus returns one of the following values: SUCCESSFUL FAILED FAILED_ROLLBACK_COMPLETED FAILED_ROLLBACK_ERROR
|
6688
6688
|
*/
|
6689
6689
|
JobStatus?: AssetBundleImportJobStatus;
|
6690
6690
|
/**
|
@@ -12522,6 +12522,10 @@ declare namespace QuickSight {
|
|
12522
12522
|
* The scope of the cell for conditional formatting.
|
12523
12523
|
*/
|
12524
12524
|
Scope?: PivotTableConditionalFormattingScope;
|
12525
|
+
/**
|
12526
|
+
* A list of cell scopes for conditional formatting.
|
12527
|
+
*/
|
12528
|
+
Scopes?: PivotTableConditionalFormattingScopeList;
|
12525
12529
|
}
|
12526
12530
|
export interface PivotTableConditionalFormatting {
|
12527
12531
|
/**
|
@@ -12542,6 +12546,7 @@ declare namespace QuickSight {
|
|
12542
12546
|
*/
|
12543
12547
|
Role?: PivotTableConditionalFormattingScopeRole;
|
12544
12548
|
}
|
12549
|
+
export type PivotTableConditionalFormattingScopeList = PivotTableConditionalFormattingScope[];
|
12545
12550
|
export type PivotTableConditionalFormattingScopeRole = "FIELD"|"FIELD_TOTAL"|"GRAND_TOTAL"|string;
|
12546
12551
|
export interface PivotTableConfiguration {
|
12547
12552
|
/**
|
@@ -12581,6 +12586,28 @@ declare namespace QuickSight {
|
|
12581
12586
|
}
|
12582
12587
|
export type PivotTableDataPathOptionList = PivotTableDataPathOption[];
|
12583
12588
|
export type PivotTableDimensionList = DimensionField[];
|
12589
|
+
export type PivotTableFieldCollapseState = "COLLAPSED"|"EXPANDED"|string;
|
12590
|
+
export interface PivotTableFieldCollapseStateOption {
|
12591
|
+
/**
|
12592
|
+
* A tagged-union object that sets the collapse state.
|
12593
|
+
*/
|
12594
|
+
Target: PivotTableFieldCollapseStateTarget;
|
12595
|
+
/**
|
12596
|
+
* The state of the field target of a pivot table. Choose one of the following options: COLLAPSED EXPANDED
|
12597
|
+
*/
|
12598
|
+
State?: PivotTableFieldCollapseState;
|
12599
|
+
}
|
12600
|
+
export type PivotTableFieldCollapseStateOptionList = PivotTableFieldCollapseStateOption[];
|
12601
|
+
export interface PivotTableFieldCollapseStateTarget {
|
12602
|
+
/**
|
12603
|
+
* The field ID of the pivot table that the collapse state needs to be set to.
|
12604
|
+
*/
|
12605
|
+
FieldId?: String;
|
12606
|
+
/**
|
12607
|
+
* The data path of the pivot table's header. Used to set the collapse state.
|
12608
|
+
*/
|
12609
|
+
FieldDataPathValues?: DataPathValueList;
|
12610
|
+
}
|
12584
12611
|
export interface PivotTableFieldOption {
|
12585
12612
|
/**
|
12586
12613
|
* The field ID of the pivot table field.
|
@@ -12605,6 +12632,10 @@ declare namespace QuickSight {
|
|
12605
12632
|
* The data path options for the pivot table field options.
|
12606
12633
|
*/
|
12607
12634
|
DataPathOptions?: PivotTableDataPathOptionList;
|
12635
|
+
/**
|
12636
|
+
* The collapse state options for the pivot table field options.
|
12637
|
+
*/
|
12638
|
+
CollapseStateOptions?: PivotTableFieldCollapseStateOptionList;
|
12608
12639
|
}
|
12609
12640
|
export interface PivotTableFieldSubtotalOptions {
|
12610
12641
|
/**
|
@@ -12889,6 +12920,7 @@ declare namespace QuickSight {
|
|
12889
12920
|
*/
|
12890
12921
|
Visibility?: Visibility;
|
12891
12922
|
}
|
12923
|
+
export type RadarChartAxesRangeScale = "AUTO"|"INDEPENDENT"|"SHARED"|string;
|
12892
12924
|
export type RadarChartCategoryFieldList = DimensionField[];
|
12893
12925
|
export type RadarChartColorFieldList = DimensionField[];
|
12894
12926
|
export interface RadarChartConfiguration {
|
@@ -12948,6 +12980,10 @@ declare namespace QuickSight {
|
|
12948
12980
|
* The legend display setup of the visual.
|
12949
12981
|
*/
|
12950
12982
|
Legend?: LegendOptions;
|
12983
|
+
/**
|
12984
|
+
* The axis behavior options of a radar chart.
|
12985
|
+
*/
|
12986
|
+
AxesRangeScale?: RadarChartAxesRangeScale;
|
12951
12987
|
}
|
12952
12988
|
export interface RadarChartFieldWells {
|
12953
12989
|
/**
|
@@ -14512,7 +14548,7 @@ declare namespace QuickSight {
|
|
14512
14548
|
*/
|
14513
14549
|
ResourceArns: AssetBundleResourceArns;
|
14514
14550
|
/**
|
14515
|
-
* A Boolean that determines whether all dependencies of each resource ARN are recursively exported with the job. For example, say you provided a Dashboard ARN to the ResourceArns parameter. If you set IncludeAllDependencies to TRUE, any theme, dataset, and
|
14551
|
+
* A Boolean that determines whether all dependencies of each resource ARN are recursively exported with the job. For example, say you provided a Dashboard ARN to the ResourceArns parameter. If you set IncludeAllDependencies to TRUE, any theme, dataset, and data source resource that is a dependency of the dashboard is also exported.
|
14516
14552
|
*/
|
14517
14553
|
IncludeAllDependencies?: Boolean;
|
14518
14554
|
/**
|
@@ -14560,7 +14596,7 @@ declare namespace QuickSight {
|
|
14560
14596
|
*/
|
14561
14597
|
OverrideParameters?: AssetBundleImportJobOverrideParameters;
|
14562
14598
|
/**
|
14563
|
-
* The failure action for the import job. If you choose ROLLBACK, failed import jobs will attempt to undo any asset changes caused by the failed job. If you choose DO_NOTHING, failed import jobs will not attempt to roll back any asset changes caused by the failed job, possibly
|
14599
|
+
* The failure action for the import job. If you choose ROLLBACK, failed import jobs will attempt to undo any asset changes caused by the failed job. If you choose DO_NOTHING, failed import jobs will not attempt to roll back any asset changes caused by the failed job, possibly keeping the Amazon QuickSight account in an inconsistent state.
|
14564
14600
|
*/
|
14565
14601
|
FailureAction?: AssetBundleImportFailureAction;
|
14566
14602
|
}
|
package/clients/signer.d.ts
CHANGED
@@ -36,6 +36,14 @@ declare class Signer extends Service {
|
|
36
36
|
* Returns information about a specific code signing job. You specify the job by using the jobId value that is returned by the StartSigningJob operation.
|
37
37
|
*/
|
38
38
|
describeSigningJob(callback?: (err: AWSError, data: Signer.Types.DescribeSigningJobResponse) => void): Request<Signer.Types.DescribeSigningJobResponse, AWSError>;
|
39
|
+
/**
|
40
|
+
* Retrieves the revocation status of one or more of the signing profile, signing job, and signing certificate.
|
41
|
+
*/
|
42
|
+
getRevocationStatus(params: Signer.Types.GetRevocationStatusRequest, callback?: (err: AWSError, data: Signer.Types.GetRevocationStatusResponse) => void): Request<Signer.Types.GetRevocationStatusResponse, AWSError>;
|
43
|
+
/**
|
44
|
+
* Retrieves the revocation status of one or more of the signing profile, signing job, and signing certificate.
|
45
|
+
*/
|
46
|
+
getRevocationStatus(callback?: (err: AWSError, data: Signer.Types.GetRevocationStatusResponse) => void): Request<Signer.Types.GetRevocationStatusResponse, AWSError>;
|
39
47
|
/**
|
40
48
|
* Returns information on a specific signing platform.
|
41
49
|
*/
|
@@ -93,11 +101,11 @@ declare class Signer extends Service {
|
|
93
101
|
*/
|
94
102
|
listTagsForResource(callback?: (err: AWSError, data: Signer.Types.ListTagsForResourceResponse) => void): Request<Signer.Types.ListTagsForResourceResponse, AWSError>;
|
95
103
|
/**
|
96
|
-
* Creates a signing profile. A signing profile is a code signing template that can be used to carry out a pre-defined signing job.
|
104
|
+
* Creates a signing profile. A signing profile is a code signing template that can be used to carry out a pre-defined signing job.
|
97
105
|
*/
|
98
106
|
putSigningProfile(params: Signer.Types.PutSigningProfileRequest, callback?: (err: AWSError, data: Signer.Types.PutSigningProfileResponse) => void): Request<Signer.Types.PutSigningProfileResponse, AWSError>;
|
99
107
|
/**
|
100
|
-
* Creates a signing profile. A signing profile is a code signing template that can be used to carry out a pre-defined signing job.
|
108
|
+
* Creates a signing profile. A signing profile is a code signing template that can be used to carry out a pre-defined signing job.
|
101
109
|
*/
|
102
110
|
putSigningProfile(callback?: (err: AWSError, data: Signer.Types.PutSigningProfileResponse) => void): Request<Signer.Types.PutSigningProfileResponse, AWSError>;
|
103
111
|
/**
|
@@ -125,11 +133,19 @@ declare class Signer extends Service {
|
|
125
133
|
*/
|
126
134
|
revokeSigningProfile(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
127
135
|
/**
|
128
|
-
*
|
136
|
+
* Signs a binary payload and returns a signature envelope.
|
137
|
+
*/
|
138
|
+
signPayload(params: Signer.Types.SignPayloadRequest, callback?: (err: AWSError, data: Signer.Types.SignPayloadResponse) => void): Request<Signer.Types.SignPayloadResponse, AWSError>;
|
139
|
+
/**
|
140
|
+
* Signs a binary payload and returns a signature envelope.
|
141
|
+
*/
|
142
|
+
signPayload(callback?: (err: AWSError, data: Signer.Types.SignPayloadResponse) => void): Request<Signer.Types.SignPayloadResponse, AWSError>;
|
143
|
+
/**
|
144
|
+
* 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 Creating 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 StartSigningJob.
|
129
145
|
*/
|
130
146
|
startSigningJob(params: Signer.Types.StartSigningJobRequest, callback?: (err: AWSError, data: Signer.Types.StartSigningJobResponse) => void): Request<Signer.Types.StartSigningJobResponse, AWSError>;
|
131
147
|
/**
|
132
|
-
* 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
|
148
|
+
* 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 Creating 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 StartSigningJob.
|
133
149
|
*/
|
134
150
|
startSigningJob(callback?: (err: AWSError, data: Signer.Types.StartSigningJobResponse) => void): Request<Signer.Types.StartSigningJobResponse, AWSError>;
|
135
151
|
/**
|
@@ -192,6 +208,7 @@ declare namespace Signer {
|
|
192
208
|
revisionId?: String;
|
193
209
|
}
|
194
210
|
export type Arn = string;
|
211
|
+
export type _Blob = Buffer|Uint8Array|Blob|string;
|
195
212
|
export type BucketName = string;
|
196
213
|
export interface CancelSigningProfileRequest {
|
197
214
|
/**
|
@@ -201,6 +218,7 @@ declare namespace Signer {
|
|
201
218
|
}
|
202
219
|
export type Category = "AWSIoT"|string;
|
203
220
|
export type CertificateArn = string;
|
221
|
+
export type CertificateHashes = String[];
|
204
222
|
export type ClientRequestToken = string;
|
205
223
|
export interface DescribeSigningJobRequest {
|
206
224
|
/**
|
@@ -305,6 +323,34 @@ declare namespace Signer {
|
|
305
323
|
defaultValue: EncryptionAlgorithm;
|
306
324
|
}
|
307
325
|
export type EncryptionAlgorithms = EncryptionAlgorithm[];
|
326
|
+
export interface GetRevocationStatusRequest {
|
327
|
+
/**
|
328
|
+
* The timestamp of the signature that validates the profile or job.
|
329
|
+
*/
|
330
|
+
signatureTimestamp: Timestamp;
|
331
|
+
/**
|
332
|
+
* The ID of a signing platform.
|
333
|
+
*/
|
334
|
+
platformId: PlatformId;
|
335
|
+
/**
|
336
|
+
* The version of a signing profile.
|
337
|
+
*/
|
338
|
+
profileVersionArn: Arn;
|
339
|
+
/**
|
340
|
+
* The ARN of a signing job.
|
341
|
+
*/
|
342
|
+
jobArn: Arn;
|
343
|
+
/**
|
344
|
+
* A list of composite signed hashes that identify certificates. A certificate identifier consists of a subject certificate TBS hash (signed by the parent CA) combined with a parent CA TBS hash (signed by the parent CA’s CA). Root certificates are defined as their own CA.
|
345
|
+
*/
|
346
|
+
certificateHashes: CertificateHashes;
|
347
|
+
}
|
348
|
+
export interface GetRevocationStatusResponse {
|
349
|
+
/**
|
350
|
+
* A list of revoked entities (including one or more of the signing profile ARN, signing job ID, and certificate hash) supplied as input to the API.
|
351
|
+
*/
|
352
|
+
revokedEntities?: RevokedEntities;
|
353
|
+
}
|
308
354
|
export interface GetSigningPlatformRequest {
|
309
355
|
/**
|
310
356
|
* The ID of the target signing platform.
|
@@ -582,7 +628,9 @@ declare namespace Signer {
|
|
582
628
|
}
|
583
629
|
export type MaxResults = number;
|
584
630
|
export type MaxSizeInMB = number;
|
631
|
+
export type Metadata = {[key: string]: String};
|
585
632
|
export type NextToken = string;
|
633
|
+
export type Payload = Buffer|Uint8Array|Blob|string;
|
586
634
|
export interface Permission {
|
587
635
|
/**
|
588
636
|
* An AWS Signer action permitted as part of cross-account permissions.
|
@@ -705,6 +753,7 @@ declare namespace Signer {
|
|
705
753
|
*/
|
706
754
|
effectiveTime: Timestamp;
|
707
755
|
}
|
756
|
+
export type RevokedEntities = String[];
|
708
757
|
export interface S3Destination {
|
709
758
|
/**
|
710
759
|
* Name of the S3 bucket.
|
@@ -739,6 +788,42 @@ declare namespace Signer {
|
|
739
788
|
*/
|
740
789
|
version: Version;
|
741
790
|
}
|
791
|
+
export interface SignPayloadRequest {
|
792
|
+
/**
|
793
|
+
* The name of the signing profile.
|
794
|
+
*/
|
795
|
+
profileName: ProfileName;
|
796
|
+
/**
|
797
|
+
* The AWS account ID of the profile owner.
|
798
|
+
*/
|
799
|
+
profileOwner?: AccountId;
|
800
|
+
/**
|
801
|
+
* Specifies the object digest (hash) to sign.
|
802
|
+
*/
|
803
|
+
payload: Payload;
|
804
|
+
/**
|
805
|
+
* Payload content type
|
806
|
+
*/
|
807
|
+
payloadFormat: String;
|
808
|
+
}
|
809
|
+
export interface SignPayloadResponse {
|
810
|
+
/**
|
811
|
+
* Unique identifier of the signing job.
|
812
|
+
*/
|
813
|
+
jobId?: JobId;
|
814
|
+
/**
|
815
|
+
* The AWS account ID of the job owner.
|
816
|
+
*/
|
817
|
+
jobOwner?: AccountId;
|
818
|
+
/**
|
819
|
+
* Information including the signing profile ARN and the signing job ID. Clients use metadata to signature records, for example, as annotations added to the signature manifest inside an OCI registry.
|
820
|
+
*/
|
821
|
+
metadata?: Metadata;
|
822
|
+
/**
|
823
|
+
* A cryptographic signature.
|
824
|
+
*/
|
825
|
+
signature?: _Blob;
|
826
|
+
}
|
742
827
|
export interface SignatureValidityPeriod {
|
743
828
|
/**
|
744
829
|
* The numerical value of the time unit for signature validity.
|
@@ -869,7 +954,7 @@ declare namespace Signer {
|
|
869
954
|
export type SigningParameters = {[key: string]: SigningParameterValue};
|
870
955
|
export interface SigningPlatform {
|
871
956
|
/**
|
872
|
-
* The ID of a code signing
|
957
|
+
* The ID of a code signing platform.
|
873
958
|
*/
|
874
959
|
platformId?: String;
|
875
960
|
/**
|