@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.
Files changed (166) hide show
  1. package/README.md +161 -7
  2. package/dist-cjs/index.js +1406 -152
  3. package/dist-es/ACM.js +60 -0
  4. package/dist-es/commands/AddTagsToCertificateCommand.js +4 -1
  5. package/dist-es/commands/CreateAcmeDomainValidationCommand.js +19 -0
  6. package/dist-es/commands/CreateAcmeEndpointCommand.js +19 -0
  7. package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +19 -0
  8. package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +19 -0
  9. package/dist-es/commands/DeleteAcmeEndpointCommand.js +19 -0
  10. package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +19 -0
  11. package/dist-es/commands/DeleteCertificateCommand.js +4 -1
  12. package/dist-es/commands/DescribeAcmeAccountCommand.js +19 -0
  13. package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +19 -0
  14. package/dist-es/commands/DescribeAcmeEndpointCommand.js +19 -0
  15. package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +19 -0
  16. package/dist-es/commands/DescribeCertificateCommand.js +4 -1
  17. package/dist-es/commands/ExportCertificateCommand.js +4 -1
  18. package/dist-es/commands/GetAccountConfigurationCommand.js +4 -1
  19. package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +19 -0
  20. package/dist-es/commands/GetCertificateCommand.js +4 -1
  21. package/dist-es/commands/ImportCertificateCommand.js +4 -1
  22. package/dist-es/commands/ListAcmeAccountsCommand.js +19 -0
  23. package/dist-es/commands/ListAcmeDomainValidationsCommand.js +19 -0
  24. package/dist-es/commands/ListAcmeEndpointsCommand.js +19 -0
  25. package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +19 -0
  26. package/dist-es/commands/ListCertificatesCommand.js +4 -1
  27. package/dist-es/commands/ListTagsForCertificateCommand.js +4 -1
  28. package/dist-es/commands/ListTagsForResourceCommand.js +19 -0
  29. package/dist-es/commands/PutAccountConfigurationCommand.js +4 -1
  30. package/dist-es/commands/RemoveTagsFromCertificateCommand.js +4 -1
  31. package/dist-es/commands/RenewCertificateCommand.js +4 -1
  32. package/dist-es/commands/RequestCertificateCommand.js +4 -1
  33. package/dist-es/commands/ResendValidationEmailCommand.js +4 -1
  34. package/dist-es/commands/RevokeAcmeAccountCommand.js +19 -0
  35. package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +19 -0
  36. package/dist-es/commands/RevokeCertificateCommand.js +4 -1
  37. package/dist-es/commands/SearchCertificatesCommand.js +4 -1
  38. package/dist-es/commands/TagResourceCommand.js +19 -0
  39. package/dist-es/commands/UntagResourceCommand.js +19 -0
  40. package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +19 -0
  41. package/dist-es/commands/UpdateAcmeEndpointCommand.js +19 -0
  42. package/dist-es/commands/UpdateCertificateOptionsCommand.js +4 -1
  43. package/dist-es/commands/index.js +22 -0
  44. package/dist-es/endpoint/EndpointParameters.js +4 -1
  45. package/dist-es/endpoint/bdd.js +27 -35
  46. package/dist-es/endpoint/endpointResolver.js +1 -1
  47. package/dist-es/models/enums.js +60 -0
  48. package/dist-es/models/errors.js +37 -12
  49. package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
  50. package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
  51. package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
  52. package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
  53. package/dist-es/pagination/index.js +4 -0
  54. package/dist-es/runtimeConfig.browser.js +0 -2
  55. package/dist-es/runtimeConfig.js +1 -2
  56. package/dist-es/runtimeConfig.native.js +0 -2
  57. package/dist-es/runtimeConfig.shared.js +2 -0
  58. package/dist-es/schemas/schemas_0.js +512 -39
  59. package/dist-es/waiters/index.js +4 -0
  60. package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
  61. package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
  62. package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
  63. package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
  64. package/dist-types/ACM.d.ts +208 -0
  65. package/dist-types/ACMClient.d.ts +24 -2
  66. package/dist-types/commands/AddTagsToCertificateCommand.d.ts +4 -1
  67. package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +115 -0
  68. package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +115 -0
  69. package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +118 -0
  70. package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +89 -0
  71. package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +89 -0
  72. package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +86 -0
  73. package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -1
  74. package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +101 -0
  75. package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +118 -0
  76. package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +113 -0
  77. package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +100 -0
  78. package/dist-types/commands/DescribeCertificateCommand.d.ts +6 -0
  79. package/dist-types/commands/ExportCertificateCommand.d.ts +3 -0
  80. package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +92 -0
  81. package/dist-types/commands/GetCertificateCommand.d.ts +3 -0
  82. package/dist-types/commands/ImportCertificateCommand.d.ts +3 -0
  83. package/dist-types/commands/ListAcmeAccountsCommand.d.ts +105 -0
  84. package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +123 -0
  85. package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +114 -0
  86. package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +105 -0
  87. package/dist-types/commands/ListCertificatesCommand.d.ts +5 -1
  88. package/dist-types/commands/ListTagsForCertificateCommand.d.ts +4 -1
  89. package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
  90. package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +4 -1
  91. package/dist-types/commands/RenewCertificateCommand.d.ts +3 -0
  92. package/dist-types/commands/ResendValidationEmailCommand.d.ts +3 -0
  93. package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +93 -0
  94. package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +92 -0
  95. package/dist-types/commands/RevokeCertificateCommand.d.ts +3 -0
  96. package/dist-types/commands/SearchCertificatesCommand.d.ts +10 -1
  97. package/dist-types/commands/TagResourceCommand.d.ts +89 -0
  98. package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
  99. package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +102 -0
  100. package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +101 -0
  101. package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +3 -0
  102. package/dist-types/commands/index.d.ts +22 -0
  103. package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
  104. package/dist-types/models/enums.d.ts +148 -0
  105. package/dist-types/models/errors.d.ts +37 -12
  106. package/dist-types/models/models_0.d.ts +1284 -67
  107. package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
  110. package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
  111. package/dist-types/pagination/index.d.ts +4 -0
  112. package/dist-types/runtimeConfig.browser.d.ts +5 -1
  113. package/dist-types/runtimeConfig.d.ts +5 -1
  114. package/dist-types/runtimeConfig.native.d.ts +5 -1
  115. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  116. package/dist-types/schemas/schemas_0.d.ts +76 -0
  117. package/dist-types/ts3.4/ACM.d.ts +452 -0
  118. package/dist-types/ts3.4/ACMClient.d.ts +132 -0
  119. package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +53 -0
  120. package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +53 -0
  121. package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +53 -0
  122. package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +49 -0
  123. package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +48 -0
  124. package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +49 -0
  125. package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +53 -0
  126. package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +53 -0
  127. package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +53 -0
  128. package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +53 -0
  129. package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +53 -0
  130. package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +52 -0
  131. package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +53 -0
  132. package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +53 -0
  133. package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +53 -0
  134. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
  135. package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +48 -0
  136. package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +49 -0
  137. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  138. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
  139. package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +49 -0
  140. package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +48 -0
  141. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  142. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
  143. package/dist-types/ts3.4/models/enums.d.ts +80 -0
  144. package/dist-types/ts3.4/models/errors.d.ts +22 -7
  145. package/dist-types/ts3.4/models/models_0.d.ts +395 -5
  146. package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
  149. package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
  150. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  151. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -1
  152. package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
  153. package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
  154. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  155. package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
  156. package/dist-types/ts3.4/waiters/index.d.ts +4 -0
  157. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
  158. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
  159. package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
  160. package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
  161. package/dist-types/waiters/index.d.ts +4 -0
  162. package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
  163. package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
  164. package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
  165. package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
  166. package/package.json +6 -8
