@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,4 +1,4 @@
1
- import type { CertificateExport, CertificateManagedBy, CertificateStatus, CertificateTransparencyLoggingPreference, CertificateType, ComparisonOperator, DomainStatus, ExtendedKeyUsageName, FailureReason, KeyAlgorithm, KeyUsageName, RecordType, RenewalEligibility, RenewalStatus, RevocationReason, SearchCertificatesSortBy, SearchCertificatesSortOrder, SortBy, SortOrder, ValidationMethod } from "./enums";
1
+ import type { AcmeAccountStatus, AcmeAuthorizationBehavior, AcmeContact, AcmeDomainValidationFailureReason, AcmeDomainValidationStatus, AcmeEndpointStatus, CertificateExport, CertificateKeyPairOrigin, CertificateManagedBy, CertificateStatus, CertificateTransparencyLoggingPreference, CertificateType, ComparisonOperator, DomainScopeOption, DomainStatus, ExtendedKeyUsageName, FailureReason, KeyAlgorithm, KeyUsageName, PrevalidationType, PublicKeyAlgorithm, RecordType, RenewalEligibility, RenewalStatus, RevocationReason, SearchCertificatesSortBy, SearchCertificatesSortOrder, SortBy, SortOrder, TimeType, ValidationMethod } from "./enums";
2
2
  /**
3
3
  * <p>Contains ACM-specific metadata about a certificate.</p>
4
4
  * @public
@@ -69,12 +69,27 @@ export interface AcmCertificateMetadata {
69
69
  * @public
70
70
  */
71
71
  ValidationMethod?: ValidationMethod | undefined;
72
+ /**
73
+ * <p>The origin of the certificate's key pair.</p>
74
+ * @public
75
+ */
76
+ CertificateKeyPairOrigin?: CertificateKeyPairOrigin | undefined;
77
+ /**
78
+ * <p>The ARN of the ACME endpoint used to issue the certificate.</p>
79
+ * @public
80
+ */
81
+ AcmeEndpointArn?: string | undefined;
82
+ /**
83
+ * <p>The ACME account identifier associated with the certificate.</p>
84
+ * @public
85
+ */
86
+ AcmeAccountId?: string | undefined;
72
87
  }
73
88
  /**
74
89
  * <p>Filters certificates by ACM metadata.</p>
75
90
  * @public
76
91
  */
77
- export type AcmCertificateMetadataFilter = AcmCertificateMetadataFilter.ExportOptionMember | AcmCertificateMetadataFilter.ExportedMember | AcmCertificateMetadataFilter.InUseMember | AcmCertificateMetadataFilter.ManagedByMember | AcmCertificateMetadataFilter.RenewalStatusMember | AcmCertificateMetadataFilter.StatusMember | AcmCertificateMetadataFilter.TypeMember | AcmCertificateMetadataFilter.ValidationMethodMember | AcmCertificateMetadataFilter.$UnknownMember;
92
+ export type AcmCertificateMetadataFilter = AcmCertificateMetadataFilter.AcmeAccountIdMember | AcmCertificateMetadataFilter.AcmeEndpointArnMember | AcmCertificateMetadataFilter.CertificateKeyPairOriginMember | AcmCertificateMetadataFilter.ExportOptionMember | AcmCertificateMetadataFilter.ExportedMember | AcmCertificateMetadataFilter.InUseMember | AcmCertificateMetadataFilter.ManagedByMember | AcmCertificateMetadataFilter.RenewalStatusMember | AcmCertificateMetadataFilter.StatusMember | AcmCertificateMetadataFilter.TypeMember | AcmCertificateMetadataFilter.ValidationMethodMember | AcmCertificateMetadataFilter.$UnknownMember;
78
93
  /**
79
94
  * @public
80
95
  */
@@ -92,6 +107,9 @@ export declare namespace AcmCertificateMetadataFilter {
92
107
  ExportOption?: never;
93
108
  ManagedBy?: never;
94
109
  ValidationMethod?: never;
110
+ CertificateKeyPairOrigin?: never;
111
+ AcmeEndpointArn?: never;
112
+ AcmeAccountId?: never;
95
113
  $unknown?: never;
96
114
  }
97
115
  /**
@@ -107,6 +125,9 @@ export declare namespace AcmCertificateMetadataFilter {
107
125
  ExportOption?: never;
108
126
  ManagedBy?: never;
109
127
  ValidationMethod?: never;
128
+ CertificateKeyPairOrigin?: never;
129
+ AcmeEndpointArn?: never;
130
+ AcmeAccountId?: never;
110
131
  $unknown?: never;
111
132
  }
112
133
  /**
@@ -122,6 +143,9 @@ export declare namespace AcmCertificateMetadataFilter {
122
143
  ExportOption?: never;
123
144
  ManagedBy?: never;
124
145
  ValidationMethod?: never;
146
+ CertificateKeyPairOrigin?: never;
147
+ AcmeEndpointArn?: never;
148
+ AcmeAccountId?: never;
125
149
  $unknown?: never;
126
150
  }
127
151
  /**
@@ -137,6 +161,9 @@ export declare namespace AcmCertificateMetadataFilter {
137
161
  ExportOption?: never;
138
162
  ManagedBy?: never;
139
163
  ValidationMethod?: never;
164
+ CertificateKeyPairOrigin?: never;
165
+ AcmeEndpointArn?: never;
166
+ AcmeAccountId?: never;
140
167
  $unknown?: never;
141
168
  }
142
169
  /**
@@ -152,6 +179,9 @@ export declare namespace AcmCertificateMetadataFilter {
152
179
  ExportOption?: never;
153
180
  ManagedBy?: never;
154
181
  ValidationMethod?: never;
182
+ CertificateKeyPairOrigin?: never;
183
+ AcmeEndpointArn?: never;
184
+ AcmeAccountId?: never;
155
185
  $unknown?: never;
156
186
  }
157
187
  /**
@@ -167,6 +197,9 @@ export declare namespace AcmCertificateMetadataFilter {
167
197
  ExportOption: CertificateExport;
168
198
  ManagedBy?: never;
169
199
  ValidationMethod?: never;
200
+ CertificateKeyPairOrigin?: never;
201
+ AcmeEndpointArn?: never;
202
+ AcmeAccountId?: never;
170
203
  $unknown?: never;
171
204
  }
172
205
  /**
@@ -182,6 +215,9 @@ export declare namespace AcmCertificateMetadataFilter {
182
215
  ExportOption?: never;
183
216
  ManagedBy: CertificateManagedBy;
184
217
  ValidationMethod?: never;
218
+ CertificateKeyPairOrigin?: never;
219
+ AcmeEndpointArn?: never;
220
+ AcmeAccountId?: never;
185
221
  $unknown?: never;
186
222
  }
187
223
  /**
@@ -197,6 +233,63 @@ export declare namespace AcmCertificateMetadataFilter {
197
233
  ExportOption?: never;
198
234
  ManagedBy?: never;
199
235
  ValidationMethod: ValidationMethod;
236
+ CertificateKeyPairOrigin?: never;
237
+ AcmeEndpointArn?: never;
238
+ AcmeAccountId?: never;
239
+ $unknown?: never;
240
+ }
241
+ /**
242
+ * <p>Filter by certificate key pair origin.</p>
243
+ * @public
244
+ */
245
+ interface CertificateKeyPairOriginMember {
246
+ Status?: never;
247
+ RenewalStatus?: never;
248
+ Type?: never;
249
+ InUse?: never;
250
+ Exported?: never;
251
+ ExportOption?: never;
252
+ ManagedBy?: never;
253
+ ValidationMethod?: never;
254
+ CertificateKeyPairOrigin: CertificateKeyPairOrigin;
255
+ AcmeEndpointArn?: never;
256
+ AcmeAccountId?: never;
257
+ $unknown?: never;
258
+ }
259
+ /**
260
+ * <p>Filter by ACME endpoint ARN.</p>
261
+ * @public
262
+ */
263
+ interface AcmeEndpointArnMember {
264
+ Status?: never;
265
+ RenewalStatus?: never;
266
+ Type?: never;
267
+ InUse?: never;
268
+ Exported?: never;
269
+ ExportOption?: never;
270
+ ManagedBy?: never;
271
+ ValidationMethod?: never;
272
+ CertificateKeyPairOrigin?: never;
273
+ AcmeEndpointArn: string;
274
+ AcmeAccountId?: never;
275
+ $unknown?: never;
276
+ }
277
+ /**
278
+ * <p>Filter by ACME account identifier.</p>
279
+ * @public
280
+ */
281
+ interface AcmeAccountIdMember {
282
+ Status?: never;
283
+ RenewalStatus?: never;
284
+ Type?: never;
285
+ InUse?: never;
286
+ Exported?: never;
287
+ ExportOption?: never;
288
+ ManagedBy?: never;
289
+ ValidationMethod?: never;
290
+ CertificateKeyPairOrigin?: never;
291
+ AcmeEndpointArn?: never;
292
+ AcmeAccountId: string;
200
293
  $unknown?: never;
201
294
  }
