@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,17 +1,39 @@
1
1
  export * from "./AddTagsToCertificateCommand";
2
+ export * from "./CreateAcmeDomainValidationCommand";
3
+ export * from "./CreateAcmeEndpointCommand";
4
+ export * from "./CreateAcmeExternalAccountBindingCommand";
5
+ export * from "./DeleteAcmeDomainValidationCommand";
6
+ export * from "./DeleteAcmeEndpointCommand";
7
+ export * from "./DeleteAcmeExternalAccountBindingCommand";
2
8
  export * from "./DeleteCertificateCommand";
9
+ export * from "./DescribeAcmeAccountCommand";
10
+ export * from "./DescribeAcmeDomainValidationCommand";
11
+ export * from "./DescribeAcmeEndpointCommand";
12
+ export * from "./DescribeAcmeExternalAccountBindingCommand";
3
13
  export * from "./DescribeCertificateCommand";
4
14
  export * from "./ExportCertificateCommand";
5
15
  export * from "./GetAccountConfigurationCommand";
16
+ export * from "./GetAcmeExternalAccountBindingCredentialsCommand";
6
17
  export * from "./GetCertificateCommand";
7
18
  export * from "./ImportCertificateCommand";
19
+ export * from "./ListAcmeAccountsCommand";
20
+ export * from "./ListAcmeDomainValidationsCommand";
21
+ export * from "./ListAcmeEndpointsCommand";
22
+ export * from "./ListAcmeExternalAccountBindingsCommand";
8
23
  export * from "./ListCertificatesCommand";
9
24
  export * from "./ListTagsForCertificateCommand";
25
+ export * from "./ListTagsForResourceCommand";
10
26
  export * from "./PutAccountConfigurationCommand";
11
27
  export * from "./RemoveTagsFromCertificateCommand";
12
28
  export * from "./RenewCertificateCommand";
13
29
  export * from "./RequestCertificateCommand";
14
30
  export * from "./ResendValidationEmailCommand";
31
+ export * from "./RevokeAcmeAccountCommand";
32
+ export * from "./RevokeAcmeExternalAccountBindingCommand";
15
33
  export * from "./RevokeCertificateCommand";
16
34
  export * from "./SearchCertificatesCommand";
35
+ export * from "./TagResourceCommand";
36
+ export * from "./UntagResourceCommand";
37
+ export * from "./UpdateAcmeDomainValidationCommand";
38
+ export * from "./UpdateAcmeEndpointCommand";
17
39
  export * from "./UpdateCertificateOptionsCommand";
@@ -5,9 +5,10 @@ import {
5
5
  Provider,
6
6
  } from "@smithy/types";
