@aws-sdk/client-acm 3.1076.0 → 3.1077.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/README.md +161 -7
- package/dist-cjs/index.js +1406 -152
- package/dist-es/ACM.js +60 -0
- package/dist-es/commands/AddTagsToCertificateCommand.js +4 -1
- package/dist-es/commands/CreateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/CreateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteCertificateCommand.js +4 -1
- package/dist-es/commands/DescribeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DescribeCertificateCommand.js +4 -1
- package/dist-es/commands/ExportCertificateCommand.js +4 -1
- package/dist-es/commands/GetAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +19 -0
- package/dist-es/commands/GetCertificateCommand.js +4 -1
- package/dist-es/commands/ImportCertificateCommand.js +4 -1
- package/dist-es/commands/ListAcmeAccountsCommand.js +19 -0
- package/dist-es/commands/ListAcmeDomainValidationsCommand.js +19 -0
- package/dist-es/commands/ListAcmeEndpointsCommand.js +19 -0
- package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +19 -0
- package/dist-es/commands/ListCertificatesCommand.js +4 -1
- package/dist-es/commands/ListTagsForCertificateCommand.js +4 -1
- package/dist-es/commands/ListTagsForResourceCommand.js +19 -0
- package/dist-es/commands/PutAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +4 -1
- package/dist-es/commands/RenewCertificateCommand.js +4 -1
- package/dist-es/commands/RequestCertificateCommand.js +4 -1
- package/dist-es/commands/ResendValidationEmailCommand.js +4 -1
- package/dist-es/commands/RevokeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/RevokeCertificateCommand.js +4 -1
- package/dist-es/commands/SearchCertificatesCommand.js +4 -1
- package/dist-es/commands/TagResourceCommand.js +19 -0
- package/dist-es/commands/UntagResourceCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +4 -1
- package/dist-es/commands/index.js +22 -0
- package/dist-es/endpoint/EndpointParameters.js +4 -1
- package/dist-es/endpoint/bdd.js +27 -35
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/enums.js +60 -0
- package/dist-es/models/errors.js +37 -12
- package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +512 -39
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
- package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
- package/dist-types/ACM.d.ts +208 -0
- package/dist-types/ACMClient.d.ts +24 -2
- package/dist-types/commands/AddTagsToCertificateCommand.d.ts +4 -1
- package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +118 -0
- package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +86 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -1
- package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +101 -0
- package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +118 -0
- package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +113 -0
- package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +100 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +6 -0
- package/dist-types/commands/ExportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +92 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ListAcmeAccountsCommand.d.ts +105 -0
- package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +123 -0
- package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +114 -0
- package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +105 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +5 -1
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +4 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +4 -1
- package/dist-types/commands/RenewCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +3 -0
- package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +93 -0
- package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +92 -0
- package/dist-types/commands/RevokeCertificateCommand.d.ts +3 -0
- package/dist-types/commands/SearchCertificatesCommand.d.ts +10 -1
- package/dist-types/commands/TagResourceCommand.d.ts +89 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +102 -0
- package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +101 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/models/enums.d.ts +148 -0
- package/dist-types/models/errors.d.ts +37 -12
- package/dist-types/models/models_0.d.ts +1284 -67
- package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +5 -1
- package/dist-types/runtimeConfig.d.ts +5 -1
- package/dist-types/runtimeConfig.native.d.ts +5 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/ACM.d.ts +452 -0
- package/dist-types/ts3.4/ACMClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/ts3.4/models/enums.d.ts +80 -0
- package/dist-types/ts3.4/models/errors.d.ts +22 -7
- package/dist-types/ts3.4/models/models_0.d.ts +395 -5
- package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
- package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
- package/package.json +6 -8
package/dist-es/waiters/index.js
CHANGED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
|
|
2
|
+
import { DescribeAcmeDomainValidationCommand, } from "../commands/DescribeAcmeDomainValidationCommand";
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
let result = await client.send(new DescribeAcmeDomainValidationCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
return result.AcmeDomainValidation.Status;
|
|
11
|
+
};
|
|
12
|
+
if (returnComparator() === "DELETING") {
|
|
13
|
+
return { state: WaiterState.RETRY, reason };
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
catch (e) { }
|
|
17
|
+
}
|
|
18
|
+
catch (exception) {
|
|
19
|
+
reason = exception;
|
|
20
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
21
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
return { state: WaiterState.RETRY, reason };
|
|
25
|
+
};
|
|
26
|
+
export const waitForAcmeDomainValidationDeleted = async (params, input) => {
|
|
27
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
28
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
29
|
+
};
|
|
30
|
+
export const waitUntilAcmeDomainValidationDeleted = async (params, input) => {
|
|
31
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
32
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
33
|
+
return checkExceptions(result);
|
|
34
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
|
|
2
|
+
import { DescribeAcmeDomainValidationCommand, } from "../commands/DescribeAcmeDomainValidationCommand";
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
let result = await client.send(new DescribeAcmeDomainValidationCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
return result.AcmeDomainValidation.Status;
|
|
11
|
+
};
|
|
12
|
+
if (returnComparator() === "VALID") {
|
|
13
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
catch (e) { }
|
|
17
|
+
try {
|
|
18
|
+
const returnComparator = () => {
|
|
19
|
+
return result.AcmeDomainValidation.Status;
|
|
20
|
+
};
|
|
21
|
+
if (returnComparator() === "INVALID") {
|
|
22
|
+
return { state: WaiterState.FAILURE, reason };
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
catch (e) { }
|
|
26
|
+
try {
|
|
27
|
+
const returnComparator = () => {
|
|
28
|
+
return result.AcmeDomainValidation.Status;
|
|
29
|
+
};
|
|
30
|
+
if (returnComparator() === "VALIDATING") {
|
|
31
|
+
return { state: WaiterState.RETRY, reason };
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
catch (e) { }
|
|
35
|
+
}
|
|
36
|
+
catch (exception) {
|
|
37
|
+
reason = exception;
|
|
38
|
+
}
|
|
39
|
+
return { state: WaiterState.RETRY, reason };
|
|
40
|
+
};
|
|
41
|
+
export const waitForAcmeDomainValidationValidated = async (params, input) => {
|
|
42
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
43
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
44
|
+
};
|
|
45
|
+
export const waitUntilAcmeDomainValidationValidated = async (params, input) => {
|
|
46
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
47
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
48
|
+
return checkExceptions(result);
|
|
49
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
|
|
2
|
+
import { DescribeAcmeEndpointCommand, } from "../commands/DescribeAcmeEndpointCommand";
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
let result = await client.send(new DescribeAcmeEndpointCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
return result.AcmeEndpoint.Status;
|
|
11
|
+
};
|
|
12
|
+
if (returnComparator() === "ACTIVE") {
|
|
13
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
catch (e) { }
|
|
17
|
+
try {
|
|
18
|
+
const returnComparator = () => {
|
|
19
|
+
return result.AcmeEndpoint.Status;
|
|
20
|
+
};
|
|
21
|
+
if (returnComparator() === "FAILED") {
|
|
22
|
+
return { state: WaiterState.FAILURE, reason };
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
catch (e) { }
|
|
26
|
+
try {
|
|
27
|
+
const returnComparator = () => {
|
|
28
|
+
return result.AcmeEndpoint.Status;
|
|
29
|
+
};
|
|
30
|
+
if (returnComparator() === "CREATING") {
|
|
31
|
+
return { state: WaiterState.RETRY, reason };
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
catch (e) { }
|
|
35
|
+
}
|
|
36
|
+
catch (exception) {
|
|
37
|
+
reason = exception;
|
|
38
|
+
}
|
|
39
|
+
return { state: WaiterState.RETRY, reason };
|
|
40
|
+
};
|
|
41
|
+
export const waitForAcmeEndpointActive = async (params, input) => {
|
|
42
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
43
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
44
|
+
};
|
|
45
|
+
export const waitUntilAcmeEndpointActive = async (params, input) => {
|
|
46
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
47
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
48
|
+
return checkExceptions(result);
|
|
49
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
|
|
2
|
+
import { DescribeAcmeEndpointCommand, } from "../commands/DescribeAcmeEndpointCommand";
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
let result = await client.send(new DescribeAcmeEndpointCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
return result.AcmeEndpoint.Status;
|
|
11
|
+
};
|
|
12
|
+
if (returnComparator() === "DELETING") {
|
|
13
|
+
return { state: WaiterState.RETRY, reason };
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
catch (e) { }
|
|
17
|
+
}
|
|
18
|
+
catch (exception) {
|
|
19
|
+
reason = exception;
|
|
20
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
21
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
return { state: WaiterState.RETRY, reason };
|
|
25
|
+
};
|
|
26
|
+
export const waitForAcmeEndpointDeleted = async (params, input) => {
|
|
27
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
28
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
29
|
+
};
|
|
30
|
+
export const waitUntilAcmeEndpointDeleted = async (params, input) => {
|
|
31
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
32
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
33
|
+
return checkExceptions(result);
|
|
34
|
+
};
|
package/dist-types/ACM.d.ts
CHANGED
|
@@ -2,22 +2,45 @@ import { type WaiterResult } from "@smithy/core/client";
|
|
|
2
2
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
3
3
|
import { ACMClient } from "./ACMClient";
|
|
4
4
|
import { type AddTagsToCertificateCommandInput, type AddTagsToCertificateCommandOutput } from "./commands/AddTagsToCertificateCommand";
|
|
5
|
+
import { type CreateAcmeDomainValidationCommandInput, type CreateAcmeDomainValidationCommandOutput } from "./commands/CreateAcmeDomainValidationCommand";
|
|
6
|
+
import { type CreateAcmeEndpointCommandInput, type CreateAcmeEndpointCommandOutput } from "./commands/CreateAcmeEndpointCommand";
|
|
7
|
+
import { type CreateAcmeExternalAccountBindingCommandInput, type CreateAcmeExternalAccountBindingCommandOutput } from "./commands/CreateAcmeExternalAccountBindingCommand";
|
|
8
|
+
import { type DeleteAcmeDomainValidationCommandInput, type DeleteAcmeDomainValidationCommandOutput } from "./commands/DeleteAcmeDomainValidationCommand";
|
|
9
|
+
import { type DeleteAcmeEndpointCommandInput, type DeleteAcmeEndpointCommandOutput } from "./commands/DeleteAcmeEndpointCommand";
|
|
10
|
+
import { type DeleteAcmeExternalAccountBindingCommandInput, type DeleteAcmeExternalAccountBindingCommandOutput } from "./commands/DeleteAcmeExternalAccountBindingCommand";
|
|
5
11
|
import { type DeleteCertificateCommandInput, type DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
|
|
12
|
+
import { type DescribeAcmeAccountCommandInput, type DescribeAcmeAccountCommandOutput } from "./commands/DescribeAcmeAccountCommand";
|
|
13
|
+
import { type DescribeAcmeDomainValidationCommandInput, type DescribeAcmeDomainValidationCommandOutput } from "./commands/DescribeAcmeDomainValidationCommand";
|
|
14
|
+
import { type DescribeAcmeEndpointCommandInput, type DescribeAcmeEndpointCommandOutput } from "./commands/DescribeAcmeEndpointCommand";
|
|
15
|
+
import { type DescribeAcmeExternalAccountBindingCommandInput, type DescribeAcmeExternalAccountBindingCommandOutput } from "./commands/DescribeAcmeExternalAccountBindingCommand";
|
|
6
16
|
import { type DescribeCertificateCommandInput, type DescribeCertificateCommandOutput } from "./commands/DescribeCertificateCommand";
|
|
7
17
|
import { type ExportCertificateCommandInput, type ExportCertificateCommandOutput } from "./commands/ExportCertificateCommand";
|
|
8
18
|
import { type GetAccountConfigurationCommandInput, type GetAccountConfigurationCommandOutput } from "./commands/GetAccountConfigurationCommand";
|
|
19
|
+
import { type GetAcmeExternalAccountBindingCredentialsCommandInput, type GetAcmeExternalAccountBindingCredentialsCommandOutput } from "./commands/GetAcmeExternalAccountBindingCredentialsCommand";
|
|
9
20
|
import { type GetCertificateCommandInput, type GetCertificateCommandOutput } from "./commands/GetCertificateCommand";
|
|
10
21
|
import { type ImportCertificateCommandInput, type ImportCertificateCommandOutput } from "./commands/ImportCertificateCommand";
|
|
22
|
+
import { type ListAcmeAccountsCommandInput, type ListAcmeAccountsCommandOutput } from "./commands/ListAcmeAccountsCommand";
|
|
23
|
+
import { type ListAcmeDomainValidationsCommandInput, type ListAcmeDomainValidationsCommandOutput } from "./commands/ListAcmeDomainValidationsCommand";
|
|
24
|
+
import { type ListAcmeEndpointsCommandInput, type ListAcmeEndpointsCommandOutput } from "./commands/ListAcmeEndpointsCommand";
|
|
25
|
+
import { type ListAcmeExternalAccountBindingsCommandInput, type ListAcmeExternalAccountBindingsCommandOutput } from "./commands/ListAcmeExternalAccountBindingsCommand";
|
|
11
26
|
import { type ListCertificatesCommandInput, type ListCertificatesCommandOutput } from "./commands/ListCertificatesCommand";
|
|
12
27
|
import { type ListTagsForCertificateCommandInput, type ListTagsForCertificateCommandOutput } from "./commands/ListTagsForCertificateCommand";
|
|
28
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
13
29
|
import { type PutAccountConfigurationCommandInput, type PutAccountConfigurationCommandOutput } from "./commands/PutAccountConfigurationCommand";
|
|
14
30
|
import { type RemoveTagsFromCertificateCommandInput, type RemoveTagsFromCertificateCommandOutput } from "./commands/RemoveTagsFromCertificateCommand";
|
|
15
31
|
import { type RenewCertificateCommandInput, type RenewCertificateCommandOutput } from "./commands/RenewCertificateCommand";
|
|
16
32
|
import { type RequestCertificateCommandInput, type RequestCertificateCommandOutput } from "./commands/RequestCertificateCommand";
|
|
17
33
|
import { type ResendValidationEmailCommandInput, type ResendValidationEmailCommandOutput } from "./commands/ResendValidationEmailCommand";
|
|
34
|
+
import { type RevokeAcmeAccountCommandInput, type RevokeAcmeAccountCommandOutput } from "./commands/RevokeAcmeAccountCommand";
|
|
35
|
+
import { type RevokeAcmeExternalAccountBindingCommandInput, type RevokeAcmeExternalAccountBindingCommandOutput } from "./commands/RevokeAcmeExternalAccountBindingCommand";
|
|
18
36
|
import { type RevokeCertificateCommandInput, type RevokeCertificateCommandOutput } from "./commands/RevokeCertificateCommand";
|
|
19
37
|
import { type SearchCertificatesCommandInput, type SearchCertificatesCommandOutput } from "./commands/SearchCertificatesCommand";
|
|
38
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
39
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
40
|
+
import { type UpdateAcmeDomainValidationCommandInput, type UpdateAcmeDomainValidationCommandOutput } from "./commands/UpdateAcmeDomainValidationCommand";
|
|
41
|
+
import { type UpdateAcmeEndpointCommandInput, type UpdateAcmeEndpointCommandOutput } from "./commands/UpdateAcmeEndpointCommand";
|
|
20
42
|
import { type UpdateCertificateOptionsCommandInput, type UpdateCertificateOptionsCommandOutput } from "./commands/UpdateCertificateOptionsCommand";
|
|
43
|
+
import type { ResourceNotFoundException } from "./models/errors";
|
|
21
44
|
export interface ACM {
|
|
22
45
|
/**
|
|
23
46
|
* @see {@link AddTagsToCertificateCommand}
|
|
@@ -25,12 +48,72 @@ export interface ACM {
|
|
|
25
48
|
addTagsToCertificate(args: AddTagsToCertificateCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsToCertificateCommandOutput>;
|
|
26
49
|
addTagsToCertificate(args: AddTagsToCertificateCommandInput, cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void): void;
|
|
27
50
|
addTagsToCertificate(args: AddTagsToCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void): void;
|
|
51
|
+
/**
|
|
52
|
+
* @see {@link CreateAcmeDomainValidationCommand}
|
|
53
|
+
*/
|
|
54
|
+
createAcmeDomainValidation(args: CreateAcmeDomainValidationCommandInput, options?: __HttpHandlerOptions): Promise<CreateAcmeDomainValidationCommandOutput>;
|
|
55
|
+
createAcmeDomainValidation(args: CreateAcmeDomainValidationCommandInput, cb: (err: any, data?: CreateAcmeDomainValidationCommandOutput) => void): void;
|
|
56
|
+
createAcmeDomainValidation(args: CreateAcmeDomainValidationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAcmeDomainValidationCommandOutput) => void): void;
|
|
57
|
+
/**
|
|
58
|
+
* @see {@link CreateAcmeEndpointCommand}
|
|
59
|
+
*/
|
|
60
|
+
createAcmeEndpoint(args: CreateAcmeEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateAcmeEndpointCommandOutput>;
|
|
61
|
+
createAcmeEndpoint(args: CreateAcmeEndpointCommandInput, cb: (err: any, data?: CreateAcmeEndpointCommandOutput) => void): void;
|
|
62
|
+
createAcmeEndpoint(args: CreateAcmeEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAcmeEndpointCommandOutput) => void): void;
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link CreateAcmeExternalAccountBindingCommand}
|
|
65
|
+
*/
|
|
66
|
+
createAcmeExternalAccountBinding(args: CreateAcmeExternalAccountBindingCommandInput, options?: __HttpHandlerOptions): Promise<CreateAcmeExternalAccountBindingCommandOutput>;
|
|
67
|
+
createAcmeExternalAccountBinding(args: CreateAcmeExternalAccountBindingCommandInput, cb: (err: any, data?: CreateAcmeExternalAccountBindingCommandOutput) => void): void;
|
|
68
|
+
createAcmeExternalAccountBinding(args: CreateAcmeExternalAccountBindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAcmeExternalAccountBindingCommandOutput) => void): void;
|
|
69
|
+
/**
|
|
70
|
+
* @see {@link DeleteAcmeDomainValidationCommand}
|
|
71
|
+
*/
|
|
72
|
+
deleteAcmeDomainValidation(args: DeleteAcmeDomainValidationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAcmeDomainValidationCommandOutput>;
|
|
73
|
+
deleteAcmeDomainValidation(args: DeleteAcmeDomainValidationCommandInput, cb: (err: any, data?: DeleteAcmeDomainValidationCommandOutput) => void): void;
|
|
74
|
+
deleteAcmeDomainValidation(args: DeleteAcmeDomainValidationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAcmeDomainValidationCommandOutput) => void): void;
|
|
75
|
+
/**
|
|
76
|
+
* @see {@link DeleteAcmeEndpointCommand}
|
|
77
|
+
*/
|
|
78
|
+
deleteAcmeEndpoint(args: DeleteAcmeEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAcmeEndpointCommandOutput>;
|
|
79
|
+
deleteAcmeEndpoint(args: DeleteAcmeEndpointCommandInput, cb: (err: any, data?: DeleteAcmeEndpointCommandOutput) => void): void;
|
|
80
|
+
deleteAcmeEndpoint(args: DeleteAcmeEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAcmeEndpointCommandOutput) => void): void;
|
|
81
|
+
/**
|
|
82
|
+
* @see {@link DeleteAcmeExternalAccountBindingCommand}
|
|
83
|
+
*/
|
|
84
|
+
deleteAcmeExternalAccountBinding(args: DeleteAcmeExternalAccountBindingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAcmeExternalAccountBindingCommandOutput>;
|
|
85
|
+
deleteAcmeExternalAccountBinding(args: DeleteAcmeExternalAccountBindingCommandInput, cb: (err: any, data?: DeleteAcmeExternalAccountBindingCommandOutput) => void): void;
|
|
86
|
+
deleteAcmeExternalAccountBinding(args: DeleteAcmeExternalAccountBindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAcmeExternalAccountBindingCommandOutput) => void): void;
|
|
28
87
|
/**
|
|
29
88
|
* @see {@link DeleteCertificateCommand}
|
|
30
89
|
*/
|
|
31
90
|
deleteCertificate(args: DeleteCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCertificateCommandOutput>;
|
|
32
91
|
deleteCertificate(args: DeleteCertificateCommandInput, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
|
|
33
92
|
deleteCertificate(args: DeleteCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
|
|
93
|
+
/**
|
|
94
|
+
* @see {@link DescribeAcmeAccountCommand}
|
|
95
|
+
*/
|
|
96
|
+
describeAcmeAccount(args: DescribeAcmeAccountCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAcmeAccountCommandOutput>;
|
|
97
|
+
describeAcmeAccount(args: DescribeAcmeAccountCommandInput, cb: (err: any, data?: DescribeAcmeAccountCommandOutput) => void): void;
|
|
98
|
+
describeAcmeAccount(args: DescribeAcmeAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAcmeAccountCommandOutput) => void): void;
|
|
99
|
+
/**
|
|
100
|
+
* @see {@link DescribeAcmeDomainValidationCommand}
|
|
101
|
+
*/
|
|
102
|
+
describeAcmeDomainValidation(args: DescribeAcmeDomainValidationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAcmeDomainValidationCommandOutput>;
|
|
103
|
+
describeAcmeDomainValidation(args: DescribeAcmeDomainValidationCommandInput, cb: (err: any, data?: DescribeAcmeDomainValidationCommandOutput) => void): void;
|
|
104
|
+
describeAcmeDomainValidation(args: DescribeAcmeDomainValidationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAcmeDomainValidationCommandOutput) => void): void;
|
|
105
|
+
/**
|
|
106
|
+
* @see {@link DescribeAcmeEndpointCommand}
|
|
107
|
+
*/
|
|
108
|
+
describeAcmeEndpoint(args: DescribeAcmeEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAcmeEndpointCommandOutput>;
|
|
109
|
+
describeAcmeEndpoint(args: DescribeAcmeEndpointCommandInput, cb: (err: any, data?: DescribeAcmeEndpointCommandOutput) => void): void;
|
|
110
|
+
describeAcmeEndpoint(args: DescribeAcmeEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAcmeEndpointCommandOutput) => void): void;
|
|
111
|
+
/**
|
|
112
|
+
* @see {@link DescribeAcmeExternalAccountBindingCommand}
|
|
113
|
+
*/
|
|
114
|
+
describeAcmeExternalAccountBinding(args: DescribeAcmeExternalAccountBindingCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAcmeExternalAccountBindingCommandOutput>;
|
|
115
|
+
describeAcmeExternalAccountBinding(args: DescribeAcmeExternalAccountBindingCommandInput, cb: (err: any, data?: DescribeAcmeExternalAccountBindingCommandOutput) => void): void;
|
|
116
|
+
describeAcmeExternalAccountBinding(args: DescribeAcmeExternalAccountBindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAcmeExternalAccountBindingCommandOutput) => void): void;
|
|
34
117
|
/**
|
|
35
118
|
* @see {@link DescribeCertificateCommand}
|
|
36
119
|
*/
|
|
@@ -50,6 +133,12 @@ export interface ACM {
|
|
|
50
133
|
getAccountConfiguration(args: GetAccountConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountConfigurationCommandOutput>;
|
|
51
134
|
getAccountConfiguration(args: GetAccountConfigurationCommandInput, cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void): void;
|
|
52
135
|
getAccountConfiguration(args: GetAccountConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void): void;
|
|
136
|
+
/**
|
|
137
|
+
* @see {@link GetAcmeExternalAccountBindingCredentialsCommand}
|
|
138
|
+
*/
|
|
139
|
+
getAcmeExternalAccountBindingCredentials(args: GetAcmeExternalAccountBindingCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetAcmeExternalAccountBindingCredentialsCommandOutput>;
|
|
140
|
+
getAcmeExternalAccountBindingCredentials(args: GetAcmeExternalAccountBindingCredentialsCommandInput, cb: (err: any, data?: GetAcmeExternalAccountBindingCredentialsCommandOutput) => void): void;
|
|
141
|
+
getAcmeExternalAccountBindingCredentials(args: GetAcmeExternalAccountBindingCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAcmeExternalAccountBindingCredentialsCommandOutput) => void): void;
|
|
53
142
|
/**
|
|
54
143
|
* @see {@link GetCertificateCommand}
|
|
55
144
|
*/
|
|
@@ -62,6 +151,31 @@ export interface ACM {
|
|
|
62
151
|
importCertificate(args: ImportCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ImportCertificateCommandOutput>;
|
|
63
152
|
importCertificate(args: ImportCertificateCommandInput, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
|
|
64
153
|
importCertificate(args: ImportCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
|
|
154
|
+
/**
|
|
155
|
+
* @see {@link ListAcmeAccountsCommand}
|
|
156
|
+
*/
|
|
157
|
+
listAcmeAccounts(args: ListAcmeAccountsCommandInput, options?: __HttpHandlerOptions): Promise<ListAcmeAccountsCommandOutput>;
|
|
158
|
+
listAcmeAccounts(args: ListAcmeAccountsCommandInput, cb: (err: any, data?: ListAcmeAccountsCommandOutput) => void): void;
|
|
159
|
+
listAcmeAccounts(args: ListAcmeAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAcmeAccountsCommandOutput) => void): void;
|
|
160
|
+
/**
|
|
161
|
+
* @see {@link ListAcmeDomainValidationsCommand}
|
|
162
|
+
*/
|
|
163
|
+
listAcmeDomainValidations(args: ListAcmeDomainValidationsCommandInput, options?: __HttpHandlerOptions): Promise<ListAcmeDomainValidationsCommandOutput>;
|
|
164
|
+
listAcmeDomainValidations(args: ListAcmeDomainValidationsCommandInput, cb: (err: any, data?: ListAcmeDomainValidationsCommandOutput) => void): void;
|
|
165
|
+
listAcmeDomainValidations(args: ListAcmeDomainValidationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAcmeDomainValidationsCommandOutput) => void): void;
|
|
166
|
+
/**
|
|
167
|
+
* @see {@link ListAcmeEndpointsCommand}
|
|
168
|
+
*/
|
|
169
|
+
listAcmeEndpoints(): Promise<ListAcmeEndpointsCommandOutput>;
|
|
170
|
+
listAcmeEndpoints(args: ListAcmeEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListAcmeEndpointsCommandOutput>;
|
|
171
|
+
listAcmeEndpoints(args: ListAcmeEndpointsCommandInput, cb: (err: any, data?: ListAcmeEndpointsCommandOutput) => void): void;
|
|
172
|
+
listAcmeEndpoints(args: ListAcmeEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAcmeEndpointsCommandOutput) => void): void;
|
|
173
|
+
/**
|
|
174
|
+
* @see {@link ListAcmeExternalAccountBindingsCommand}
|
|
175
|
+
*/
|
|
176
|
+
listAcmeExternalAccountBindings(args: ListAcmeExternalAccountBindingsCommandInput, options?: __HttpHandlerOptions): Promise<ListAcmeExternalAccountBindingsCommandOutput>;
|
|
177
|
+
listAcmeExternalAccountBindings(args: ListAcmeExternalAccountBindingsCommandInput, cb: (err: any, data?: ListAcmeExternalAccountBindingsCommandOutput) => void): void;
|
|
178
|
+
listAcmeExternalAccountBindings(args: ListAcmeExternalAccountBindingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAcmeExternalAccountBindingsCommandOutput) => void): void;
|
|
65
179
|
/**
|
|
66
180
|
* @see {@link ListCertificatesCommand}
|
|
67
181
|
*/
|
|
@@ -75,6 +189,12 @@ export interface ACM {
|
|
|
75
189
|
listTagsForCertificate(args: ListTagsForCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForCertificateCommandOutput>;
|
|
76
190
|
listTagsForCertificate(args: ListTagsForCertificateCommandInput, cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void): void;
|
|
77
191
|
listTagsForCertificate(args: ListTagsForCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void): void;
|
|
192
|
+
/**
|
|
193
|
+
* @see {@link ListTagsForResourceCommand}
|
|
194
|
+
*/
|
|
195
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
196
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
197
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
78
198
|
/**
|
|
79
199
|
* @see {@link PutAccountConfigurationCommand}
|
|
80
200
|
*/
|
|
@@ -105,6 +225,18 @@ export interface ACM {
|
|
|
105
225
|
resendValidationEmail(args: ResendValidationEmailCommandInput, options?: __HttpHandlerOptions): Promise<ResendValidationEmailCommandOutput>;
|
|
106
226
|
resendValidationEmail(args: ResendValidationEmailCommandInput, cb: (err: any, data?: ResendValidationEmailCommandOutput) => void): void;
|
|
107
227
|
resendValidationEmail(args: ResendValidationEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResendValidationEmailCommandOutput) => void): void;
|
|
228
|
+
/**
|
|
229
|
+
* @see {@link RevokeAcmeAccountCommand}
|
|
230
|
+
*/
|
|
231
|
+
revokeAcmeAccount(args: RevokeAcmeAccountCommandInput, options?: __HttpHandlerOptions): Promise<RevokeAcmeAccountCommandOutput>;
|
|
232
|
+
revokeAcmeAccount(args: RevokeAcmeAccountCommandInput, cb: (err: any, data?: RevokeAcmeAccountCommandOutput) => void): void;
|
|
233
|
+
revokeAcmeAccount(args: RevokeAcmeAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeAcmeAccountCommandOutput) => void): void;
|
|
234
|
+
/**
|
|
235
|
+
* @see {@link RevokeAcmeExternalAccountBindingCommand}
|
|
236
|
+
*/
|
|
237
|
+
revokeAcmeExternalAccountBinding(args: RevokeAcmeExternalAccountBindingCommandInput, options?: __HttpHandlerOptions): Promise<RevokeAcmeExternalAccountBindingCommandOutput>;
|
|
238
|
+
revokeAcmeExternalAccountBinding(args: RevokeAcmeExternalAccountBindingCommandInput, cb: (err: any, data?: RevokeAcmeExternalAccountBindingCommandOutput) => void): void;
|
|
239
|
+
revokeAcmeExternalAccountBinding(args: RevokeAcmeExternalAccountBindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeAcmeExternalAccountBindingCommandOutput) => void): void;
|
|
108
240
|
/**
|
|
109
241
|
* @see {@link RevokeCertificateCommand}
|
|
110
242
|
*/
|
|
@@ -118,12 +250,64 @@ export interface ACM {
|
|
|
118
250
|
searchCertificates(args: SearchCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<SearchCertificatesCommandOutput>;
|
|
119
251
|
searchCertificates(args: SearchCertificatesCommandInput, cb: (err: any, data?: SearchCertificatesCommandOutput) => void): void;
|
|
120
252
|
searchCertificates(args: SearchCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchCertificatesCommandOutput) => void): void;
|
|
253
|
+
/**
|
|
254
|
+
* @see {@link TagResourceCommand}
|
|
255
|
+
*/
|
|
256
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
257
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
258
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
259
|
+
/**
|
|
260
|
+
* @see {@link UntagResourceCommand}
|
|
261
|
+
*/
|
|
262
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
263
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
264
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
265
|
+
/**
|
|
266
|
+
* @see {@link UpdateAcmeDomainValidationCommand}
|
|
267
|
+
*/
|
|
268
|
+
updateAcmeDomainValidation(args: UpdateAcmeDomainValidationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAcmeDomainValidationCommandOutput>;
|
|
269
|
+
updateAcmeDomainValidation(args: UpdateAcmeDomainValidationCommandInput, cb: (err: any, data?: UpdateAcmeDomainValidationCommandOutput) => void): void;
|
|
270
|
+
updateAcmeDomainValidation(args: UpdateAcmeDomainValidationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAcmeDomainValidationCommandOutput) => void): void;
|
|
271
|
+
/**
|
|
272
|
+
* @see {@link UpdateAcmeEndpointCommand}
|
|
273
|
+
*/
|
|
274
|
+
updateAcmeEndpoint(args: UpdateAcmeEndpointCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAcmeEndpointCommandOutput>;
|
|
275
|
+
updateAcmeEndpoint(args: UpdateAcmeEndpointCommandInput, cb: (err: any, data?: UpdateAcmeEndpointCommandOutput) => void): void;
|
|
276
|
+
updateAcmeEndpoint(args: UpdateAcmeEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAcmeEndpointCommandOutput) => void): void;
|
|
121
277
|
/**
|
|
122
278
|
* @see {@link UpdateCertificateOptionsCommand}
|
|
123
279
|
*/
|
|
124
280
|
updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCertificateOptionsCommandOutput>;
|
|
125
281
|
updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void): void;
|
|
126
282
|
updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void): void;
|
|
283
|
+
/**
|
|
284
|
+
* @see {@link ListAcmeAccountsCommand}
|
|
285
|
+
* @param args - command input.
|
|
286
|
+
* @param paginationConfig - optional pagination config.
|
|
287
|
+
* @returns AsyncIterable of {@link ListAcmeAccountsCommandOutput}.
|
|
288
|
+
*/
|
|
289
|
+
paginateListAcmeAccounts(args: ListAcmeAccountsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAcmeAccountsCommandOutput>;
|
|
290
|
+
/**
|
|
291
|
+
* @see {@link ListAcmeDomainValidationsCommand}
|
|
292
|
+
* @param args - command input.
|
|
293
|
+
* @param paginationConfig - optional pagination config.
|
|
294
|
+
* @returns AsyncIterable of {@link ListAcmeDomainValidationsCommandOutput}.
|
|
295
|
+
*/
|
|
296
|
+
paginateListAcmeDomainValidations(args: ListAcmeDomainValidationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAcmeDomainValidationsCommandOutput>;
|
|
297
|
+
/**
|
|
298
|
+
* @see {@link ListAcmeEndpointsCommand}
|
|
299
|
+
* @param args - command input.
|
|
300
|
+
* @param paginationConfig - optional pagination config.
|
|
301
|
+
* @returns AsyncIterable of {@link ListAcmeEndpointsCommandOutput}.
|
|
302
|
+
*/
|
|
303
|
+
paginateListAcmeEndpoints(args?: ListAcmeEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAcmeEndpointsCommandOutput>;
|
|
304
|
+
/**
|
|
305
|
+
* @see {@link ListAcmeExternalAccountBindingsCommand}
|
|
306
|
+
* @param args - command input.
|
|
307
|
+
* @param paginationConfig - optional pagination config.
|
|
308
|
+
* @returns AsyncIterable of {@link ListAcmeExternalAccountBindingsCommandOutput}.
|
|
309
|
+
*/
|
|
310
|
+
paginateListAcmeExternalAccountBindings(args: ListAcmeExternalAccountBindingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAcmeExternalAccountBindingsCommandOutput>;
|
|
127
311
|
/**
|
|
128
312
|
* @see {@link ListCertificatesCommand}
|
|
129
313
|
* @param args - command input.
|
|
@@ -138,6 +322,30 @@ export interface ACM {
|
|
|
138
322
|
* @returns AsyncIterable of {@link SearchCertificatesCommandOutput}.
|
|
139
323
|
*/
|
|
140
324
|
paginateSearchCertificates(args?: SearchCertificatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchCertificatesCommandOutput>;
|
|
325
|
+
/**
|
|
326
|
+
* @see {@link DescribeAcmeDomainValidationCommand}
|
|
327
|
+
* @param args - command input.
|
|
328
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
329
|
+
*/
|
|
330
|
+
waitUntilAcmeDomainValidationValidated(args: DescribeAcmeDomainValidationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ACM>, "client">): Promise<WaiterResult<DescribeAcmeDomainValidationCommandOutput>>;
|
|
331
|
+
/**
|
|
332
|
+
* @see {@link DescribeAcmeDomainValidationCommand}
|
|
333
|
+
* @param args - command input.
|
|
334
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
335
|
+
*/
|
|
336
|
+
waitUntilAcmeDomainValidationDeleted(args: DescribeAcmeDomainValidationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ACM>, "client">): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
337
|
+
/**
|
|
338
|
+
* @see {@link DescribeAcmeEndpointCommand}
|
|
339
|
+
* @param args - command input.
|
|
340
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
341
|
+
*/
|
|
342
|
+
waitUntilAcmeEndpointActive(args: DescribeAcmeEndpointCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ACM>, "client">): Promise<WaiterResult<DescribeAcmeEndpointCommandOutput>>;
|
|
343
|
+
/**
|
|
344
|
+
* @see {@link DescribeAcmeEndpointCommand}
|
|
345
|
+
* @param args - command input.
|
|
346
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
347
|
+
*/
|
|
348
|
+
waitUntilAcmeEndpointDeleted(args: DescribeAcmeEndpointCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ACM>, "client">): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
141
349
|
/**
|
|
142
350
|
* @see {@link DescribeCertificateCommand}
|
|
143
351
|
* @param args - command input.
|
|
@@ -7,21 +7,43 @@ import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/re
|
|
|
7
7
|
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
8
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
9
9
|
import type { AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput } from "./commands/AddTagsToCertificateCommand";
|
|
10
|
+
import type { CreateAcmeDomainValidationCommandInput, CreateAcmeDomainValidationCommandOutput } from "./commands/CreateAcmeDomainValidationCommand";
|
|
11
|
+
import type { CreateAcmeEndpointCommandInput, CreateAcmeEndpointCommandOutput } from "./commands/CreateAcmeEndpointCommand";
|
|
12
|
+
import type { CreateAcmeExternalAccountBindingCommandInput, CreateAcmeExternalAccountBindingCommandOutput } from "./commands/CreateAcmeExternalAccountBindingCommand";
|
|
13
|
+
import type { DeleteAcmeDomainValidationCommandInput, DeleteAcmeDomainValidationCommandOutput } from "./commands/DeleteAcmeDomainValidationCommand";
|
|
14
|
+
import type { DeleteAcmeEndpointCommandInput, DeleteAcmeEndpointCommandOutput } from "./commands/DeleteAcmeEndpointCommand";
|
|
15
|
+
import type { DeleteAcmeExternalAccountBindingCommandInput, DeleteAcmeExternalAccountBindingCommandOutput } from "./commands/DeleteAcmeExternalAccountBindingCommand";
|
|
10
16
|
import type { DeleteCertificateCommandInput, DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
|
|
17
|
+
import type { DescribeAcmeAccountCommandInput, DescribeAcmeAccountCommandOutput } from "./commands/DescribeAcmeAccountCommand";
|
|
18
|
+
import type { DescribeAcmeDomainValidationCommandInput, DescribeAcmeDomainValidationCommandOutput } from "./commands/DescribeAcmeDomainValidationCommand";
|
|
19
|
+
import type { DescribeAcmeEndpointCommandInput, DescribeAcmeEndpointCommandOutput } from "./commands/DescribeAcmeEndpointCommand";
|
|
20
|
+
import type { DescribeAcmeExternalAccountBindingCommandInput, DescribeAcmeExternalAccountBindingCommandOutput } from "./commands/DescribeAcmeExternalAccountBindingCommand";
|
|
11
21
|
import type { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "./commands/DescribeCertificateCommand";
|
|
12
22
|
import type { ExportCertificateCommandInput, ExportCertificateCommandOutput } from "./commands/ExportCertificateCommand";
|
|
13
23
|
import type { GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput } from "./commands/GetAccountConfigurationCommand";
|
|
24
|
+
import type { GetAcmeExternalAccountBindingCredentialsCommandInput, GetAcmeExternalAccountBindingCredentialsCommandOutput } from "./commands/GetAcmeExternalAccountBindingCredentialsCommand";
|
|
14
25
|
import type { GetCertificateCommandInput, GetCertificateCommandOutput } from "./commands/GetCertificateCommand";
|
|
15
26
|
import type { ImportCertificateCommandInput, ImportCertificateCommandOutput } from "./commands/ImportCertificateCommand";
|
|
27
|
+
import type { ListAcmeAccountsCommandInput, ListAcmeAccountsCommandOutput } from "./commands/ListAcmeAccountsCommand";
|
|
28
|
+
import type { ListAcmeDomainValidationsCommandInput, ListAcmeDomainValidationsCommandOutput } from "./commands/ListAcmeDomainValidationsCommand";
|
|
29
|
+
import type { ListAcmeEndpointsCommandInput, ListAcmeEndpointsCommandOutput } from "./commands/ListAcmeEndpointsCommand";
|
|
30
|
+
import type { ListAcmeExternalAccountBindingsCommandInput, ListAcmeExternalAccountBindingsCommandOutput } from "./commands/ListAcmeExternalAccountBindingsCommand";
|
|
16
31
|
import type { ListCertificatesCommandInput, ListCertificatesCommandOutput } from "./commands/ListCertificatesCommand";
|
|
17
32
|
import type { ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput } from "./commands/ListTagsForCertificateCommand";
|
|
33
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
18
34
|
import type { PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput } from "./commands/PutAccountConfigurationCommand";
|
|
19
35
|
import type { RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput } from "./commands/RemoveTagsFromCertificateCommand";
|
|
20
36
|
import type { RenewCertificateCommandInput, RenewCertificateCommandOutput } from "./commands/RenewCertificateCommand";
|
|
21
37
|
import type { RequestCertificateCommandInput, RequestCertificateCommandOutput } from "./commands/RequestCertificateCommand";
|
|
22
38
|
import type { ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput } from "./commands/ResendValidationEmailCommand";
|
|
39
|
+
import type { RevokeAcmeAccountCommandInput, RevokeAcmeAccountCommandOutput } from "./commands/RevokeAcmeAccountCommand";
|
|
40
|
+
import type { RevokeAcmeExternalAccountBindingCommandInput, RevokeAcmeExternalAccountBindingCommandOutput } from "./commands/RevokeAcmeExternalAccountBindingCommand";
|
|
23
41
|
import type { RevokeCertificateCommandInput, RevokeCertificateCommandOutput } from "./commands/RevokeCertificateCommand";
|
|
24
42
|
import type { SearchCertificatesCommandInput, SearchCertificatesCommandOutput } from "./commands/SearchCertificatesCommand";
|
|
43
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
44
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
45
|
+
import type { UpdateAcmeDomainValidationCommandInput, UpdateAcmeDomainValidationCommandOutput } from "./commands/UpdateAcmeDomainValidationCommand";
|
|
46
|
+
import type { UpdateAcmeEndpointCommandInput, UpdateAcmeEndpointCommandOutput } from "./commands/UpdateAcmeEndpointCommand";
|
|
25
47
|
import type { UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput } from "./commands/UpdateCertificateOptionsCommand";
|
|
26
48
|
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
27
49
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
@@ -29,11 +51,11 @@ export { __Client };
|
|
|
29
51
|
/**
|
|
30
52
|
* @public
|
|
31
53
|
*/
|
|
32
|
-
export type ServiceInputTypes = AddTagsToCertificateCommandInput | DeleteCertificateCommandInput | DescribeCertificateCommandInput | ExportCertificateCommandInput | GetAccountConfigurationCommandInput | GetCertificateCommandInput | ImportCertificateCommandInput | ListCertificatesCommandInput | ListTagsForCertificateCommandInput | PutAccountConfigurationCommandInput | RemoveTagsFromCertificateCommandInput | RenewCertificateCommandInput | RequestCertificateCommandInput | ResendValidationEmailCommandInput | RevokeCertificateCommandInput | SearchCertificatesCommandInput | UpdateCertificateOptionsCommandInput;
|
|
54
|
+
export type ServiceInputTypes = AddTagsToCertificateCommandInput | CreateAcmeDomainValidationCommandInput | CreateAcmeEndpointCommandInput | CreateAcmeExternalAccountBindingCommandInput | DeleteAcmeDomainValidationCommandInput | DeleteAcmeEndpointCommandInput | DeleteAcmeExternalAccountBindingCommandInput | DeleteCertificateCommandInput | DescribeAcmeAccountCommandInput | DescribeAcmeDomainValidationCommandInput | DescribeAcmeEndpointCommandInput | DescribeAcmeExternalAccountBindingCommandInput | DescribeCertificateCommandInput | ExportCertificateCommandInput | GetAccountConfigurationCommandInput | GetAcmeExternalAccountBindingCredentialsCommandInput | GetCertificateCommandInput | ImportCertificateCommandInput | ListAcmeAccountsCommandInput | ListAcmeDomainValidationsCommandInput | ListAcmeEndpointsCommandInput | ListAcmeExternalAccountBindingsCommandInput | ListCertificatesCommandInput | ListTagsForCertificateCommandInput | ListTagsForResourceCommandInput | PutAccountConfigurationCommandInput | RemoveTagsFromCertificateCommandInput | RenewCertificateCommandInput | RequestCertificateCommandInput | ResendValidationEmailCommandInput | RevokeAcmeAccountCommandInput | RevokeAcmeExternalAccountBindingCommandInput | RevokeCertificateCommandInput | SearchCertificatesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAcmeDomainValidationCommandInput | UpdateAcmeEndpointCommandInput | UpdateCertificateOptionsCommandInput;
|
|
33
55
|
/**
|
|
34
56
|
* @public
|
|
35
57
|
*/
|
|
36
|
-
export type ServiceOutputTypes = AddTagsToCertificateCommandOutput | DeleteCertificateCommandOutput | DescribeCertificateCommandOutput | ExportCertificateCommandOutput | GetAccountConfigurationCommandOutput | GetCertificateCommandOutput | ImportCertificateCommandOutput | ListCertificatesCommandOutput | ListTagsForCertificateCommandOutput | PutAccountConfigurationCommandOutput | RemoveTagsFromCertificateCommandOutput | RenewCertificateCommandOutput | RequestCertificateCommandOutput | ResendValidationEmailCommandOutput | RevokeCertificateCommandOutput | SearchCertificatesCommandOutput | UpdateCertificateOptionsCommandOutput;
|
|
58
|
+
export type ServiceOutputTypes = AddTagsToCertificateCommandOutput | CreateAcmeDomainValidationCommandOutput | CreateAcmeEndpointCommandOutput | CreateAcmeExternalAccountBindingCommandOutput | DeleteAcmeDomainValidationCommandOutput | DeleteAcmeEndpointCommandOutput | DeleteAcmeExternalAccountBindingCommandOutput | DeleteCertificateCommandOutput | DescribeAcmeAccountCommandOutput | DescribeAcmeDomainValidationCommandOutput | DescribeAcmeEndpointCommandOutput | DescribeAcmeExternalAccountBindingCommandOutput | DescribeCertificateCommandOutput | ExportCertificateCommandOutput | GetAccountConfigurationCommandOutput | GetAcmeExternalAccountBindingCredentialsCommandOutput | GetCertificateCommandOutput | ImportCertificateCommandOutput | ListAcmeAccountsCommandOutput | ListAcmeDomainValidationsCommandOutput | ListAcmeEndpointsCommandOutput | ListAcmeExternalAccountBindingsCommandOutput | ListCertificatesCommandOutput | ListTagsForCertificateCommandOutput | ListTagsForResourceCommandOutput | PutAccountConfigurationCommandOutput | RemoveTagsFromCertificateCommandOutput | RenewCertificateCommandOutput | RequestCertificateCommandOutput | ResendValidationEmailCommandOutput | RevokeAcmeAccountCommandOutput | RevokeAcmeExternalAccountBindingCommandOutput | RevokeCertificateCommandOutput | SearchCertificatesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAcmeDomainValidationCommandOutput | UpdateAcmeEndpointCommandOutput | UpdateCertificateOptionsCommandOutput;
|
|
37
59
|
/**
|
|
38
60
|
* @public
|
|
39
61
|
*/
|
|
@@ -29,7 +29,7 @@ declare const AddTagsToCertificateCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* <p>Adds one or more tags to an ACM certificate. Tags are labels that you can use to identify and organize your Amazon Web Services resources. Each tag consists of a <code>key</code> and an optional <code>value</code>. You specify the certificate on input by its Amazon Resource Name (ARN). You specify the tag by using a key-value pair. </p> <p>You can apply a tag to just one certificate if you want to identify a specific characteristic of that certificate, or you can apply the same tag to multiple certificates if you want to filter for a common relationship among those certificates. Similarly, you can apply the same tag to multiple resources if you want to specify a relationship among those resources. For example, you can add the same tag to an ACM certificate and an Elastic Load Balancing load balancer to indicate that they are both used by the same website. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/tags.html">Tagging ACM certificates</a>. </p> <p>To remove one or more tags, use the <a>RemoveTagsFromCertificate</a> action. To view all of the tags that have been applied to the certificate, use the <a>ListTagsForCertificate</a> action. </p>
|
|
32
|
+
* <p>Adds one or more tags to an ACM certificate. Tags are labels that you can use to identify and organize your Amazon Web Services resources. Each tag consists of a <code>key</code> and an optional <code>value</code>. You specify the certificate on input by its Amazon Resource Name (ARN). You specify the tag by using a key-value pair. </p> <note> <p>This action applies only to the <code>certificate</code> resource type. For all other ACM resource types, use <a>TagResource</a> instead.</p> </note> <p>You can apply a tag to just one certificate if you want to identify a specific characteristic of that certificate, or you can apply the same tag to multiple certificates if you want to filter for a common relationship among those certificates. Similarly, you can apply the same tag to multiple resources if you want to specify a relationship among those resources. For example, you can add the same tag to an ACM certificate and an Elastic Load Balancing load balancer to indicate that they are both used by the same website. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/tags.html">Tagging ACM certificates</a>. </p> <p>To remove one or more tags, use the <a>RemoveTagsFromCertificate</a> action. To view all of the tags that have been applied to the certificate, use the <a>ListTagsForCertificate</a> action. </p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -80,6 +80,9 @@ declare const AddTagsToCertificateCommand_base: {
|
|
|
80
80
|
* @throws {@link TooManyTagsException} (client fault)
|
|
81
81
|
* <p>The request contains too many tags. Try the request again with fewer tags.</p>
|
|
82
82
|
*
|
|
83
|
+
* @throws {@link ValidationException} (client fault)
|
|
84
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
85
|
+
*
|
|
83
86
|
* @throws {@link ACMServiceException}
|
|
84
87
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
85
88
|
*
|