202
295
  /**
@@ -211,6 +304,9 @@ export declare namespace AcmCertificateMetadataFilter {
211
304
  ExportOption?: never;
212
305
  ManagedBy?: never;
213
306
  ValidationMethod?: never;
307
+ CertificateKeyPairOrigin?: never;
308
+ AcmeEndpointArn?: never;
309
+ AcmeAccountId?: never;
214
310
  $unknown: [string, any];
215
311
  }
216
312
  /**
@@ -226,6 +322,339 @@ export declare namespace AcmCertificateMetadataFilter {
226
322
  ExportOption: (value: CertificateExport) => T;
227
323
  ManagedBy: (value: CertificateManagedBy) => T;
228
324
  ValidationMethod: (value: ValidationMethod) => T;
325
+ CertificateKeyPairOrigin: (value: CertificateKeyPairOrigin) => T;
326
+ AcmeEndpointArn: (value: string) => T;
327
+ AcmeAccountId: (value: string) => T;
328
+ _: (name: string, value: any) => T;
329
+ }
330
+ }
331
+ /**
332
+ * <p>Contains detailed information about an ACME account.</p>
333
+ * @public
334
+ */
335
+ export interface AcmeAccount {
336
+ /**
337
+ * <p>The URL of the ACME account.</p>
338
+ * @public
339
+ */
340
+ AccountUrl?: string | undefined;
341
+ /**
342
+ * <p>The thumbprint of the public key associated with the ACME account.</p>
343
+ * @public
344
+ */
345
+ PublicKeyThumbprint?: string | undefined;
346
+ /**
347
+ * <p>The status of the ACME account.</p>
348
+ * @public
349
+ */
350
+ Status?: AcmeAccountStatus | undefined;
351
+ /**
352
+ * <p>The time at which the ACME account was created.</p>
353
+ * @public
354
+ */
355
+ CreatedAt?: Date | undefined;
356
+ /**
357
+ * <p>The Amazon Resource Name (ARN) of the external account binding associated with this ACME account.</p>
358
+ * @public
359
+ */
360
+ AcmeExternalAccountBindingArn?: string | undefined;
361
+ /**
362
+ * <p>The contact information for the ACME account.</p>
363
+ * @public
364
+ */
365
+ Contacts?: string[] | undefined;
366
+ }
367
+ /**
368
+ * <p>Contains summary information about an ACME account.</p>
369
+ * @public
370
+ */
371
+ export interface AcmeAccountSummary {
372
+ /**
373
+ * <p>The URL of the ACME account.</p>
374
+ * @public
375
+ */
376
+ AccountUrl?: string | undefined;
377
+ /**
378
+ * <p>The thumbprint of the public key associated with the ACME account.</p>
379
+ * @public
380
+ */
381
+ PublicKeyThumbprint?: string | undefined;
382
+ /**
383
+ * <p>The status of the ACME account.</p>
384
+ * @public
385
+ */
386
+ Status?: AcmeAccountStatus | undefined;
387
+ /**
388
+ * <p>The time at which the ACME account was created.</p>
389
+ * @public
390
+ */
391
+ CreatedAt?: Date | undefined;
392
+ /**
393
+ * <p>The Amazon Resource Name (ARN) of the external account binding associated with this ACME account.</p>
394
+ * @public
395
+ */
396
+ AcmeExternalAccountBindingArn?: string | undefined;
397
+ /**
398
+ * <p>The contact information for the ACME account.</p>
399
+ * @public
400
+ */
401
+ Contacts?: string[] | undefined;
402
+ }
403
+ /**
404
+ * <p>Contains details about a failure.</p>
405
+ * @public
406
+ */
407
+ export interface FailureDetails {
408
+ /**
409
+ * <p>The reason for the failure.</p>
410
+ * @public
411
+ */
412
+ Reason?: AcmeDomainValidationFailureReason | undefined;
413
+ /**
414
+ * <p>A message describing the failure.</p>
415
+ * @public
416
+ */
417
+ Message?: string | undefined;
418
+ }
419
+ /**
420
+ * <p>Specifies the scope of domain validation.</p>
421
+ * @public
422
+ */
423
+ export interface DomainScope {
424
+ /**
425
+ * <p>Whether validation applies to the exact domain.</p>
426
+ * @public
427
+ */
428
+ ExactDomain?: DomainScopeOption | undefined;
429
+ /**
430
+ * <p>Whether validation applies to subdomains.</p>
431
+ * @public
432
+ */
433
+ Subdomains?: DomainScopeOption | undefined;
434
+ /**
435
+ * <p>Whether validation applies to wildcard domains.</p>
436
+ * @public
437
+ */
438
+ Wildcards?: DomainScopeOption | undefined;
439
+ }
440
+ /**
441
+ * <p>Contains a DNS record value that you can use to validate ownership or control of a domain. This is used by the <a>DescribeCertificate</a> action. </p>
442
+ * @public
443
+ */
444
+ export interface ResourceRecord {
445
+ /**
446
+ * <p>The name of the DNS record to create in your domain. This is supplied by ACM.</p>
447
+ * @public
448
+ */
449
+ Name: string | undefined;
450
+ /**
451
+ * <p>The type of DNS record. Currently this can be <code>CNAME</code>.</p>
452
+ * @public
453
+ */
454
+ Type: RecordType | undefined;
455
+ /**
456
+ * <p>The value of the CNAME record to add to your DNS database. This is supplied by ACM.</p>
457
+ * @public
458
+ */
459
+ Value: string | undefined;
460
+ }
461
+ /**
462
+ * <p>DNS prevalidation details including the resource record for validation.</p>
463
+ * @public
464
+ */
465
+ export interface DnsPrevalidationDetails {
466
+ /**
467
+ * <p>The scope of domains covered by this prevalidation.</p>
468
+ * @public
469
+ */
470
+ DomainScope?: DomainScope | undefined;
471
+ /**
472
+ * <p>The Route 53 hosted zone ID for DNS validation.</p>
473
+ * @public
474
+ */
475
+ HostedZoneId?: string | undefined;
476
+ /**
477
+ * <p>The DNS resource record to create for domain validation.</p>
478
+ * @public
479
+ */
480
+ ResourceRecord?: ResourceRecord | undefined;
481
+ }
482
+ /**
483
+ * <p>Contains details about the prevalidation configuration.</p>
484
+ * @public
485
+ */
486
+ export type PrevalidationDetails = PrevalidationDetails.DnsPrevalidationMember | PrevalidationDetails.$UnknownMember;
487
+ /**
488
+ * @public
489
+ */
490
+ export declare namespace PrevalidationDetails {
491
+ /**
492
+ * <p>DNS-based prevalidation details.</p>
493
+ * @public
494
+ */
495
+ interface DnsPrevalidationMember {
496
+ DnsPrevalidation: DnsPrevalidationDetails;
497
+ $unknown?: never;
498
+ }
499
+ /**
500
+ * @public
501
+ */
502
+ interface $UnknownMember {
503
+ DnsPrevalidation?: never;
504
+ $unknown: [string, any];
505
+ }
506
+ /**
507
+ * @deprecated unused in schema-serde mode.
508
+ *
509
+ */
510
+ interface Visitor<T> {
511
+ DnsPrevalidation: (value: DnsPrevalidationDetails) => T;
512
+ _: (name: string, value: any) => T;
513
+ }
514
+ }
515
+ /**
516
+ * <p>Contains detailed information about an ACME domain validation.</p>
517
+ * @public
518
+ */
519
+ export interface AcmeDomainValidation {
520
+ /**
521
+ * <p>The Amazon Resource Name (ARN) of the ACME domain validation.</p>
522
+ * @public
523
+ */
524
+ AcmeDomainValidationArn?: string | undefined;
525
+ /**
526
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
527
+ * @public
528
+ */
529
+ AcmeEndpointArn?: string | undefined;
530
+ /**
531
+ * <p>The domain name being validated.</p>
532
+ * @public
533
+ */
534
+ DomainName?: string | undefined;
535
+ /**
536
+ * <p>The type of prevalidation used.</p>
537
+ * @public
538
+ */
539
+ PrevalidationType?: PrevalidationType | undefined;
540
+ /**
541
+ * <p>Details about the prevalidation configuration.</p>
542
+ * @public
543
+ */
544
+ PrevalidationDetails?: PrevalidationDetails | undefined;
545
+ /**
546
+ * <p>The status of the domain validation.</p>
547
+ * @public
548
+ */
549
+ Status?: AcmeDomainValidationStatus | undefined;
550
+ /**
551
+ * <p>Details about the failure, if the validation failed.</p>
552
+ * @public
553
+ */
554
+ FailureDetails?: FailureDetails | undefined;
555
+ /**
556
+ * <p>The time at which the domain validation was created.</p>
557
+ * @public
558
+ */
559
+ CreatedAt?: Date | undefined;
560
+ /**
561
+ * <p>The time at which the domain validation was last updated.</p>
562
+ * @public
563
+ */
564
+ UpdatedAt?: Date | undefined;
565
+ }
566
+ /**
567
+ * <p>Contains summary information about an ACME domain validation.</p>
568
+ * @public
569
+ */
570
+ export interface AcmeDomainValidationSummary {
571
+ /**
572
+ * <p>The Amazon Resource Name (ARN) of the ACME domain validation.</p>
573
+ * @public
574
+ */
575
+ AcmeDomainValidationArn?: string | undefined;
576
+ /**
577
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
578
+ * @public
579
+ */
580
+ AcmeEndpointArn?: string | undefined;
581
+ /**
582
+ * <p>The domain name being validated.</p>
583
+ * @public
584
+ */
585
+ DomainName?: string | undefined;
586
+ /**
587
+ * <p>The type of prevalidation used.</p>
588
+ * @public
589
+ */
590
+ PrevalidationType?: PrevalidationType | undefined;
591
+ /**
592
+ * <p>Details about the prevalidation configuration.</p>
593
+ * @public
594
+ */
595
+ PrevalidationDetails?: PrevalidationDetails | undefined;
596
+ /**
597
+ * <p>The status of the domain validation.</p>
598
+ * @public
599
+ */
600
+ Status?: AcmeDomainValidationStatus | undefined;
601
+ /**
602
+ * <p>Details about the failure, if the validation failed.</p>
603
+ * @public
604
+ */
605
+ FailureDetails?: FailureDetails | undefined;
606
+ /**
607
+ * <p>The time at which the domain validation was created.</p>
608
+ * @public
609
+ */
610
+ CreatedAt?: Date | undefined;
611
+ /**
612
+ * <p>The time at which the domain validation was last updated.</p>
613
+ * @public
614
+ */
615
+ UpdatedAt?: Date | undefined;
616
+ }
617
+ /**
618
+ * <p>Configuration for a public certificate authority.</p>
619
+ * @public
620
+ */
621
+ export interface PublicCertificateAuthority {
622
+ /**
623
+ * <p>The key algorithms allowed for certificates issued by this certificate authority.</p>
624
+ * @public
625
+ */
626
+ AllowedKeyAlgorithms?: PublicKeyAlgorithm[] | undefined;
627
+ }
628
+ /**
629
+ * <p>Defines the certificate authority to use for an ACME endpoint.</p>
630
+ * @public
631
+ */
632
+ export type CertificateAuthority = CertificateAuthority.PublicCertificateAuthorityMember | CertificateAuthority.$UnknownMember;
633
+ /**
634
+ * @public
635
+ */
636
+ export declare namespace CertificateAuthority {
637
+ /**
638
+ * <p>Configuration for using a public certificate authority.</p>
639
+ * @public
640
+ */
641
+ interface PublicCertificateAuthorityMember {
642
+ PublicCertificateAuthority: PublicCertificateAuthority;
643
+ $unknown?: never;
644
+ }
645
+ /**
646
+ * @public
647
+ */
648
+ interface $UnknownMember {
649
+ PublicCertificateAuthority?: never;
650
+ $unknown: [string, any];
651
+ }
652
+ /**
653
+ * @deprecated unused in schema-serde mode.
654
+ *
655
+ */
656
+ interface Visitor<T> {
657
+ PublicCertificateAuthority: (value: PublicCertificateAuthority) => T;
229
658
  _: (name: string, value: any) => T;
230
659
  }
231
660
  }
