@aws-sdk/client-signer 3.312.0 → 3.316.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/dist-cjs/Signer.js +21 -238
- package/dist-cjs/protocols/Aws_restJson1.js +257 -641
- package/dist-es/Signer.js +21 -238
- package/dist-es/protocols/Aws_restJson1.js +224 -608
- package/dist-types/Signer.d.ts +40 -115
- package/dist-types/ts3.4/Signer.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/Signer.d.ts
CHANGED
|
@@ -17,204 +17,129 @@ import { StartSigningJobCommandInput, StartSigningJobCommandOutput } from "./com
|
|
|
17
17
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
18
18
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
19
19
|
import { SignerClient } from "./SignerClient";
|
|
20
|
-
|
|
21
|
-
* @public
|
|
22
|
-
* <p>AWS Signer is a fully managed code signing service to help you ensure the trust and
|
|
23
|
-
* integrity of your code. </p>
|
|
24
|
-
* <p>AWS Signer supports the following applications:</p>
|
|
25
|
-
*
|
|
26
|
-
* <p>With <i>code signing for AWS Lambda</i>, you can sign AWS Lambda
|
|
27
|
-
* deployment packages. Integrated support is provided for Amazon S3, Amazon CloudWatch,
|
|
28
|
-
* and AWS CloudTrail. In order to sign code, you create a signing profile and then use
|
|
29
|
-
* Signer to sign Lambda zip files in S3. </p>
|
|
30
|
-
*
|
|
31
|
-
* <p>With <i>code signing for IoT</i>, you can sign code for any IoT device that is
|
|
32
|
-
* supported by AWS. IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is
|
|
33
|
-
* integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In order to sign
|
|
34
|
-
* code, you import a third-party code signing certificate using ACM, and use that to
|
|
35
|
-
* sign updates in Amazon FreeRTOS and AWS IoT Device Management. </p>
|
|
36
|
-
* <p>For more information about AWS Signer, see the <a href="http://docs.aws.amazon.com/signer/latest/developerguide/Welcome.html">AWS Signer Developer Guide</a>.</p>
|
|
37
|
-
*
|
|
38
|
-
* <p></p>
|
|
39
|
-
*/
|
|
40
|
-
export declare class Signer extends SignerClient {
|
|
20
|
+
export interface Signer {
|
|
41
21
|
/**
|
|
42
|
-
* @
|
|
43
|
-
* <p>Adds cross-account permissions to a signing profile.</p>
|
|
22
|
+
* @see {@link AddProfilePermissionCommand}
|
|
44
23
|
*/
|
|
45
24
|
addProfilePermission(args: AddProfilePermissionCommandInput, options?: __HttpHandlerOptions): Promise<AddProfilePermissionCommandOutput>;
|
|
46
25
|
addProfilePermission(args: AddProfilePermissionCommandInput, cb: (err: any, data?: AddProfilePermissionCommandOutput) => void): void;
|
|
47
26
|
addProfilePermission(args: AddProfilePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddProfilePermissionCommandOutput) => void): void;
|
|
48
27
|
/**
|
|
49
|
-
* @
|
|
50
|
-
* <p>Changes the state of an <code>ACTIVE</code> signing profile to <code>CANCELED</code>.
|
|
51
|
-
* A canceled profile is still viewable with the <code>ListSigningProfiles</code>
|
|
52
|
-
* operation, but it cannot perform new signing jobs, and is deleted two years after
|
|
53
|
-
* cancelation.</p>
|
|
28
|
+
* @see {@link CancelSigningProfileCommand}
|
|
54
29
|
*/
|
|
55
30
|
cancelSigningProfile(args: CancelSigningProfileCommandInput, options?: __HttpHandlerOptions): Promise<CancelSigningProfileCommandOutput>;
|
|
56
31
|
cancelSigningProfile(args: CancelSigningProfileCommandInput, cb: (err: any, data?: CancelSigningProfileCommandOutput) => void): void;
|
|
57
32
|
cancelSigningProfile(args: CancelSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelSigningProfileCommandOutput) => void): void;
|
|
58
33
|
/**
|
|
59
|
-
* @
|
|
60
|
-
* <p>Returns information about a specific code signing job. You specify the job by using
|
|
61
|
-
* the <code>jobId</code> value that is returned by the <a>StartSigningJob</a>
|
|
62
|
-
* operation. </p>
|
|
34
|
+
* @see {@link DescribeSigningJobCommand}
|
|
63
35
|
*/
|
|
64
36
|
describeSigningJob(args: DescribeSigningJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSigningJobCommandOutput>;
|
|
65
37
|
describeSigningJob(args: DescribeSigningJobCommandInput, cb: (err: any, data?: DescribeSigningJobCommandOutput) => void): void;
|
|
66
38
|
describeSigningJob(args: DescribeSigningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSigningJobCommandOutput) => void): void;
|
|
67
39
|
/**
|
|
68
|
-
* @
|
|
69
|
-
* <p>Returns information on a specific signing platform.</p>
|
|
40
|
+
* @see {@link GetSigningPlatformCommand}
|
|
70
41
|
*/
|
|
71
42
|
getSigningPlatform(args: GetSigningPlatformCommandInput, options?: __HttpHandlerOptions): Promise<GetSigningPlatformCommandOutput>;
|
|
72
43
|
getSigningPlatform(args: GetSigningPlatformCommandInput, cb: (err: any, data?: GetSigningPlatformCommandOutput) => void): void;
|
|
73
44
|
getSigningPlatform(args: GetSigningPlatformCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSigningPlatformCommandOutput) => void): void;
|
|
74
45
|
/**
|
|
75
|
-
* @
|
|
76
|
-
* <p>Returns information on a specific signing profile.</p>
|
|
46
|
+
* @see {@link GetSigningProfileCommand}
|
|
77
47
|
*/
|
|
78
48
|
getSigningProfile(args: GetSigningProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetSigningProfileCommandOutput>;
|
|
79
49
|
getSigningProfile(args: GetSigningProfileCommandInput, cb: (err: any, data?: GetSigningProfileCommandOutput) => void): void;
|
|
80
50
|
getSigningProfile(args: GetSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSigningProfileCommandOutput) => void): void;
|
|
81
51
|
/**
|
|
82
|
-
* @
|
|
83
|
-
* <p>Lists the cross-account permissions associated with a signing profile.</p>
|
|
52
|
+
* @see {@link ListProfilePermissionsCommand}
|
|
84
53
|
*/
|
|
85
54
|
listProfilePermissions(args: ListProfilePermissionsCommandInput, options?: __HttpHandlerOptions): Promise<ListProfilePermissionsCommandOutput>;
|
|
86
55
|
listProfilePermissions(args: ListProfilePermissionsCommandInput, cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void): void;
|
|
87
56
|
listProfilePermissions(args: ListProfilePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void): void;
|
|
88
57
|
/**
|
|
89
|
-
* @
|
|
90
|
-
* <p>Lists all your signing jobs. You can use the <code>maxResults</code> parameter to
|
|
91
|
-
* limit the number of signing jobs that are returned in the response. If additional jobs
|
|
92
|
-
* remain to be listed, code signing returns a <code>nextToken</code> value. Use this value in
|
|
93
|
-
* subsequent calls to <code>ListSigningJobs</code> to fetch the remaining values. You can
|
|
94
|
-
* continue calling <code>ListSigningJobs</code> with your <code>maxResults</code>
|
|
95
|
-
* parameter and with new values that code signing returns in the <code>nextToken</code>
|
|
96
|
-
* parameter until all of your signing jobs have been returned. </p>
|
|
58
|
+
* @see {@link ListSigningJobsCommand}
|
|
97
59
|
*/
|
|
98
60
|
listSigningJobs(args: ListSigningJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListSigningJobsCommandOutput>;
|
|
99
61
|
listSigningJobs(args: ListSigningJobsCommandInput, cb: (err: any, data?: ListSigningJobsCommandOutput) => void): void;
|
|
100
62
|
listSigningJobs(args: ListSigningJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningJobsCommandOutput) => void): void;
|
|
101
63
|
/**
|
|
102
|
-
* @
|
|
103
|
-
* <p>Lists all signing platforms available in code signing that match the request parameters. If
|
|
104
|
-
* additional jobs remain to be listed, code signing returns a <code>nextToken</code> value. Use
|
|
105
|
-
* this value in subsequent calls to <code>ListSigningJobs</code> to fetch the remaining
|
|
106
|
-
* values. You can continue calling <code>ListSigningJobs</code> with your
|
|
107
|
-
* <code>maxResults</code> parameter and with new values that code signing returns in the
|
|
108
|
-
* <code>nextToken</code> parameter until all of your signing jobs have been
|
|
109
|
-
* returned.</p>
|
|
64
|
+
* @see {@link ListSigningPlatformsCommand}
|
|
110
65
|
*/
|
|
111
66
|
listSigningPlatforms(args: ListSigningPlatformsCommandInput, options?: __HttpHandlerOptions): Promise<ListSigningPlatformsCommandOutput>;
|
|
112
67
|
listSigningPlatforms(args: ListSigningPlatformsCommandInput, cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void): void;
|
|
113
68
|
listSigningPlatforms(args: ListSigningPlatformsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void): void;
|
|
114
69
|
/**
|
|
115
|
-
* @
|
|
116
|
-
* <p>Lists all available signing profiles in your AWS account. Returns only profiles with
|
|
117
|
-
* an <code>ACTIVE</code> status unless the <code>includeCanceled</code> request field is
|
|
118
|
-
* set to <code>true</code>. If additional jobs remain to be listed, code signing returns a
|
|
119
|
-
* <code>nextToken</code> value. Use this value in subsequent calls to
|
|
120
|
-
* <code>ListSigningJobs</code> to fetch the remaining values. You can continue calling
|
|
121
|
-
* <code>ListSigningJobs</code> with your <code>maxResults</code> parameter and with
|
|
122
|
-
* new values that code signing returns in the <code>nextToken</code> parameter until all of your
|
|
123
|
-
* signing jobs have been returned.</p>
|
|
70
|
+
* @see {@link ListSigningProfilesCommand}
|
|
124
71
|
*/
|
|
125
72
|
listSigningProfiles(args: ListSigningProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListSigningProfilesCommandOutput>;
|
|
126
73
|
listSigningProfiles(args: ListSigningProfilesCommandInput, cb: (err: any, data?: ListSigningProfilesCommandOutput) => void): void;
|
|
127
74
|
listSigningProfiles(args: ListSigningProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningProfilesCommandOutput) => void): void;
|
|
128
75
|
/**
|
|
129
|
-
* @
|
|
130
|
-
* <p>Returns a list of the tags associated with a signing profile resource.</p>
|
|
76
|
+
* @see {@link ListTagsForResourceCommand}
|
|
131
77
|
*/
|
|
132
78
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
133
79
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
134
80
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
135
81
|
/**
|
|
136
|
-
* @
|
|
137
|
-
* <p>Creates a signing profile. A signing profile is a code signing template that can be used to
|
|
138
|
-
* carry out a pre-defined signing job. For more information, see <a href="http://docs.aws.amazon.com/signer/latest/developerguide/gs-profile.html">http://docs.aws.amazon.com/signer/latest/developerguide/gs-profile.html</a>
|
|
139
|
-
* </p>
|
|
82
|
+
* @see {@link PutSigningProfileCommand}
|
|
140
83
|
*/
|
|
141
84
|
putSigningProfile(args: PutSigningProfileCommandInput, options?: __HttpHandlerOptions): Promise<PutSigningProfileCommandOutput>;
|
|
142
85
|
putSigningProfile(args: PutSigningProfileCommandInput, cb: (err: any, data?: PutSigningProfileCommandOutput) => void): void;
|
|
143
86
|
putSigningProfile(args: PutSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSigningProfileCommandOutput) => void): void;
|
|
144
87
|
/**
|
|
145
|
-
* @
|
|
146
|
-
* <p>Removes cross-account permissions from a signing profile.</p>
|
|
88
|
+
* @see {@link RemoveProfilePermissionCommand}
|
|
147
89
|
*/
|
|
148
90
|
removeProfilePermission(args: RemoveProfilePermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemoveProfilePermissionCommandOutput>;
|
|
149
91
|
removeProfilePermission(args: RemoveProfilePermissionCommandInput, cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void): void;
|
|
150
92
|
removeProfilePermission(args: RemoveProfilePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void): void;
|
|
151
93
|
/**
|
|
152
|
-
* @
|
|
153
|
-
* <p>Changes the state of a signing job to REVOKED. This indicates that the signature is no
|
|
154
|
-
* longer valid.</p>
|
|
94
|
+
* @see {@link RevokeSignatureCommand}
|
|
155
95
|
*/
|
|
156
96
|
revokeSignature(args: RevokeSignatureCommandInput, options?: __HttpHandlerOptions): Promise<RevokeSignatureCommandOutput>;
|
|
157
97
|
revokeSignature(args: RevokeSignatureCommandInput, cb: (err: any, data?: RevokeSignatureCommandOutput) => void): void;
|
|
158
98
|
revokeSignature(args: RevokeSignatureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeSignatureCommandOutput) => void): void;
|
|
159
99
|
/**
|
|
160
|
-
* @
|
|
161
|
-
* <p>Changes the state of a signing profile to REVOKED. This indicates that signatures
|
|
162
|
-
* generated using the signing profile after an effective start date are no longer
|
|
163
|
-
* valid.</p>
|
|
100
|
+
* @see {@link RevokeSigningProfileCommand}
|
|
164
101
|
*/
|
|
165
102
|
revokeSigningProfile(args: RevokeSigningProfileCommandInput, options?: __HttpHandlerOptions): Promise<RevokeSigningProfileCommandOutput>;
|
|
166
103
|
revokeSigningProfile(args: RevokeSigningProfileCommandInput, cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void): void;
|
|
167
104
|
revokeSigningProfile(args: RevokeSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void): void;
|
|
168
105
|
/**
|
|
169
|
-
* @
|
|
170
|
-
* <p>Initiates a signing job to be performed on the code provided. Signing jobs are
|
|
171
|
-
* viewable by the <code>ListSigningJobs</code> operation for two years after they are
|
|
172
|
-
* performed. Note the following requirements: </p>
|
|
173
|
-
* <ul>
|
|
174
|
-
* <li>
|
|
175
|
-
* <p> You must create an Amazon S3 source bucket. For more information, see <a href="http://docs.aws.amazon.com/AmazonS3/latest/gsg/CreatingABucket.html">Create a Bucket</a> in the
|
|
176
|
-
* <i>Amazon S3 Getting Started Guide</i>. </p>
|
|
177
|
-
* </li>
|
|
178
|
-
* <li>
|
|
179
|
-
* <p>Your S3 source bucket must be version enabled.</p>
|
|
180
|
-
* </li>
|
|
181
|
-
* <li>
|
|
182
|
-
* <p>You must create an S3 destination bucket. Code signing uses your S3 destination
|
|
183
|
-
* bucket to write your signed code.</p>
|
|
184
|
-
* </li>
|
|
185
|
-
* <li>
|
|
186
|
-
* <p>You specify the name of the source and destination buckets when calling the
|
|
187
|
-
* <code>StartSigningJob</code> operation.</p>
|
|
188
|
-
* </li>
|
|
189
|
-
* <li>
|
|
190
|
-
* <p>You must also specify a request token that identifies your request to
|
|
191
|
-
* code signing.</p>
|
|
192
|
-
* </li>
|
|
193
|
-
* </ul>
|
|
194
|
-
* <p>You can call the <a>DescribeSigningJob</a> and the <a>ListSigningJobs</a> actions after you call
|
|
195
|
-
* <code>StartSigningJob</code>.</p>
|
|
196
|
-
* <p>For a Java example that shows how to use this action, see <a href="http://docs.aws.amazon.com/acm/latest/userguide/">http://docs.aws.amazon.com/acm/latest/userguide/</a>
|
|
197
|
-
* </p>
|
|
106
|
+
* @see {@link StartSigningJobCommand}
|
|
198
107
|
*/
|
|
199
108
|
startSigningJob(args: StartSigningJobCommandInput, options?: __HttpHandlerOptions): Promise<StartSigningJobCommandOutput>;
|
|
200
109
|
startSigningJob(args: StartSigningJobCommandInput, cb: (err: any, data?: StartSigningJobCommandOutput) => void): void;
|
|
201
110
|
startSigningJob(args: StartSigningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSigningJobCommandOutput) => void): void;
|
|
202
111
|
/**
|
|
203
|
-
* @
|
|
204
|
-
* <p>Adds one or more tags to a signing profile. Tags are labels that you can use to
|
|
205
|
-
* identify and organize your AWS resources. Each tag consists of a key and an optional
|
|
206
|
-
* value. To specify the signing profile, use its Amazon Resource Name (ARN). To specify
|
|
207
|
-
* the tag, use a key-value pair.</p>
|
|
112
|
+
* @see {@link TagResourceCommand}
|
|
208
113
|
*/
|
|
209
114
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
210
115
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
211
116
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
212
117
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* <p>Removes one or more tags from a signing profile. To remove the tags, specify a list of
|
|
215
|
-
* tag keys.</p>
|
|
118
|
+
* @see {@link UntagResourceCommand}
|
|
216
119
|
*/
|
|
217
120
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
218
121
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
219
122
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
220
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
* <p>AWS Signer is a fully managed code signing service to help you ensure the trust and
|
|
127
|
+
* integrity of your code. </p>
|
|
128
|
+
* <p>AWS Signer supports the following applications:</p>
|
|
129
|
+
*
|
|
130
|
+
* <p>With <i>code signing for AWS Lambda</i>, you can sign AWS Lambda
|
|
131
|
+
* deployment packages. Integrated support is provided for Amazon S3, Amazon CloudWatch,
|
|
132
|
+
* and AWS CloudTrail. In order to sign code, you create a signing profile and then use
|
|
133
|
+
* Signer to sign Lambda zip files in S3. </p>
|
|
134
|
+
*
|
|
135
|
+
* <p>With <i>code signing for IoT</i>, you can sign code for any IoT device that is
|
|
136
|
+
* supported by AWS. IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is
|
|
137
|
+
* integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In order to sign
|
|
138
|
+
* code, you import a third-party code signing certificate using ACM, and use that to
|
|
139
|
+
* sign updates in Amazon FreeRTOS and AWS IoT Device Management. </p>
|
|
140
|
+
* <p>For more information about AWS Signer, see the <a href="http://docs.aws.amazon.com/signer/latest/developerguide/Welcome.html">AWS Signer Developer Guide</a>.</p>
|
|
141
|
+
*
|
|
142
|
+
* <p></p>
|
|
143
|
+
*/
|
|
144
|
+
export declare class Signer extends SignerClient implements Signer {
|
|
145
|
+
}
|
|
@@ -68,7 +68,7 @@ import {
|
|
|
68
68
|
UntagResourceCommandOutput,
|
|
69
69
|
} from "./commands/UntagResourceCommand";
|
|
70
70
|
import { SignerClient } from "./SignerClient";
|
|
71
|
-
export
|
|
71
|
+
export interface Signer {
|
|
72
72
|
addProfilePermission(
|
|
73
73
|
args: AddProfilePermissionCommandInput,
|
|
74
74
|
options?: __HttpHandlerOptions
|
|
@@ -291,3 +291,4 @@ export declare class Signer extends SignerClient {
|
|
|
291
291
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
292
292
|
): void;
|
|
293
293
|
}
|
|
294
|
+
export declare class Signer extends SignerClient implements Signer {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-signer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Signer Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|