@aws-sdk/client-acm 3.168.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ACM.d.ts +274 -80
  3. package/dist-types/ts3.4/ACMClient.d.ts +218 -88
  4. package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +33 -17
  6. package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +7 -7
  22. package/dist-types/ts3.4/models/ACMServiceException.d.ts +8 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +631 -570
  25. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  26. package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  28. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  33. package/dist-types/ts3.4/waiters/index.d.ts +1 -1
  34. package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +13 -7
  35. package/package.json +35 -35
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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-acm
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-acm
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-acm
@@ -1,80 +1,274 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { ACMClient } from "./ACMClient";
3
- import { AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput } from "./commands/AddTagsToCertificateCommand";
4
- import { DeleteCertificateCommandInput, DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
5
- import { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "./commands/DescribeCertificateCommand";
6
- import { ExportCertificateCommandInput, ExportCertificateCommandOutput } from "./commands/ExportCertificateCommand";
7
- import { GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput } from "./commands/GetAccountConfigurationCommand";
8
- import { GetCertificateCommandInput, GetCertificateCommandOutput } from "./commands/GetCertificateCommand";
9
- import { ImportCertificateCommandInput, ImportCertificateCommandOutput } from "./commands/ImportCertificateCommand";
10
- import { ListCertificatesCommandInput, ListCertificatesCommandOutput } from "./commands/ListCertificatesCommand";
11
- import { ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput } from "./commands/ListTagsForCertificateCommand";
12
- import { PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput } from "./commands/PutAccountConfigurationCommand";
13
- import { RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput } from "./commands/RemoveTagsFromCertificateCommand";
14
- import { RenewCertificateCommandInput, RenewCertificateCommandOutput } from "./commands/RenewCertificateCommand";
15
- import { RequestCertificateCommandInput, RequestCertificateCommandOutput } from "./commands/RequestCertificateCommand";
16
- import { ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput } from "./commands/ResendValidationEmailCommand";
17
- import { UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput } from "./commands/UpdateCertificateOptionsCommand";
18
-
19
- export declare class ACM extends ACMClient {
20
-
21
- addTagsToCertificate(args: AddTagsToCertificateCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsToCertificateCommandOutput>;
22
- addTagsToCertificate(args: AddTagsToCertificateCommandInput, cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void): void;
23
- addTagsToCertificate(args: AddTagsToCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void): void;
24
-
25
- deleteCertificate(args: DeleteCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCertificateCommandOutput>;
26
- deleteCertificate(args: DeleteCertificateCommandInput, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
27
- deleteCertificate(args: DeleteCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
28
-
29
- describeCertificate(args: DescribeCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCertificateCommandOutput>;
30
- describeCertificate(args: DescribeCertificateCommandInput, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
31
- describeCertificate(args: DescribeCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
32
-
33
- exportCertificate(args: ExportCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ExportCertificateCommandOutput>;
34
- exportCertificate(args: ExportCertificateCommandInput, cb: (err: any, data?: ExportCertificateCommandOutput) => void): void;
35
- exportCertificate(args: ExportCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportCertificateCommandOutput) => void): void;
36
-
37
- getAccountConfiguration(args: GetAccountConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountConfigurationCommandOutput>;
38
- getAccountConfiguration(args: GetAccountConfigurationCommandInput, cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void): void;
39
- getAccountConfiguration(args: GetAccountConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void): void;
40
-
41
- getCertificate(args: GetCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetCertificateCommandOutput>;
42
- getCertificate(args: GetCertificateCommandInput, cb: (err: any, data?: GetCertificateCommandOutput) => void): void;
43
- getCertificate(args: GetCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCertificateCommandOutput) => void): void;
44
-
45
- importCertificate(args: ImportCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ImportCertificateCommandOutput>;
46
- importCertificate(args: ImportCertificateCommandInput, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
47
- importCertificate(args: ImportCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
48
-
49
- listCertificates(args: ListCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<ListCertificatesCommandOutput>;
50
- listCertificates(args: ListCertificatesCommandInput, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
51
- listCertificates(args: ListCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
52
-
53
- listTagsForCertificate(args: ListTagsForCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForCertificateCommandOutput>;
54
- listTagsForCertificate(args: ListTagsForCertificateCommandInput, cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void): void;
55
- listTagsForCertificate(args: ListTagsForCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void): void;
56
-
57
- putAccountConfiguration(args: PutAccountConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountConfigurationCommandOutput>;
58
- putAccountConfiguration(args: PutAccountConfigurationCommandInput, cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void): void;
59
- putAccountConfiguration(args: PutAccountConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void): void;
60
-
61
- removeTagsFromCertificate(args: RemoveTagsFromCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsFromCertificateCommandOutput>;
62
- removeTagsFromCertificate(args: RemoveTagsFromCertificateCommandInput, cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void): void;
63
- removeTagsFromCertificate(args: RemoveTagsFromCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void): void;
64
-
65
- renewCertificate(args: RenewCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RenewCertificateCommandOutput>;
66
- renewCertificate(args: RenewCertificateCommandInput, cb: (err: any, data?: RenewCertificateCommandOutput) => void): void;
67
- renewCertificate(args: RenewCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RenewCertificateCommandOutput) => void): void;
68
-
69
- requestCertificate(args: RequestCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RequestCertificateCommandOutput>;
70
- requestCertificate(args: RequestCertificateCommandInput, cb: (err: any, data?: RequestCertificateCommandOutput) => void): void;
71
- requestCertificate(args: RequestCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestCertificateCommandOutput) => void): void;
72
-
73
- resendValidationEmail(args: ResendValidationEmailCommandInput, options?: __HttpHandlerOptions): Promise<ResendValidationEmailCommandOutput>;
74
- resendValidationEmail(args: ResendValidationEmailCommandInput, cb: (err: any, data?: ResendValidationEmailCommandOutput) => void): void;
75
- resendValidationEmail(args: ResendValidationEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResendValidationEmailCommandOutput) => void): void;
76
-
77
- updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCertificateOptionsCommandOutput>;
78
- updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void): void;
79
- updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void): void;
80
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { ACMClient } from "./ACMClient";
3
+ import {
4
+ AddTagsToCertificateCommandInput,
5
+ AddTagsToCertificateCommandOutput,
6
+ } from "./commands/AddTagsToCertificateCommand";
7
+ import {
8
+ DeleteCertificateCommandInput,
9
+ DeleteCertificateCommandOutput,
10
+ } from "./commands/DeleteCertificateCommand";
11
+ import {
12
+ DescribeCertificateCommandInput,
13
+ DescribeCertificateCommandOutput,
14
+ } from "./commands/DescribeCertificateCommand";
15
+ import {
16
+ ExportCertificateCommandInput,
17
+ ExportCertificateCommandOutput,
18
+ } from "./commands/ExportCertificateCommand";
19
+ import {
20
+ GetAccountConfigurationCommandInput,
21
+ GetAccountConfigurationCommandOutput,
22
+ } from "./commands/GetAccountConfigurationCommand";
23
+ import {
24
+ GetCertificateCommandInput,
25
+ GetCertificateCommandOutput,
26
+ } from "./commands/GetCertificateCommand";
27
+ import {
28
+ ImportCertificateCommandInput,
29
+ ImportCertificateCommandOutput,
30
+ } from "./commands/ImportCertificateCommand";
31
+ import {
32
+ ListCertificatesCommandInput,
33
+ ListCertificatesCommandOutput,
34
+ } from "./commands/ListCertificatesCommand";
35
+ import {
36
+ ListTagsForCertificateCommandInput,
37
+ ListTagsForCertificateCommandOutput,
38
+ } from "./commands/ListTagsForCertificateCommand";
39
+ import {
40
+ PutAccountConfigurationCommandInput,
41
+ PutAccountConfigurationCommandOutput,
42
+ } from "./commands/PutAccountConfigurationCommand";
43
+ import {
44
+ RemoveTagsFromCertificateCommandInput,
45
+ RemoveTagsFromCertificateCommandOutput,
46
+ } from "./commands/RemoveTagsFromCertificateCommand";
47
+ import {
48
+ RenewCertificateCommandInput,
49
+ RenewCertificateCommandOutput,
50
+ } from "./commands/RenewCertificateCommand";
51
+ import {
52
+ RequestCertificateCommandInput,
53
+ RequestCertificateCommandOutput,
54
+ } from "./commands/RequestCertificateCommand";
55
+ import {
56
+ ResendValidationEmailCommandInput,
57
+ ResendValidationEmailCommandOutput,
58
+ } from "./commands/ResendValidationEmailCommand";
59
+ import {
60
+ UpdateCertificateOptionsCommandInput,
61
+ UpdateCertificateOptionsCommandOutput,
62
+ } from "./commands/UpdateCertificateOptionsCommand";
63
+
64
+ export declare class ACM extends ACMClient {
65
+ addTagsToCertificate(
66
+ args: AddTagsToCertificateCommandInput,
67
+ options?: __HttpHandlerOptions
68
+ ): Promise<AddTagsToCertificateCommandOutput>;
69
+ addTagsToCertificate(
70
+ args: AddTagsToCertificateCommandInput,
71
+ cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void
72
+ ): void;
73
+ addTagsToCertificate(
74
+ args: AddTagsToCertificateCommandInput,
75
+ options: __HttpHandlerOptions,
76
+ cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void
77
+ ): void;
78
+
79
+ deleteCertificate(
80
+ args: DeleteCertificateCommandInput,
81
+ options?: __HttpHandlerOptions
82
+ ): Promise<DeleteCertificateCommandOutput>;
83
+ deleteCertificate(
84
+ args: DeleteCertificateCommandInput,
85
+ cb: (err: any, data?: DeleteCertificateCommandOutput) => void
86
+ ): void;
87
+ deleteCertificate(
88
+ args: DeleteCertificateCommandInput,
89
+ options: __HttpHandlerOptions,
90
+ cb: (err: any, data?: DeleteCertificateCommandOutput) => void
91
+ ): void;
92
+
93
+ describeCertificate(
94
+ args: DescribeCertificateCommandInput,
95
+ options?: __HttpHandlerOptions
96
+ ): Promise<DescribeCertificateCommandOutput>;
97
+ describeCertificate(
98
+ args: DescribeCertificateCommandInput,
99
+ cb: (err: any, data?: DescribeCertificateCommandOutput) => void
100
+ ): void;
101
+ describeCertificate(
102
+ args: DescribeCertificateCommandInput,
103
+ options: __HttpHandlerOptions,
104
+ cb: (err: any, data?: DescribeCertificateCommandOutput) => void
105
+ ): void;
106
+
107
+ exportCertificate(
108
+ args: ExportCertificateCommandInput,
109
+ options?: __HttpHandlerOptions
110
+ ): Promise<ExportCertificateCommandOutput>;
111
+ exportCertificate(
112
+ args: ExportCertificateCommandInput,
113
+ cb: (err: any, data?: ExportCertificateCommandOutput) => void
114
+ ): void;
115
+ exportCertificate(
116
+ args: ExportCertificateCommandInput,
117
+ options: __HttpHandlerOptions,
118
+ cb: (err: any, data?: ExportCertificateCommandOutput) => void
119
+ ): void;
120
+
121
+ getAccountConfiguration(
122
+ args: GetAccountConfigurationCommandInput,
123
+ options?: __HttpHandlerOptions
124
+ ): Promise<GetAccountConfigurationCommandOutput>;
125
+ getAccountConfiguration(
126
+ args: GetAccountConfigurationCommandInput,
127
+ cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void
128
+ ): void;
129
+ getAccountConfiguration(
130
+ args: GetAccountConfigurationCommandInput,
131
+ options: __HttpHandlerOptions,
132
+ cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void
133
+ ): void;
134
+
135
+ getCertificate(
136
+ args: GetCertificateCommandInput,
137
+ options?: __HttpHandlerOptions
138
+ ): Promise<GetCertificateCommandOutput>;
139
+ getCertificate(
140
+ args: GetCertificateCommandInput,
141
+ cb: (err: any, data?: GetCertificateCommandOutput) => void
142
+ ): void;
143
+ getCertificate(
144
+ args: GetCertificateCommandInput,
145
+ options: __HttpHandlerOptions,
146
+ cb: (err: any, data?: GetCertificateCommandOutput) => void
147
+ ): void;
148
+
149
+ importCertificate(
150
+ args: ImportCertificateCommandInput,
151
+ options?: __HttpHandlerOptions
152
+ ): Promise<ImportCertificateCommandOutput>;
153
+ importCertificate(
154
+ args: ImportCertificateCommandInput,
155
+ cb: (err: any, data?: ImportCertificateCommandOutput) => void
156
+ ): void;
157
+ importCertificate(
158
+ args: ImportCertificateCommandInput,
159
+ options: __HttpHandlerOptions,
160
+ cb: (err: any, data?: ImportCertificateCommandOutput) => void
161
+ ): void;
162
+
163
+ listCertificates(
164
+ args: ListCertificatesCommandInput,
165
+ options?: __HttpHandlerOptions
166
+ ): Promise<ListCertificatesCommandOutput>;
167
+ listCertificates(
168
+ args: ListCertificatesCommandInput,
169
+ cb: (err: any, data?: ListCertificatesCommandOutput) => void
170
+ ): void;
171
+ listCertificates(
172
+ args: ListCertificatesCommandInput,
173
+ options: __HttpHandlerOptions,
174
+ cb: (err: any, data?: ListCertificatesCommandOutput) => void
175
+ ): void;
176
+
177
+ listTagsForCertificate(
178
+ args: ListTagsForCertificateCommandInput,
179
+ options?: __HttpHandlerOptions
180
+ ): Promise<ListTagsForCertificateCommandOutput>;
181
+ listTagsForCertificate(
182
+ args: ListTagsForCertificateCommandInput,
183
+ cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void
184
+ ): void;
185
+ listTagsForCertificate(
186
+ args: ListTagsForCertificateCommandInput,
187
+ options: __HttpHandlerOptions,
188
+ cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void
189
+ ): void;
190
+
191
+ putAccountConfiguration(
192
+ args: PutAccountConfigurationCommandInput,
193
+ options?: __HttpHandlerOptions
194
+ ): Promise<PutAccountConfigurationCommandOutput>;
195
+ putAccountConfiguration(
196
+ args: PutAccountConfigurationCommandInput,
197
+ cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void
198
+ ): void;
199
+ putAccountConfiguration(
200
+ args: PutAccountConfigurationCommandInput,
201
+ options: __HttpHandlerOptions,
202
+ cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void
203
+ ): void;
204
+
205
+ removeTagsFromCertificate(
206
+ args: RemoveTagsFromCertificateCommandInput,
207
+ options?: __HttpHandlerOptions
208
+ ): Promise<RemoveTagsFromCertificateCommandOutput>;
209
+ removeTagsFromCertificate(
210
+ args: RemoveTagsFromCertificateCommandInput,
211
+ cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void
212
+ ): void;
213
+ removeTagsFromCertificate(
214
+ args: RemoveTagsFromCertificateCommandInput,
215
+ options: __HttpHandlerOptions,
216
+ cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void
217
+ ): void;
218
+
219
+ renewCertificate(
220
+ args: RenewCertificateCommandInput,
221
+ options?: __HttpHandlerOptions
222
+ ): Promise<RenewCertificateCommandOutput>;
223
+ renewCertificate(
224
+ args: RenewCertificateCommandInput,
225
+ cb: (err: any, data?: RenewCertificateCommandOutput) => void
226
+ ): void;
227
+ renewCertificate(
228
+ args: RenewCertificateCommandInput,
229
+ options: __HttpHandlerOptions,
230
+ cb: (err: any, data?: RenewCertificateCommandOutput) => void
231
+ ): void;
232
+
233
+ requestCertificate(
234
+ args: RequestCertificateCommandInput,
235
+ options?: __HttpHandlerOptions
236
+ ): Promise<RequestCertificateCommandOutput>;
237
+ requestCertificate(
238
+ args: RequestCertificateCommandInput,
239
+ cb: (err: any, data?: RequestCertificateCommandOutput) => void
240
+ ): void;
241
+ requestCertificate(
242
+ args: RequestCertificateCommandInput,
243
+ options: __HttpHandlerOptions,
244
+ cb: (err: any, data?: RequestCertificateCommandOutput) => void
245
+ ): void;
246
+
247
+ resendValidationEmail(
248
+ args: ResendValidationEmailCommandInput,
249
+ options?: __HttpHandlerOptions
250
+ ): Promise<ResendValidationEmailCommandOutput>;
251
+ resendValidationEmail(
252
+ args: ResendValidationEmailCommandInput,
253
+ cb: (err: any, data?: ResendValidationEmailCommandOutput) => void
254
+ ): void;
255
+ resendValidationEmail(
256
+ args: ResendValidationEmailCommandInput,
257
+ options: __HttpHandlerOptions,
258
+ cb: (err: any, data?: ResendValidationEmailCommandOutput) => void
259
+ ): void;
260
+
261
+ updateCertificateOptions(
262
+ args: UpdateCertificateOptionsCommandInput,
263
+ options?: __HttpHandlerOptions
264
+ ): Promise<UpdateCertificateOptionsCommandOutput>;
265
+ updateCertificateOptions(
266
+ args: UpdateCertificateOptionsCommandInput,
267
+ cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void
268
+ ): void;
269
+ updateCertificateOptions(
270
+ args: UpdateCertificateOptionsCommandInput,
271
+ options: __HttpHandlerOptions,
272
+ cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void
273
+ ): void;
274
+ }