@@ -245,6 +674,210 @@ export interface Tag {
245
674
  */
246
675
  Value?: string | undefined;
247
676
  }
677
+ /**
678
+ * <p>Contains detailed information about an ACME endpoint.</p>
679
+ * @public
680
+ */
681
+ export interface AcmeEndpoint {
682
+ /**
683
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
684
+ * @public
685
+ */
686
+ AcmeEndpointArn?: string | undefined;
687
+ /**
688
+ * <p>The URL of the ACME endpoint.</p>
689
+ * @public
690
+ */
691
+ EndpointUrl?: string | undefined;
692
+ /**
693
+ * <p>The status of the ACME endpoint.</p>
694
+ * @public
695
+ */
696
+ Status?: AcmeEndpointStatus | undefined;
697
+ /**
698
+ * <p>The reason the ACME endpoint failed, if applicable.</p>
699
+ * @public
700
+ */
701
+ FailureReason?: string | undefined;
702
+ /**
703
+ * <p>The authorization behavior of the ACME endpoint.</p>
704
+ * @public
705
+ */
706
+ AuthorizationBehavior?: AcmeAuthorizationBehavior | undefined;
707
+ /**
708
+ * <p>Whether ACME clients must provide contact information during account registration.</p>
709
+ * @public
710
+ */
711
+ Contact?: AcmeContact | undefined;
712
+ /**
713
+ * <p>The certificate authority configuration for the ACME endpoint.</p>
714
+ * @public
715
+ */
716
+ CertificateAuthority?: CertificateAuthority | undefined;
717
+ /**
718
+ * <p>Tags applied to certificates issued through this ACME endpoint.</p>
719
+ * @public
720
+ */
721
+ CertificateTags?: Tag[] | undefined;
722
+ /**
723
+ * <p>The time at which the ACME endpoint was created.</p>
724
+ * @public
725
+ */
726
+ CreatedAt?: Date | undefined;
727
+ /**
728
+ * <p>The time at which the ACME endpoint was last updated.</p>
729
+ * @public
730
+ */
731
+ UpdatedAt?: Date | undefined;
732
+ }
733
+ /**
734
+ * <p>Contains summary information about an ACME endpoint.</p>
735
+ * @public
736
+ */
737
+ export interface AcmeEndpointSummary {
738
+ /**
739
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
740
+ * @public
741
+ */
742
+ AcmeEndpointArn?: string | undefined;
743
+ /**
744
+ * <p>The URL of the ACME endpoint.</p>
745
+ * @public
746
+ */
747
+ EndpointUrl?: string | undefined;
748
+ /**
749
+ * <p>The status of the ACME endpoint.</p>
750
+ * @public
751
+ */
752
+ Status?: AcmeEndpointStatus | undefined;
753
+ /**
754
+ * <p>The reason the ACME endpoint failed, if applicable.</p>
755
+ * @public
756
+ */
757
+ FailureReason?: string | undefined;
758
+ /**
759
+ * <p>The authorization behavior of the ACME endpoint.</p>
760
+ * @public
761
+ */
762
+ AuthorizationBehavior?: AcmeAuthorizationBehavior | undefined;
763
+ /**
764
+ * <p>Whether ACME clients must provide contact information during account registration.</p>
765
+ * @public
766
+ */
767
+ Contact?: AcmeContact | undefined;
768
+ /**
769
+ * <p>The certificate authority configuration for the ACME endpoint.</p>
770
+ * @public
771
+ */
772
+ CertificateAuthority?: CertificateAuthority | undefined;
773
+ /**
774
+ * <p>Tags applied to certificates issued through this ACME endpoint.</p>
775
+ * @public
776
+ */
777
+ CertificateTags?: Tag[] | undefined;
778
+ /**
779
+ * <p>The time at which the ACME endpoint was created.</p>
780
+ * @public
781
+ */
782
+ CreatedAt?: Date | undefined;
783
+ /**
784
+ * <p>The time at which the ACME endpoint was last updated.</p>
785
+ * @public
786
+ */
787
+ UpdatedAt?: Date | undefined;
788
+ }
789
+ /**
790
+ * <p>Contains detailed information about an ACME external account binding.</p>
791
+ * @public
792
+ */
793
+ export interface AcmeExternalAccountBinding {
794
+ /**
795
+ * <p>The Amazon Resource Name (ARN) of the ACME external account binding.</p>
796
+ * @public
797
+ */
798
+ AcmeExternalAccountBindingArn?: string | undefined;
799
+ /**
800
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
801
+ * @public
802
+ */
803
+ AcmeEndpointArn?: string | undefined;
804
+ /**
805
+ * <p>The Amazon Resource Name (ARN) of the IAM role associated with the external account binding.</p>
806
+ * @public
807
+ */
808
+ RoleArn?: string | undefined;
809
+ /**
810
+ * <p>The time at which the external account binding expires.</p>
811
+ * @public
812
+ */
813
+ ExpiresAt?: Date | undefined;
814
+ /**
815
+ * <p>The time at which the external account binding was revoked.</p>
816
+ * @public
817
+ */
818
+ RevokedAt?: Date | undefined;
819
+ /**
820
+ * <p>The time at which the external account binding was last used.</p>
821
+ * @public
822
+ */
823
+ LastUsedAt?: Date | undefined;
824
+ /**
825
+ * <p>The time at which the external account binding was created.</p>
826
+ * @public
827
+ */
828
+ CreatedAt?: Date | undefined;
829
+ /**
830
+ * <p>The time at which the external account binding was last updated.</p>
831
+ * @public
832
+ */
833
+ UpdatedAt?: Date | undefined;
834
+ }
835
+ /**
836
+ * <p>Contains summary information about an ACME external account binding.</p>
837
+ * @public
838
+ */
839
+ export interface AcmeExternalAccountBindingSummary {
840
+ /**
841
+ * <p>The Amazon Resource Name (ARN) of the ACME external account binding.</p>
842
+ * @public
843
+ */
844
+ AcmeExternalAccountBindingArn?: string | undefined;
845
+ /**
846
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
847
+ * @public
848
+ */
849
+ AcmeEndpointArn?: string | undefined;
850
+ /**
851
+ * <p>The Amazon Resource Name (ARN) of the IAM role associated with the external account binding.</p>
852
+ * @public
853
+ */
854
+ RoleArn?: string | undefined;
855
+ /**
856
+ * <p>The time at which the external account binding expires.</p>
857
+ * @public
858
+ */
859
+ ExpiresAt?: Date | undefined;
860
+ /**
861
+ * <p>The time at which the external account binding was revoked.</p>
862
+ * @public
863
+ */
864
+ RevokedAt?: Date | undefined;
865
+ /**
866
+ * <p>The time at which the external account binding was last used.</p>
867
+ * @public
868
+ */
869
+ LastUsedAt?: Date | undefined;
870
+ /**
871
+ * <p>The time at which the external account binding was created.</p>
872
+ * @public
873
+ */
874
+ CreatedAt?: Date | undefined;
875
+ /**
876
+ * <p>The time at which the external account binding was last updated.</p>
877
+ * @public
878
+ */
879
+ UpdatedAt?: Date | undefined;
880
+ }
248
881
  /**
249
882
  * @public
250
883
  */
