@aws-sdk/client-acm 3.1075.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 +2459 -33
- 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 +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- 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 +18 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +18 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +18 -2
- 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 +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ACMServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -197
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -778
|
@@ -10,10 +10,50 @@ import {
|
|
|
10
10
|
AddTagsToCertificateCommandInput,
|
|
11
11
|
AddTagsToCertificateCommandOutput,
|
|
12
12
|
} from "./commands/AddTagsToCertificateCommand";
|
|
13
|
+
import {
|
|
14
|
+
CreateAcmeDomainValidationCommandInput,
|
|
15
|
+
CreateAcmeDomainValidationCommandOutput,
|
|
16
|
+
} from "./commands/CreateAcmeDomainValidationCommand";
|
|
17
|
+
import {
|
|
18
|
+
CreateAcmeEndpointCommandInput,
|
|
19
|
+
CreateAcmeEndpointCommandOutput,
|
|
20
|
+
} from "./commands/CreateAcmeEndpointCommand";
|
|
21
|
+
import {
|
|
22
|
+
CreateAcmeExternalAccountBindingCommandInput,
|
|
23
|
+
CreateAcmeExternalAccountBindingCommandOutput,
|
|
24
|
+
} from "./commands/CreateAcmeExternalAccountBindingCommand";
|
|
25
|
+
import {
|
|
26
|
+
DeleteAcmeDomainValidationCommandInput,
|
|
27
|
+
DeleteAcmeDomainValidationCommandOutput,
|
|
28
|
+
} from "./commands/DeleteAcmeDomainValidationCommand";
|
|
29
|
+
import {
|
|
30
|
+
DeleteAcmeEndpointCommandInput,
|
|
31
|
+
DeleteAcmeEndpointCommandOutput,
|
|
32
|
+
} from "./commands/DeleteAcmeEndpointCommand";
|
|
33
|
+
import {
|
|
34
|
+
DeleteAcmeExternalAccountBindingCommandInput,
|
|
35
|
+
DeleteAcmeExternalAccountBindingCommandOutput,
|
|
36
|
+
} from "./commands/DeleteAcmeExternalAccountBindingCommand";
|
|
13
37
|
import {
|
|
14
38
|
DeleteCertificateCommandInput,
|
|
15
39
|
DeleteCertificateCommandOutput,
|
|
16
40
|
} from "./commands/DeleteCertificateCommand";
|
|
41
|
+
import {
|
|
42
|
+
DescribeAcmeAccountCommandInput,
|
|
43
|
+
DescribeAcmeAccountCommandOutput,
|
|
44
|
+
} from "./commands/DescribeAcmeAccountCommand";
|
|
45
|
+
import {
|
|
46
|
+
DescribeAcmeDomainValidationCommandInput,
|
|
47
|
+
DescribeAcmeDomainValidationCommandOutput,
|
|
48
|
+
} from "./commands/DescribeAcmeDomainValidationCommand";
|
|
49
|
+
import {
|
|
50
|
+
DescribeAcmeEndpointCommandInput,
|
|
51
|
+
DescribeAcmeEndpointCommandOutput,
|
|
52
|
+
} from "./commands/DescribeAcmeEndpointCommand";
|
|
53
|
+
import {
|
|
54
|
+
DescribeAcmeExternalAccountBindingCommandInput,
|
|
55
|
+
DescribeAcmeExternalAccountBindingCommandOutput,
|
|
56
|
+
} from "./commands/DescribeAcmeExternalAccountBindingCommand";
|
|
17
57
|
import {
|
|
18
58
|
DescribeCertificateCommandInput,
|
|
19
59
|
DescribeCertificateCommandOutput,
|
|
@@ -26,6 +66,10 @@ import {
|
|
|
26
66
|
GetAccountConfigurationCommandInput,
|
|
27
67
|
GetAccountConfigurationCommandOutput,
|
|
28
68
|
} from "./commands/GetAccountConfigurationCommand";
|
|
69
|
+
import {
|
|
70
|
+
GetAcmeExternalAccountBindingCredentialsCommandInput,
|
|
71
|
+
GetAcmeExternalAccountBindingCredentialsCommandOutput,
|
|
72
|
+
} from "./commands/GetAcmeExternalAccountBindingCredentialsCommand";
|
|
29
73
|
import {
|
|
30
74
|
GetCertificateCommandInput,
|
|
31
75
|
GetCertificateCommandOutput,
|
|
@@ -34,6 +78,22 @@ import {
|
|
|
34
78
|
ImportCertificateCommandInput,
|
|
35
79
|
ImportCertificateCommandOutput,
|
|
36
80
|
} from "./commands/ImportCertificateCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListAcmeAccountsCommandInput,
|
|
83
|
+
ListAcmeAccountsCommandOutput,
|
|
84
|
+
} from "./commands/ListAcmeAccountsCommand";
|
|
85
|
+
import {
|
|
86
|
+
ListAcmeDomainValidationsCommandInput,
|
|
87
|
+
ListAcmeDomainValidationsCommandOutput,
|
|
88
|
+
} from "./commands/ListAcmeDomainValidationsCommand";
|
|
89
|
+
import {
|
|
90
|
+
ListAcmeEndpointsCommandInput,
|
|
91
|
+
ListAcmeEndpointsCommandOutput,
|
|
92
|
+
} from "./commands/ListAcmeEndpointsCommand";
|
|
93
|
+
import {
|
|
94
|
+
ListAcmeExternalAccountBindingsCommandInput,
|
|
95
|
+
ListAcmeExternalAccountBindingsCommandOutput,
|
|
96
|
+
} from "./commands/ListAcmeExternalAccountBindingsCommand";
|
|
37
97
|
import {
|
|
38
98
|
ListCertificatesCommandInput,
|
|
39
99
|
ListCertificatesCommandOutput,
|
|
@@ -42,6 +102,10 @@ import {
|
|
|
42
102
|
ListTagsForCertificateCommandInput,
|
|
43
103
|
ListTagsForCertificateCommandOutput,
|
|
44
104
|
} from "./commands/ListTagsForCertificateCommand";
|
|
105
|
+
import {
|
|
106
|
+
ListTagsForResourceCommandInput,
|
|
107
|
+
ListTagsForResourceCommandOutput,
|
|
108
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
45
109
|
import {
|
|
46
110
|
PutAccountConfigurationCommandInput,
|
|
47
111
|
PutAccountConfigurationCommandOutput,
|
|
@@ -62,6 +126,14 @@ import {
|
|
|
62
126
|
ResendValidationEmailCommandInput,
|
|
63
127
|
ResendValidationEmailCommandOutput,
|
|
64
128
|
} from "./commands/ResendValidationEmailCommand";
|
|
129
|
+
import {
|
|
130
|
+
RevokeAcmeAccountCommandInput,
|
|
131
|
+
RevokeAcmeAccountCommandOutput,
|
|
132
|
+
} from "./commands/RevokeAcmeAccountCommand";
|
|
133
|
+
import {
|
|
134
|
+
RevokeAcmeExternalAccountBindingCommandInput,
|
|
135
|
+
RevokeAcmeExternalAccountBindingCommandOutput,
|
|
136
|
+
} from "./commands/RevokeAcmeExternalAccountBindingCommand";
|
|
65
137
|
import {
|
|
66
138
|
RevokeCertificateCommandInput,
|
|
67
139
|
RevokeCertificateCommandOutput,
|
|
@@ -70,10 +142,27 @@ import {
|
|
|
70
142
|
SearchCertificatesCommandInput,
|
|
71
143
|
SearchCertificatesCommandOutput,
|
|
72
144
|
} from "./commands/SearchCertificatesCommand";
|
|
145
|
+
import {
|
|
146
|
+
TagResourceCommandInput,
|
|
147
|
+
TagResourceCommandOutput,
|
|
148
|
+
} from "./commands/TagResourceCommand";
|
|
149
|
+
import {
|
|
150
|
+
UntagResourceCommandInput,
|
|
151
|
+
UntagResourceCommandOutput,
|
|
152
|
+
} from "./commands/UntagResourceCommand";
|
|
153
|
+
import {
|
|
154
|
+
UpdateAcmeDomainValidationCommandInput,
|
|
155
|
+
UpdateAcmeDomainValidationCommandOutput,
|
|
156
|
+
} from "./commands/UpdateAcmeDomainValidationCommand";
|
|
157
|
+
import {
|
|
158
|
+
UpdateAcmeEndpointCommandInput,
|
|
159
|
+
UpdateAcmeEndpointCommandOutput,
|
|
160
|
+
} from "./commands/UpdateAcmeEndpointCommand";
|
|
73
161
|
import {
|
|
74
162
|
UpdateCertificateOptionsCommandInput,
|
|
75
163
|
UpdateCertificateOptionsCommandOutput,
|
|
76
164
|
} from "./commands/UpdateCertificateOptionsCommand";
|
|
165
|
+
import { ResourceNotFoundException } from "./models/errors";
|
|
77
166
|
export interface ACM {
|
|
78
167
|
addTagsToCertificate(
|
|
79
168
|
args: AddTagsToCertificateCommandInput,
|
|
@@ -88,6 +177,84 @@ export interface ACM {
|
|
|
88
177
|
options: __HttpHandlerOptions,
|
|
89
178
|
cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void
|
|
90
179
|
): void;
|
|
180
|
+
createAcmeDomainValidation(
|
|
181
|
+
args: CreateAcmeDomainValidationCommandInput,
|
|
182
|
+
options?: __HttpHandlerOptions
|
|
183
|
+
): Promise<CreateAcmeDomainValidationCommandOutput>;
|
|
184
|
+
createAcmeDomainValidation(
|
|
185
|
+
args: CreateAcmeDomainValidationCommandInput,
|
|
186
|
+
cb: (err: any, data?: CreateAcmeDomainValidationCommandOutput) => void
|
|
187
|
+
): void;
|
|
188
|
+
createAcmeDomainValidation(
|
|
189
|
+
args: CreateAcmeDomainValidationCommandInput,
|
|
190
|
+
options: __HttpHandlerOptions,
|
|
191
|
+
cb: (err: any, data?: CreateAcmeDomainValidationCommandOutput) => void
|
|
192
|
+
): void;
|
|
193
|
+
createAcmeEndpoint(
|
|
194
|
+
args: CreateAcmeEndpointCommandInput,
|
|
195
|
+
options?: __HttpHandlerOptions
|
|
196
|
+
): Promise<CreateAcmeEndpointCommandOutput>;
|
|
197
|
+
createAcmeEndpoint(
|
|
198
|
+
args: CreateAcmeEndpointCommandInput,
|
|
199
|
+
cb: (err: any, data?: CreateAcmeEndpointCommandOutput) => void
|
|
200
|
+
): void;
|
|
201
|
+
createAcmeEndpoint(
|
|
202
|
+
args: CreateAcmeEndpointCommandInput,
|
|
203
|
+
options: __HttpHandlerOptions,
|
|
204
|
+
cb: (err: any, data?: CreateAcmeEndpointCommandOutput) => void
|
|
205
|
+
): void;
|
|
206
|
+
createAcmeExternalAccountBinding(
|
|
207
|
+
args: CreateAcmeExternalAccountBindingCommandInput,
|
|
208
|
+
options?: __HttpHandlerOptions
|
|
209
|
+
): Promise<CreateAcmeExternalAccountBindingCommandOutput>;
|
|
210
|
+
createAcmeExternalAccountBinding(
|
|
211
|
+
args: CreateAcmeExternalAccountBindingCommandInput,
|
|
212
|
+
cb: (err: any, data?: CreateAcmeExternalAccountBindingCommandOutput) => void
|
|
213
|
+
): void;
|
|
214
|
+
createAcmeExternalAccountBinding(
|
|
215
|
+
args: CreateAcmeExternalAccountBindingCommandInput,
|
|
216
|
+
options: __HttpHandlerOptions,
|
|
217
|
+
cb: (err: any, data?: CreateAcmeExternalAccountBindingCommandOutput) => void
|
|
218
|
+
): void;
|
|
219
|
+
deleteAcmeDomainValidation(
|
|
220
|
+
args: DeleteAcmeDomainValidationCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<DeleteAcmeDomainValidationCommandOutput>;
|
|
223
|
+
deleteAcmeDomainValidation(
|
|
224
|
+
args: DeleteAcmeDomainValidationCommandInput,
|
|
225
|
+
cb: (err: any, data?: DeleteAcmeDomainValidationCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
deleteAcmeDomainValidation(
|
|
228
|
+
args: DeleteAcmeDomainValidationCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: DeleteAcmeDomainValidationCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
deleteAcmeEndpoint(
|
|
233
|
+
args: DeleteAcmeEndpointCommandInput,
|
|
234
|
+
options?: __HttpHandlerOptions
|
|
235
|
+
): Promise<DeleteAcmeEndpointCommandOutput>;
|
|
236
|
+
deleteAcmeEndpoint(
|
|
237
|
+
args: DeleteAcmeEndpointCommandInput,
|
|
238
|
+
cb: (err: any, data?: DeleteAcmeEndpointCommandOutput) => void
|
|
239
|
+
): void;
|
|
240
|
+
deleteAcmeEndpoint(
|
|
241
|
+
args: DeleteAcmeEndpointCommandInput,
|
|
242
|
+
options: __HttpHandlerOptions,
|
|
243
|
+
cb: (err: any, data?: DeleteAcmeEndpointCommandOutput) => void
|
|
244
|
+
): void;
|
|
245
|
+
deleteAcmeExternalAccountBinding(
|
|
246
|
+
args: DeleteAcmeExternalAccountBindingCommandInput,
|
|
247
|
+
options?: __HttpHandlerOptions
|
|
248
|
+
): Promise<DeleteAcmeExternalAccountBindingCommandOutput>;
|
|
249
|
+
deleteAcmeExternalAccountBinding(
|
|
250
|
+
args: DeleteAcmeExternalAccountBindingCommandInput,
|
|
251
|
+
cb: (err: any, data?: DeleteAcmeExternalAccountBindingCommandOutput) => void
|
|
252
|
+
): void;
|
|
253
|
+
deleteAcmeExternalAccountBinding(
|
|
254
|
+
args: DeleteAcmeExternalAccountBindingCommandInput,
|
|
255
|
+
options: __HttpHandlerOptions,
|
|
256
|
+
cb: (err: any, data?: DeleteAcmeExternalAccountBindingCommandOutput) => void
|
|
257
|
+
): void;
|
|
91
258
|
deleteCertificate(
|
|
92
259
|
args: DeleteCertificateCommandInput,
|
|
93
260
|
options?: __HttpHandlerOptions
|
|
@@ -101,6 +268,64 @@ export interface ACM {
|
|
|
101
268
|
options: __HttpHandlerOptions,
|
|
102
269
|
cb: (err: any, data?: DeleteCertificateCommandOutput) => void
|
|
103
270
|
): void;
|
|
271
|
+
describeAcmeAccount(
|
|
272
|
+
args: DescribeAcmeAccountCommandInput,
|
|
273
|
+
options?: __HttpHandlerOptions
|
|
274
|
+
): Promise<DescribeAcmeAccountCommandOutput>;
|
|
275
|
+
describeAcmeAccount(
|
|
276
|
+
args: DescribeAcmeAccountCommandInput,
|
|
277
|
+
cb: (err: any, data?: DescribeAcmeAccountCommandOutput) => void
|
|
278
|
+
): void;
|
|
279
|
+
describeAcmeAccount(
|
|
280
|
+
args: DescribeAcmeAccountCommandInput,
|
|
281
|
+
options: __HttpHandlerOptions,
|
|
282
|
+
cb: (err: any, data?: DescribeAcmeAccountCommandOutput) => void
|
|
283
|
+
): void;
|
|
284
|
+
describeAcmeDomainValidation(
|
|
285
|
+
args: DescribeAcmeDomainValidationCommandInput,
|
|
286
|
+
options?: __HttpHandlerOptions
|
|
287
|
+
): Promise<DescribeAcmeDomainValidationCommandOutput>;
|
|
288
|
+
describeAcmeDomainValidation(
|
|
289
|
+
args: DescribeAcmeDomainValidationCommandInput,
|
|
290
|
+
cb: (err: any, data?: DescribeAcmeDomainValidationCommandOutput) => void
|
|
291
|
+
): void;
|
|
292
|
+
describeAcmeDomainValidation(
|
|
293
|
+
args: DescribeAcmeDomainValidationCommandInput,
|
|
294
|
+
options: __HttpHandlerOptions,
|
|
295
|
+
cb: (err: any, data?: DescribeAcmeDomainValidationCommandOutput) => void
|
|
296
|
+
): void;
|
|
297
|
+
describeAcmeEndpoint(
|
|
298
|
+
args: DescribeAcmeEndpointCommandInput,
|
|
299
|
+
options?: __HttpHandlerOptions
|
|
300
|
+
): Promise<DescribeAcmeEndpointCommandOutput>;
|
|
301
|
+
describeAcmeEndpoint(
|
|
302
|
+
args: DescribeAcmeEndpointCommandInput,
|
|
303
|
+
cb: (err: any, data?: DescribeAcmeEndpointCommandOutput) => void
|
|
304
|
+
): void;
|
|
305
|
+
describeAcmeEndpoint(
|
|
306
|
+
args: DescribeAcmeEndpointCommandInput,
|
|
307
|
+
options: __HttpHandlerOptions,
|
|
308
|
+
cb: (err: any, data?: DescribeAcmeEndpointCommandOutput) => void
|
|
309
|
+
): void;
|
|
310
|
+
describeAcmeExternalAccountBinding(
|
|
311
|
+
args: DescribeAcmeExternalAccountBindingCommandInput,
|
|
312
|
+
options?: __HttpHandlerOptions
|
|
313
|
+
): Promise<DescribeAcmeExternalAccountBindingCommandOutput>;
|
|
314
|
+
describeAcmeExternalAccountBinding(
|
|
315
|
+
args: DescribeAcmeExternalAccountBindingCommandInput,
|
|
316
|
+
cb: (
|
|
317
|
+
err: any,
|
|
318
|
+
data?: DescribeAcmeExternalAccountBindingCommandOutput
|
|
319
|
+
) => void
|
|
320
|
+
): void;
|
|
321
|
+
describeAcmeExternalAccountBinding(
|
|
322
|
+
args: DescribeAcmeExternalAccountBindingCommandInput,
|
|
323
|
+
options: __HttpHandlerOptions,
|
|
324
|
+
cb: (
|
|
325
|
+
err: any,
|
|
326
|
+
data?: DescribeAcmeExternalAccountBindingCommandOutput
|
|
327
|
+
) => void
|
|
328
|
+
): void;
|
|
104
329
|
describeCertificate(
|
|
105
330
|
args: DescribeCertificateCommandInput,
|
|
106
331
|
options?: __HttpHandlerOptions
|
|
@@ -141,6 +366,25 @@ export interface ACM {
|
|
|
141
366
|
options: __HttpHandlerOptions,
|
|
142
367
|
cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void
|
|
143
368
|
): void;
|
|
369
|
+
getAcmeExternalAccountBindingCredentials(
|
|
370
|
+
args: GetAcmeExternalAccountBindingCredentialsCommandInput,
|
|
371
|
+
options?: __HttpHandlerOptions
|
|
372
|
+
): Promise<GetAcmeExternalAccountBindingCredentialsCommandOutput>;
|
|
373
|
+
getAcmeExternalAccountBindingCredentials(
|
|
374
|
+
args: GetAcmeExternalAccountBindingCredentialsCommandInput,
|
|
375
|
+
cb: (
|
|
376
|
+
err: any,
|
|
377
|
+
data?: GetAcmeExternalAccountBindingCredentialsCommandOutput
|
|
378
|
+
) => void
|
|
379
|
+
): void;
|
|
380
|
+
getAcmeExternalAccountBindingCredentials(
|
|
381
|
+
args: GetAcmeExternalAccountBindingCredentialsCommandInput,
|
|
382
|
+
options: __HttpHandlerOptions,
|
|
383
|
+
cb: (
|
|
384
|
+
err: any,
|
|
385
|
+
data?: GetAcmeExternalAccountBindingCredentialsCommandOutput
|
|
386
|
+
) => void
|
|
387
|
+
): void;
|
|
144
388
|
getCertificate(
|
|
145
389
|
args: GetCertificateCommandInput,
|
|
146
390
|
options?: __HttpHandlerOptions
|
|
@@ -167,6 +411,59 @@ export interface ACM {
|
|
|
167
411
|
options: __HttpHandlerOptions,
|
|
168
412
|
cb: (err: any, data?: ImportCertificateCommandOutput) => void
|
|
169
413
|
): void;
|
|
414
|
+
listAcmeAccounts(
|
|
415
|
+
args: ListAcmeAccountsCommandInput,
|
|
416
|
+
options?: __HttpHandlerOptions
|
|
417
|
+
): Promise<ListAcmeAccountsCommandOutput>;
|
|
418
|
+
listAcmeAccounts(
|
|
419
|
+
args: ListAcmeAccountsCommandInput,
|
|
420
|
+
cb: (err: any, data?: ListAcmeAccountsCommandOutput) => void
|
|
421
|
+
): void;
|
|
422
|
+
listAcmeAccounts(
|
|
423
|
+
args: ListAcmeAccountsCommandInput,
|
|
424
|
+
options: __HttpHandlerOptions,
|
|
425
|
+
cb: (err: any, data?: ListAcmeAccountsCommandOutput) => void
|
|
426
|
+
): void;
|
|
427
|
+
listAcmeDomainValidations(
|
|
428
|
+
args: ListAcmeDomainValidationsCommandInput,
|
|
429
|
+
options?: __HttpHandlerOptions
|
|
430
|
+
): Promise<ListAcmeDomainValidationsCommandOutput>;
|
|
431
|
+
listAcmeDomainValidations(
|
|
432
|
+
args: ListAcmeDomainValidationsCommandInput,
|
|
433
|
+
cb: (err: any, data?: ListAcmeDomainValidationsCommandOutput) => void
|
|
434
|
+
): void;
|
|
435
|
+
listAcmeDomainValidations(
|
|
436
|
+
args: ListAcmeDomainValidationsCommandInput,
|
|
437
|
+
options: __HttpHandlerOptions,
|
|
438
|
+
cb: (err: any, data?: ListAcmeDomainValidationsCommandOutput) => void
|
|
439
|
+
): void;
|
|
440
|
+
listAcmeEndpoints(): Promise<ListAcmeEndpointsCommandOutput>;
|
|
441
|
+
listAcmeEndpoints(
|
|
442
|
+
args: ListAcmeEndpointsCommandInput,
|
|
443
|
+
options?: __HttpHandlerOptions
|
|
444
|
+
): Promise<ListAcmeEndpointsCommandOutput>;
|
|
445
|
+
listAcmeEndpoints(
|
|
446
|
+
args: ListAcmeEndpointsCommandInput,
|
|
447
|
+
cb: (err: any, data?: ListAcmeEndpointsCommandOutput) => void
|
|
448
|
+
): void;
|
|
449
|
+
listAcmeEndpoints(
|
|
450
|
+
args: ListAcmeEndpointsCommandInput,
|
|
451
|
+
options: __HttpHandlerOptions,
|
|
452
|
+
cb: (err: any, data?: ListAcmeEndpointsCommandOutput) => void
|
|
453
|
+
): void;
|
|
454
|
+
listAcmeExternalAccountBindings(
|
|
455
|
+
args: ListAcmeExternalAccountBindingsCommandInput,
|
|
456
|
+
options?: __HttpHandlerOptions
|
|
457
|
+
): Promise<ListAcmeExternalAccountBindingsCommandOutput>;
|
|
458
|
+
listAcmeExternalAccountBindings(
|
|
459
|
+
args: ListAcmeExternalAccountBindingsCommandInput,
|
|
460
|
+
cb: (err: any, data?: ListAcmeExternalAccountBindingsCommandOutput) => void
|
|
461
|
+
): void;
|
|
462
|
+
listAcmeExternalAccountBindings(
|
|
463
|
+
args: ListAcmeExternalAccountBindingsCommandInput,
|
|
464
|
+
options: __HttpHandlerOptions,
|
|
465
|
+
cb: (err: any, data?: ListAcmeExternalAccountBindingsCommandOutput) => void
|
|
466
|
+
): void;
|
|
170
467
|
listCertificates(): Promise<ListCertificatesCommandOutput>;
|
|
171
468
|
listCertificates(
|
|
172
469
|
args: ListCertificatesCommandInput,
|
|
@@ -194,6 +491,19 @@ export interface ACM {
|
|
|
194
491
|
options: __HttpHandlerOptions,
|
|
195
492
|
cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void
|
|
196
493
|
): void;
|
|
494
|
+
listTagsForResource(
|
|
495
|
+
args: ListTagsForResourceCommandInput,
|
|
496
|
+
options?: __HttpHandlerOptions
|
|
497
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
498
|
+
listTagsForResource(
|
|
499
|
+
args: ListTagsForResourceCommandInput,
|
|
500
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
501
|
+
): void;
|
|
502
|
+
listTagsForResource(
|
|
503
|
+
args: ListTagsForResourceCommandInput,
|
|
504
|
+
options: __HttpHandlerOptions,
|
|
505
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
506
|
+
): void;
|
|
197
507
|
putAccountConfiguration(
|
|
198
508
|
args: PutAccountConfigurationCommandInput,
|
|
199
509
|
options?: __HttpHandlerOptions
|
|
@@ -259,6 +569,32 @@ export interface ACM {
|
|
|
259
569
|
options: __HttpHandlerOptions,
|
|
260
570
|
cb: (err: any, data?: ResendValidationEmailCommandOutput) => void
|
|
261
571
|
): void;
|
|
572
|
+
revokeAcmeAccount(
|
|
573
|
+
args: RevokeAcmeAccountCommandInput,
|
|
574
|
+
options?: __HttpHandlerOptions
|
|
575
|
+
): Promise<RevokeAcmeAccountCommandOutput>;
|
|
576
|
+
revokeAcmeAccount(
|
|
577
|
+
args: RevokeAcmeAccountCommandInput,
|
|
578
|
+
cb: (err: any, data?: RevokeAcmeAccountCommandOutput) => void
|
|
579
|
+
): void;
|
|
580
|
+
revokeAcmeAccount(
|
|
581
|
+
args: RevokeAcmeAccountCommandInput,
|
|
582
|
+
options: __HttpHandlerOptions,
|
|
583
|
+
cb: (err: any, data?: RevokeAcmeAccountCommandOutput) => void
|
|
584
|
+
): void;
|
|
585
|
+
revokeAcmeExternalAccountBinding(
|
|
586
|
+
args: RevokeAcmeExternalAccountBindingCommandInput,
|
|
587
|
+
options?: __HttpHandlerOptions
|
|
588
|
+
): Promise<RevokeAcmeExternalAccountBindingCommandOutput>;
|
|
589
|
+
revokeAcmeExternalAccountBinding(
|
|
590
|
+
args: RevokeAcmeExternalAccountBindingCommandInput,
|
|
591
|
+
cb: (err: any, data?: RevokeAcmeExternalAccountBindingCommandOutput) => void
|
|
592
|
+
): void;
|
|
593
|
+
revokeAcmeExternalAccountBinding(
|
|
594
|
+
args: RevokeAcmeExternalAccountBindingCommandInput,
|
|
595
|
+
options: __HttpHandlerOptions,
|
|
596
|
+
cb: (err: any, data?: RevokeAcmeExternalAccountBindingCommandOutput) => void
|
|
597
|
+
): void;
|
|
262
598
|
revokeCertificate(
|
|
263
599
|
args: RevokeCertificateCommandInput,
|
|
264
600
|
options?: __HttpHandlerOptions
|
|
@@ -286,6 +622,58 @@ export interface ACM {
|
|
|
286
622
|
options: __HttpHandlerOptions,
|
|
287
623
|
cb: (err: any, data?: SearchCertificatesCommandOutput) => void
|
|
288
624
|
): void;
|
|
625
|
+
tagResource(
|
|
626
|
+
args: TagResourceCommandInput,
|
|
627
|
+
options?: __HttpHandlerOptions
|
|
628
|
+
): Promise<TagResourceCommandOutput>;
|
|
629
|
+
tagResource(
|
|
630
|
+
args: TagResourceCommandInput,
|
|
631
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
632
|
+
): void;
|
|
633
|
+
tagResource(
|
|
634
|
+
args: TagResourceCommandInput,
|
|
635
|
+
options: __HttpHandlerOptions,
|
|
636
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
637
|
+
): void;
|
|
638
|
+
untagResource(
|
|
639
|
+
args: UntagResourceCommandInput,
|
|
640
|
+
options?: __HttpHandlerOptions
|
|
641
|
+
): Promise<UntagResourceCommandOutput>;
|
|
642
|
+
untagResource(
|
|
643
|
+
args: UntagResourceCommandInput,
|
|
644
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
645
|
+
): void;
|
|
646
|
+
untagResource(
|
|
647
|
+
args: UntagResourceCommandInput,
|
|
648
|
+
options: __HttpHandlerOptions,
|
|
649
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
650
|
+
): void;
|
|
651
|
+
updateAcmeDomainValidation(
|
|
652
|
+
args: UpdateAcmeDomainValidationCommandInput,
|
|
653
|
+
options?: __HttpHandlerOptions
|
|
654
|
+
): Promise<UpdateAcmeDomainValidationCommandOutput>;
|
|
655
|
+
updateAcmeDomainValidation(
|
|
656
|
+
args: UpdateAcmeDomainValidationCommandInput,
|
|
657
|
+
cb: (err: any, data?: UpdateAcmeDomainValidationCommandOutput) => void
|
|
658
|
+
): void;
|
|
659
|
+
updateAcmeDomainValidation(
|
|
660
|
+
args: UpdateAcmeDomainValidationCommandInput,
|
|
661
|
+
options: __HttpHandlerOptions,
|
|
662
|
+
cb: (err: any, data?: UpdateAcmeDomainValidationCommandOutput) => void
|
|
663
|
+
): void;
|
|
664
|
+
updateAcmeEndpoint(
|
|
665
|
+
args: UpdateAcmeEndpointCommandInput,
|
|
666
|
+
options?: __HttpHandlerOptions
|
|
667
|
+
): Promise<UpdateAcmeEndpointCommandOutput>;
|
|
668
|
+
updateAcmeEndpoint(
|
|
669
|
+
args: UpdateAcmeEndpointCommandInput,
|
|
670
|
+
cb: (err: any, data?: UpdateAcmeEndpointCommandOutput) => void
|
|
671
|
+
): void;
|
|
672
|
+
updateAcmeEndpoint(
|
|
673
|
+
args: UpdateAcmeEndpointCommandInput,
|
|
674
|
+
options: __HttpHandlerOptions,
|
|
675
|
+
cb: (err: any, data?: UpdateAcmeEndpointCommandOutput) => void
|
|
676
|
+
): void;
|
|
289
677
|
updateCertificateOptions(
|
|
290
678
|
args: UpdateCertificateOptionsCommandInput,
|
|
291
679
|
options?: __HttpHandlerOptions
|
|
@@ -299,6 +687,34 @@ export interface ACM {
|
|
|
299
687
|
options: __HttpHandlerOptions,
|
|
300
688
|
cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void
|
|
301
689
|
): void;
|
|
690
|
+
paginateListAcmeAccounts(
|
|
691
|
+
args: ListAcmeAccountsCommandInput,
|
|
692
|
+
paginationConfig?: Pick<
|
|
693
|
+
PaginationConfiguration,
|
|
694
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
695
|
+
>
|
|
696
|
+
): Paginator<ListAcmeAccountsCommandOutput>;
|
|
697
|
+
paginateListAcmeDomainValidations(
|
|
698
|
+
args: ListAcmeDomainValidationsCommandInput,
|
|
699
|
+
paginationConfig?: Pick<
|
|
700
|
+
PaginationConfiguration,
|
|
701
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
702
|
+
>
|
|
703
|
+
): Paginator<ListAcmeDomainValidationsCommandOutput>;
|
|
704
|
+
paginateListAcmeEndpoints(
|
|
705
|
+
args?: ListAcmeEndpointsCommandInput,
|
|
706
|
+
paginationConfig?: Pick<
|
|
707
|
+
PaginationConfiguration,
|
|
708
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
709
|
+
>
|
|
710
|
+
): Paginator<ListAcmeEndpointsCommandOutput>;
|
|
711
|
+
paginateListAcmeExternalAccountBindings(
|
|
712
|
+
args: ListAcmeExternalAccountBindingsCommandInput,
|
|
713
|
+
paginationConfig?: Pick<
|
|
714
|
+
PaginationConfiguration,
|
|
715
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
716
|
+
>
|
|
717
|
+
): Paginator<ListAcmeExternalAccountBindingsCommandOutput>;
|
|
302
718
|
paginateListCertificates(
|
|
303
719
|
args?: ListCertificatesCommandInput,
|
|
304
720
|
paginationConfig?: Pick<
|
|
@@ -313,6 +729,42 @@ export interface ACM {
|
|
|
313
729
|
Exclude<keyof PaginationConfiguration, "client">
|
|
314
730
|
>
|
|
315
731
|
): Paginator<SearchCertificatesCommandOutput>;
|
|
732
|
+
waitUntilAcmeDomainValidationValidated(
|
|
733
|
+
args: DescribeAcmeDomainValidationCommandInput,
|
|
734
|
+
waiterConfig:
|
|
735
|
+
| number
|
|
736
|
+
| Pick<
|
|
737
|
+
WaiterConfiguration<ACM>,
|
|
738
|
+
Exclude<keyof WaiterConfiguration<ACM>, "client">
|
|
739
|
+
>
|
|
740
|
+
): Promise<WaiterResult<DescribeAcmeDomainValidationCommandOutput>>;
|
|
741
|
+
waitUntilAcmeDomainValidationDeleted(
|
|
742
|
+
args: DescribeAcmeDomainValidationCommandInput,
|
|
743
|
+
waiterConfig:
|
|
744
|
+
| number
|
|
745
|
+
| Pick<
|
|
746
|
+
WaiterConfiguration<ACM>,
|
|
747
|
+
Exclude<keyof WaiterConfiguration<ACM>, "client">
|
|
748
|
+
>
|
|
749
|
+
): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
750
|
+
waitUntilAcmeEndpointActive(
|
|
751
|
+
args: DescribeAcmeEndpointCommandInput,
|
|
752
|
+
waiterConfig:
|
|
753
|
+
| number
|
|
754
|
+
| Pick<
|
|
755
|
+
WaiterConfiguration<ACM>,
|
|
756
|
+
Exclude<keyof WaiterConfiguration<ACM>, "client">
|
|
757
|
+
>
|
|
758
|
+
): Promise<WaiterResult<DescribeAcmeEndpointCommandOutput>>;
|
|
759
|
+
waitUntilAcmeEndpointDeleted(
|
|
760
|
+
args: DescribeAcmeEndpointCommandInput,
|
|
761
|
+
waiterConfig:
|
|
762
|
+
| number
|
|
763
|
+
| Pick<
|
|
764
|
+
WaiterConfiguration<ACM>,
|
|
765
|
+
Exclude<keyof WaiterConfiguration<ACM>, "client">
|
|
766
|
+
>
|
|
767
|
+
): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
316
768
|
waitUntilCertificateValidated(
|
|
317
769
|
args: DescribeCertificateCommandInput,
|
|
318
770
|
waiterConfig:
|