@@ -1,15 +1,25 @@
1
1
  import {
2
+ AcmeAccountStatus,
3
+ AcmeAuthorizationBehavior,
4
+ AcmeContact,
5
+ AcmeDomainValidationFailureReason,
6
+ AcmeDomainValidationStatus,
7
+ AcmeEndpointStatus,
2
8
  CertificateExport,
9
+ CertificateKeyPairOrigin,
3
10
  CertificateManagedBy,
4
11
  CertificateStatus,
5
12
  CertificateTransparencyLoggingPreference,
6
13
  CertificateType,
7
14
  ComparisonOperator,
15
+ DomainScopeOption,
8
16
  DomainStatus,
9
17
  ExtendedKeyUsageName,
10
18
  FailureReason,
11
19
  KeyAlgorithm,
12
20
  KeyUsageName,
21
+ PrevalidationType,
22
+ PublicKeyAlgorithm,
13
23
  RecordType,
14
24
  RenewalEligibility,
15
25
  RenewalStatus,
@@ -18,6 +28,7 @@ import {
18
28
  SearchCertificatesSortOrder,
19
29
  SortBy,
20
30
  SortOrder,
31
+ TimeType,
21
32
  ValidationMethod,
22
33
  } from "./enums";
23
34
  export interface AcmCertificateMetadata {
@@ -34,8 +45,14 @@ export interface AcmCertificateMetadata {
34
45
  ExportOption?: CertificateExport | undefined;
35
46
  ManagedBy?: CertificateManagedBy | undefined;
36
47
  ValidationMethod?: ValidationMethod | undefined;
48
+ CertificateKeyPairOrigin?: CertificateKeyPairOrigin | undefined;
49
+ AcmeEndpointArn?: string | undefined;
50
+ AcmeAccountId?: string | undefined;
37
51
  }
38
52
  export type AcmCertificateMetadataFilter =
53
+ | AcmCertificateMetadataFilter.AcmeAccountIdMember
54
+ | AcmCertificateMetadataFilter.AcmeEndpointArnMember
55
+ | AcmCertificateMetadataFilter.CertificateKeyPairOriginMember
39
56
  | AcmCertificateMetadataFilter.ExportOptionMember
40
57
  | AcmCertificateMetadataFilter.ExportedMember
41
58
  | AcmCertificateMetadataFilter.InUseMember
@@ -55,6 +72,9 @@ export declare namespace AcmCertificateMetadataFilter {
55
72
  ExportOption?: never;
56
73
  ManagedBy?: never;
57
74
  ValidationMethod?: never;
75
+ CertificateKeyPairOrigin?: never;
76
+ AcmeEndpointArn?: never;
77
+ AcmeAccountId?: never;
58
78
  $unknown?: never;
59
79
  }
60
80
  interface RenewalStatusMember {
@@ -66,6 +86,9 @@ export declare namespace AcmCertificateMetadataFilter {
66
86
  ExportOption?: never;
67
87
  ManagedBy?: never;
68
88
  ValidationMethod?: never;
89
+ CertificateKeyPairOrigin?: never;
90
+ AcmeEndpointArn?: never;
91
+ AcmeAccountId?: never;
69
92
  $unknown?: never;
70
93
  }
71
94
  interface TypeMember {
@@ -77,6 +100,9 @@ export declare namespace AcmCertificateMetadataFilter {
77
100
  ExportOption?: never;
78
101
  ManagedBy?: never;
79
102
  ValidationMethod?: never;
103
+ CertificateKeyPairOrigin?: never;
104
+ AcmeEndpointArn?: never;
105
+ AcmeAccountId?: never;
80
106
  $unknown?: never;
81
107
  }
82
108
  interface InUseMember {
@@ -88,6 +114,9 @@ export declare namespace AcmCertificateMetadataFilter {
88
114
  ExportOption?: never;
89
115
  ManagedBy?: never;
90
116
  ValidationMethod?: never;
117
+ CertificateKeyPairOrigin?: never;
118
+ AcmeEndpointArn?: never;
119
+ AcmeAccountId?: never;
91
120
  $unknown?: never;
92
121
  }
93
122
  interface ExportedMember {
@@ -99,6 +128,9 @@ export declare namespace AcmCertificateMetadataFilter {
99
128
  ExportOption?: never;
100
129
  ManagedBy?: never;
101
130
  ValidationMethod?: never;
131
+ CertificateKeyPairOrigin?: never;
132
+ AcmeEndpointArn?: never;
133
+ AcmeAccountId?: never;
102
134
  $unknown?: never;
103
135
  }
104
136
  interface ExportOptionMember {
@@ -110,6 +142,9 @@ export declare namespace AcmCertificateMetadataFilter {
110
142
  ExportOption: CertificateExport;
111
143
  ManagedBy?: never;
112
144
  ValidationMethod?: never;
145
+ CertificateKeyPairOrigin?: never;
146
+ AcmeEndpointArn?: never;
147
+ AcmeAccountId?: never;
113
148
  $unknown?: never;
114
149
  }
115
150
  interface ManagedByMember {
@@ -121,6 +156,9 @@ export declare namespace AcmCertificateMetadataFilter {
121
156
  ExportOption?: never;
122
157
  ManagedBy: CertificateManagedBy;
123
158
  ValidationMethod?: never;
159
+ CertificateKeyPairOrigin?: never;
160
+ AcmeEndpointArn?: never;
161
+ AcmeAccountId?: never;
124
162
  $unknown?: never;
125
163
  }
126
164
  interface ValidationMethodMember {
@@ -132,6 +170,51 @@ export declare namespace AcmCertificateMetadataFilter {
132
170
  ExportOption?: never;
133
171
  ManagedBy?: never;
134
172
  ValidationMethod: ValidationMethod;
173
+ CertificateKeyPairOrigin?: never;
174
+ AcmeEndpointArn?: never;
175
+ AcmeAccountId?: never;
176
+ $unknown?: never;
177
+ }
178
+ interface CertificateKeyPairOriginMember {
179
+ Status?: never;
180
+ RenewalStatus?: never;
181
+ Type?: never;
182
+ InUse?: never;
183
+ Exported?: never;
184
+ ExportOption?: never;
185
+ ManagedBy?: never;
186
+ ValidationMethod?: never;
187
+ CertificateKeyPairOrigin: CertificateKeyPairOrigin;
188
+ AcmeEndpointArn?: never;
189
+ AcmeAccountId?: never;
190
+ $unknown?: never;
191
+ }
192
+ interface AcmeEndpointArnMember {
193
+ Status?: never;
194
+ RenewalStatus?: never;
195
+ Type?: never;
196
+ InUse?: never;
197
+ Exported?: never;
198
+ ExportOption?: never;
199
+ ManagedBy?: never;
200
+ ValidationMethod?: never;
201
+ CertificateKeyPairOrigin?: never;
202
+ AcmeEndpointArn: string;
203
+ AcmeAccountId?: never;
204
+ $unknown?: never;
205
+ }
206
+ interface AcmeAccountIdMember {
207
+ Status?: never;
208
+ RenewalStatus?: never;
209
+ Type?: never;
210
+ InUse?: never;
211
+ Exported?: never;
212
+ ExportOption?: never;
213
+ ManagedBy?: never;
214
+ ValidationMethod?: never;
215
+ CertificateKeyPairOrigin?: never;
216
+ AcmeEndpointArn?: never;
217
+ AcmeAccountId: string;
135
218
  $unknown?: never;
136
219
  }
137
220
  interface $UnknownMember {
@@ -143,6 +226,9 @@ export declare namespace AcmCertificateMetadataFilter {
143
226
  ExportOption?: never;
144
227
  ManagedBy?: never;
145
228
  ValidationMethod?: never;
229
+ CertificateKeyPairOrigin?: never;
230
+ AcmeEndpointArn?: never;
231
+ AcmeAccountId?: never;
146
232
  $unknown: [string, any];
147
233
  }
148
234
  interface Visitor<T> {
@@ -154,6 +240,103 @@ export declare namespace AcmCertificateMetadataFilter {
154
240
  ExportOption: (value: CertificateExport) => T;
155
241
  ManagedBy: (value: CertificateManagedBy) => T;
156
242
  ValidationMethod: (value: ValidationMethod) => T;
243
+ CertificateKeyPairOrigin: (value: CertificateKeyPairOrigin) => T;
244
+ AcmeEndpointArn: (value: string) => T;
245
+ AcmeAccountId: (value: string) => T;
246
+ _: (name: string, value: any) => T;
247
+ }
248
+ }
249
+ export interface AcmeAccount {
250
+ AccountUrl?: string | undefined;
251
+ PublicKeyThumbprint?: string | undefined;
252
+ Status?: AcmeAccountStatus | undefined;
253
+ CreatedAt?: Date | undefined;
254
+ AcmeExternalAccountBindingArn?: string | undefined;
255
+ Contacts?: string[] | undefined;
256
+ }
257
+ export interface AcmeAccountSummary {
258
+ AccountUrl?: string | undefined;
259
+ PublicKeyThumbprint?: string | undefined;
260
+ Status?: AcmeAccountStatus | undefined;
261
+ CreatedAt?: Date | undefined;
262
+ AcmeExternalAccountBindingArn?: string | undefined;
263
+ Contacts?: string[] | undefined;
264
+ }
265
+ export interface FailureDetails {
266
+ Reason?: AcmeDomainValidationFailureReason | undefined;
267
+ Message?: string | undefined;
268
+ }
269
+ export interface DomainScope {
270
+ ExactDomain?: DomainScopeOption | undefined;
271
+ Subdomains?: DomainScopeOption | undefined;
272
+ Wildcards?: DomainScopeOption | undefined;
273
+ }
274
+ export interface ResourceRecord {
275
+ Name: string | undefined;
276
+ Type: RecordType | undefined;
277
+ Value: string | undefined;
278
+ }
279
+ export interface DnsPrevalidationDetails {
280
+ DomainScope?: DomainScope | undefined;
281
+ HostedZoneId?: string | undefined;
282
+ ResourceRecord?: ResourceRecord | undefined;
283
+ }
284
+ export type PrevalidationDetails =
285
+ | PrevalidationDetails.DnsPrevalidationMember
286
+ | PrevalidationDetails.$UnknownMember;
287
+ export declare namespace PrevalidationDetails {
288
+ interface DnsPrevalidationMember {
289
+ DnsPrevalidation: DnsPrevalidationDetails;
290
+ $unknown?: never;
291
+ }
292
+ interface $UnknownMember {
293
+ DnsPrevalidation?: never;
294
+ $unknown: [string, any];
295
+ }
296
+ interface Visitor<T> {
297
+ DnsPrevalidation: (value: DnsPrevalidationDetails) => T;
298
+ _: (name: string, value: any) => T;
299
+ }
300
+ }
301
+ export interface AcmeDomainValidation {
302
+ AcmeDomainValidationArn?: string | undefined;
303
+ AcmeEndpointArn?: string | undefined;
304
+ DomainName?: string | undefined;
305
+ PrevalidationType?: PrevalidationType | undefined;
306
+ PrevalidationDetails?: PrevalidationDetails | undefined;
307
+ Status?: AcmeDomainValidationStatus | undefined;
308
+ FailureDetails?: FailureDetails | undefined;
309
+ CreatedAt?: Date | undefined;
310
+ UpdatedAt?: Date | undefined;
311
+ }
312
+ export interface AcmeDomainValidationSummary {
313
+ AcmeDomainValidationArn?: string | undefined;
314
+ AcmeEndpointArn?: string | undefined;
315
+ DomainName?: string | undefined;
316
+ PrevalidationType?: PrevalidationType | undefined;
317
+ PrevalidationDetails?: PrevalidationDetails | undefined;
318
+ Status?: AcmeDomainValidationStatus | undefined;
319
+ FailureDetails?: FailureDetails | undefined;
320
+ CreatedAt?: Date | undefined;
321
+ UpdatedAt?: Date | undefined;
322
+ }
323
+ export interface PublicCertificateAuthority {
324
+ AllowedKeyAlgorithms?: PublicKeyAlgorithm[] | undefined;
325
+ }
326
+ export type CertificateAuthority =
327
+ | CertificateAuthority.PublicCertificateAuthorityMember
328
+ | CertificateAuthority.$UnknownMember;
329
+ export declare namespace CertificateAuthority {
330
+ interface PublicCertificateAuthorityMember {
331
+ PublicCertificateAuthority: PublicCertificateAuthority;
332
+ $unknown?: never;
333
+ }
334
+ interface $UnknownMember {
335
+ PublicCertificateAuthority?: never;
336
+ $unknown: [string, any];
337
+ }
338
+ interface Visitor<T> {
339
+ PublicCertificateAuthority: (value: PublicCertificateAuthority) => T;
157
340
  _: (name: string, value: any) => T;
158
341
  }
159
342
  }
@@ -161,6 +344,50 @@ export interface Tag {
161
344
  Key: string | undefined;
162
345
  Value?: string | undefined;
163
346
  }
347
+ export interface AcmeEndpoint {
348
+ AcmeEndpointArn?: string | undefined;
349
+ EndpointUrl?: string | undefined;
350
+ Status?: AcmeEndpointStatus | undefined;
351
+ FailureReason?: string | undefined;
352
+ AuthorizationBehavior?: AcmeAuthorizationBehavior | undefined;
353
+ Contact?: AcmeContact | undefined;
354
+ CertificateAuthority?: CertificateAuthority | undefined;
355
+ CertificateTags?: Tag[] | undefined;
356
+ CreatedAt?: Date | undefined;
357
+ UpdatedAt?: Date | undefined;
358
+ }
359
+ export interface AcmeEndpointSummary {
360
+ AcmeEndpointArn?: string | undefined;
361
+ EndpointUrl?: string | undefined;
362
+ Status?: AcmeEndpointStatus | undefined;
363
+ FailureReason?: string | undefined;
364
+ AuthorizationBehavior?: AcmeAuthorizationBehavior | undefined;
365
+ Contact?: AcmeContact | undefined;
366
+ CertificateAuthority?: CertificateAuthority | undefined;
367
+ CertificateTags?: Tag[] | undefined;
368
+ CreatedAt?: Date | undefined;
369
+ UpdatedAt?: Date | undefined;
370
+ }
371
+ export interface AcmeExternalAccountBinding {
372
+ AcmeExternalAccountBindingArn?: string | undefined;
373
+ AcmeEndpointArn?: string | undefined;
374
+ RoleArn?: string | undefined;
375
+ ExpiresAt?: Date | undefined;
376
+ RevokedAt?: Date | undefined;
377
+ LastUsedAt?: Date | undefined;
378
+ CreatedAt?: Date | undefined;
379
+ UpdatedAt?: Date | undefined;
380
+ }
381
+ export interface AcmeExternalAccountBindingSummary {
382
+ AcmeExternalAccountBindingArn?: string | undefined;
383
+ AcmeEndpointArn?: string | undefined;
384
+ RoleArn?: string | undefined;
385
+ ExpiresAt?: Date | undefined;
386
+ RevokedAt?: Date | undefined;
387
+ LastUsedAt?: Date | undefined;
388
+ CreatedAt?: Date | undefined;
389
+ UpdatedAt?: Date | undefined;
390
+ }
164
391
  export interface AddTagsToCertificateRequest {
165
392
  CertificateArn: string | undefined;
166
393
  Tags: Tag[] | undefined;
@@ -173,11 +400,6 @@ export interface HttpRedirect {
173
400
  RedirectFrom?: string | undefined;
174
401
  RedirectTo?: string | undefined;
175
402
  }
176
- export interface ResourceRecord {
177
- Name: string | undefined;
178
- Type: RecordType | undefined;
179
- Value: string | undefined;
180
- }
181
403
  export interface DomainValidation {
182
404
  DomainName: string | undefined;
183
405
  ValidationEmails?: string[] | undefined;
@@ -234,6 +456,9 @@ export interface CertificateDetail {
234
456
  CertificateAuthorityArn?: string | undefined;
235
457
  RenewalEligibility?: RenewalEligibility | undefined;
236
458
  Options?: CertificateOptions | undefined;
459
+ CertificateKeyPairOrigin?: CertificateKeyPairOrigin | undefined;
460
+ AcmeEndpointArn?: string | undefined;
461
+ AcmeAccountId?: string | undefined;
237
462
  }
238
463
  export interface TimestampRange {
239
464
  Start?: Date | undefined;
@@ -440,9 +665,99 @@ export declare namespace CertificateFilter {
440
665
  _: (name: string, value: any) => T;
441
666
  }
442
667
  }
668
+ export interface DnsPrevalidationOptions {
669
+ DomainScope?: DomainScope | undefined;
670
+ HostedZoneId?: string | undefined;
671
+ }
672
+ export type PrevalidationOptions =
673
+ | PrevalidationOptions.DnsPrevalidationMember
674
+ | PrevalidationOptions.$UnknownMember;
675
+ export declare namespace PrevalidationOptions {
676
+ interface DnsPrevalidationMember {
677
+ DnsPrevalidation: DnsPrevalidationOptions;
678
+ $unknown?: never;
679
+ }
680
+ interface $UnknownMember {
681
+ DnsPrevalidation?: never;
682
+ $unknown: [string, any];
683
+ }
684
+ interface Visitor<T> {
685
+ DnsPrevalidation: (value: DnsPrevalidationOptions) => T;
686
+ _: (name: string, value: any) => T;
687
+ }
688
+ }
689
+ export interface CreateAcmeDomainValidationRequest {
690
+ IdempotencyToken?: string | undefined;
691
+ AcmeEndpointArn: string | undefined;
692
+ DomainName: string | undefined;
693
+ PrevalidationOptions: PrevalidationOptions | undefined;
694
+ Tags?: Tag[] | undefined;
695
+ }
696
+ export interface CreateAcmeDomainValidationResponse {
697
+ AcmeDomainValidationArn: string | undefined;
698
+ }
699
+ export interface CreateAcmeEndpointRequest {
700
+ IdempotencyToken?: string | undefined;
701
+ AuthorizationBehavior: AcmeAuthorizationBehavior | undefined;
702
+ Contact?: AcmeContact | undefined;
703
+ CertificateAuthority: CertificateAuthority | undefined;
704
+ Tags?: Tag[] | undefined;
705
+ CertificateTags?: Tag[] | undefined;
706
+ }
707
+ export interface CreateAcmeEndpointResponse {
708
+ AcmeEndpointArn?: string | undefined;
709
+ }
710
+ export interface Expiration {
711
+ Value: number | undefined;
712
+ Type: TimeType | undefined;
713
+ }
714
+ export interface CreateAcmeExternalAccountBindingRequest {
715
+ IdempotencyToken?: string | undefined;
716
+ AcmeEndpointArn: string | undefined;
717
+ RoleArn: string | undefined;
718
+ Expiration?: Expiration | undefined;
719
+ Tags?: Tag[] | undefined;
720
+ }
721
+ export interface CreateAcmeExternalAccountBindingResponse {
722
+ ExternalAccountBinding?: AcmeExternalAccountBinding | undefined;
723
+ }
724
+ export interface DeleteAcmeDomainValidationRequest {
725
+ AcmeDomainValidationArn: string | undefined;
726
+ }
727
+ export interface DeleteAcmeEndpointRequest {
728
+ AcmeEndpointArn: string | undefined;
729
+ }
730
+ export interface DeleteAcmeExternalAccountBindingRequest {
731
+ AcmeExternalAccountBindingArn: string | undefined;
732
+ }
443
733
  export interface DeleteCertificateRequest {
444
734
  CertificateArn: string | undefined;
445
735
  }
736
+ export interface DescribeAcmeAccountRequest {
737
+ AcmeEndpointArn: string | undefined;
738
+ AccountUrl: string | undefined;
739
+ }
740
+ export interface DescribeAcmeAccountResponse {
741
+ AcmeAccount?: AcmeAccount | undefined;
742
+ }
743
+ export interface DescribeAcmeDomainValidationRequest {
744
+ AcmeDomainValidationArn: string | undefined;
745
+ }
746
+ export interface DescribeAcmeDomainValidationResponse {
747
+ AcmeDomainValidation?: AcmeDomainValidation | undefined;
748
+ }
749
+ export interface DescribeAcmeEndpointRequest {
750
+ AcmeEndpointArn: string | undefined;
751
+ }
752
+ export interface DescribeAcmeEndpointResponse {
753
+ AcmeEndpoint?: AcmeEndpoint | undefined;
754
+ }
755
+ export interface DescribeAcmeExternalAccountBindingRequest {
756
+ AcmeExternalAccountBindingArn: string | undefined;
757
+ }
758
+ export interface DescribeAcmeExternalAccountBindingResponse {
759
+ ExternalAccountBinding?: AcmeExternalAccountBinding | undefined;
760
+ }
446
761
  export interface DescribeCertificateRequest {
447
762
  CertificateArn: string | undefined;
448
763
  }
@@ -464,6 +779,13 @@ export interface ExpiryEventsConfiguration {
464
779
  export interface GetAccountConfigurationResponse {
465
780
  ExpiryEvents?: ExpiryEventsConfiguration | undefined;
466
781
  }
782
+ export interface GetAcmeExternalAccountBindingCredentialsRequest {
783
+ AcmeExternalAccountBindingArn: string | undefined;
784
+ }
785
+ export interface GetAcmeExternalAccountBindingCredentialsResponse {
786
+ KeyId?: string | undefined;
787
+ MacKey?: string | undefined;
788
+ }
467
789
  export interface GetCertificateRequest {
468
790
  CertificateArn: string | undefined;
469
791
  }
@@ -481,6 +803,41 @@ export interface ImportCertificateRequest {
481
803
  export interface ImportCertificateResponse {
482
804
  CertificateArn?: string | undefined;
483
805
  }
806
+ export interface ListAcmeAccountsRequest {
807
+ NextToken?: string | undefined;
808
+ MaxResults?: number | undefined;
809
+ AcmeEndpointArn: string | undefined;
810
+ }
811
+ export interface ListAcmeAccountsResponse {
812
+ AcmeAccounts?: AcmeAccountSummary[] | undefined;
813
+ NextToken?: string | undefined;
814
+ }
815
+ export interface ListAcmeDomainValidationsRequest {
816
+ NextToken?: string | undefined;
817
+ MaxResults?: number | undefined;
818
+ AcmeEndpointArn: string | undefined;
819
+ }
820
+ export interface ListAcmeDomainValidationsResponse {
821
+ AcmeDomainValidations?: AcmeDomainValidationSummary[] | undefined;
822
+ NextToken?: string | undefined;
823
+ }
824
+ export interface ListAcmeEndpointsRequest {
825
+ NextToken?: string | undefined;
826
+ MaxResults?: number | undefined;
827
+ }
828
+ export interface ListAcmeEndpointsResponse {
829
+ AcmeEndpoints?: AcmeEndpointSummary[] | undefined;
830
+ NextToken?: string | undefined;
831
+ }
832
+ export interface ListAcmeExternalAccountBindingsRequest {
833
+ NextToken?: string | undefined;
834
+ MaxResults?: number | undefined;
835
+ AcmeEndpointArn: string | undefined;
836
+ }
837
+ export interface ListAcmeExternalAccountBindingsResponse {
838
+ ExternalAccountBindings?: AcmeExternalAccountBindingSummary[] | undefined;
839
+ NextToken?: string | undefined;
840
+ }
484
841
  export interface Filters {
485
842
  extendedKeyUsage?: ExtendedKeyUsageName[] | undefined;
486
843
  keyUsage?: KeyUsageName[] | undefined;
@@ -490,6 +847,7 @@ export interface Filters {
490
847
  }
491
848
  export interface ListCertificatesRequest {
492
849
  CertificateStatuses?: CertificateStatus[] | undefined;
850
+ CertificateKeyPairOrigins?: CertificateKeyPairOrigin[] | undefined;
493
851
  Includes?: Filters | undefined;
494
852
  NextToken?: string | undefined;
495
853
  MaxItems?: number | undefined;
@@ -517,6 +875,7 @@ export interface CertificateSummary {
517
875
  ImportedAt?: Date | undefined;
518
876
  RevokedAt?: Date | undefined;
519
877
  ManagedBy?: CertificateManagedBy | undefined;
878
+ CertificateKeyPairOrigin?: CertificateKeyPairOrigin | undefined;
520
879
  }
521
880
  export interface ListCertificatesResponse {
522
881
  NextToken?: string | undefined;
@@ -528,6 +887,12 @@ export interface ListTagsForCertificateRequest {
528
887
  export interface ListTagsForCertificateResponse {
529
888
  Tags?: Tag[] | undefined;
530
889
  }
890
+ export interface ListTagsForResourceRequest {
891
+ ResourceArn: string | undefined;
892
+ }
893
+ export interface ListTagsForResourceResponse {
894
+ Tags?: Tag[] | undefined;
895
+ }
531
896
  export interface PutAccountConfigurationRequest {
532
897
  ExpiryEvents?: ExpiryEventsConfiguration | undefined;
533
898
  IdempotencyToken: string | undefined;
@@ -563,6 +928,13 @@ export interface ResendValidationEmailRequest {
563
928
  Domain: string | undefined;
564
929
  ValidationDomain: string | undefined;
565
930
  }
931
+ export interface RevokeAcmeAccountRequest {
932
+ AcmeEndpointArn: string | undefined;
933
+ AccountUrl: string | undefined;
934
+ }
935
+ export interface RevokeAcmeExternalAccountBindingRequest {
936
+ AcmeExternalAccountBindingArn: string | undefined;
937
+ }
566
938
  export interface RevokeCertificateRequest {
567
939
  CertificateArn: string | undefined;
568
940
  RevocationReason: RevocationReason | undefined;
@@ -734,6 +1106,24 @@ export interface SearchCertificatesResponse {
734
1106
  Results?: CertificateSearchResult[] | undefined;
735
1107
  NextToken?: string | undefined;
736
1108
  }
1109
+ export interface TagResourceRequest {
1110
+ ResourceArn: string | undefined;
1111
+ Tags: Tag[] | undefined;
1112
+ }
1113
+ export interface UntagResourceRequest {
1114
+ ResourceArn: string | undefined;
1115
+ TagKeys: string[] | undefined;
1116
+ }
1117
+ export interface UpdateAcmeDomainValidationRequest {
1118
+ AcmeDomainValidationArn: string | undefined;
1119
+ PrevalidationOptions?: PrevalidationOptions | undefined;
1120
+ }
1121
+ export interface UpdateAcmeEndpointRequest {
1122
+ AcmeEndpointArn: string | undefined;
1123
+ AuthorizationBehavior?: AcmeAuthorizationBehavior | undefined;
1124
+ Contact?: AcmeContact | undefined;
1125
+ CertificateAuthority?: CertificateAuthority | undefined;
1126
+ }
737
1127
  export interface UpdateCertificateOptionsRequest {
738
1128
  CertificateArn: string | undefined;
739
1129
  Options: CertificateOptions | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListAcmeAccountsCommandInput,
4
+ ListAcmeAccountsCommandOutput,
5
+ } from "../commands/ListAcmeAccountsCommand";
6
+ import { ACMPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListAcmeAccounts: (
8
+ config: ACMPaginationConfiguration,
9
+ input: ListAcmeAccountsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListAcmeAccountsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListAcmeDomainValidationsCommandInput,
4
+ ListAcmeDomainValidationsCommandOutput,
5
+ } from "../commands/ListAcmeDomainValidationsCommand";
6
+ import { ACMPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListAcmeDomainValidations: (
8
+ config: ACMPaginationConfiguration,
9
+ input: ListAcmeDomainValidationsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListAcmeDomainValidationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListAcmeEndpointsCommandInput,
4
+ ListAcmeEndpointsCommandOutput,
5
+ } from "../commands/ListAcmeEndpointsCommand";
6
+ import { ACMPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListAcmeEndpoints: (
8
+ config: ACMPaginationConfiguration,
9
+ input: ListAcmeEndpointsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListAcmeEndpointsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListAcmeExternalAccountBindingsCommandInput,
4
+ ListAcmeExternalAccountBindingsCommandOutput,
5
+ } from "../commands/ListAcmeExternalAccountBindingsCommand";
6
+ import { ACMPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListAcmeExternalAccountBindings: (
8
+ config: ACMPaginationConfiguration,
9
+ input: ListAcmeExternalAccountBindingsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListAcmeExternalAccountBindingsCommandOutput>;
@@ -1,3 +1,7 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListAcmeAccountsPaginator";
3
+ export * from "./ListAcmeDomainValidationsPaginator";
4
+ export * from "./ListAcmeEndpointsPaginator";
5
+ export * from "./ListAcmeExternalAccountBindingsPaginator";
2
6
  export * from "./ListCertificatesPaginator";
3
7
  export * from "./SearchCertificatesPaginator";
@@ -20,7 +20,6 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
20
20
  | import("@smithy/core/protocols").HttpHandler<any>
21
21
  | RequestHandler;
22
22
  retryMode: string | import("@smithy/types").Provider<string>;
23
- sha256: import("@smithy/types").HashConstructor;
24
23
  streamCollector: (
25
24
  stream:
26
25
  | import("stream").Readable
@@ -42,6 +41,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
42
41
  [setting: string]: unknown;
43
42
  };
44
43
  apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
45
  urlParser: import("@smithy/types").UrlParser;
46
46
  base64Decoder: import("@smithy/types").Decoder;
47
47
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -103,4 +103,14 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
103
103
  options: import("@smithy/signature-v4").SignatureV4Init &
104
104
  import("@smithy/signature-v4").SignatureV4CryptoInit
105
105
  ) => import("@smithy/types").RequestSigner;
106
+ clientContextParams?: {
107
+ serviceType?:
108
+ | string
109
+ | undefined
110
+ | import("@smithy/types").Provider<string | undefined>;
111
+ };
112
+ serviceType?:
113
+ | string
114
+ | undefined
115
+ | import("@smithy/types").Provider<string | undefined>;
106
116
  };
@@ -21,7 +21,6 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
21
21
  | RequestHandler
22
22
  | import("@smithy/core/protocols").HttpHandler<any>;
23
23
  retryMode: string | import("@smithy/types").Provider<string>;
24
- sha256: import("@smithy/types").HashConstructor;
25
24
  streamCollector: (
26
25
  stream:
27
26
  | import("stream").Readable
@@ -42,6 +41,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
42
41
  [setting: string]: unknown;
43
42
  };
44
43
  apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
45
  urlParser: import("@smithy/types").UrlParser;
46
46
  base64Decoder: import("@smithy/types").Decoder;
47
47
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -98,4 +98,14 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
98
98
  options: import("@smithy/signature-v4").SignatureV4Init &
99
99
  import("@smithy/signature-v4").SignatureV4CryptoInit
100
100
  ) => import("@smithy/types").RequestSigner;
101
+ clientContextParams?: {
102
+ serviceType?:
103
+ | string
104
+ | undefined
105
+ | import("@smithy/types").Provider<string | undefined>;
106
+ };
107
+ serviceType?:
108
+ | string
109
+ | undefined
110
+ | import("@smithy/types").Provider<string | undefined>;
101
111
  };