@@ -285,33 +918,12 @@ export interface HttpRedirect {
285
918
  * <p>The URL including the domain to be validated. The certificate authority sends <code>GET</code> requests here during validation.</p>
286
919
  * @public
287
920
  */
288
- RedirectFrom?: string | undefined;
289
- /**
290
- * <p>The URL hosting the validation token. <code>RedirectFrom</code> must return this content or redirect here.</p>
291
- * @public
292
- */
293
- RedirectTo?: string | undefined;
294
- }
295
- /**
296
- * <p>Contains a DNS record value that you can use to validate ownership or control of a domain. This is used by the <a>DescribeCertificate</a> action. </p>
297
- * @public
298
- */
299
- export interface ResourceRecord {
300
- /**
301
- * <p>The name of the DNS record to create in your domain. This is supplied by ACM.</p>
302
- * @public
303
- */
304
- Name: string | undefined;
305
- /**
306
- * <p>The type of DNS record. Currently this can be <code>CNAME</code>.</p>
307
- * @public
308
- */
309
- Type: RecordType | undefined;
921
+ RedirectFrom?: string | undefined;
310
922
  /**
311
- * <p>The value of the CNAME record to add to your DNS database. This is supplied by ACM.</p>
923
+ * <p>The URL hosting the validation token. <code>RedirectFrom</code> must return this content or redirect here.</p>
312
924
  * @public
313
925
  */
314
- Value: string | undefined;
926
+ RedirectTo?: string | undefined;
315
927
  }
