@aws-sdk/client-signer 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/Signer.d.ts +310 -90
- package/dist-types/ts3.4/SignerClient.d.ts +231 -90
- package/dist-types/ts3.4/commands/AddProfilePermissionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CancelSigningProfileCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeSigningJobCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSigningPlatformCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSigningProfileCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListProfilePermissionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListSigningJobsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListSigningPlatformsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListSigningProfilesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutSigningProfileCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RemoveProfilePermissionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RevokeSignatureCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RevokeSigningProfileCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StartSigningJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +17 -17
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/SignerServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +744 -689
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListSigningJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSigningPlatformsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSigningProfilesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +209 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForSuccessfulSigningJob.d.ts +13 -7
- package/package.json +35 -35
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-signer
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-signer
|
|
@@ -1,90 +1,310 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
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
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
AddProfilePermissionCommandInput,
|
|
4
|
+
AddProfilePermissionCommandOutput,
|
|
5
|
+
} from "./commands/AddProfilePermissionCommand";
|
|
6
|
+
import {
|
|
7
|
+
CancelSigningProfileCommandInput,
|
|
8
|
+
CancelSigningProfileCommandOutput,
|
|
9
|
+
} from "./commands/CancelSigningProfileCommand";
|
|
10
|
+
import {
|
|
11
|
+
DescribeSigningJobCommandInput,
|
|
12
|
+
DescribeSigningJobCommandOutput,
|
|
13
|
+
} from "./commands/DescribeSigningJobCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetSigningPlatformCommandInput,
|
|
16
|
+
GetSigningPlatformCommandOutput,
|
|
17
|
+
} from "./commands/GetSigningPlatformCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetSigningProfileCommandInput,
|
|
20
|
+
GetSigningProfileCommandOutput,
|
|
21
|
+
} from "./commands/GetSigningProfileCommand";
|
|
22
|
+
import {
|
|
23
|
+
ListProfilePermissionsCommandInput,
|
|
24
|
+
ListProfilePermissionsCommandOutput,
|
|
25
|
+
} from "./commands/ListProfilePermissionsCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListSigningJobsCommandInput,
|
|
28
|
+
ListSigningJobsCommandOutput,
|
|
29
|
+
} from "./commands/ListSigningJobsCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListSigningPlatformsCommandInput,
|
|
32
|
+
ListSigningPlatformsCommandOutput,
|
|
33
|
+
} from "./commands/ListSigningPlatformsCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListSigningProfilesCommandInput,
|
|
36
|
+
ListSigningProfilesCommandOutput,
|
|
37
|
+
} from "./commands/ListSigningProfilesCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListTagsForResourceCommandInput,
|
|
40
|
+
ListTagsForResourceCommandOutput,
|
|
41
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
PutSigningProfileCommandInput,
|
|
44
|
+
PutSigningProfileCommandOutput,
|
|
45
|
+
} from "./commands/PutSigningProfileCommand";
|
|
46
|
+
import {
|
|
47
|
+
RemoveProfilePermissionCommandInput,
|
|
48
|
+
RemoveProfilePermissionCommandOutput,
|
|
49
|
+
} from "./commands/RemoveProfilePermissionCommand";
|
|
50
|
+
import {
|
|
51
|
+
RevokeSignatureCommandInput,
|
|
52
|
+
RevokeSignatureCommandOutput,
|
|
53
|
+
} from "./commands/RevokeSignatureCommand";
|
|
54
|
+
import {
|
|
55
|
+
RevokeSigningProfileCommandInput,
|
|
56
|
+
RevokeSigningProfileCommandOutput,
|
|
57
|
+
} from "./commands/RevokeSigningProfileCommand";
|
|
58
|
+
import {
|
|
59
|
+
StartSigningJobCommandInput,
|
|
60
|
+
StartSigningJobCommandOutput,
|
|
61
|
+
} from "./commands/StartSigningJobCommand";
|
|
62
|
+
import {
|
|
63
|
+
TagResourceCommandInput,
|
|
64
|
+
TagResourceCommandOutput,
|
|
65
|
+
} from "./commands/TagResourceCommand";
|
|
66
|
+
import {
|
|
67
|
+
UntagResourceCommandInput,
|
|
68
|
+
UntagResourceCommandOutput,
|
|
69
|
+
} from "./commands/UntagResourceCommand";
|
|
70
|
+
import { SignerClient } from "./SignerClient";
|
|
71
|
+
|
|
72
|
+
export declare class Signer extends SignerClient {
|
|
73
|
+
addProfilePermission(
|
|
74
|
+
args: AddProfilePermissionCommandInput,
|
|
75
|
+
options?: __HttpHandlerOptions
|
|
76
|
+
): Promise<AddProfilePermissionCommandOutput>;
|
|
77
|
+
addProfilePermission(
|
|
78
|
+
args: AddProfilePermissionCommandInput,
|
|
79
|
+
cb: (err: any, data?: AddProfilePermissionCommandOutput) => void
|
|
80
|
+
): void;
|
|
81
|
+
addProfilePermission(
|
|
82
|
+
args: AddProfilePermissionCommandInput,
|
|
83
|
+
options: __HttpHandlerOptions,
|
|
84
|
+
cb: (err: any, data?: AddProfilePermissionCommandOutput) => void
|
|
85
|
+
): void;
|
|
86
|
+
|
|
87
|
+
cancelSigningProfile(
|
|
88
|
+
args: CancelSigningProfileCommandInput,
|
|
89
|
+
options?: __HttpHandlerOptions
|
|
90
|
+
): Promise<CancelSigningProfileCommandOutput>;
|
|
91
|
+
cancelSigningProfile(
|
|
92
|
+
args: CancelSigningProfileCommandInput,
|
|
93
|
+
cb: (err: any, data?: CancelSigningProfileCommandOutput) => void
|
|
94
|
+
): void;
|
|
95
|
+
cancelSigningProfile(
|
|
96
|
+
args: CancelSigningProfileCommandInput,
|
|
97
|
+
options: __HttpHandlerOptions,
|
|
98
|
+
cb: (err: any, data?: CancelSigningProfileCommandOutput) => void
|
|
99
|
+
): void;
|
|
100
|
+
|
|
101
|
+
describeSigningJob(
|
|
102
|
+
args: DescribeSigningJobCommandInput,
|
|
103
|
+
options?: __HttpHandlerOptions
|
|
104
|
+
): Promise<DescribeSigningJobCommandOutput>;
|
|
105
|
+
describeSigningJob(
|
|
106
|
+
args: DescribeSigningJobCommandInput,
|
|
107
|
+
cb: (err: any, data?: DescribeSigningJobCommandOutput) => void
|
|
108
|
+
): void;
|
|
109
|
+
describeSigningJob(
|
|
110
|
+
args: DescribeSigningJobCommandInput,
|
|
111
|
+
options: __HttpHandlerOptions,
|
|
112
|
+
cb: (err: any, data?: DescribeSigningJobCommandOutput) => void
|
|
113
|
+
): void;
|
|
114
|
+
|
|
115
|
+
getSigningPlatform(
|
|
116
|
+
args: GetSigningPlatformCommandInput,
|
|
117
|
+
options?: __HttpHandlerOptions
|
|
118
|
+
): Promise<GetSigningPlatformCommandOutput>;
|
|
119
|
+
getSigningPlatform(
|
|
120
|
+
args: GetSigningPlatformCommandInput,
|
|
121
|
+
cb: (err: any, data?: GetSigningPlatformCommandOutput) => void
|
|
122
|
+
): void;
|
|
123
|
+
getSigningPlatform(
|
|
124
|
+
args: GetSigningPlatformCommandInput,
|
|
125
|
+
options: __HttpHandlerOptions,
|
|
126
|
+
cb: (err: any, data?: GetSigningPlatformCommandOutput) => void
|
|
127
|
+
): void;
|
|
128
|
+
|
|
129
|
+
getSigningProfile(
|
|
130
|
+
args: GetSigningProfileCommandInput,
|
|
131
|
+
options?: __HttpHandlerOptions
|
|
132
|
+
): Promise<GetSigningProfileCommandOutput>;
|
|
133
|
+
getSigningProfile(
|
|
134
|
+
args: GetSigningProfileCommandInput,
|
|
135
|
+
cb: (err: any, data?: GetSigningProfileCommandOutput) => void
|
|
136
|
+
): void;
|
|
137
|
+
getSigningProfile(
|
|
138
|
+
args: GetSigningProfileCommandInput,
|
|
139
|
+
options: __HttpHandlerOptions,
|
|
140
|
+
cb: (err: any, data?: GetSigningProfileCommandOutput) => void
|
|
141
|
+
): void;
|
|
142
|
+
|
|
143
|
+
listProfilePermissions(
|
|
144
|
+
args: ListProfilePermissionsCommandInput,
|
|
145
|
+
options?: __HttpHandlerOptions
|
|
146
|
+
): Promise<ListProfilePermissionsCommandOutput>;
|
|
147
|
+
listProfilePermissions(
|
|
148
|
+
args: ListProfilePermissionsCommandInput,
|
|
149
|
+
cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void
|
|
150
|
+
): void;
|
|
151
|
+
listProfilePermissions(
|
|
152
|
+
args: ListProfilePermissionsCommandInput,
|
|
153
|
+
options: __HttpHandlerOptions,
|
|
154
|
+
cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void
|
|
155
|
+
): void;
|
|
156
|
+
|
|
157
|
+
listSigningJobs(
|
|
158
|
+
args: ListSigningJobsCommandInput,
|
|
159
|
+
options?: __HttpHandlerOptions
|
|
160
|
+
): Promise<ListSigningJobsCommandOutput>;
|
|
161
|
+
listSigningJobs(
|
|
162
|
+
args: ListSigningJobsCommandInput,
|
|
163
|
+
cb: (err: any, data?: ListSigningJobsCommandOutput) => void
|
|
164
|
+
): void;
|
|
165
|
+
listSigningJobs(
|
|
166
|
+
args: ListSigningJobsCommandInput,
|
|
167
|
+
options: __HttpHandlerOptions,
|
|
168
|
+
cb: (err: any, data?: ListSigningJobsCommandOutput) => void
|
|
169
|
+
): void;
|
|
170
|
+
|
|
171
|
+
listSigningPlatforms(
|
|
172
|
+
args: ListSigningPlatformsCommandInput,
|
|
173
|
+
options?: __HttpHandlerOptions
|
|
174
|
+
): Promise<ListSigningPlatformsCommandOutput>;
|
|
175
|
+
listSigningPlatforms(
|
|
176
|
+
args: ListSigningPlatformsCommandInput,
|
|
177
|
+
cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void
|
|
178
|
+
): void;
|
|
179
|
+
listSigningPlatforms(
|
|
180
|
+
args: ListSigningPlatformsCommandInput,
|
|
181
|
+
options: __HttpHandlerOptions,
|
|
182
|
+
cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void
|
|
183
|
+
): void;
|
|
184
|
+
|
|
185
|
+
listSigningProfiles(
|
|
186
|
+
args: ListSigningProfilesCommandInput,
|
|
187
|
+
options?: __HttpHandlerOptions
|
|
188
|
+
): Promise<ListSigningProfilesCommandOutput>;
|
|
189
|
+
listSigningProfiles(
|
|
190
|
+
args: ListSigningProfilesCommandInput,
|
|
191
|
+
cb: (err: any, data?: ListSigningProfilesCommandOutput) => void
|
|
192
|
+
): void;
|
|
193
|
+
listSigningProfiles(
|
|
194
|
+
args: ListSigningProfilesCommandInput,
|
|
195
|
+
options: __HttpHandlerOptions,
|
|
196
|
+
cb: (err: any, data?: ListSigningProfilesCommandOutput) => void
|
|
197
|
+
): void;
|
|
198
|
+
|
|
199
|
+
listTagsForResource(
|
|
200
|
+
args: ListTagsForResourceCommandInput,
|
|
201
|
+
options?: __HttpHandlerOptions
|
|
202
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
203
|
+
listTagsForResource(
|
|
204
|
+
args: ListTagsForResourceCommandInput,
|
|
205
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
206
|
+
): void;
|
|
207
|
+
listTagsForResource(
|
|
208
|
+
args: ListTagsForResourceCommandInput,
|
|
209
|
+
options: __HttpHandlerOptions,
|
|
210
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
211
|
+
): void;
|
|
212
|
+
|
|
213
|
+
putSigningProfile(
|
|
214
|
+
args: PutSigningProfileCommandInput,
|
|
215
|
+
options?: __HttpHandlerOptions
|
|
216
|
+
): Promise<PutSigningProfileCommandOutput>;
|
|
217
|
+
putSigningProfile(
|
|
218
|
+
args: PutSigningProfileCommandInput,
|
|
219
|
+
cb: (err: any, data?: PutSigningProfileCommandOutput) => void
|
|
220
|
+
): void;
|
|
221
|
+
putSigningProfile(
|
|
222
|
+
args: PutSigningProfileCommandInput,
|
|
223
|
+
options: __HttpHandlerOptions,
|
|
224
|
+
cb: (err: any, data?: PutSigningProfileCommandOutput) => void
|
|
225
|
+
): void;
|
|
226
|
+
|
|
227
|
+
removeProfilePermission(
|
|
228
|
+
args: RemoveProfilePermissionCommandInput,
|
|
229
|
+
options?: __HttpHandlerOptions
|
|
230
|
+
): Promise<RemoveProfilePermissionCommandOutput>;
|
|
231
|
+
removeProfilePermission(
|
|
232
|
+
args: RemoveProfilePermissionCommandInput,
|
|
233
|
+
cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void
|
|
234
|
+
): void;
|
|
235
|
+
removeProfilePermission(
|
|
236
|
+
args: RemoveProfilePermissionCommandInput,
|
|
237
|
+
options: __HttpHandlerOptions,
|
|
238
|
+
cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void
|
|
239
|
+
): void;
|
|
240
|
+
|
|
241
|
+
revokeSignature(
|
|
242
|
+
args: RevokeSignatureCommandInput,
|
|
243
|
+
options?: __HttpHandlerOptions
|
|
244
|
+
): Promise<RevokeSignatureCommandOutput>;
|
|
245
|
+
revokeSignature(
|
|
246
|
+
args: RevokeSignatureCommandInput,
|
|
247
|
+
cb: (err: any, data?: RevokeSignatureCommandOutput) => void
|
|
248
|
+
): void;
|
|
249
|
+
revokeSignature(
|
|
250
|
+
args: RevokeSignatureCommandInput,
|
|
251
|
+
options: __HttpHandlerOptions,
|
|
252
|
+
cb: (err: any, data?: RevokeSignatureCommandOutput) => void
|
|
253
|
+
): void;
|
|
254
|
+
|
|
255
|
+
revokeSigningProfile(
|
|
256
|
+
args: RevokeSigningProfileCommandInput,
|
|
257
|
+
options?: __HttpHandlerOptions
|
|
258
|
+
): Promise<RevokeSigningProfileCommandOutput>;
|
|
259
|
+
revokeSigningProfile(
|
|
260
|
+
args: RevokeSigningProfileCommandInput,
|
|
261
|
+
cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void
|
|
262
|
+
): void;
|
|
263
|
+
revokeSigningProfile(
|
|
264
|
+
args: RevokeSigningProfileCommandInput,
|
|
265
|
+
options: __HttpHandlerOptions,
|
|
266
|
+
cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void
|
|
267
|
+
): void;
|
|
268
|
+
|
|
269
|
+
startSigningJob(
|
|
270
|
+
args: StartSigningJobCommandInput,
|
|
271
|
+
options?: __HttpHandlerOptions
|
|
272
|
+
): Promise<StartSigningJobCommandOutput>;
|
|
273
|
+
startSigningJob(
|
|
274
|
+
args: StartSigningJobCommandInput,
|
|
275
|
+
cb: (err: any, data?: StartSigningJobCommandOutput) => void
|
|
276
|
+
): void;
|
|
277
|
+
startSigningJob(
|
|
278
|
+
args: StartSigningJobCommandInput,
|
|
279
|
+
options: __HttpHandlerOptions,
|
|
280
|
+
cb: (err: any, data?: StartSigningJobCommandOutput) => void
|
|
281
|
+
): void;
|
|
282
|
+
|
|
283
|
+
tagResource(
|
|
284
|
+
args: TagResourceCommandInput,
|
|
285
|
+
options?: __HttpHandlerOptions
|
|
286
|
+
): Promise<TagResourceCommandOutput>;
|
|
287
|
+
tagResource(
|
|
288
|
+
args: TagResourceCommandInput,
|
|
289
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
290
|
+
): void;
|
|
291
|
+
tagResource(
|
|
292
|
+
args: TagResourceCommandInput,
|
|
293
|
+
options: __HttpHandlerOptions,
|
|
294
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
295
|
+
): void;
|
|
296
|
+
|
|
297
|
+
untagResource(
|
|
298
|
+
args: UntagResourceCommandInput,
|
|
299
|
+
options?: __HttpHandlerOptions
|
|
300
|
+
): Promise<UntagResourceCommandOutput>;
|
|
301
|
+
untagResource(
|
|
302
|
+
args: UntagResourceCommandInput,
|
|
303
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
304
|
+
): void;
|
|
305
|
+
untagResource(
|
|
306
|
+
args: UntagResourceCommandInput,
|
|
307
|
+
options: __HttpHandlerOptions,
|
|
308
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
309
|
+
): void;
|
|
310
|
+
}
|