7
7
  export interface ClientInputEndpointParameters {
8
+ clientContextParams?: {
9
+ serviceType?: string | undefined | Provider<string | undefined>;
10
+ };
8
11
  region?: string | undefined | Provider<string | undefined>;
9
- useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
10
- useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
11
12
  endpoint?:
12
13
  | string
13
14
  | Provider<string>
@@ -15,6 +16,9 @@ export interface ClientInputEndpointParameters {
15
16
  | Provider<Endpoint>
16
17
  | EndpointV2
17
18
  | Provider<EndpointV2>;
19
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
20
+ useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
21
+ serviceType?: string | undefined | Provider<string | undefined>;
18
22
  }
19
23
  export type ClientResolvedEndpointParameters = Pick<
20
24
  ClientInputEndpointParameters,
@@ -26,6 +30,10 @@ export declare const resolveClientEndpointParameters: <T>(
26
30
  options: T & ClientInputEndpointParameters
27
31
  ) => T & ClientResolvedEndpointParameters;
28
32
  export declare const commonParams: {
33
+ readonly ServiceType: {
34
+ readonly type: "clientContextParams";
35
+ readonly name: "serviceType";
36
+ };
29
37
  readonly UseFIPS: {
30
38
  readonly type: "builtInParams";
31
39
  readonly name: "useFipsEndpoint";
@@ -44,8 +52,9 @@ export declare const commonParams: {
44
52
  };
45
53
  };
46
54
  export interface EndpointParameters extends __EndpointParameters {
47
- Region?: string | undefined;
48
- UseDualStack?: boolean | undefined;
49
- UseFIPS?: boolean | undefined;
55
+ Region: string;
50
56
  Endpoint?: string | undefined;
57
+ UseFIPS?: boolean | undefined;
58
+ UseDualStack?: boolean | undefined;
59
+ ServiceType: string;
51
60
  }
@@ -1,3 +1,10 @@
1
+ export declare const CertificateKeyPairOrigin: {
2
+ readonly ACME: "ACME";
3
+ readonly AWS_MANAGED: "AWS_MANAGED";
4
+ readonly CUSTOMER_PROVIDED: "CUSTOMER_PROVIDED";
5
+ };
6
+ export type CertificateKeyPairOrigin =
7
+ (typeof CertificateKeyPairOrigin)[keyof typeof CertificateKeyPairOrigin];
1
8
  export declare const CertificateExport: {
2
9
  readonly DISABLED: "DISABLED";
3
10
  readonly ENABLED: "ENABLED";
@@ -47,10 +54,74 @@ export declare const ValidationMethod: {
47
54
  };
48
55
  export type ValidationMethod =
49
56
  (typeof ValidationMethod)[keyof typeof ValidationMethod];
57
+ export declare const AcmeAccountStatus: {
58
+ readonly DEACTIVATED: "DEACTIVATED";
59
+ readonly REVOKED: "REVOKED";
60
+ readonly VALID: "VALID";
61
+ };
62
+ export type AcmeAccountStatus =
63
+ (typeof AcmeAccountStatus)[keyof typeof AcmeAccountStatus];
64
+ export declare const AcmeAuthorizationBehavior: {
65
+ readonly PRE_APPROVED: "PRE_APPROVED";
66
+ };
67
+ export type AcmeAuthorizationBehavior =
68
+ (typeof AcmeAuthorizationBehavior)[keyof typeof AcmeAuthorizationBehavior];
69
+ export declare const AcmeContact: {
70
+ readonly NOT_REQUIRED: "NOT_REQUIRED";
71
+ readonly REQUIRED: "REQUIRED";
72
+ };
73
+ export type AcmeContact = (typeof AcmeContact)[keyof typeof AcmeContact];
74
+ export declare const AcmeDomainValidationFailureReason: {
75
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
76
+ readonly DOMAIN_MISMATCH: "DOMAIN_MISMATCH";
77
+ readonly DOMAIN_NOT_ALLOWED: "DOMAIN_NOT_ALLOWED";
78
+ readonly ENDPOINT_NOT_ACTIVE: "ENDPOINT_NOT_ACTIVE";
79
+ readonly HOSTED_ZONE_NOT_FOUND: "HOSTED_ZONE_NOT_FOUND";
80
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
81
+ readonly INVALID_CHANGE_BATCH: "INVALID_CHANGE_BATCH";
82
+ readonly INVALID_PUBLIC_DOMAIN: "INVALID_PUBLIC_DOMAIN";
83
+ readonly TIMED_OUT: "TIMED_OUT";
84
+ };
85
+ export type AcmeDomainValidationFailureReason =
86
+ (typeof AcmeDomainValidationFailureReason)[keyof typeof AcmeDomainValidationFailureReason];
87
+ export declare const DomainScopeOption: {
88
+ readonly DISABLED: "DISABLED";
89
+ readonly ENABLED: "ENABLED";
90
+ };
91
+ export type DomainScopeOption =
92
+ (typeof DomainScopeOption)[keyof typeof DomainScopeOption];
50
93
  export declare const RecordType: {
51
94
  readonly CNAME: "CNAME";
52
95
  };
53
96
  export type RecordType = (typeof RecordType)[keyof typeof RecordType];
97
+ export declare const PrevalidationType: {
98
+ readonly DNS_PREVALIDATION: "DNS_PREVALIDATION";
99
+ };
100
+ export type PrevalidationType =
101
+ (typeof PrevalidationType)[keyof typeof PrevalidationType];
102
+ export declare const AcmeDomainValidationStatus: {
103
+ readonly DELETING: "DELETING";
104
+ readonly INVALID: "INVALID";
105
+ readonly VALID: "VALID";
106
+ readonly VALIDATING: "VALIDATING";
107
+ };
108
+ export type AcmeDomainValidationStatus =
109
+ (typeof AcmeDomainValidationStatus)[keyof typeof AcmeDomainValidationStatus];
110
+ export declare const PublicKeyAlgorithm: {
111
+ readonly EC_PRIME256_V1: "EC_prime256v1";
112
+ readonly EC_SECP384_R1: "EC_secp384r1";
113
+ readonly RSA_2048: "RSA_2048";
114
+ };
115
+ export type PublicKeyAlgorithm =
116
+ (typeof PublicKeyAlgorithm)[keyof typeof PublicKeyAlgorithm];
117
+ export declare const AcmeEndpointStatus: {
118
+ readonly ACTIVE: "ACTIVE";
119
+ readonly CREATING: "CREATING";
120
+ readonly DELETING: "DELETING";
121
+ readonly FAILED: "FAILED";
122
+ };
123
+ export type AcmeEndpointStatus =
124
+ (typeof AcmeEndpointStatus)[keyof typeof AcmeEndpointStatus];
54
125
  export declare const DomainStatus: {
55
126
  readonly FAILED: "FAILED";
56
127
  readonly PENDING_VALIDATION: "PENDING_VALIDATION";
@@ -144,6 +215,12 @@ export declare const ComparisonOperator: {
144
215
  };
145
216
  export type ComparisonOperator =
146
217
  (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
218
+ export declare const TimeType: {
219
+ readonly DAYS: "DAYS";
220
+ readonly HOURS: "HOURS";
221
+ readonly MINUTES: "MINUTES";
222
+ };
223
+ export type TimeType = (typeof TimeType)[keyof typeof TimeType];
147
224
  export declare const SortBy: {
148
225
  readonly CREATED_AT: "CREATED_AT";
149
226
  };
@@ -154,7 +231,10 @@ export declare const SortOrder: {
154
231
  };
155
232
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
156
233
  export declare const SearchCertificatesSortBy: {
234
+ readonly ACME_ACCOUNT_ID: "ACME_ACCOUNT_ID";
235
+ readonly ACME_ENDPOINT_ARN: "ACME_ENDPOINT_ARN";
157
236
  readonly CERTIFICATE_ARN: "CERTIFICATE_ARN";
237
+ readonly CERTIFICATE_KEY_PAIR_ORIGIN: "CERTIFICATE_KEY_PAIR_ORIGIN";
158
238
  readonly COMMON_NAME: "COMMON_NAME";
159
239
  readonly CREATED_AT: "CREATED_AT";
160
240
  readonly EXPORTED: "EXPORTED";
@@ -57,11 +57,33 @@ export declare class TooManyTagsException extends __BaseException {
57
57
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
58
58
  );
59
59
  }
60
+ export declare class ValidationException extends __BaseException {
61
+ readonly name: "ValidationException";
62
+ readonly $fault: "client";
63
+ constructor(
64
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
65
+ );
66
+ }
60
67
  export declare class ConflictException extends __BaseException {
61
68
  readonly name: "ConflictException";
62
69
  readonly $fault: "client";
63
70
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
64
71
  }
72
+ export declare class InternalServerException extends __BaseException {
73
+ readonly name: "InternalServerException";
74
+ readonly $fault: "server";
75
+ $retryable: {};
76
+ constructor(
77
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
78
+ );
79
+ }
80
+ export declare class ServiceQuotaExceededException extends __BaseException {
81
+ readonly name: "ServiceQuotaExceededException";
82
+ readonly $fault: "client";
83
+ constructor(
84
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
85
+ );
86
+ }
65
87
  export declare class ResourceInUseException extends __BaseException {
66
88
  readonly name: "ResourceInUseException";
67
89
  readonly $fault: "client";
@@ -90,13 +112,6 @@ export declare class InvalidArgsException extends __BaseException {
90
112
  opts: __ExceptionOptionType<InvalidArgsException, __BaseException>
91
113
  );
92
114
  }
93
- export declare class ValidationException extends __BaseException {
94
- readonly name: "ValidationException";
95
- readonly $fault: "client";
96
- constructor(
97
- opts: __ExceptionOptionType<ValidationException, __BaseException>
98
- );
99
- }
100
115
  export declare class InvalidDomainValidationOptionsException extends __BaseException {
101
116
  readonly name: "InvalidDomainValidationOptionsException";
102
117
  readonly $fault: "client";