316
928
  /**
317
929
  * <p>Contains information about the validation of each domain name in the certificate.</p>
@@ -565,6 +1177,21 @@ export interface CertificateDetail {
565
1177
  * @public
566
1178
  */
567
1179
  Options?: CertificateOptions | undefined;
1180
+ /**
1181
+ * <p>The origin of the certificate's key pair.</p>
1182
+ * @public
1183
+ */
1184
+ CertificateKeyPairOrigin?: CertificateKeyPairOrigin | undefined;
1185
+ /**
1186
+ * <p>The ARN of the ACME endpoint used to issue the certificate.</p>
1187
+ * @public
1188
+ */
1189
+ AcmeEndpointArn?: string | undefined;
1190
+ /**
1191
+ * <p>The ACME account identifier associated with the certificate.</p>
1192
+ * @public
1193
+ */
1194
+ AcmeAccountId?: string | undefined;
568
1195
  }
569
1196
  /**
570
1197
  * <p>Specifies a time range for filtering certificates.</p>
@@ -849,64 +1476,369 @@ export type CertificateFilter = CertificateFilter.AcmCertificateMetadataFilterMe
849
1476
  */
850
1477
  export declare namespace CertificateFilter {
851
1478
  /**
852
- * <p>Filter by certificate ARN.</p>
1479
+ * <p>Filter by certificate ARN.</p>
1480
+ * @public
1481
+ */
1482
+ interface CertificateArnMember {
1483
+ CertificateArn: string;
1484
+ X509AttributeFilter?: never;
1485
+ AcmCertificateMetadataFilter?: never;
1486
+ $unknown?: never;
1487
+ }
1488
+ /**
1489
+ * <p>Filter by X.509 certificate attributes.</p>
1490
+ * @public
1491
+ */
1492
+ interface X509AttributeFilterMember {
1493
+ CertificateArn?: never;
1494
+ X509AttributeFilter: X509AttributeFilter;
1495
+ AcmCertificateMetadataFilter?: never;
1496
+ $unknown?: never;
1497
+ }
1498
+ /**
1499
+ * <p>Filter by ACM certificate metadata.</p>
1500
+ * @public
1501
+ */
1502
+ interface AcmCertificateMetadataFilterMember {
1503
+ CertificateArn?: never;
1504
+ X509AttributeFilter?: never;
1505
+ AcmCertificateMetadataFilter: AcmCertificateMetadataFilter;
1506
+ $unknown?: never;
1507
+ }
1508
+ /**
1509
+ * @public
1510
+ */
1511
+ interface $UnknownMember {
1512
+ CertificateArn?: never;
1513
+ X509AttributeFilter?: never;
1514
+ AcmCertificateMetadataFilter?: never;
1515
+ $unknown: [string, any];
1516
+ }
1517
+ /**
1518
+ * @deprecated unused in schema-serde mode.
1519
+ *
1520
+ */
1521
+ interface Visitor<T> {
1522
+ CertificateArn: (value: string) => T;
1523
+ X509AttributeFilter: (value: X509AttributeFilter) => T;
1524
+ AcmCertificateMetadataFilter: (value: AcmCertificateMetadataFilter) => T;
1525
+ _: (name: string, value: any) => T;
1526
+ }
1527
+ }
1528
+ /**
1529
+ * <p>DNS prevalidation options for domain validation.</p>
1530
+ * @public
1531
+ */
1532
+ export interface DnsPrevalidationOptions {
1533
+ /**
1534
+ * <p>The scope of domains covered by this prevalidation.</p>
1535
+ * @public
1536
+ */
1537
+ DomainScope?: DomainScope | undefined;
1538
+ /**
1539
+ * <p>The Route 53 hosted zone ID for DNS validation.</p>
1540
+ * @public
1541
+ */
1542
+ HostedZoneId?: string | undefined;
1543
+ }
1544
+ /**
1545
+ * <p>Specifies prevalidation options for domain validation.</p>
1546
+ * @public
1547
+ */
1548
+ export type PrevalidationOptions = PrevalidationOptions.DnsPrevalidationMember | PrevalidationOptions.$UnknownMember;
1549
+ /**
1550
+ * @public
1551
+ */
1552
+ export declare namespace PrevalidationOptions {
1553
+ /**
1554
+ * <p>DNS-based prevalidation options.</p>
1555
+ * @public
1556
+ */
1557
+ interface DnsPrevalidationMember {
1558
+ DnsPrevalidation: DnsPrevalidationOptions;
1559
+ $unknown?: never;
1560
+ }
1561
+ /**
1562
+ * @public
1563
+ */
1564
+ interface $UnknownMember {
1565
+ DnsPrevalidation?: never;
1566
+ $unknown: [string, any];
1567
+ }
1568
+ /**
1569
+ * @deprecated unused in schema-serde mode.
1570
+ *
1571
+ */
1572
+ interface Visitor<T> {
1573
+ DnsPrevalidation: (value: DnsPrevalidationOptions) => T;
1574
+ _: (name: string, value: any) => T;
1575
+ }
1576
+ }
1577
+ /**
1578
+ * @public
1579
+ */
1580
+ export interface CreateAcmeDomainValidationRequest {
1581
+ /**
1582
+ * <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
1583
+ * @public
1584
+ */
1585
+ IdempotencyToken?: string | undefined;
1586
+ /**
1587
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
1588
+ * @public
1589
+ */
1590
+ AcmeEndpointArn: string | undefined;
1591
+ /**
1592
+ * <p>The domain name to validate.</p>
1593
+ * @public
1594
+ */
1595
+ DomainName: string | undefined;
1596
+ /**
1597
+ * <p>The prevalidation options for the domain.</p>
1598
+ * @public
1599
+ */
1600
+ PrevalidationOptions: PrevalidationOptions | undefined;
1601
+ /**
1602
+ * <p>One or more tags to associate with the domain validation.</p>
1603
+ * @public
1604
+ */
1605
+ Tags?: Tag[] | undefined;
1606
+ }
1607
+ /**
1608
+ * @public
1609
+ */
1610
+ export interface CreateAcmeDomainValidationResponse {
1611
+ /**
1612
+ * <p>The Amazon Resource Name (ARN) of the created domain validation.</p>
1613
+ * @public
1614
+ */
1615
+ AcmeDomainValidationArn: string | undefined;
1616
+ }
1617
+ /**
1618
+ * @public
1619
+ */
1620
+ export interface CreateAcmeEndpointRequest {
1621
+ /**
1622
+ * <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
1623
+ * @public
1624
+ */
1625
+ IdempotencyToken?: string | undefined;
1626
+ /**
1627
+ * <p>The authorization behavior for the ACME endpoint.</p>
1628
+ * @public
1629
+ */
1630
+ AuthorizationBehavior: AcmeAuthorizationBehavior | undefined;
1631
+ /**
1632
+ * <p>Specifies whether ACME clients must provide contact information during account registration.</p>
1633
+ * @public
1634
+ */
1635
+ Contact?: AcmeContact | undefined;
1636
+ /**
1637
+ * <p>The type of certificate authority to use for issuing certificates through this ACME endpoint.</p>
1638
+ * @public
1639
+ */
1640
+ CertificateAuthority: CertificateAuthority | undefined;
1641
+ /**
1642
+ * <p>One or more tags to associate with the ACME endpoint.</p>
1643
+ * @public
1644
+ */
1645
+ Tags?: Tag[] | undefined;
1646
+ /**
1647
+ * <p>Tags to apply to certificates issued through this ACME endpoint.</p>
1648
+ * @public
1649
+ */
1650
+ CertificateTags?: Tag[] | undefined;
1651
+ }
1652
+ /**
1653
+ * @public
1654
+ */
1655
+ export interface CreateAcmeEndpointResponse {
1656
+ /**
1657
+ * <p>The Amazon Resource Name (ARN) of the created ACME endpoint.</p>
1658
+ * @public
1659
+ */
1660
+ AcmeEndpointArn?: string | undefined;
1661
+ }
1662
+ /**
1663
+ * <p>Specifies an expiration configuration.</p>
1664
+ * @public
1665
+ */
1666
+ export interface Expiration {
1667
+ /**
1668
+ * <p>The numeric value of the expiration.</p>
1669
+ * @public
1670
+ */
1671
+ Value: number | undefined;
1672
+ /**
1673
+ * <p>The time unit for the expiration value.</p>
1674
+ * @public
1675
+ */
1676
+ Type: TimeType | undefined;
1677
+ }
1678
+ /**
1679
+ * @public
1680
+ */
1681
+ export interface CreateAcmeExternalAccountBindingRequest {
1682
+ /**
1683
+ * <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
1684
+ * @public
1685
+ */
1686
+ IdempotencyToken?: string | undefined;
1687
+ /**
1688
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
1689
+ * @public
1690
+ */
1691
+ AcmeEndpointArn: string | undefined;
1692
+ /**
1693
+ * <p>The Amazon Resource Name (ARN) of the IAM role to associate with the external account binding.</p>
1694
+ * @public
1695
+ */
1696
+ RoleArn: string | undefined;
1697
+ /**
1698
+ * <p>The expiration configuration for the external account binding.</p>
1699
+ * @public
1700
+ */
1701
+ Expiration?: Expiration | undefined;
1702
+ /**
1703
+ * <p>One or more tags to associate with the external account binding.</p>
1704
+ * @public
1705
+ */
1706
+ Tags?: Tag[] | undefined;
1707
+ }
1708
+ /**
1709
+ * @public
1710
+ */
1711
+ export interface CreateAcmeExternalAccountBindingResponse {
1712
+ /**
1713
+ * <p>The created external account binding.</p>
1714
+ * @public
1715
+ */
1716
+ ExternalAccountBinding?: AcmeExternalAccountBinding | undefined;
1717
+ }
1718
+ /**
1719
+ * @public
1720
+ */
1721
+ export interface DeleteAcmeDomainValidationRequest {
1722
+ /**
1723
+ * <p>The Amazon Resource Name (ARN) of the ACME domain validation to delete.</p>
1724
+ * @public
1725
+ */
1726
+ AcmeDomainValidationArn: string | undefined;
1727
+ }
1728
+ /**
1729
+ * @public
1730
+ */
1731
+ export interface DeleteAcmeEndpointRequest {
1732
+ /**
1733
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint to delete.</p>
1734
+ * @public
1735
+ */
1736
+ AcmeEndpointArn: string | undefined;
1737
+ }
1738
+ /**
1739
+ * @public
1740
+ */
1741
+ export interface DeleteAcmeExternalAccountBindingRequest {
1742
+ /**
1743
+ * <p>The Amazon Resource Name (ARN) of the ACME external account binding to delete.</p>
1744
+ * @public
1745
+ */
1746
+ AcmeExternalAccountBindingArn: string | undefined;
1747
+ }
1748
+ /**
1749
+ * @public
1750
+ */
1751
+ export interface DeleteCertificateRequest {
1752
+ /**
1753
+ * <p>String that contains the ARN of the ACM certificate to be deleted. This must be of the form:</p> <p> <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code> </p> <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
1754
+ * @public
1755
+ */
1756
+ CertificateArn: string | undefined;
1757
+ }
1758
+ /**
1759
+ * @public
1760
+ */
1761
+ export interface DescribeAcmeAccountRequest {
1762
+ /**
1763
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
1764
+ * @public
1765
+ */
1766
+ AcmeEndpointArn: string | undefined;
1767
+ /**
1768
+ * <p>The URL of the ACME account.</p>
1769
+ * @public
1770
+ */
1771
+ AccountUrl: string | undefined;
1772
+ }
1773
+ /**
1774
+ * @public
1775
+ */
1776
+ export interface DescribeAcmeAccountResponse {
1777
+ /**
1778
+ * <p>The ACME account details.</p>
1779
+ * @public
1780
+ */
1781
+ AcmeAccount?: AcmeAccount | undefined;
1782
+ }
1783
+ /**
1784
+ * @public
1785
+ */
1786
+ export interface DescribeAcmeDomainValidationRequest {
1787
+ /**
1788
+ * <p>The Amazon Resource Name (ARN) of the ACME domain validation.</p>
1789
+ * @public
1790
+ */
1791
+ AcmeDomainValidationArn: string | undefined;
1792
+ }
1793
+ /**
1794
+ * @public
1795
+ */
1796
+ export interface DescribeAcmeDomainValidationResponse {
1797
+ /**
1798
+ * <p>The ACME domain validation details.</p>
853
1799
  * @public
854
1800
  */
855
- interface CertificateArnMember {
856
- CertificateArn: string;
857
- X509AttributeFilter?: never;
858
- AcmCertificateMetadataFilter?: never;
859
- $unknown?: never;
860
- }
1801
+ AcmeDomainValidation?: AcmeDomainValidation | undefined;
1802
+ }
1803
+ /**
1804
+ * @public
1805
+ */
1806
+ export interface DescribeAcmeEndpointRequest {
861
1807
  /**
862
- * <p>Filter by X.509 certificate attributes.</p>
1808
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
863
1809
  * @public
864
1810
  */
865
- interface X509AttributeFilterMember {
866
- CertificateArn?: never;
867
- X509AttributeFilter: X509AttributeFilter;
868
- AcmCertificateMetadataFilter?: never;
869
- $unknown?: never;
870
- }
1811
+ AcmeEndpointArn: string | undefined;
1812
+ }
1813
+ /**
1814
+ * @public
1815
+ */
1816
+ export interface DescribeAcmeEndpointResponse {
871
1817
  /**
872
- * <p>Filter by ACM certificate metadata.</p>
1818
+ * <p>The ACME endpoint details.</p>
873
1819
  * @public
874
1820
  */
875
- interface AcmCertificateMetadataFilterMember {
876
- CertificateArn?: never;
877
- X509AttributeFilter?: never;
878
- AcmCertificateMetadataFilter: AcmCertificateMetadataFilter;
879
- $unknown?: never;
880
- }
1821
+ AcmeEndpoint?: AcmeEndpoint | undefined;
1822
+ }
1823
+ /**
1824
+ * @public
1825
+ */
1826
+ export interface DescribeAcmeExternalAccountBindingRequest {
881
1827
  /**
1828
+ * <p>The Amazon Resource Name (ARN) of the ACME external account binding.</p>
882
1829
  * @public
883
1830
  */
884
- interface $UnknownMember {
885
- CertificateArn?: never;
886
- X509AttributeFilter?: never;
887
- AcmCertificateMetadataFilter?: never;
888
- $unknown: [string, any];
889
- }
890
- /**
891
- * @deprecated unused in schema-serde mode.
892
- *
893
- */
894
- interface Visitor<T> {
895
- CertificateArn: (value: string) => T;
896
- X509AttributeFilter: (value: X509AttributeFilter) => T;
897
- AcmCertificateMetadataFilter: (value: AcmCertificateMetadataFilter) => T;
898
- _: (name: string, value: any) => T;
899
- }
1831
+ AcmeExternalAccountBindingArn: string | undefined;
900
1832
  }
