@aws-sdk/client-acm 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.
Files changed (35) hide show
  1. package/CHANGELOG.md +8 -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
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { ImportCertificateRequest, ImportCertificateResponse } from "../models/models_0";
5
- export interface ImportCertificateCommandInput extends ImportCertificateRequest {
6
- }
7
- export interface ImportCertificateCommandOutput extends ImportCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ImportCertificateCommand extends $Command<ImportCertificateCommandInput, ImportCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: ImportCertificateCommandInput;
12
- constructor(input: ImportCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportCertificateCommandInput, ImportCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import {
14
+ ImportCertificateRequest,
15
+ ImportCertificateResponse,
16
+ } from "../models/models_0";
17
+ export interface ImportCertificateCommandInput
18
+ extends ImportCertificateRequest {}
19
+ export interface ImportCertificateCommandOutput
20
+ extends ImportCertificateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ImportCertificateCommand extends $Command<
24
+ ImportCertificateCommandInput,
25
+ ImportCertificateCommandOutput,
26
+ ACMClientResolvedConfig
27
+ > {
28
+ readonly input: ImportCertificateCommandInput;
29
+ constructor(input: ImportCertificateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ACMClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ImportCertificateCommandInput, ImportCertificateCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_0";
5
- export interface ListCertificatesCommandInput extends ListCertificatesRequest {
6
- }
7
- export interface ListCertificatesCommandOutput extends ListCertificatesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListCertificatesCommand extends $Command<ListCertificatesCommandInput, ListCertificatesCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: ListCertificatesCommandInput;
12
- constructor(input: ListCertificatesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCertificatesCommandInput, ListCertificatesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import {
14
+ ListCertificatesRequest,
15
+ ListCertificatesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListCertificatesCommandInput extends ListCertificatesRequest {}
18
+ export interface ListCertificatesCommandOutput
19
+ extends ListCertificatesResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListCertificatesCommand extends $Command<
23
+ ListCertificatesCommandInput,
24
+ ListCertificatesCommandOutput,
25
+ ACMClientResolvedConfig
26
+ > {
27
+ readonly input: ListCertificatesCommandInput;
28
+ constructor(input: ListCertificatesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ACMClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListCertificatesCommandInput, ListCertificatesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { ListTagsForCertificateRequest, ListTagsForCertificateResponse } from "../models/models_0";
5
- export interface ListTagsForCertificateCommandInput extends ListTagsForCertificateRequest {
6
- }
7
- export interface ListTagsForCertificateCommandOutput extends ListTagsForCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForCertificateCommand extends $Command<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: ListTagsForCertificateCommandInput;
12
- constructor(input: ListTagsForCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import {
14
+ ListTagsForCertificateRequest,
15
+ ListTagsForCertificateResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForCertificateCommandInput
18
+ extends ListTagsForCertificateRequest {}
19
+ export interface ListTagsForCertificateCommandOutput
20
+ extends ListTagsForCertificateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForCertificateCommand extends $Command<
24
+ ListTagsForCertificateCommandInput,
25
+ ListTagsForCertificateCommandOutput,
26
+ ACMClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForCertificateCommandInput;
29
+ constructor(input: ListTagsForCertificateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ACMClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListTagsForCertificateCommandInput,
37
+ ListTagsForCertificateCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { PutAccountConfigurationRequest } from "../models/models_0";
5
- export interface PutAccountConfigurationCommandInput extends PutAccountConfigurationRequest {
6
- }
7
- export interface PutAccountConfigurationCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class PutAccountConfigurationCommand extends $Command<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: PutAccountConfigurationCommandInput;
12
- constructor(input: PutAccountConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { PutAccountConfigurationRequest } from "../models/models_0";
14
+ export interface PutAccountConfigurationCommandInput
15
+ extends PutAccountConfigurationRequest {}
16
+ export interface PutAccountConfigurationCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class PutAccountConfigurationCommand extends $Command<
20
+ PutAccountConfigurationCommandInput,
21
+ PutAccountConfigurationCommandOutput,
22
+ ACMClientResolvedConfig
23
+ > {
24
+ readonly input: PutAccountConfigurationCommandInput;
25
+ constructor(input: PutAccountConfigurationCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ACMClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ PutAccountConfigurationCommandInput,
33
+ PutAccountConfigurationCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { RemoveTagsFromCertificateRequest } from "../models/models_0";
5
- export interface RemoveTagsFromCertificateCommandInput extends RemoveTagsFromCertificateRequest {
6
- }
7
- export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RemoveTagsFromCertificateCommand extends $Command<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: RemoveTagsFromCertificateCommandInput;
12
- constructor(input: RemoveTagsFromCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { RemoveTagsFromCertificateRequest } from "../models/models_0";
14
+ export interface RemoveTagsFromCertificateCommandInput
15
+ extends RemoveTagsFromCertificateRequest {}
16
+ export interface RemoveTagsFromCertificateCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class RemoveTagsFromCertificateCommand extends $Command<
20
+ RemoveTagsFromCertificateCommandInput,
21
+ RemoveTagsFromCertificateCommandOutput,
22
+ ACMClientResolvedConfig
23
+ > {
24
+ readonly input: RemoveTagsFromCertificateCommandInput;
25
+ constructor(input: RemoveTagsFromCertificateCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ACMClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ RemoveTagsFromCertificateCommandInput,
33
+ RemoveTagsFromCertificateCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { RenewCertificateRequest } from "../models/models_0";
5
- export interface RenewCertificateCommandInput extends RenewCertificateRequest {
6
- }
7
- export interface RenewCertificateCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RenewCertificateCommand extends $Command<RenewCertificateCommandInput, RenewCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: RenewCertificateCommandInput;
12
- constructor(input: RenewCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RenewCertificateCommandInput, RenewCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { RenewCertificateRequest } from "../models/models_0";
14
+ export interface RenewCertificateCommandInput extends RenewCertificateRequest {}
15
+ export interface RenewCertificateCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class RenewCertificateCommand extends $Command<
18
+ RenewCertificateCommandInput,
19
+ RenewCertificateCommandOutput,
20
+ ACMClientResolvedConfig
21
+ > {
22
+ readonly input: RenewCertificateCommandInput;
23
+ constructor(input: RenewCertificateCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ACMClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<RenewCertificateCommandInput, RenewCertificateCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { RequestCertificateRequest, RequestCertificateResponse } from "../models/models_0";
5
- export interface RequestCertificateCommandInput extends RequestCertificateRequest {
6
- }
7
- export interface RequestCertificateCommandOutput extends RequestCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RequestCertificateCommand extends $Command<RequestCertificateCommandInput, RequestCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: RequestCertificateCommandInput;
12
- constructor(input: RequestCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RequestCertificateCommandInput, RequestCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import {
14
+ RequestCertificateRequest,
15
+ RequestCertificateResponse,
16
+ } from "../models/models_0";
17
+ export interface RequestCertificateCommandInput
18
+ extends RequestCertificateRequest {}
19
+ export interface RequestCertificateCommandOutput
20
+ extends RequestCertificateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RequestCertificateCommand extends $Command<
24
+ RequestCertificateCommandInput,
25
+ RequestCertificateCommandOutput,
26
+ ACMClientResolvedConfig
27
+ > {
28
+ readonly input: RequestCertificateCommandInput;
29
+ constructor(input: RequestCertificateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ACMClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<RequestCertificateCommandInput, RequestCertificateCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { ResendValidationEmailRequest } from "../models/models_0";
5
- export interface ResendValidationEmailCommandInput extends ResendValidationEmailRequest {
6
- }
7
- export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class ResendValidationEmailCommand extends $Command<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: ResendValidationEmailCommandInput;
12
- constructor(input: ResendValidationEmailCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { ResendValidationEmailRequest } from "../models/models_0";
14
+ export interface ResendValidationEmailCommandInput
15
+ extends ResendValidationEmailRequest {}
16
+ export interface ResendValidationEmailCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class ResendValidationEmailCommand extends $Command<
19
+ ResendValidationEmailCommandInput,
20
+ ResendValidationEmailCommandOutput,
21
+ ACMClientResolvedConfig
22
+ > {
23
+ readonly input: ResendValidationEmailCommandInput;
24
+ constructor(input: ResendValidationEmailCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: ACMClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ ResendValidationEmailCommandInput,
32
+ ResendValidationEmailCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { UpdateCertificateOptionsRequest } from "../models/models_0";
5
- export interface UpdateCertificateOptionsCommandInput extends UpdateCertificateOptionsRequest {
6
- }
7
- export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateCertificateOptionsCommand extends $Command<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: UpdateCertificateOptionsCommandInput;
12
- constructor(input: UpdateCertificateOptionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { UpdateCertificateOptionsRequest } from "../models/models_0";
14
+ export interface UpdateCertificateOptionsCommandInput
15
+ extends UpdateCertificateOptionsRequest {}
16
+ export interface UpdateCertificateOptionsCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class UpdateCertificateOptionsCommand extends $Command<
20
+ UpdateCertificateOptionsCommandInput,
21
+ UpdateCertificateOptionsCommandOutput,
22
+ ACMClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateCertificateOptionsCommandInput;
25
+ constructor(input: UpdateCertificateOptionsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ACMClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ UpdateCertificateOptionsCommandInput,
33
+ UpdateCertificateOptionsCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,15 +1,15 @@
1
- export * from "./AddTagsToCertificateCommand";
2
- export * from "./DeleteCertificateCommand";
3
- export * from "./DescribeCertificateCommand";
4
- export * from "./ExportCertificateCommand";
5
- export * from "./GetAccountConfigurationCommand";
6
- export * from "./GetCertificateCommand";
7
- export * from "./ImportCertificateCommand";
8
- export * from "./ListCertificatesCommand";
9
- export * from "./ListTagsForCertificateCommand";
10
- export * from "./PutAccountConfigurationCommand";
11
- export * from "./RemoveTagsFromCertificateCommand";
12
- export * from "./RenewCertificateCommand";
13
- export * from "./RequestCertificateCommand";
14
- export * from "./ResendValidationEmailCommand";
15
- export * from "./UpdateCertificateOptionsCommand";
1
+ export * from "./AddTagsToCertificateCommand";
2
+ export * from "./DeleteCertificateCommand";
3
+ export * from "./DescribeCertificateCommand";
4
+ export * from "./ExportCertificateCommand";
5
+ export * from "./GetAccountConfigurationCommand";
6
+ export * from "./GetCertificateCommand";
7
+ export * from "./ImportCertificateCommand";
8
+ export * from "./ListCertificatesCommand";
9
+ export * from "./ListTagsForCertificateCommand";
10
+ export * from "./PutAccountConfigurationCommand";
11
+ export * from "./RemoveTagsFromCertificateCommand";
12
+ export * from "./RenewCertificateCommand";
13
+ export * from "./RequestCertificateCommand";
14
+ export * from "./ResendValidationEmailCommand";
15
+ export * from "./UpdateCertificateOptionsCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,7 +1,7 @@
1
- export * from "./ACM";
2
- export * from "./ACMClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export * from "./waiters";
7
- export { ACMServiceException } from "./models/ACMServiceException";
1
+ export * from "./ACM";
2
+ export * from "./ACMClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
7
+ export { ACMServiceException } from "./models/ACMServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ACMServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class ACMServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";