901
1833
  /**
902
1834
  * @public
903
1835
  */
904
- export interface DeleteCertificateRequest {
1836
+ export interface DescribeAcmeExternalAccountBindingResponse {
905
1837
  /**
906
- * <p>String that contains the ARN of the ACM certificate to be deleted. This must be of the form:</p> <p> <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code> </p> <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
1838
+ * <p>The external account binding details.</p>
907
1839
  * @public
908
1840
  */
909
- CertificateArn: string | undefined;
1841
+ ExternalAccountBinding?: AcmeExternalAccountBinding | undefined;
910
1842
  }
911
1843
  /**
912
1844
  * @public
@@ -984,6 +1916,31 @@ export interface GetAccountConfigurationResponse {
984
1916
  */
985
1917
  ExpiryEvents?: ExpiryEventsConfiguration | undefined;
986
1918
  }
1919
+ /**
1920
+ * @public
1921
+ */
1922
+ export interface GetAcmeExternalAccountBindingCredentialsRequest {
1923
+ /**
1924
+ * <p>The Amazon Resource Name (ARN) of the ACME external account binding.</p>
1925
+ * @public
1926
+ */
1927
+ AcmeExternalAccountBindingArn: string | undefined;
1928
+ }
1929
+ /**
1930
+ * @public
1931
+ */
1932
+ export interface GetAcmeExternalAccountBindingCredentialsResponse {
1933
+ /**
1934
+ * <p>The key identifier for the external account binding credentials.</p>
1935
+ * @public
1936
+ */
1937
+ KeyId?: string | undefined;
1938
+ /**
1939
+ * <p>The MAC key for the external account binding credentials.</p>
1940
+ * @public
1941
+ */
1942
+ MacKey?: string | undefined;
1943
+ }
987
1944
  /**
988
1945
  * @public
989
1946
  */
@@ -1049,6 +2006,141 @@ export interface ImportCertificateResponse {
1049
2006
  */
1050
2007
  CertificateArn?: string | undefined;
1051
2008
  }
2009
+ /**
2010
+ * @public
2011
+ */
2012
+ export interface ListAcmeAccountsRequest {
2013
+ /**
2014
+ * <p>A token for pagination.</p>
2015
+ * @public
2016
+ */
2017
+ NextToken?: string | undefined;
2018
+ /**
2019
+ * <p>The maximum number of results to return.</p>
2020
+ * @public
2021
+ */
2022
+ MaxResults?: number | undefined;
2023
+ /**
2024
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
2025
+ * @public
2026
+ */
2027
+ AcmeEndpointArn: string | undefined;
2028
+ }
2029
+ /**
2030
+ * @public
2031
+ */
2032
+ export interface ListAcmeAccountsResponse {
2033
+ /**
2034
+ * <p>The list of ACME accounts.</p>
2035
+ * @public
2036
+ */
2037
+ AcmeAccounts?: AcmeAccountSummary[] | undefined;
2038
+ /**
2039
+ * <p>A token for pagination.</p>
2040
+ * @public
2041
+ */
2042
+ NextToken?: string | undefined;
2043
+ }
2044
+ /**
2045
+ * @public
2046
+ */
2047
+ export interface ListAcmeDomainValidationsRequest {
2048
+ /**
2049
+ * <p>A token for pagination.</p>
2050
+ * @public
2051
+ */
2052
+ NextToken?: string | undefined;
2053
+ /**
2054
+ * <p>The maximum number of results to return.</p>
2055
+ * @public
2056
+ */
2057
+ MaxResults?: number | undefined;
2058
+ /**
2059
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
2060
+ * @public
2061
+ */
2062
+ AcmeEndpointArn: string | undefined;
2063
+ }
2064
+ /**
2065
+ * @public
2066
+ */
2067
+ export interface ListAcmeDomainValidationsResponse {
2068
+ /**
2069
+ * <p>The list of domain validations.</p>
2070
+ * @public
2071
+ */
2072
+ AcmeDomainValidations?: AcmeDomainValidationSummary[] | undefined;
2073
+ /**
2074
+ * <p>A token for pagination.</p>
2075
+ * @public
2076
+ */
2077
+ NextToken?: string | undefined;
2078
+ }
2079
+ /**
2080
+ * @public
2081
+ */
2082
+ export interface ListAcmeEndpointsRequest {
2083
+ /**
2084
+ * <p>A token for pagination.</p>
2085
+ * @public
2086
+ */
2087
+ NextToken?: string | undefined;
2088
+ /**
2089
+ * <p>The maximum number of results to return.</p>
2090
+ * @public
2091
+ */
2092
+ MaxResults?: number | undefined;
2093
+ }
2094
+ /**
2095
+ * @public
2096
+ */
2097
+ export interface ListAcmeEndpointsResponse {
2098
+ /**
2099
+ * <p>The list of ACME endpoints.</p>
2100
+ * @public
2101
+ */
2102
+ AcmeEndpoints?: AcmeEndpointSummary[] | undefined;
2103
+ /**
2104
+ * <p>A token for pagination.</p>
2105
+ * @public
2106
+ */
2107
+ NextToken?: string | undefined;
2108
+ }
2109
+ /**
2110
+ * @public
2111
+ */
2112
+ export interface ListAcmeExternalAccountBindingsRequest {
2113
+ /**
2114
+ * <p>A token for pagination.</p>
2115
+ * @public
2116
+ */
2117
+ NextToken?: string | undefined;
2118
+ /**
2119
+ * <p>The maximum number of results to return.</p>
2120
+ * @public
2121
+ */
2122
+ MaxResults?: number | undefined;
2123
+ /**
2124
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
2125
+ * @public
2126
+ */
2127
+ AcmeEndpointArn: string | undefined;
2128
+ }
2129
+ /**
2130
+ * @public
2131
+ */
2132
+ export interface ListAcmeExternalAccountBindingsResponse {
2133
+ /**
2134
+ * <p>The list of external account bindings.</p>
2135
+ * @public
2136
+ */
2137
+ ExternalAccountBindings?: AcmeExternalAccountBindingSummary[] | undefined;
2138
+ /**
2139
+ * <p>A token for pagination.</p>
2140
+ * @public
2141
+ */
2142
+ NextToken?: string | undefined;
2143
+ }
1052
2144
  /**
1053
2145
  * <p>This structure can be used in the <a>ListCertificates</a> action to filter the output of the certificate list. </p>
1054
2146
  * @public
@@ -1089,6 +2181,11 @@ export interface ListCertificatesRequest {
1089
2181
  * @public
1090
2182
  */
1091
2183
  CertificateStatuses?: CertificateStatus[] | undefined;
2184
+ /**
2185
+ * <p>Filter the certificate list by certificate key pair origin. Specify one or more <code>CertificateKeyPairOrigin</code> values. Default filtering returns only certificates with key pair origin of <code>AWS_MANAGED</code> and <code>CUSTOMER_PROVIDED</code>.</p>
2186
+ * @public
2187
+ */
2188
+ CertificateKeyPairOrigins?: CertificateKeyPairOrigin[] | undefined;
1092
2189
  /**
1093
2190
  * <p>Filter the certificate list. For more information, see the <a>Filters</a> structure.</p>
1094
2191
  * @public
@@ -1176,7 +2273,7 @@ export interface CertificateSummary {
1176
2273
  */
1177
2274
  InUse?: boolean | undefined;
1178
2275
  /**
1179
- * <p>Indicates whether the certificate has been exported. This value exists only when the certificate type is <code>PRIVATE</code>.</p>
2276
+ * <p>Indicates whether the certificate has been exported.</p>
1180
2277
  * @public
1181
2278
  */
1182
2279
  Exported?: boolean | undefined;
@@ -1220,6 +2317,11 @@ export interface CertificateSummary {
1220
2317
  * @public
1221
2318
  */
1222
2319
  ManagedBy?: CertificateManagedBy | undefined;
2320
+ /**
2321
+ * <p>The origin of the certificate's key pair.</p>
2322
+ * @public
2323
+ */
2324
+ CertificateKeyPairOrigin?: CertificateKeyPairOrigin | undefined;
1223
2325
  }
1224
2326
  /**
1225
2327
  * @public
@@ -1256,6 +2358,26 @@ export interface ListTagsForCertificateResponse {
1256
2358
  */
1257
2359
  Tags?: Tag[] | undefined;
1258
2360
  }
2361
+ /**
2362
+ * @public
2363
+ */
2364
+ export interface ListTagsForResourceRequest {
2365
+ /**
2366
+ * <p>The ARN of the ACM resource for which to list tags.</p>
2367
+ * @public
2368
+ */
2369
+ ResourceArn: string | undefined;
2370
+ }
2371
+ /**
2372
+ * @public
2373
+ */
2374
+ export interface ListTagsForResourceResponse {
2375
+ /**
2376
+ * <p>The tags associated with the resource.</p>
2377
+ * @public
2378
+ */
2379
+ Tags?: Tag[] | undefined;
2380
+ }
1259
2381
  /**
1260
2382
  * @public
1261
2383
  */
@@ -1397,6 +2519,31 @@ export interface ResendValidationEmailRequest {
1397
2519
  */
1398
2520
  ValidationDomain: string | undefined;
1399
2521
  }
2522
+ /**
2523
+ * @public
2524
+ */
2525
+ export interface RevokeAcmeAccountRequest {
2526
+ /**
2527
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint.</p>
2528
+ * @public
2529
+ */
2530
+ AcmeEndpointArn: string | undefined;
2531
+ /**
2532
+ * <p>The URL of the ACME account to revoke.</p>
2533
+ * @public
2534
+ */
2535
+ AccountUrl: string | undefined;
2536
+ }
2537
+ /**
2538
+ * @public
2539
+ */
2540
+ export interface RevokeAcmeExternalAccountBindingRequest {
2541
+ /**
2542
+ * <p>The Amazon Resource Name (ARN) of the ACME external account binding to revoke.</p>
2543
+ * @public
2544
+ */
2545
+ AcmeExternalAccountBindingArn: string | undefined;
2546
+ }
1400
2547
  /**
1401
2548
  * @public
1402
2549
  */
@@ -1795,6 +2942,76 @@ export interface SearchCertificatesResponse {
1795
2942
  */
1796
2943
  NextToken?: string | undefined;
1797
2944
  }
2945
+ /**
2946
+ * @public
2947
+ */
2948
+ export interface TagResourceRequest {
2949
+ /**
2950
+ * <p>The ARN of the ACM resource to which the tag is to be applied.</p>
2951
+ * @public
2952
+ */
2953
+ ResourceArn: string | undefined;
2954
+ /**
2955
+ * <p>The key-value pair that defines the tag to apply.</p>
2956
+ * @public
2957
+ */
2958
+ Tags: Tag[] | undefined;
2959
+ }
2960
+ /**
2961
+ * @public
2962
+ */
2963
+ export interface UntagResourceRequest {
2964
+ /**
2965
+ * <p>The ARN of the ACM resource from which the tag is to be removed.</p>
2966
+ * @public
2967
+ */
2968
+ ResourceArn: string | undefined;
2969
+ /**
2970
+ * <p>The key of each tag to remove.</p>
2971
+ * @public
2972
+ */
2973
+ TagKeys: string[] | undefined;
2974
+ }
2975
+ /**
2976
+ * @public
2977
+ */
2978
+ export interface UpdateAcmeDomainValidationRequest {
2979
+ /**
2980
+ * <p>The Amazon Resource Name (ARN) of the ACME domain validation to update.</p>
2981
+ * @public
2982
+ */
2983
+ AcmeDomainValidationArn: string | undefined;
2984
+ /**
2985
+ * <p>The updated prevalidation options.</p>
2986
+ * @public
2987
+ */
2988
+ PrevalidationOptions?: PrevalidationOptions | undefined;
2989
+ }
2990
+ /**
2991
+ * @public
2992
+ */
2993
+ export interface UpdateAcmeEndpointRequest {
2994
+ /**
2995
+ * <p>The Amazon Resource Name (ARN) of the ACME endpoint to update.</p>
2996
+ * @public
2997
+ */
2998
+ AcmeEndpointArn: string | undefined;
2999
+ /**
3000
+ * <p>The updated authorization behavior.</p>
3001
+ * @public
3002
+ */
3003
+ AuthorizationBehavior?: AcmeAuthorizationBehavior | undefined;
3004
+ /**
3005
+ * <p>The updated contact requirement.</p>
3006
+ * @public
3007
+ */
3008
+ Contact?: AcmeContact | undefined;
3009
+ /**
3010
+ * <p>The updated certificate authority configuration.</p>
3011
+ * @public
3012
+ */
3013
+ CertificateAuthority?: CertificateAuthority | undefined;
3014
+ }
1798
3015
  /**
1799
3016
  * @public
1800
3017
  */