@cdktf/provider-acme 2.0.73 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
package/API.md CHANGED
@@ -1,2517 +1,6 @@
1
1
  # API Reference <a name="API Reference" id="api-reference"></a>
2
2
 
3
- ## Constructs <a name="Constructs" id="constructs"></a>
4
3
 
5
- ### AcmeProvider <a name="@cdktf/provider-acme.AcmeProvider" id="cdktfprovideracmeacmeprovider"></a>
6
-
7
- Represents a {@link https://www.terraform.io/docs/providers/acme acme}.
8
-
9
- #### Initializers <a name="@cdktf/provider-acme.AcmeProvider.Initializer" id="cdktfprovideracmeacmeproviderinitializer"></a>
10
-
11
- ```typescript
12
- import { AcmeProvider } from '@cdktf/provider-acme'
13
-
14
- new AcmeProvider(scope: Construct, id: string, config: AcmeProviderConfig)
15
- ```
16
-
17
- | **Name** | **Type** | **Description** |
18
- | --- | --- | --- |
19
- | [`scope`](#cdktfprovideracmeacmeproviderparameterscope)<span title="Required">*</span> | [`constructs.Construct`](#constructs.Construct) | The scope in which to define this construct. |
20
- | [`id`](#cdktfprovideracmeacmeproviderparameterid)<span title="Required">*</span> | `string` | The scoped construct ID. |
21
- | [`config`](#cdktfprovideracmeacmeproviderparameterconfig)<span title="Required">*</span> | [`@cdktf/provider-acme.AcmeProviderConfig`](#@cdktf/provider-acme.AcmeProviderConfig) | *No description.* |
22
-
23
- ---
24
-
25
- ##### `scope`<sup>Required</sup> <a name="@cdktf/provider-acme.AcmeProvider.parameter.scope" id="cdktfprovideracmeacmeproviderparameterscope"></a>
26
-
27
- - *Type:* [`constructs.Construct`](#constructs.Construct)
28
-
29
- The scope in which to define this construct.
30
-
31
- ---
32
-
33
- ##### `id`<sup>Required</sup> <a name="@cdktf/provider-acme.AcmeProvider.parameter.id" id="cdktfprovideracmeacmeproviderparameterid"></a>
34
-
35
- - *Type:* `string`
36
-
37
- The scoped construct ID.
38
-
39
- Must be unique amongst siblings in the same scope
40
-
41
- ---
42
-
43
- ##### `config`<sup>Required</sup> <a name="@cdktf/provider-acme.AcmeProvider.parameter.config" id="cdktfprovideracmeacmeproviderparameterconfig"></a>
44
-
45
- - *Type:* [`@cdktf/provider-acme.AcmeProviderConfig`](#@cdktf/provider-acme.AcmeProviderConfig)
46
-
47
- ---
48
-
49
- #### Methods <a name="Methods" id="methods"></a>
50
-
51
- | **Name** | **Description** |
52
- | --- | --- |
53
- | [`resetAlias`](#cdktfprovideracmeacmeproviderresetalias) | *No description.* |
54
-
55
- ---
56
-
57
- ##### `resetAlias` <a name="@cdktf/provider-acme.AcmeProvider.resetAlias" id="cdktfprovideracmeacmeproviderresetalias"></a>
58
-
59
- ```typescript
60
- public resetAlias()
61
- ```
62
-
63
-
64
- #### Properties <a name="Properties" id="properties"></a>
65
-
66
- | **Name** | **Type** | **Description** |
67
- | --- | --- | --- |
68
- | [`aliasInput`](#cdktfprovideracmeacmeproviderpropertyaliasinput) | `string` | *No description.* |
69
- | [`serverUrlInput`](#cdktfprovideracmeacmeproviderpropertyserverurlinput) | `string` | *No description.* |
70
- | [`alias`](#cdktfprovideracmeacmeproviderpropertyalias) | `string` | *No description.* |
71
- | [`serverUrl`](#cdktfprovideracmeacmeproviderpropertyserverurl) | `string` | *No description.* |
72
-
73
- ---
74
-
75
- ##### `aliasInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.AcmeProvider.property.aliasInput" id="cdktfprovideracmeacmeproviderpropertyaliasinput"></a>
76
-
77
- ```typescript
78
- public readonly aliasInput: string;
79
- ```
80
-
81
- - *Type:* `string`
82
-
83
- ---
84
-
85
- ##### `serverUrlInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.AcmeProvider.property.serverUrlInput" id="cdktfprovideracmeacmeproviderpropertyserverurlinput"></a>
86
-
87
- ```typescript
88
- public readonly serverUrlInput: string;
89
- ```
90
-
91
- - *Type:* `string`
92
-
93
- ---
94
-
95
- ##### `alias`<sup>Optional</sup> <a name="@cdktf/provider-acme.AcmeProvider.property.alias" id="cdktfprovideracmeacmeproviderpropertyalias"></a>
96
-
97
- ```typescript
98
- public readonly alias: string;
99
- ```
100
-
101
- - *Type:* `string`
102
-
103
- ---
104
-
105
- ##### `serverUrl`<sup>Optional</sup> <a name="@cdktf/provider-acme.AcmeProvider.property.serverUrl" id="cdktfprovideracmeacmeproviderpropertyserverurl"></a>
106
-
107
- ```typescript
108
- public readonly serverUrl: string;
109
- ```
110
-
111
- - *Type:* `string`
112
-
113
- ---
114
-
115
- #### Constants <a name="Constants" id="constants"></a>
116
-
117
- | **Name** | **Type** | **Description** |
118
- | --- | --- | --- |
119
- | [`tfResourceType`](#cdktfprovideracmeacmeproviderpropertytfresourcetype)<span title="Required">*</span> | `string` | *No description.* |
120
-
121
- ---
122
-
123
- ##### `tfResourceType` <a name="@cdktf/provider-acme.AcmeProvider.property.tfResourceType" id="cdktfprovideracmeacmeproviderpropertytfresourcetype"></a>
124
-
125
- - *Type:* `string`
126
-
127
- ---
128
-
129
- ### Certificate <a name="@cdktf/provider-acme.Certificate" id="cdktfprovideracmecertificate"></a>
130
-
131
- Represents a {@link https://www.terraform.io/docs/providers/acme/r/certificate acme_certificate}.
132
-
133
- #### Initializers <a name="@cdktf/provider-acme.Certificate.Initializer" id="cdktfprovideracmecertificateinitializer"></a>
134
-
135
- ```typescript
136
- import { Certificate } from '@cdktf/provider-acme'
137
-
138
- new Certificate(scope: Construct, id: string, config: CertificateConfig)
139
- ```
140
-
141
- | **Name** | **Type** | **Description** |
142
- | --- | --- | --- |
143
- | [`scope`](#cdktfprovideracmecertificateparameterscope)<span title="Required">*</span> | [`constructs.Construct`](#constructs.Construct) | The scope in which to define this construct. |
144
- | [`id`](#cdktfprovideracmecertificateparameterid)<span title="Required">*</span> | `string` | The scoped construct ID. |
145
- | [`config`](#cdktfprovideracmecertificateparameterconfig)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateConfig`](#@cdktf/provider-acme.CertificateConfig) | *No description.* |
146
-
147
- ---
148
-
149
- ##### `scope`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.parameter.scope" id="cdktfprovideracmecertificateparameterscope"></a>
150
-
151
- - *Type:* [`constructs.Construct`](#constructs.Construct)
152
-
153
- The scope in which to define this construct.
154
-
155
- ---
156
-
157
- ##### `id`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.parameter.id" id="cdktfprovideracmecertificateparameterid"></a>
158
-
159
- - *Type:* `string`
160
-
161
- The scoped construct ID.
162
-
163
- Must be unique amongst siblings in the same scope
164
-
165
- ---
166
-
167
- ##### `config`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.parameter.config" id="cdktfprovideracmecertificateparameterconfig"></a>
168
-
169
- - *Type:* [`@cdktf/provider-acme.CertificateConfig`](#@cdktf/provider-acme.CertificateConfig)
170
-
171
- ---
172
-
173
- #### Methods <a name="Methods" id="methods"></a>
174
-
175
- | **Name** | **Description** |
176
- | --- | --- |
177
- | [`putDnsChallenge`](#cdktfprovideracmecertificateputdnschallenge) | *No description.* |
178
- | [`putHttpChallenge`](#cdktfprovideracmecertificateputhttpchallenge) | *No description.* |
179
- | [`putHttpMemcachedChallenge`](#cdktfprovideracmecertificateputhttpmemcachedchallenge) | *No description.* |
180
- | [`putHttpWebrootChallenge`](#cdktfprovideracmecertificateputhttpwebrootchallenge) | *No description.* |
181
- | [`putTlsChallenge`](#cdktfprovideracmecertificateputtlschallenge) | *No description.* |
182
- | [`resetCertificateP12Password`](#cdktfprovideracmecertificateresetcertificatep12password) | *No description.* |
183
- | [`resetCertificateRequestPem`](#cdktfprovideracmecertificateresetcertificaterequestpem) | *No description.* |
184
- | [`resetCommonName`](#cdktfprovideracmecertificateresetcommonname) | *No description.* |
185
- | [`resetDisableCompletePropagation`](#cdktfprovideracmecertificateresetdisablecompletepropagation) | *No description.* |
186
- | [`resetDnsChallenge`](#cdktfprovideracmecertificateresetdnschallenge) | *No description.* |
187
- | [`resetHttpChallenge`](#cdktfprovideracmecertificateresethttpchallenge) | *No description.* |
188
- | [`resetHttpMemcachedChallenge`](#cdktfprovideracmecertificateresethttpmemcachedchallenge) | *No description.* |
189
- | [`resetHttpWebrootChallenge`](#cdktfprovideracmecertificateresethttpwebrootchallenge) | *No description.* |
190
- | [`resetId`](#cdktfprovideracmecertificateresetid) | *No description.* |
191
- | [`resetKeyType`](#cdktfprovideracmecertificateresetkeytype) | *No description.* |
192
- | [`resetMinDaysRemaining`](#cdktfprovideracmecertificateresetmindaysremaining) | *No description.* |
193
- | [`resetMustStaple`](#cdktfprovideracmecertificateresetmuststaple) | *No description.* |
194
- | [`resetPreCheckDelay`](#cdktfprovideracmecertificateresetprecheckdelay) | *No description.* |
195
- | [`resetPreferredChain`](#cdktfprovideracmecertificateresetpreferredchain) | *No description.* |
196
- | [`resetRecursiveNameservers`](#cdktfprovideracmecertificateresetrecursivenameservers) | *No description.* |
197
- | [`resetRevokeCertificateOnDestroy`](#cdktfprovideracmecertificateresetrevokecertificateondestroy) | *No description.* |
198
- | [`resetSubjectAlternativeNames`](#cdktfprovideracmecertificateresetsubjectalternativenames) | *No description.* |
199
- | [`resetTlsChallenge`](#cdktfprovideracmecertificateresettlschallenge) | *No description.* |
200
-
201
- ---
202
-
203
- ##### `putDnsChallenge` <a name="@cdktf/provider-acme.Certificate.putDnsChallenge" id="cdktfprovideracmecertificateputdnschallenge"></a>
204
-
205
- ```typescript
206
- public putDnsChallenge(value: IResolvable | CertificateDnsChallenge[])
207
- ```
208
-
209
- ###### `value`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.parameter.value" id="cdktfprovideracmecertificateparametervalue"></a>
210
-
211
- - *Type:* [`cdktf.IResolvable`](#cdktf.IResolvable) | [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[]
212
-
213
- ---
214
-
215
- ##### `putHttpChallenge` <a name="@cdktf/provider-acme.Certificate.putHttpChallenge" id="cdktfprovideracmecertificateputhttpchallenge"></a>
216
-
217
- ```typescript
218
- public putHttpChallenge(value: CertificateHttpChallenge)
219
- ```
220
-
221
- ###### `value`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.parameter.value" id="cdktfprovideracmecertificateparametervalue"></a>
222
-
223
- - *Type:* [`@cdktf/provider-acme.CertificateHttpChallenge`](#@cdktf/provider-acme.CertificateHttpChallenge)
224
-
225
- ---
226
-
227
- ##### `putHttpMemcachedChallenge` <a name="@cdktf/provider-acme.Certificate.putHttpMemcachedChallenge" id="cdktfprovideracmecertificateputhttpmemcachedchallenge"></a>
228
-
229
- ```typescript
230
- public putHttpMemcachedChallenge(value: CertificateHttpMemcachedChallenge)
231
- ```
232
-
233
- ###### `value`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.parameter.value" id="cdktfprovideracmecertificateparametervalue"></a>
234
-
235
- - *Type:* [`@cdktf/provider-acme.CertificateHttpMemcachedChallenge`](#@cdktf/provider-acme.CertificateHttpMemcachedChallenge)
236
-
237
- ---
238
-
239
- ##### `putHttpWebrootChallenge` <a name="@cdktf/provider-acme.Certificate.putHttpWebrootChallenge" id="cdktfprovideracmecertificateputhttpwebrootchallenge"></a>
240
-
241
- ```typescript
242
- public putHttpWebrootChallenge(value: CertificateHttpWebrootChallenge)
243
- ```
244
-
245
- ###### `value`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.parameter.value" id="cdktfprovideracmecertificateparametervalue"></a>
246
-
247
- - *Type:* [`@cdktf/provider-acme.CertificateHttpWebrootChallenge`](#@cdktf/provider-acme.CertificateHttpWebrootChallenge)
248
-
249
- ---
250
-
251
- ##### `putTlsChallenge` <a name="@cdktf/provider-acme.Certificate.putTlsChallenge" id="cdktfprovideracmecertificateputtlschallenge"></a>
252
-
253
- ```typescript
254
- public putTlsChallenge(value: CertificateTlsChallenge)
255
- ```
256
-
257
- ###### `value`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.parameter.value" id="cdktfprovideracmecertificateparametervalue"></a>
258
-
259
- - *Type:* [`@cdktf/provider-acme.CertificateTlsChallenge`](#@cdktf/provider-acme.CertificateTlsChallenge)
260
-
261
- ---
262
-
263
- ##### `resetCertificateP12Password` <a name="@cdktf/provider-acme.Certificate.resetCertificateP12Password" id="cdktfprovideracmecertificateresetcertificatep12password"></a>
264
-
265
- ```typescript
266
- public resetCertificateP12Password()
267
- ```
268
-
269
- ##### `resetCertificateRequestPem` <a name="@cdktf/provider-acme.Certificate.resetCertificateRequestPem" id="cdktfprovideracmecertificateresetcertificaterequestpem"></a>
270
-
271
- ```typescript
272
- public resetCertificateRequestPem()
273
- ```
274
-
275
- ##### `resetCommonName` <a name="@cdktf/provider-acme.Certificate.resetCommonName" id="cdktfprovideracmecertificateresetcommonname"></a>
276
-
277
- ```typescript
278
- public resetCommonName()
279
- ```
280
-
281
- ##### `resetDisableCompletePropagation` <a name="@cdktf/provider-acme.Certificate.resetDisableCompletePropagation" id="cdktfprovideracmecertificateresetdisablecompletepropagation"></a>
282
-
283
- ```typescript
284
- public resetDisableCompletePropagation()
285
- ```
286
-
287
- ##### `resetDnsChallenge` <a name="@cdktf/provider-acme.Certificate.resetDnsChallenge" id="cdktfprovideracmecertificateresetdnschallenge"></a>
288
-
289
- ```typescript
290
- public resetDnsChallenge()
291
- ```
292
-
293
- ##### `resetHttpChallenge` <a name="@cdktf/provider-acme.Certificate.resetHttpChallenge" id="cdktfprovideracmecertificateresethttpchallenge"></a>
294
-
295
- ```typescript
296
- public resetHttpChallenge()
297
- ```
298
-
299
- ##### `resetHttpMemcachedChallenge` <a name="@cdktf/provider-acme.Certificate.resetHttpMemcachedChallenge" id="cdktfprovideracmecertificateresethttpmemcachedchallenge"></a>
300
-
301
- ```typescript
302
- public resetHttpMemcachedChallenge()
303
- ```
304
-
305
- ##### `resetHttpWebrootChallenge` <a name="@cdktf/provider-acme.Certificate.resetHttpWebrootChallenge" id="cdktfprovideracmecertificateresethttpwebrootchallenge"></a>
306
-
307
- ```typescript
308
- public resetHttpWebrootChallenge()
309
- ```
310
-
311
- ##### `resetId` <a name="@cdktf/provider-acme.Certificate.resetId" id="cdktfprovideracmecertificateresetid"></a>
312
-
313
- ```typescript
314
- public resetId()
315
- ```
316
-
317
- ##### `resetKeyType` <a name="@cdktf/provider-acme.Certificate.resetKeyType" id="cdktfprovideracmecertificateresetkeytype"></a>
318
-
319
- ```typescript
320
- public resetKeyType()
321
- ```
322
-
323
- ##### `resetMinDaysRemaining` <a name="@cdktf/provider-acme.Certificate.resetMinDaysRemaining" id="cdktfprovideracmecertificateresetmindaysremaining"></a>
324
-
325
- ```typescript
326
- public resetMinDaysRemaining()
327
- ```
328
-
329
- ##### `resetMustStaple` <a name="@cdktf/provider-acme.Certificate.resetMustStaple" id="cdktfprovideracmecertificateresetmuststaple"></a>
330
-
331
- ```typescript
332
- public resetMustStaple()
333
- ```
334
-
335
- ##### `resetPreCheckDelay` <a name="@cdktf/provider-acme.Certificate.resetPreCheckDelay" id="cdktfprovideracmecertificateresetprecheckdelay"></a>
336
-
337
- ```typescript
338
- public resetPreCheckDelay()
339
- ```
340
-
341
- ##### `resetPreferredChain` <a name="@cdktf/provider-acme.Certificate.resetPreferredChain" id="cdktfprovideracmecertificateresetpreferredchain"></a>
342
-
343
- ```typescript
344
- public resetPreferredChain()
345
- ```
346
-
347
- ##### `resetRecursiveNameservers` <a name="@cdktf/provider-acme.Certificate.resetRecursiveNameservers" id="cdktfprovideracmecertificateresetrecursivenameservers"></a>
348
-
349
- ```typescript
350
- public resetRecursiveNameservers()
351
- ```
352
-
353
- ##### `resetRevokeCertificateOnDestroy` <a name="@cdktf/provider-acme.Certificate.resetRevokeCertificateOnDestroy" id="cdktfprovideracmecertificateresetrevokecertificateondestroy"></a>
354
-
355
- ```typescript
356
- public resetRevokeCertificateOnDestroy()
357
- ```
358
-
359
- ##### `resetSubjectAlternativeNames` <a name="@cdktf/provider-acme.Certificate.resetSubjectAlternativeNames" id="cdktfprovideracmecertificateresetsubjectalternativenames"></a>
360
-
361
- ```typescript
362
- public resetSubjectAlternativeNames()
363
- ```
364
-
365
- ##### `resetTlsChallenge` <a name="@cdktf/provider-acme.Certificate.resetTlsChallenge" id="cdktfprovideracmecertificateresettlschallenge"></a>
366
-
367
- ```typescript
368
- public resetTlsChallenge()
369
- ```
370
-
371
-
372
- #### Properties <a name="Properties" id="properties"></a>
373
-
374
- | **Name** | **Type** | **Description** |
375
- | --- | --- | --- |
376
- | [`certificateDomain`](#cdktfprovideracmecertificatepropertycertificatedomain)<span title="Required">*</span> | `string` | *No description.* |
377
- | [`certificateP12`](#cdktfprovideracmecertificatepropertycertificatep12)<span title="Required">*</span> | `string` | *No description.* |
378
- | [`certificatePem`](#cdktfprovideracmecertificatepropertycertificatepem)<span title="Required">*</span> | `string` | *No description.* |
379
- | [`certificateUrl`](#cdktfprovideracmecertificatepropertycertificateurl)<span title="Required">*</span> | `string` | *No description.* |
380
- | [`dnsChallenge`](#cdktfprovideracmecertificatepropertydnschallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateDnsChallengeList`](#@cdktf/provider-acme.CertificateDnsChallengeList) | *No description.* |
381
- | [`httpChallenge`](#cdktfprovideracmecertificatepropertyhttpchallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateHttpChallengeOutputReference`](#@cdktf/provider-acme.CertificateHttpChallengeOutputReference) | *No description.* |
382
- | [`httpMemcachedChallenge`](#cdktfprovideracmecertificatepropertyhttpmemcachedchallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference`](#@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference) | *No description.* |
383
- | [`httpWebrootChallenge`](#cdktfprovideracmecertificatepropertyhttpwebrootchallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference`](#@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference) | *No description.* |
384
- | [`issuerPem`](#cdktfprovideracmecertificatepropertyissuerpem)<span title="Required">*</span> | `string` | *No description.* |
385
- | [`privateKeyPem`](#cdktfprovideracmecertificatepropertyprivatekeypem)<span title="Required">*</span> | `string` | *No description.* |
386
- | [`tlsChallenge`](#cdktfprovideracmecertificatepropertytlschallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateTlsChallengeOutputReference`](#@cdktf/provider-acme.CertificateTlsChallengeOutputReference) | *No description.* |
387
- | [`accountKeyPemInput`](#cdktfprovideracmecertificatepropertyaccountkeypeminput) | `string` | *No description.* |
388
- | [`certificateP12PasswordInput`](#cdktfprovideracmecertificatepropertycertificatep12passwordinput) | `string` | *No description.* |
389
- | [`certificateRequestPemInput`](#cdktfprovideracmecertificatepropertycertificaterequestpeminput) | `string` | *No description.* |
390
- | [`commonNameInput`](#cdktfprovideracmecertificatepropertycommonnameinput) | `string` | *No description.* |
391
- | [`disableCompletePropagationInput`](#cdktfprovideracmecertificatepropertydisablecompletepropagationinput) | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | *No description.* |
392
- | [`dnsChallengeInput`](#cdktfprovideracmecertificatepropertydnschallengeinput) | [`cdktf.IResolvable`](#cdktf.IResolvable) \| [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[] | *No description.* |
393
- | [`httpChallengeInput`](#cdktfprovideracmecertificatepropertyhttpchallengeinput) | [`@cdktf/provider-acme.CertificateHttpChallenge`](#@cdktf/provider-acme.CertificateHttpChallenge) | *No description.* |
394
- | [`httpMemcachedChallengeInput`](#cdktfprovideracmecertificatepropertyhttpmemcachedchallengeinput) | [`@cdktf/provider-acme.CertificateHttpMemcachedChallenge`](#@cdktf/provider-acme.CertificateHttpMemcachedChallenge) | *No description.* |
395
- | [`httpWebrootChallengeInput`](#cdktfprovideracmecertificatepropertyhttpwebrootchallengeinput) | [`@cdktf/provider-acme.CertificateHttpWebrootChallenge`](#@cdktf/provider-acme.CertificateHttpWebrootChallenge) | *No description.* |
396
- | [`idInput`](#cdktfprovideracmecertificatepropertyidinput) | `string` | *No description.* |
397
- | [`keyTypeInput`](#cdktfprovideracmecertificatepropertykeytypeinput) | `string` | *No description.* |
398
- | [`minDaysRemainingInput`](#cdktfprovideracmecertificatepropertymindaysremaininginput) | `number` | *No description.* |
399
- | [`mustStapleInput`](#cdktfprovideracmecertificatepropertymuststapleinput) | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | *No description.* |
400
- | [`preCheckDelayInput`](#cdktfprovideracmecertificatepropertyprecheckdelayinput) | `number` | *No description.* |
401
- | [`preferredChainInput`](#cdktfprovideracmecertificatepropertypreferredchaininput) | `string` | *No description.* |
402
- | [`recursiveNameserversInput`](#cdktfprovideracmecertificatepropertyrecursivenameserversinput) | `string`[] | *No description.* |
403
- | [`revokeCertificateOnDestroyInput`](#cdktfprovideracmecertificatepropertyrevokecertificateondestroyinput) | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | *No description.* |
404
- | [`subjectAlternativeNamesInput`](#cdktfprovideracmecertificatepropertysubjectalternativenamesinput) | `string`[] | *No description.* |
405
- | [`tlsChallengeInput`](#cdktfprovideracmecertificatepropertytlschallengeinput) | [`@cdktf/provider-acme.CertificateTlsChallenge`](#@cdktf/provider-acme.CertificateTlsChallenge) | *No description.* |
406
- | [`accountKeyPem`](#cdktfprovideracmecertificatepropertyaccountkeypem)<span title="Required">*</span> | `string` | *No description.* |
407
- | [`certificateP12Password`](#cdktfprovideracmecertificatepropertycertificatep12password)<span title="Required">*</span> | `string` | *No description.* |
408
- | [`certificateRequestPem`](#cdktfprovideracmecertificatepropertycertificaterequestpem)<span title="Required">*</span> | `string` | *No description.* |
409
- | [`commonName`](#cdktfprovideracmecertificatepropertycommonname)<span title="Required">*</span> | `string` | *No description.* |
410
- | [`disableCompletePropagation`](#cdktfprovideracmecertificatepropertydisablecompletepropagation)<span title="Required">*</span> | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | *No description.* |
411
- | [`id`](#cdktfprovideracmecertificatepropertyid)<span title="Required">*</span> | `string` | *No description.* |
412
- | [`keyType`](#cdktfprovideracmecertificatepropertykeytype)<span title="Required">*</span> | `string` | *No description.* |
413
- | [`minDaysRemaining`](#cdktfprovideracmecertificatepropertymindaysremaining)<span title="Required">*</span> | `number` | *No description.* |
414
- | [`mustStaple`](#cdktfprovideracmecertificatepropertymuststaple)<span title="Required">*</span> | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | *No description.* |
415
- | [`preCheckDelay`](#cdktfprovideracmecertificatepropertyprecheckdelay)<span title="Required">*</span> | `number` | *No description.* |
416
- | [`preferredChain`](#cdktfprovideracmecertificatepropertypreferredchain)<span title="Required">*</span> | `string` | *No description.* |
417
- | [`recursiveNameservers`](#cdktfprovideracmecertificatepropertyrecursivenameservers)<span title="Required">*</span> | `string`[] | *No description.* |
418
- | [`revokeCertificateOnDestroy`](#cdktfprovideracmecertificatepropertyrevokecertificateondestroy)<span title="Required">*</span> | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | *No description.* |
419
- | [`subjectAlternativeNames`](#cdktfprovideracmecertificatepropertysubjectalternativenames)<span title="Required">*</span> | `string`[] | *No description.* |
420
-
421
- ---
422
-
423
- ##### `certificateDomain`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.certificateDomain" id="cdktfprovideracmecertificatepropertycertificatedomain"></a>
424
-
425
- ```typescript
426
- public readonly certificateDomain: string;
427
- ```
428
-
429
- - *Type:* `string`
430
-
431
- ---
432
-
433
- ##### `certificateP12`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.certificateP12" id="cdktfprovideracmecertificatepropertycertificatep12"></a>
434
-
435
- ```typescript
436
- public readonly certificateP12: string;
437
- ```
438
-
439
- - *Type:* `string`
440
-
441
- ---
442
-
443
- ##### `certificatePem`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.certificatePem" id="cdktfprovideracmecertificatepropertycertificatepem"></a>
444
-
445
- ```typescript
446
- public readonly certificatePem: string;
447
- ```
448
-
449
- - *Type:* `string`
450
-
451
- ---
452
-
453
- ##### `certificateUrl`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.certificateUrl" id="cdktfprovideracmecertificatepropertycertificateurl"></a>
454
-
455
- ```typescript
456
- public readonly certificateUrl: string;
457
- ```
458
-
459
- - *Type:* `string`
460
-
461
- ---
462
-
463
- ##### `dnsChallenge`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.dnsChallenge" id="cdktfprovideracmecertificatepropertydnschallenge"></a>
464
-
465
- ```typescript
466
- public readonly dnsChallenge: CertificateDnsChallengeList;
467
- ```
468
-
469
- - *Type:* [`@cdktf/provider-acme.CertificateDnsChallengeList`](#@cdktf/provider-acme.CertificateDnsChallengeList)
470
-
471
- ---
472
-
473
- ##### `httpChallenge`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.httpChallenge" id="cdktfprovideracmecertificatepropertyhttpchallenge"></a>
474
-
475
- ```typescript
476
- public readonly httpChallenge: CertificateHttpChallengeOutputReference;
477
- ```
478
-
479
- - *Type:* [`@cdktf/provider-acme.CertificateHttpChallengeOutputReference`](#@cdktf/provider-acme.CertificateHttpChallengeOutputReference)
480
-
481
- ---
482
-
483
- ##### `httpMemcachedChallenge`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.httpMemcachedChallenge" id="cdktfprovideracmecertificatepropertyhttpmemcachedchallenge"></a>
484
-
485
- ```typescript
486
- public readonly httpMemcachedChallenge: CertificateHttpMemcachedChallengeOutputReference;
487
- ```
488
-
489
- - *Type:* [`@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference`](#@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference)
490
-
491
- ---
492
-
493
- ##### `httpWebrootChallenge`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.httpWebrootChallenge" id="cdktfprovideracmecertificatepropertyhttpwebrootchallenge"></a>
494
-
495
- ```typescript
496
- public readonly httpWebrootChallenge: CertificateHttpWebrootChallengeOutputReference;
497
- ```
498
-
499
- - *Type:* [`@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference`](#@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference)
500
-
501
- ---
502
-
503
- ##### `issuerPem`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.issuerPem" id="cdktfprovideracmecertificatepropertyissuerpem"></a>
504
-
505
- ```typescript
506
- public readonly issuerPem: string;
507
- ```
508
-
509
- - *Type:* `string`
510
-
511
- ---
512
-
513
- ##### `privateKeyPem`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.privateKeyPem" id="cdktfprovideracmecertificatepropertyprivatekeypem"></a>
514
-
515
- ```typescript
516
- public readonly privateKeyPem: string;
517
- ```
518
-
519
- - *Type:* `string`
520
-
521
- ---
522
-
523
- ##### `tlsChallenge`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.tlsChallenge" id="cdktfprovideracmecertificatepropertytlschallenge"></a>
524
-
525
- ```typescript
526
- public readonly tlsChallenge: CertificateTlsChallengeOutputReference;
527
- ```
528
-
529
- - *Type:* [`@cdktf/provider-acme.CertificateTlsChallengeOutputReference`](#@cdktf/provider-acme.CertificateTlsChallengeOutputReference)
530
-
531
- ---
532
-
533
- ##### `accountKeyPemInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.accountKeyPemInput" id="cdktfprovideracmecertificatepropertyaccountkeypeminput"></a>
534
-
535
- ```typescript
536
- public readonly accountKeyPemInput: string;
537
- ```
538
-
539
- - *Type:* `string`
540
-
541
- ---
542
-
543
- ##### `certificateP12PasswordInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.certificateP12PasswordInput" id="cdktfprovideracmecertificatepropertycertificatep12passwordinput"></a>
544
-
545
- ```typescript
546
- public readonly certificateP12PasswordInput: string;
547
- ```
548
-
549
- - *Type:* `string`
550
-
551
- ---
552
-
553
- ##### `certificateRequestPemInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.certificateRequestPemInput" id="cdktfprovideracmecertificatepropertycertificaterequestpeminput"></a>
554
-
555
- ```typescript
556
- public readonly certificateRequestPemInput: string;
557
- ```
558
-
559
- - *Type:* `string`
560
-
561
- ---
562
-
563
- ##### `commonNameInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.commonNameInput" id="cdktfprovideracmecertificatepropertycommonnameinput"></a>
564
-
565
- ```typescript
566
- public readonly commonNameInput: string;
567
- ```
568
-
569
- - *Type:* `string`
570
-
571
- ---
572
-
573
- ##### `disableCompletePropagationInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.disableCompletePropagationInput" id="cdktfprovideracmecertificatepropertydisablecompletepropagationinput"></a>
574
-
575
- ```typescript
576
- public readonly disableCompletePropagationInput: boolean | IResolvable;
577
- ```
578
-
579
- - *Type:* `boolean` | [`cdktf.IResolvable`](#cdktf.IResolvable)
580
-
581
- ---
582
-
583
- ##### `dnsChallengeInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.dnsChallengeInput" id="cdktfprovideracmecertificatepropertydnschallengeinput"></a>
584
-
585
- ```typescript
586
- public readonly dnsChallengeInput: IResolvable | CertificateDnsChallenge[];
587
- ```
588
-
589
- - *Type:* [`cdktf.IResolvable`](#cdktf.IResolvable) | [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[]
590
-
591
- ---
592
-
593
- ##### `httpChallengeInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.httpChallengeInput" id="cdktfprovideracmecertificatepropertyhttpchallengeinput"></a>
594
-
595
- ```typescript
596
- public readonly httpChallengeInput: CertificateHttpChallenge;
597
- ```
598
-
599
- - *Type:* [`@cdktf/provider-acme.CertificateHttpChallenge`](#@cdktf/provider-acme.CertificateHttpChallenge)
600
-
601
- ---
602
-
603
- ##### `httpMemcachedChallengeInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.httpMemcachedChallengeInput" id="cdktfprovideracmecertificatepropertyhttpmemcachedchallengeinput"></a>
604
-
605
- ```typescript
606
- public readonly httpMemcachedChallengeInput: CertificateHttpMemcachedChallenge;
607
- ```
608
-
609
- - *Type:* [`@cdktf/provider-acme.CertificateHttpMemcachedChallenge`](#@cdktf/provider-acme.CertificateHttpMemcachedChallenge)
610
-
611
- ---
612
-
613
- ##### `httpWebrootChallengeInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.httpWebrootChallengeInput" id="cdktfprovideracmecertificatepropertyhttpwebrootchallengeinput"></a>
614
-
615
- ```typescript
616
- public readonly httpWebrootChallengeInput: CertificateHttpWebrootChallenge;
617
- ```
618
-
619
- - *Type:* [`@cdktf/provider-acme.CertificateHttpWebrootChallenge`](#@cdktf/provider-acme.CertificateHttpWebrootChallenge)
620
-
621
- ---
622
-
623
- ##### `idInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.idInput" id="cdktfprovideracmecertificatepropertyidinput"></a>
624
-
625
- ```typescript
626
- public readonly idInput: string;
627
- ```
628
-
629
- - *Type:* `string`
630
-
631
- ---
632
-
633
- ##### `keyTypeInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.keyTypeInput" id="cdktfprovideracmecertificatepropertykeytypeinput"></a>
634
-
635
- ```typescript
636
- public readonly keyTypeInput: string;
637
- ```
638
-
639
- - *Type:* `string`
640
-
641
- ---
642
-
643
- ##### `minDaysRemainingInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.minDaysRemainingInput" id="cdktfprovideracmecertificatepropertymindaysremaininginput"></a>
644
-
645
- ```typescript
646
- public readonly minDaysRemainingInput: number;
647
- ```
648
-
649
- - *Type:* `number`
650
-
651
- ---
652
-
653
- ##### `mustStapleInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.mustStapleInput" id="cdktfprovideracmecertificatepropertymuststapleinput"></a>
654
-
655
- ```typescript
656
- public readonly mustStapleInput: boolean | IResolvable;
657
- ```
658
-
659
- - *Type:* `boolean` | [`cdktf.IResolvable`](#cdktf.IResolvable)
660
-
661
- ---
662
-
663
- ##### `preCheckDelayInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.preCheckDelayInput" id="cdktfprovideracmecertificatepropertyprecheckdelayinput"></a>
664
-
665
- ```typescript
666
- public readonly preCheckDelayInput: number;
667
- ```
668
-
669
- - *Type:* `number`
670
-
671
- ---
672
-
673
- ##### `preferredChainInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.preferredChainInput" id="cdktfprovideracmecertificatepropertypreferredchaininput"></a>
674
-
675
- ```typescript
676
- public readonly preferredChainInput: string;
677
- ```
678
-
679
- - *Type:* `string`
680
-
681
- ---
682
-
683
- ##### `recursiveNameserversInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.recursiveNameserversInput" id="cdktfprovideracmecertificatepropertyrecursivenameserversinput"></a>
684
-
685
- ```typescript
686
- public readonly recursiveNameserversInput: string[];
687
- ```
688
-
689
- - *Type:* `string`[]
690
-
691
- ---
692
-
693
- ##### `revokeCertificateOnDestroyInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.revokeCertificateOnDestroyInput" id="cdktfprovideracmecertificatepropertyrevokecertificateondestroyinput"></a>
694
-
695
- ```typescript
696
- public readonly revokeCertificateOnDestroyInput: boolean | IResolvable;
697
- ```
698
-
699
- - *Type:* `boolean` | [`cdktf.IResolvable`](#cdktf.IResolvable)
700
-
701
- ---
702
-
703
- ##### `subjectAlternativeNamesInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.subjectAlternativeNamesInput" id="cdktfprovideracmecertificatepropertysubjectalternativenamesinput"></a>
704
-
705
- ```typescript
706
- public readonly subjectAlternativeNamesInput: string[];
707
- ```
708
-
709
- - *Type:* `string`[]
710
-
711
- ---
712
-
713
- ##### `tlsChallengeInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.tlsChallengeInput" id="cdktfprovideracmecertificatepropertytlschallengeinput"></a>
714
-
715
- ```typescript
716
- public readonly tlsChallengeInput: CertificateTlsChallenge;
717
- ```
718
-
719
- - *Type:* [`@cdktf/provider-acme.CertificateTlsChallenge`](#@cdktf/provider-acme.CertificateTlsChallenge)
720
-
721
- ---
722
-
723
- ##### `accountKeyPem`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.accountKeyPem" id="cdktfprovideracmecertificatepropertyaccountkeypem"></a>
724
-
725
- ```typescript
726
- public readonly accountKeyPem: string;
727
- ```
728
-
729
- - *Type:* `string`
730
-
731
- ---
732
-
733
- ##### `certificateP12Password`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.certificateP12Password" id="cdktfprovideracmecertificatepropertycertificatep12password"></a>
734
-
735
- ```typescript
736
- public readonly certificateP12Password: string;
737
- ```
738
-
739
- - *Type:* `string`
740
-
741
- ---
742
-
743
- ##### `certificateRequestPem`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.certificateRequestPem" id="cdktfprovideracmecertificatepropertycertificaterequestpem"></a>
744
-
745
- ```typescript
746
- public readonly certificateRequestPem: string;
747
- ```
748
-
749
- - *Type:* `string`
750
-
751
- ---
752
-
753
- ##### `commonName`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.commonName" id="cdktfprovideracmecertificatepropertycommonname"></a>
754
-
755
- ```typescript
756
- public readonly commonName: string;
757
- ```
758
-
759
- - *Type:* `string`
760
-
761
- ---
762
-
763
- ##### `disableCompletePropagation`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.disableCompletePropagation" id="cdktfprovideracmecertificatepropertydisablecompletepropagation"></a>
764
-
765
- ```typescript
766
- public readonly disableCompletePropagation: boolean | IResolvable;
767
- ```
768
-
769
- - *Type:* `boolean` | [`cdktf.IResolvable`](#cdktf.IResolvable)
770
-
771
- ---
772
-
773
- ##### `id`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.id" id="cdktfprovideracmecertificatepropertyid"></a>
774
-
775
- ```typescript
776
- public readonly id: string;
777
- ```
778
-
779
- - *Type:* `string`
780
-
781
- ---
782
-
783
- ##### `keyType`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.keyType" id="cdktfprovideracmecertificatepropertykeytype"></a>
784
-
785
- ```typescript
786
- public readonly keyType: string;
787
- ```
788
-
789
- - *Type:* `string`
790
-
791
- ---
792
-
793
- ##### `minDaysRemaining`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.minDaysRemaining" id="cdktfprovideracmecertificatepropertymindaysremaining"></a>
794
-
795
- ```typescript
796
- public readonly minDaysRemaining: number;
797
- ```
798
-
799
- - *Type:* `number`
800
-
801
- ---
802
-
803
- ##### `mustStaple`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.mustStaple" id="cdktfprovideracmecertificatepropertymuststaple"></a>
804
-
805
- ```typescript
806
- public readonly mustStaple: boolean | IResolvable;
807
- ```
808
-
809
- - *Type:* `boolean` | [`cdktf.IResolvable`](#cdktf.IResolvable)
810
-
811
- ---
812
-
813
- ##### `preCheckDelay`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.preCheckDelay" id="cdktfprovideracmecertificatepropertyprecheckdelay"></a>
814
-
815
- ```typescript
816
- public readonly preCheckDelay: number;
817
- ```
818
-
819
- - *Type:* `number`
820
-
821
- ---
822
-
823
- ##### `preferredChain`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.preferredChain" id="cdktfprovideracmecertificatepropertypreferredchain"></a>
824
-
825
- ```typescript
826
- public readonly preferredChain: string;
827
- ```
828
-
829
- - *Type:* `string`
830
-
831
- ---
832
-
833
- ##### `recursiveNameservers`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.recursiveNameservers" id="cdktfprovideracmecertificatepropertyrecursivenameservers"></a>
834
-
835
- ```typescript
836
- public readonly recursiveNameservers: string[];
837
- ```
838
-
839
- - *Type:* `string`[]
840
-
841
- ---
842
-
843
- ##### `revokeCertificateOnDestroy`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.revokeCertificateOnDestroy" id="cdktfprovideracmecertificatepropertyrevokecertificateondestroy"></a>
844
-
845
- ```typescript
846
- public readonly revokeCertificateOnDestroy: boolean | IResolvable;
847
- ```
848
-
849
- - *Type:* `boolean` | [`cdktf.IResolvable`](#cdktf.IResolvable)
850
-
851
- ---
852
-
853
- ##### `subjectAlternativeNames`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.subjectAlternativeNames" id="cdktfprovideracmecertificatepropertysubjectalternativenames"></a>
854
-
855
- ```typescript
856
- public readonly subjectAlternativeNames: string[];
857
- ```
858
-
859
- - *Type:* `string`[]
860
-
861
- ---
862
-
863
- #### Constants <a name="Constants" id="constants"></a>
864
-
865
- | **Name** | **Type** | **Description** |
866
- | --- | --- | --- |
867
- | [`tfResourceType`](#cdktfprovideracmecertificatepropertytfresourcetype)<span title="Required">*</span> | `string` | *No description.* |
868
-
869
- ---
870
-
871
- ##### `tfResourceType` <a name="@cdktf/provider-acme.Certificate.property.tfResourceType" id="cdktfprovideracmecertificatepropertytfresourcetype"></a>
872
-
873
- - *Type:* `string`
874
-
875
- ---
876
-
877
- ### Registration <a name="@cdktf/provider-acme.Registration" id="cdktfprovideracmeregistration"></a>
878
-
879
- Represents a {@link https://www.terraform.io/docs/providers/acme/r/registration acme_registration}.
880
-
881
- #### Initializers <a name="@cdktf/provider-acme.Registration.Initializer" id="cdktfprovideracmeregistrationinitializer"></a>
882
-
883
- ```typescript
884
- import { Registration } from '@cdktf/provider-acme'
885
-
886
- new Registration(scope: Construct, id: string, config: RegistrationConfig)
887
- ```
888
-
889
- | **Name** | **Type** | **Description** |
890
- | --- | --- | --- |
891
- | [`scope`](#cdktfprovideracmeregistrationparameterscope)<span title="Required">*</span> | [`constructs.Construct`](#constructs.Construct) | The scope in which to define this construct. |
892
- | [`id`](#cdktfprovideracmeregistrationparameterid)<span title="Required">*</span> | `string` | The scoped construct ID. |
893
- | [`config`](#cdktfprovideracmeregistrationparameterconfig)<span title="Required">*</span> | [`@cdktf/provider-acme.RegistrationConfig`](#@cdktf/provider-acme.RegistrationConfig) | *No description.* |
894
-
895
- ---
896
-
897
- ##### `scope`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.parameter.scope" id="cdktfprovideracmeregistrationparameterscope"></a>
898
-
899
- - *Type:* [`constructs.Construct`](#constructs.Construct)
900
-
901
- The scope in which to define this construct.
902
-
903
- ---
904
-
905
- ##### `id`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.parameter.id" id="cdktfprovideracmeregistrationparameterid"></a>
906
-
907
- - *Type:* `string`
908
-
909
- The scoped construct ID.
910
-
911
- Must be unique amongst siblings in the same scope
912
-
913
- ---
914
-
915
- ##### `config`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.parameter.config" id="cdktfprovideracmeregistrationparameterconfig"></a>
916
-
917
- - *Type:* [`@cdktf/provider-acme.RegistrationConfig`](#@cdktf/provider-acme.RegistrationConfig)
918
-
919
- ---
920
-
921
- #### Methods <a name="Methods" id="methods"></a>
922
-
923
- | **Name** | **Description** |
924
- | --- | --- |
925
- | [`putExternalAccountBinding`](#cdktfprovideracmeregistrationputexternalaccountbinding) | *No description.* |
926
- | [`resetExternalAccountBinding`](#cdktfprovideracmeregistrationresetexternalaccountbinding) | *No description.* |
927
- | [`resetId`](#cdktfprovideracmeregistrationresetid) | *No description.* |
928
-
929
- ---
930
-
931
- ##### `putExternalAccountBinding` <a name="@cdktf/provider-acme.Registration.putExternalAccountBinding" id="cdktfprovideracmeregistrationputexternalaccountbinding"></a>
932
-
933
- ```typescript
934
- public putExternalAccountBinding(value: RegistrationExternalAccountBinding)
935
- ```
936
-
937
- ###### `value`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.parameter.value" id="cdktfprovideracmeregistrationparametervalue"></a>
938
-
939
- - *Type:* [`@cdktf/provider-acme.RegistrationExternalAccountBinding`](#@cdktf/provider-acme.RegistrationExternalAccountBinding)
940
-
941
- ---
942
-
943
- ##### `resetExternalAccountBinding` <a name="@cdktf/provider-acme.Registration.resetExternalAccountBinding" id="cdktfprovideracmeregistrationresetexternalaccountbinding"></a>
944
-
945
- ```typescript
946
- public resetExternalAccountBinding()
947
- ```
948
-
949
- ##### `resetId` <a name="@cdktf/provider-acme.Registration.resetId" id="cdktfprovideracmeregistrationresetid"></a>
950
-
951
- ```typescript
952
- public resetId()
953
- ```
954
-
955
-
956
- #### Properties <a name="Properties" id="properties"></a>
957
-
958
- | **Name** | **Type** | **Description** |
959
- | --- | --- | --- |
960
- | [`externalAccountBinding`](#cdktfprovideracmeregistrationpropertyexternalaccountbinding)<span title="Required">*</span> | [`@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference`](#@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference) | *No description.* |
961
- | [`registrationUrl`](#cdktfprovideracmeregistrationpropertyregistrationurl)<span title="Required">*</span> | `string` | *No description.* |
962
- | [`accountKeyPemInput`](#cdktfprovideracmeregistrationpropertyaccountkeypeminput) | `string` | *No description.* |
963
- | [`emailAddressInput`](#cdktfprovideracmeregistrationpropertyemailaddressinput) | `string` | *No description.* |
964
- | [`externalAccountBindingInput`](#cdktfprovideracmeregistrationpropertyexternalaccountbindinginput) | [`@cdktf/provider-acme.RegistrationExternalAccountBinding`](#@cdktf/provider-acme.RegistrationExternalAccountBinding) | *No description.* |
965
- | [`idInput`](#cdktfprovideracmeregistrationpropertyidinput) | `string` | *No description.* |
966
- | [`accountKeyPem`](#cdktfprovideracmeregistrationpropertyaccountkeypem)<span title="Required">*</span> | `string` | *No description.* |
967
- | [`emailAddress`](#cdktfprovideracmeregistrationpropertyemailaddress)<span title="Required">*</span> | `string` | *No description.* |
968
- | [`id`](#cdktfprovideracmeregistrationpropertyid)<span title="Required">*</span> | `string` | *No description.* |
969
-
970
- ---
971
-
972
- ##### `externalAccountBinding`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.property.externalAccountBinding" id="cdktfprovideracmeregistrationpropertyexternalaccountbinding"></a>
973
-
974
- ```typescript
975
- public readonly externalAccountBinding: RegistrationExternalAccountBindingOutputReference;
976
- ```
977
-
978
- - *Type:* [`@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference`](#@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference)
979
-
980
- ---
981
-
982
- ##### `registrationUrl`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.property.registrationUrl" id="cdktfprovideracmeregistrationpropertyregistrationurl"></a>
983
-
984
- ```typescript
985
- public readonly registrationUrl: string;
986
- ```
987
-
988
- - *Type:* `string`
989
-
990
- ---
991
-
992
- ##### `accountKeyPemInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Registration.property.accountKeyPemInput" id="cdktfprovideracmeregistrationpropertyaccountkeypeminput"></a>
993
-
994
- ```typescript
995
- public readonly accountKeyPemInput: string;
996
- ```
997
-
998
- - *Type:* `string`
999
-
1000
- ---
1001
-
1002
- ##### `emailAddressInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Registration.property.emailAddressInput" id="cdktfprovideracmeregistrationpropertyemailaddressinput"></a>
1003
-
1004
- ```typescript
1005
- public readonly emailAddressInput: string;
1006
- ```
1007
-
1008
- - *Type:* `string`
1009
-
1010
- ---
1011
-
1012
- ##### `externalAccountBindingInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Registration.property.externalAccountBindingInput" id="cdktfprovideracmeregistrationpropertyexternalaccountbindinginput"></a>
1013
-
1014
- ```typescript
1015
- public readonly externalAccountBindingInput: RegistrationExternalAccountBinding;
1016
- ```
1017
-
1018
- - *Type:* [`@cdktf/provider-acme.RegistrationExternalAccountBinding`](#@cdktf/provider-acme.RegistrationExternalAccountBinding)
1019
-
1020
- ---
1021
-
1022
- ##### `idInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Registration.property.idInput" id="cdktfprovideracmeregistrationpropertyidinput"></a>
1023
-
1024
- ```typescript
1025
- public readonly idInput: string;
1026
- ```
1027
-
1028
- - *Type:* `string`
1029
-
1030
- ---
1031
-
1032
- ##### `accountKeyPem`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.property.accountKeyPem" id="cdktfprovideracmeregistrationpropertyaccountkeypem"></a>
1033
-
1034
- ```typescript
1035
- public readonly accountKeyPem: string;
1036
- ```
1037
-
1038
- - *Type:* `string`
1039
-
1040
- ---
1041
-
1042
- ##### `emailAddress`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.property.emailAddress" id="cdktfprovideracmeregistrationpropertyemailaddress"></a>
1043
-
1044
- ```typescript
1045
- public readonly emailAddress: string;
1046
- ```
1047
-
1048
- - *Type:* `string`
1049
-
1050
- ---
1051
-
1052
- ##### `id`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.property.id" id="cdktfprovideracmeregistrationpropertyid"></a>
1053
-
1054
- ```typescript
1055
- public readonly id: string;
1056
- ```
1057
-
1058
- - *Type:* `string`
1059
-
1060
- ---
1061
-
1062
- #### Constants <a name="Constants" id="constants"></a>
1063
-
1064
- | **Name** | **Type** | **Description** |
1065
- | --- | --- | --- |
1066
- | [`tfResourceType`](#cdktfprovideracmeregistrationpropertytfresourcetype)<span title="Required">*</span> | `string` | *No description.* |
1067
-
1068
- ---
1069
-
1070
- ##### `tfResourceType` <a name="@cdktf/provider-acme.Registration.property.tfResourceType" id="cdktfprovideracmeregistrationpropertytfresourcetype"></a>
1071
-
1072
- - *Type:* `string`
1073
-
1074
- ---
1075
-
1076
- ## Structs <a name="Structs" id="structs"></a>
1077
-
1078
- ### AcmeProviderConfig <a name="@cdktf/provider-acme.AcmeProviderConfig" id="cdktfprovideracmeacmeproviderconfig"></a>
1079
-
1080
- #### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
1081
-
1082
- ```typescript
1083
- import { AcmeProviderConfig } from '@cdktf/provider-acme'
1084
-
1085
- const acmeProviderConfig: AcmeProviderConfig = { ... }
1086
- ```
1087
-
1088
- #### Properties <a name="Properties" id="properties"></a>
1089
-
1090
- | **Name** | **Type** | **Description** |
1091
- | --- | --- | --- |
1092
- | [`serverUrl`](#cdktfprovideracmeacmeproviderconfigpropertyserverurl)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme#server_url AcmeProvider#server_url}. |
1093
- | [`alias`](#cdktfprovideracmeacmeproviderconfigpropertyalias) | `string` | Alias name. |
1094
-
1095
- ---
1096
-
1097
- ##### `serverUrl`<sup>Required</sup> <a name="@cdktf/provider-acme.AcmeProviderConfig.property.serverUrl" id="cdktfprovideracmeacmeproviderconfigpropertyserverurl"></a>
1098
-
1099
- ```typescript
1100
- public readonly serverUrl: string;
1101
- ```
1102
-
1103
- - *Type:* `string`
1104
-
1105
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme#server_url AcmeProvider#server_url}.
1106
-
1107
- ---
1108
-
1109
- ##### `alias`<sup>Optional</sup> <a name="@cdktf/provider-acme.AcmeProviderConfig.property.alias" id="cdktfprovideracmeacmeproviderconfigpropertyalias"></a>
1110
-
1111
- ```typescript
1112
- public readonly alias: string;
1113
- ```
1114
-
1115
- - *Type:* `string`
1116
-
1117
- Alias name.
1118
-
1119
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme#alias AcmeProvider#alias}
1120
-
1121
- ---
1122
-
1123
- ### CertificateConfig <a name="@cdktf/provider-acme.CertificateConfig" id="cdktfprovideracmecertificateconfig"></a>
1124
-
1125
- #### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
1126
-
1127
- ```typescript
1128
- import { CertificateConfig } from '@cdktf/provider-acme'
1129
-
1130
- const certificateConfig: CertificateConfig = { ... }
1131
- ```
1132
-
1133
- #### Properties <a name="Properties" id="properties"></a>
1134
-
1135
- | **Name** | **Type** | **Description** |
1136
- | --- | --- | --- |
1137
- | [`connection`](#cdktfprovideracmecertificateconfigpropertyconnection) | [`cdktf.SSHProvisionerConnection`](#cdktf.SSHProvisionerConnection) \| [`cdktf.WinrmProvisionerConnection`](#cdktf.WinrmProvisionerConnection) | *No description.* |
1138
- | [`count`](#cdktfprovideracmecertificateconfigpropertycount) | `number` | *No description.* |
1139
- | [`dependsOn`](#cdktfprovideracmecertificateconfigpropertydependson) | [`cdktf.ITerraformDependable`](#cdktf.ITerraformDependable)[] | *No description.* |
1140
- | [`forEach`](#cdktfprovideracmecertificateconfigpropertyforeach) | [`cdktf.ITerraformIterator`](#cdktf.ITerraformIterator) | *No description.* |
1141
- | [`lifecycle`](#cdktfprovideracmecertificateconfigpropertylifecycle) | [`cdktf.TerraformResourceLifecycle`](#cdktf.TerraformResourceLifecycle) | *No description.* |
1142
- | [`provider`](#cdktfprovideracmecertificateconfigpropertyprovider) | [`cdktf.TerraformProvider`](#cdktf.TerraformProvider) | *No description.* |
1143
- | [`provisioners`](#cdktfprovideracmecertificateconfigpropertyprovisioners) | [`cdktf.FileProvisioner`](#cdktf.FileProvisioner) \| [`cdktf.LocalExecProvisioner`](#cdktf.LocalExecProvisioner) \| [`cdktf.RemoteExecProvisioner`](#cdktf.RemoteExecProvisioner)[] | *No description.* |
1144
- | [`accountKeyPem`](#cdktfprovideracmecertificateconfigpropertyaccountkeypem)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#account_key_pem Certificate#account_key_pem}. |
1145
- | [`certificateP12Password`](#cdktfprovideracmecertificateconfigpropertycertificatep12password) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#certificate_p12_password Certificate#certificate_p12_password}. |
1146
- | [`certificateRequestPem`](#cdktfprovideracmecertificateconfigpropertycertificaterequestpem) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#certificate_request_pem Certificate#certificate_request_pem}. |
1147
- | [`commonName`](#cdktfprovideracmecertificateconfigpropertycommonname) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#common_name Certificate#common_name}. |
1148
- | [`disableCompletePropagation`](#cdktfprovideracmecertificateconfigpropertydisablecompletepropagation) | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#disable_complete_propagation Certificate#disable_complete_propagation}. |
1149
- | [`dnsChallenge`](#cdktfprovideracmecertificateconfigpropertydnschallenge) | [`cdktf.IResolvable`](#cdktf.IResolvable) \| [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[] | dns_challenge block. |
1150
- | [`httpChallenge`](#cdktfprovideracmecertificateconfigpropertyhttpchallenge) | [`@cdktf/provider-acme.CertificateHttpChallenge`](#@cdktf/provider-acme.CertificateHttpChallenge) | http_challenge block. |
1151
- | [`httpMemcachedChallenge`](#cdktfprovideracmecertificateconfigpropertyhttpmemcachedchallenge) | [`@cdktf/provider-acme.CertificateHttpMemcachedChallenge`](#@cdktf/provider-acme.CertificateHttpMemcachedChallenge) | http_memcached_challenge block. |
1152
- | [`httpWebrootChallenge`](#cdktfprovideracmecertificateconfigpropertyhttpwebrootchallenge) | [`@cdktf/provider-acme.CertificateHttpWebrootChallenge`](#@cdktf/provider-acme.CertificateHttpWebrootChallenge) | http_webroot_challenge block. |
1153
- | [`id`](#cdktfprovideracmecertificateconfigpropertyid) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#id Certificate#id}. |
1154
- | [`keyType`](#cdktfprovideracmecertificateconfigpropertykeytype) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#key_type Certificate#key_type}. |
1155
- | [`minDaysRemaining`](#cdktfprovideracmecertificateconfigpropertymindaysremaining) | `number` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#min_days_remaining Certificate#min_days_remaining}. |
1156
- | [`mustStaple`](#cdktfprovideracmecertificateconfigpropertymuststaple) | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#must_staple Certificate#must_staple}. |
1157
- | [`preCheckDelay`](#cdktfprovideracmecertificateconfigpropertyprecheckdelay) | `number` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#pre_check_delay Certificate#pre_check_delay}. |
1158
- | [`preferredChain`](#cdktfprovideracmecertificateconfigpropertypreferredchain) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#preferred_chain Certificate#preferred_chain}. |
1159
- | [`recursiveNameservers`](#cdktfprovideracmecertificateconfigpropertyrecursivenameservers) | `string`[] | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#recursive_nameservers Certificate#recursive_nameservers}. |
1160
- | [`revokeCertificateOnDestroy`](#cdktfprovideracmecertificateconfigpropertyrevokecertificateondestroy) | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}. |
1161
- | [`subjectAlternativeNames`](#cdktfprovideracmecertificateconfigpropertysubjectalternativenames) | `string`[] | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#subject_alternative_names Certificate#subject_alternative_names}. |
1162
- | [`tlsChallenge`](#cdktfprovideracmecertificateconfigpropertytlschallenge) | [`@cdktf/provider-acme.CertificateTlsChallenge`](#@cdktf/provider-acme.CertificateTlsChallenge) | tls_challenge block. |
1163
-
1164
- ---
1165
-
1166
- ##### `connection`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.connection" id="cdktfprovideracmecertificateconfigpropertyconnection"></a>
1167
-
1168
- ```typescript
1169
- public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
1170
- ```
1171
-
1172
- - *Type:* [`cdktf.SSHProvisionerConnection`](#cdktf.SSHProvisionerConnection) | [`cdktf.WinrmProvisionerConnection`](#cdktf.WinrmProvisionerConnection)
1173
-
1174
- ---
1175
-
1176
- ##### `count`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.count" id="cdktfprovideracmecertificateconfigpropertycount"></a>
1177
-
1178
- ```typescript
1179
- public readonly count: number;
1180
- ```
1181
-
1182
- - *Type:* `number`
1183
-
1184
- ---
1185
-
1186
- ##### `dependsOn`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.dependsOn" id="cdktfprovideracmecertificateconfigpropertydependson"></a>
1187
-
1188
- ```typescript
1189
- public readonly dependsOn: ITerraformDependable[];
1190
- ```
1191
-
1192
- - *Type:* [`cdktf.ITerraformDependable`](#cdktf.ITerraformDependable)[]
1193
-
1194
- ---
1195
-
1196
- ##### `forEach`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.forEach" id="cdktfprovideracmecertificateconfigpropertyforeach"></a>
1197
-
1198
- ```typescript
1199
- public readonly forEach: ITerraformIterator;
1200
- ```
1201
-
1202
- - *Type:* [`cdktf.ITerraformIterator`](#cdktf.ITerraformIterator)
1203
-
1204
- ---
1205
-
1206
- ##### `lifecycle`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.lifecycle" id="cdktfprovideracmecertificateconfigpropertylifecycle"></a>
1207
-
1208
- ```typescript
1209
- public readonly lifecycle: TerraformResourceLifecycle;
1210
- ```
1211
-
1212
- - *Type:* [`cdktf.TerraformResourceLifecycle`](#cdktf.TerraformResourceLifecycle)
1213
-
1214
- ---
1215
-
1216
- ##### `provider`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.provider" id="cdktfprovideracmecertificateconfigpropertyprovider"></a>
1217
-
1218
- ```typescript
1219
- public readonly provider: TerraformProvider;
1220
- ```
1221
-
1222
- - *Type:* [`cdktf.TerraformProvider`](#cdktf.TerraformProvider)
1223
-
1224
- ---
1225
-
1226
- ##### `provisioners`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.provisioners" id="cdktfprovideracmecertificateconfigpropertyprovisioners"></a>
1227
-
1228
- ```typescript
1229
- public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
1230
- ```
1231
-
1232
- - *Type:* [`cdktf.FileProvisioner`](#cdktf.FileProvisioner) | [`cdktf.LocalExecProvisioner`](#cdktf.LocalExecProvisioner) | [`cdktf.RemoteExecProvisioner`](#cdktf.RemoteExecProvisioner)[]
1233
-
1234
- ---
1235
-
1236
- ##### `accountKeyPem`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.accountKeyPem" id="cdktfprovideracmecertificateconfigpropertyaccountkeypem"></a>
1237
-
1238
- ```typescript
1239
- public readonly accountKeyPem: string;
1240
- ```
1241
-
1242
- - *Type:* `string`
1243
-
1244
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#account_key_pem Certificate#account_key_pem}.
1245
-
1246
- ---
1247
-
1248
- ##### `certificateP12Password`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.certificateP12Password" id="cdktfprovideracmecertificateconfigpropertycertificatep12password"></a>
1249
-
1250
- ```typescript
1251
- public readonly certificateP12Password: string;
1252
- ```
1253
-
1254
- - *Type:* `string`
1255
-
1256
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#certificate_p12_password Certificate#certificate_p12_password}.
1257
-
1258
- ---
1259
-
1260
- ##### `certificateRequestPem`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.certificateRequestPem" id="cdktfprovideracmecertificateconfigpropertycertificaterequestpem"></a>
1261
-
1262
- ```typescript
1263
- public readonly certificateRequestPem: string;
1264
- ```
1265
-
1266
- - *Type:* `string`
1267
-
1268
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#certificate_request_pem Certificate#certificate_request_pem}.
1269
-
1270
- ---
1271
-
1272
- ##### `commonName`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.commonName" id="cdktfprovideracmecertificateconfigpropertycommonname"></a>
1273
-
1274
- ```typescript
1275
- public readonly commonName: string;
1276
- ```
1277
-
1278
- - *Type:* `string`
1279
-
1280
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#common_name Certificate#common_name}.
1281
-
1282
- ---
1283
-
1284
- ##### `disableCompletePropagation`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.disableCompletePropagation" id="cdktfprovideracmecertificateconfigpropertydisablecompletepropagation"></a>
1285
-
1286
- ```typescript
1287
- public readonly disableCompletePropagation: boolean | IResolvable;
1288
- ```
1289
-
1290
- - *Type:* `boolean` | [`cdktf.IResolvable`](#cdktf.IResolvable)
1291
-
1292
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#disable_complete_propagation Certificate#disable_complete_propagation}.
1293
-
1294
- ---
1295
-
1296
- ##### `dnsChallenge`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.dnsChallenge" id="cdktfprovideracmecertificateconfigpropertydnschallenge"></a>
1297
-
1298
- ```typescript
1299
- public readonly dnsChallenge: IResolvable | CertificateDnsChallenge[];
1300
- ```
1301
-
1302
- - *Type:* [`cdktf.IResolvable`](#cdktf.IResolvable) | [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[]
1303
-
1304
- dns_challenge block.
1305
-
1306
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#dns_challenge Certificate#dns_challenge}
1307
-
1308
- ---
1309
-
1310
- ##### `httpChallenge`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.httpChallenge" id="cdktfprovideracmecertificateconfigpropertyhttpchallenge"></a>
1311
-
1312
- ```typescript
1313
- public readonly httpChallenge: CertificateHttpChallenge;
1314
- ```
1315
-
1316
- - *Type:* [`@cdktf/provider-acme.CertificateHttpChallenge`](#@cdktf/provider-acme.CertificateHttpChallenge)
1317
-
1318
- http_challenge block.
1319
-
1320
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#http_challenge Certificate#http_challenge}
1321
-
1322
- ---
1323
-
1324
- ##### `httpMemcachedChallenge`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.httpMemcachedChallenge" id="cdktfprovideracmecertificateconfigpropertyhttpmemcachedchallenge"></a>
1325
-
1326
- ```typescript
1327
- public readonly httpMemcachedChallenge: CertificateHttpMemcachedChallenge;
1328
- ```
1329
-
1330
- - *Type:* [`@cdktf/provider-acme.CertificateHttpMemcachedChallenge`](#@cdktf/provider-acme.CertificateHttpMemcachedChallenge)
1331
-
1332
- http_memcached_challenge block.
1333
-
1334
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
1335
-
1336
- ---
1337
-
1338
- ##### `httpWebrootChallenge`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.httpWebrootChallenge" id="cdktfprovideracmecertificateconfigpropertyhttpwebrootchallenge"></a>
1339
-
1340
- ```typescript
1341
- public readonly httpWebrootChallenge: CertificateHttpWebrootChallenge;
1342
- ```
1343
-
1344
- - *Type:* [`@cdktf/provider-acme.CertificateHttpWebrootChallenge`](#@cdktf/provider-acme.CertificateHttpWebrootChallenge)
1345
-
1346
- http_webroot_challenge block.
1347
-
1348
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
1349
-
1350
- ---
1351
-
1352
- ##### `id`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.id" id="cdktfprovideracmecertificateconfigpropertyid"></a>
1353
-
1354
- ```typescript
1355
- public readonly id: string;
1356
- ```
1357
-
1358
- - *Type:* `string`
1359
-
1360
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#id Certificate#id}.
1361
-
1362
- Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
1363
-
1364
- ---
1365
-
1366
- ##### `keyType`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.keyType" id="cdktfprovideracmecertificateconfigpropertykeytype"></a>
1367
-
1368
- ```typescript
1369
- public readonly keyType: string;
1370
- ```
1371
-
1372
- - *Type:* `string`
1373
-
1374
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#key_type Certificate#key_type}.
1375
-
1376
- ---
1377
-
1378
- ##### `minDaysRemaining`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.minDaysRemaining" id="cdktfprovideracmecertificateconfigpropertymindaysremaining"></a>
1379
-
1380
- ```typescript
1381
- public readonly minDaysRemaining: number;
1382
- ```
1383
-
1384
- - *Type:* `number`
1385
-
1386
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#min_days_remaining Certificate#min_days_remaining}.
1387
-
1388
- ---
1389
-
1390
- ##### `mustStaple`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.mustStaple" id="cdktfprovideracmecertificateconfigpropertymuststaple"></a>
1391
-
1392
- ```typescript
1393
- public readonly mustStaple: boolean | IResolvable;
1394
- ```
1395
-
1396
- - *Type:* `boolean` | [`cdktf.IResolvable`](#cdktf.IResolvable)
1397
-
1398
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#must_staple Certificate#must_staple}.
1399
-
1400
- ---
1401
-
1402
- ##### `preCheckDelay`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.preCheckDelay" id="cdktfprovideracmecertificateconfigpropertyprecheckdelay"></a>
1403
-
1404
- ```typescript
1405
- public readonly preCheckDelay: number;
1406
- ```
1407
-
1408
- - *Type:* `number`
1409
-
1410
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#pre_check_delay Certificate#pre_check_delay}.
1411
-
1412
- ---
1413
-
1414
- ##### `preferredChain`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.preferredChain" id="cdktfprovideracmecertificateconfigpropertypreferredchain"></a>
1415
-
1416
- ```typescript
1417
- public readonly preferredChain: string;
1418
- ```
1419
-
1420
- - *Type:* `string`
1421
-
1422
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#preferred_chain Certificate#preferred_chain}.
1423
-
1424
- ---
1425
-
1426
- ##### `recursiveNameservers`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.recursiveNameservers" id="cdktfprovideracmecertificateconfigpropertyrecursivenameservers"></a>
1427
-
1428
- ```typescript
1429
- public readonly recursiveNameservers: string[];
1430
- ```
1431
-
1432
- - *Type:* `string`[]
1433
-
1434
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#recursive_nameservers Certificate#recursive_nameservers}.
1435
-
1436
- ---
1437
-
1438
- ##### `revokeCertificateOnDestroy`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.revokeCertificateOnDestroy" id="cdktfprovideracmecertificateconfigpropertyrevokecertificateondestroy"></a>
1439
-
1440
- ```typescript
1441
- public readonly revokeCertificateOnDestroy: boolean | IResolvable;
1442
- ```
1443
-
1444
- - *Type:* `boolean` | [`cdktf.IResolvable`](#cdktf.IResolvable)
1445
-
1446
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}.
1447
-
1448
- ---
1449
-
1450
- ##### `subjectAlternativeNames`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.subjectAlternativeNames" id="cdktfprovideracmecertificateconfigpropertysubjectalternativenames"></a>
1451
-
1452
- ```typescript
1453
- public readonly subjectAlternativeNames: string[];
1454
- ```
1455
-
1456
- - *Type:* `string`[]
1457
-
1458
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#subject_alternative_names Certificate#subject_alternative_names}.
1459
-
1460
- ---
1461
-
1462
- ##### `tlsChallenge`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.tlsChallenge" id="cdktfprovideracmecertificateconfigpropertytlschallenge"></a>
1463
-
1464
- ```typescript
1465
- public readonly tlsChallenge: CertificateTlsChallenge;
1466
- ```
1467
-
1468
- - *Type:* [`@cdktf/provider-acme.CertificateTlsChallenge`](#@cdktf/provider-acme.CertificateTlsChallenge)
1469
-
1470
- tls_challenge block.
1471
-
1472
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#tls_challenge Certificate#tls_challenge}
1473
-
1474
- ---
1475
-
1476
- ### CertificateDnsChallenge <a name="@cdktf/provider-acme.CertificateDnsChallenge" id="cdktfprovideracmecertificatednschallenge"></a>
1477
-
1478
- #### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
1479
-
1480
- ```typescript
1481
- import { CertificateDnsChallenge } from '@cdktf/provider-acme'
1482
-
1483
- const certificateDnsChallenge: CertificateDnsChallenge = { ... }
1484
- ```
1485
-
1486
- #### Properties <a name="Properties" id="properties"></a>
1487
-
1488
- | **Name** | **Type** | **Description** |
1489
- | --- | --- | --- |
1490
- | [`provider`](#cdktfprovideracmecertificatednschallengepropertyprovider)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#provider Certificate#provider}. |
1491
- | [`config`](#cdktfprovideracmecertificatednschallengepropertyconfig) | {[ key: string ]: `string`} | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#config Certificate#config}. |
1492
-
1493
- ---
1494
-
1495
- ##### `provider`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallenge.property.provider" id="cdktfprovideracmecertificatednschallengepropertyprovider"></a>
1496
-
1497
- ```typescript
1498
- public readonly provider: string;
1499
- ```
1500
-
1501
- - *Type:* `string`
1502
-
1503
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#provider Certificate#provider}.
1504
-
1505
- ---
1506
-
1507
- ##### `config`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateDnsChallenge.property.config" id="cdktfprovideracmecertificatednschallengepropertyconfig"></a>
1508
-
1509
- ```typescript
1510
- public readonly config: {[ key: string ]: string};
1511
- ```
1512
-
1513
- - *Type:* {[ key: string ]: `string`}
1514
-
1515
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#config Certificate#config}.
1516
-
1517
- ---
1518
-
1519
- ### CertificateHttpChallenge <a name="@cdktf/provider-acme.CertificateHttpChallenge" id="cdktfprovideracmecertificatehttpchallenge"></a>
1520
-
1521
- #### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
1522
-
1523
- ```typescript
1524
- import { CertificateHttpChallenge } from '@cdktf/provider-acme'
1525
-
1526
- const certificateHttpChallenge: CertificateHttpChallenge = { ... }
1527
- ```
1528
-
1529
- #### Properties <a name="Properties" id="properties"></a>
1530
-
1531
- | **Name** | **Type** | **Description** |
1532
- | --- | --- | --- |
1533
- | [`port`](#cdktfprovideracmecertificatehttpchallengepropertyport) | `number` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#port Certificate#port}. |
1534
- | [`proxyHeader`](#cdktfprovideracmecertificatehttpchallengepropertyproxyheader) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#proxy_header Certificate#proxy_header}. |
1535
-
1536
- ---
1537
-
1538
- ##### `port`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateHttpChallenge.property.port" id="cdktfprovideracmecertificatehttpchallengepropertyport"></a>
1539
-
1540
- ```typescript
1541
- public readonly port: number;
1542
- ```
1543
-
1544
- - *Type:* `number`
1545
-
1546
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#port Certificate#port}.
1547
-
1548
- ---
1549
-
1550
- ##### `proxyHeader`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateHttpChallenge.property.proxyHeader" id="cdktfprovideracmecertificatehttpchallengepropertyproxyheader"></a>
1551
-
1552
- ```typescript
1553
- public readonly proxyHeader: string;
1554
- ```
1555
-
1556
- - *Type:* `string`
1557
-
1558
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#proxy_header Certificate#proxy_header}.
1559
-
1560
- ---
1561
-
1562
- ### CertificateHttpMemcachedChallenge <a name="@cdktf/provider-acme.CertificateHttpMemcachedChallenge" id="cdktfprovideracmecertificatehttpmemcachedchallenge"></a>
1563
-
1564
- #### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
1565
-
1566
- ```typescript
1567
- import { CertificateHttpMemcachedChallenge } from '@cdktf/provider-acme'
1568
-
1569
- const certificateHttpMemcachedChallenge: CertificateHttpMemcachedChallenge = { ... }
1570
- ```
1571
-
1572
- #### Properties <a name="Properties" id="properties"></a>
1573
-
1574
- | **Name** | **Type** | **Description** |
1575
- | --- | --- | --- |
1576
- | [`hosts`](#cdktfprovideracmecertificatehttpmemcachedchallengepropertyhosts)<span title="Required">*</span> | `string`[] | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#hosts Certificate#hosts}. |
1577
-
1578
- ---
1579
-
1580
- ##### `hosts`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpMemcachedChallenge.property.hosts" id="cdktfprovideracmecertificatehttpmemcachedchallengepropertyhosts"></a>
1581
-
1582
- ```typescript
1583
- public readonly hosts: string[];
1584
- ```
1585
-
1586
- - *Type:* `string`[]
1587
-
1588
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#hosts Certificate#hosts}.
1589
-
1590
- ---
1591
-
1592
- ### CertificateHttpWebrootChallenge <a name="@cdktf/provider-acme.CertificateHttpWebrootChallenge" id="cdktfprovideracmecertificatehttpwebrootchallenge"></a>
1593
-
1594
- #### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
1595
-
1596
- ```typescript
1597
- import { CertificateHttpWebrootChallenge } from '@cdktf/provider-acme'
1598
-
1599
- const certificateHttpWebrootChallenge: CertificateHttpWebrootChallenge = { ... }
1600
- ```
1601
-
1602
- #### Properties <a name="Properties" id="properties"></a>
1603
-
1604
- | **Name** | **Type** | **Description** |
1605
- | --- | --- | --- |
1606
- | [`directory`](#cdktfprovideracmecertificatehttpwebrootchallengepropertydirectory)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#directory Certificate#directory}. |
1607
-
1608
- ---
1609
-
1610
- ##### `directory`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpWebrootChallenge.property.directory" id="cdktfprovideracmecertificatehttpwebrootchallengepropertydirectory"></a>
1611
-
1612
- ```typescript
1613
- public readonly directory: string;
1614
- ```
1615
-
1616
- - *Type:* `string`
1617
-
1618
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#directory Certificate#directory}.
1619
-
1620
- ---
1621
-
1622
- ### CertificateTlsChallenge <a name="@cdktf/provider-acme.CertificateTlsChallenge" id="cdktfprovideracmecertificatetlschallenge"></a>
1623
-
1624
- #### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
1625
-
1626
- ```typescript
1627
- import { CertificateTlsChallenge } from '@cdktf/provider-acme'
1628
-
1629
- const certificateTlsChallenge: CertificateTlsChallenge = { ... }
1630
- ```
1631
-
1632
- #### Properties <a name="Properties" id="properties"></a>
1633
-
1634
- | **Name** | **Type** | **Description** |
1635
- | --- | --- | --- |
1636
- | [`port`](#cdktfprovideracmecertificatetlschallengepropertyport) | `number` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#port Certificate#port}. |
1637
-
1638
- ---
1639
-
1640
- ##### `port`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateTlsChallenge.property.port" id="cdktfprovideracmecertificatetlschallengepropertyport"></a>
1641
-
1642
- ```typescript
1643
- public readonly port: number;
1644
- ```
1645
-
1646
- - *Type:* `number`
1647
-
1648
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#port Certificate#port}.
1649
-
1650
- ---
1651
-
1652
- ### RegistrationConfig <a name="@cdktf/provider-acme.RegistrationConfig" id="cdktfprovideracmeregistrationconfig"></a>
1653
-
1654
- #### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
1655
-
1656
- ```typescript
1657
- import { RegistrationConfig } from '@cdktf/provider-acme'
1658
-
1659
- const registrationConfig: RegistrationConfig = { ... }
1660
- ```
1661
-
1662
- #### Properties <a name="Properties" id="properties"></a>
1663
-
1664
- | **Name** | **Type** | **Description** |
1665
- | --- | --- | --- |
1666
- | [`connection`](#cdktfprovideracmeregistrationconfigpropertyconnection) | [`cdktf.SSHProvisionerConnection`](#cdktf.SSHProvisionerConnection) \| [`cdktf.WinrmProvisionerConnection`](#cdktf.WinrmProvisionerConnection) | *No description.* |
1667
- | [`count`](#cdktfprovideracmeregistrationconfigpropertycount) | `number` | *No description.* |
1668
- | [`dependsOn`](#cdktfprovideracmeregistrationconfigpropertydependson) | [`cdktf.ITerraformDependable`](#cdktf.ITerraformDependable)[] | *No description.* |
1669
- | [`forEach`](#cdktfprovideracmeregistrationconfigpropertyforeach) | [`cdktf.ITerraformIterator`](#cdktf.ITerraformIterator) | *No description.* |
1670
- | [`lifecycle`](#cdktfprovideracmeregistrationconfigpropertylifecycle) | [`cdktf.TerraformResourceLifecycle`](#cdktf.TerraformResourceLifecycle) | *No description.* |
1671
- | [`provider`](#cdktfprovideracmeregistrationconfigpropertyprovider) | [`cdktf.TerraformProvider`](#cdktf.TerraformProvider) | *No description.* |
1672
- | [`provisioners`](#cdktfprovideracmeregistrationconfigpropertyprovisioners) | [`cdktf.FileProvisioner`](#cdktf.FileProvisioner) \| [`cdktf.LocalExecProvisioner`](#cdktf.LocalExecProvisioner) \| [`cdktf.RemoteExecProvisioner`](#cdktf.RemoteExecProvisioner)[] | *No description.* |
1673
- | [`accountKeyPem`](#cdktfprovideracmeregistrationconfigpropertyaccountkeypem)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#account_key_pem Registration#account_key_pem}. |
1674
- | [`emailAddress`](#cdktfprovideracmeregistrationconfigpropertyemailaddress)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#email_address Registration#email_address}. |
1675
- | [`externalAccountBinding`](#cdktfprovideracmeregistrationconfigpropertyexternalaccountbinding) | [`@cdktf/provider-acme.RegistrationExternalAccountBinding`](#@cdktf/provider-acme.RegistrationExternalAccountBinding) | external_account_binding block. |
1676
- | [`id`](#cdktfprovideracmeregistrationconfigpropertyid) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#id Registration#id}. |
1677
-
1678
- ---
1679
-
1680
- ##### `connection`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.connection" id="cdktfprovideracmeregistrationconfigpropertyconnection"></a>
1681
-
1682
- ```typescript
1683
- public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
1684
- ```
1685
-
1686
- - *Type:* [`cdktf.SSHProvisionerConnection`](#cdktf.SSHProvisionerConnection) | [`cdktf.WinrmProvisionerConnection`](#cdktf.WinrmProvisionerConnection)
1687
-
1688
- ---
1689
-
1690
- ##### `count`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.count" id="cdktfprovideracmeregistrationconfigpropertycount"></a>
1691
-
1692
- ```typescript
1693
- public readonly count: number;
1694
- ```
1695
-
1696
- - *Type:* `number`
1697
-
1698
- ---
1699
-
1700
- ##### `dependsOn`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.dependsOn" id="cdktfprovideracmeregistrationconfigpropertydependson"></a>
1701
-
1702
- ```typescript
1703
- public readonly dependsOn: ITerraformDependable[];
1704
- ```
1705
-
1706
- - *Type:* [`cdktf.ITerraformDependable`](#cdktf.ITerraformDependable)[]
1707
-
1708
- ---
1709
-
1710
- ##### `forEach`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.forEach" id="cdktfprovideracmeregistrationconfigpropertyforeach"></a>
1711
-
1712
- ```typescript
1713
- public readonly forEach: ITerraformIterator;
1714
- ```
1715
-
1716
- - *Type:* [`cdktf.ITerraformIterator`](#cdktf.ITerraformIterator)
1717
-
1718
- ---
1719
-
1720
- ##### `lifecycle`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.lifecycle" id="cdktfprovideracmeregistrationconfigpropertylifecycle"></a>
1721
-
1722
- ```typescript
1723
- public readonly lifecycle: TerraformResourceLifecycle;
1724
- ```
1725
-
1726
- - *Type:* [`cdktf.TerraformResourceLifecycle`](#cdktf.TerraformResourceLifecycle)
1727
-
1728
- ---
1729
-
1730
- ##### `provider`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.provider" id="cdktfprovideracmeregistrationconfigpropertyprovider"></a>
1731
-
1732
- ```typescript
1733
- public readonly provider: TerraformProvider;
1734
- ```
1735
-
1736
- - *Type:* [`cdktf.TerraformProvider`](#cdktf.TerraformProvider)
1737
-
1738
- ---
1739
-
1740
- ##### `provisioners`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.provisioners" id="cdktfprovideracmeregistrationconfigpropertyprovisioners"></a>
1741
-
1742
- ```typescript
1743
- public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
1744
- ```
1745
-
1746
- - *Type:* [`cdktf.FileProvisioner`](#cdktf.FileProvisioner) | [`cdktf.LocalExecProvisioner`](#cdktf.LocalExecProvisioner) | [`cdktf.RemoteExecProvisioner`](#cdktf.RemoteExecProvisioner)[]
1747
-
1748
- ---
1749
-
1750
- ##### `accountKeyPem`<sup>Required</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.accountKeyPem" id="cdktfprovideracmeregistrationconfigpropertyaccountkeypem"></a>
1751
-
1752
- ```typescript
1753
- public readonly accountKeyPem: string;
1754
- ```
1755
-
1756
- - *Type:* `string`
1757
-
1758
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#account_key_pem Registration#account_key_pem}.
1759
-
1760
- ---
1761
-
1762
- ##### `emailAddress`<sup>Required</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.emailAddress" id="cdktfprovideracmeregistrationconfigpropertyemailaddress"></a>
1763
-
1764
- ```typescript
1765
- public readonly emailAddress: string;
1766
- ```
1767
-
1768
- - *Type:* `string`
1769
-
1770
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#email_address Registration#email_address}.
1771
-
1772
- ---
1773
-
1774
- ##### `externalAccountBinding`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.externalAccountBinding" id="cdktfprovideracmeregistrationconfigpropertyexternalaccountbinding"></a>
1775
-
1776
- ```typescript
1777
- public readonly externalAccountBinding: RegistrationExternalAccountBinding;
1778
- ```
1779
-
1780
- - *Type:* [`@cdktf/provider-acme.RegistrationExternalAccountBinding`](#@cdktf/provider-acme.RegistrationExternalAccountBinding)
1781
-
1782
- external_account_binding block.
1783
-
1784
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#external_account_binding Registration#external_account_binding}
1785
-
1786
- ---
1787
-
1788
- ##### `id`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.id" id="cdktfprovideracmeregistrationconfigpropertyid"></a>
1789
-
1790
- ```typescript
1791
- public readonly id: string;
1792
- ```
1793
-
1794
- - *Type:* `string`
1795
-
1796
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#id Registration#id}.
1797
-
1798
- Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
1799
-
1800
- ---
1801
-
1802
- ### RegistrationExternalAccountBinding <a name="@cdktf/provider-acme.RegistrationExternalAccountBinding" id="cdktfprovideracmeregistrationexternalaccountbinding"></a>
1803
-
1804
- #### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
1805
-
1806
- ```typescript
1807
- import { RegistrationExternalAccountBinding } from '@cdktf/provider-acme'
1808
-
1809
- const registrationExternalAccountBinding: RegistrationExternalAccountBinding = { ... }
1810
- ```
1811
-
1812
- #### Properties <a name="Properties" id="properties"></a>
1813
-
1814
- | **Name** | **Type** | **Description** |
1815
- | --- | --- | --- |
1816
- | [`hmacBase64`](#cdktfprovideracmeregistrationexternalaccountbindingpropertyhmacbase64)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#hmac_base64 Registration#hmac_base64}. |
1817
- | [`keyId`](#cdktfprovideracmeregistrationexternalaccountbindingpropertykeyid)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#key_id Registration#key_id}. |
1818
-
1819
- ---
1820
-
1821
- ##### `hmacBase64`<sup>Required</sup> <a name="@cdktf/provider-acme.RegistrationExternalAccountBinding.property.hmacBase64" id="cdktfprovideracmeregistrationexternalaccountbindingpropertyhmacbase64"></a>
1822
-
1823
- ```typescript
1824
- public readonly hmacBase64: string;
1825
- ```
1826
-
1827
- - *Type:* `string`
1828
-
1829
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#hmac_base64 Registration#hmac_base64}.
1830
-
1831
- ---
1832
-
1833
- ##### `keyId`<sup>Required</sup> <a name="@cdktf/provider-acme.RegistrationExternalAccountBinding.property.keyId" id="cdktfprovideracmeregistrationexternalaccountbindingpropertykeyid"></a>
1834
-
1835
- ```typescript
1836
- public readonly keyId: string;
1837
- ```
1838
-
1839
- - *Type:* `string`
1840
-
1841
- Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#key_id Registration#key_id}.
1842
-
1843
- ---
1844
-
1845
- ## Classes <a name="Classes" id="classes"></a>
1846
-
1847
- ### CertificateDnsChallengeList <a name="@cdktf/provider-acme.CertificateDnsChallengeList" id="cdktfprovideracmecertificatednschallengelist"></a>
1848
-
1849
- #### Initializers <a name="@cdktf/provider-acme.CertificateDnsChallengeList.Initializer" id="cdktfprovideracmecertificatednschallengelistinitializer"></a>
1850
-
1851
- ```typescript
1852
- import { CertificateDnsChallengeList } from '@cdktf/provider-acme'
1853
-
1854
- new CertificateDnsChallengeList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
1855
- ```
1856
-
1857
- | **Name** | **Type** | **Description** |
1858
- | --- | --- | --- |
1859
- | [`terraformResource`](#cdktfprovideracmecertificatednschallengelistparameterterraformresource)<span title="Required">*</span> | [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent) | The parent resource. |
1860
- | [`terraformAttribute`](#cdktfprovideracmecertificatednschallengelistparameterterraformattribute)<span title="Required">*</span> | `string` | The attribute on the parent resource this class is referencing. |
1861
- | [`wrapsSet`](#cdktfprovideracmecertificatednschallengelistparameterwrapsset)<span title="Required">*</span> | `boolean` | whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
1862
-
1863
- ---
1864
-
1865
- ##### `terraformResource`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.parameter.terraformResource" id="cdktfprovideracmecertificatednschallengelistparameterterraformresource"></a>
1866
-
1867
- - *Type:* [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent)
1868
-
1869
- The parent resource.
1870
-
1871
- ---
1872
-
1873
- ##### `terraformAttribute`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.parameter.terraformAttribute" id="cdktfprovideracmecertificatednschallengelistparameterterraformattribute"></a>
1874
-
1875
- - *Type:* `string`
1876
-
1877
- The attribute on the parent resource this class is referencing.
1878
-
1879
- ---
1880
-
1881
- ##### `wrapsSet`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.parameter.wrapsSet" id="cdktfprovideracmecertificatednschallengelistparameterwrapsset"></a>
1882
-
1883
- - *Type:* `boolean`
1884
-
1885
- whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
1886
-
1887
- ---
1888
-
1889
- #### Methods <a name="Methods" id="methods"></a>
1890
-
1891
- | **Name** | **Description** |
1892
- | --- | --- |
1893
- | [`get`](#cdktfprovideracmecertificatednschallengelistget) | *No description.* |
1894
-
1895
- ---
1896
-
1897
- ##### `get` <a name="@cdktf/provider-acme.CertificateDnsChallengeList.get" id="cdktfprovideracmecertificatednschallengelistget"></a>
1898
-
1899
- ```typescript
1900
- public get(index: number)
1901
- ```
1902
-
1903
- ###### `index`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.parameter.index" id="cdktfprovideracmecertificatednschallengelistparameterindex"></a>
1904
-
1905
- - *Type:* `number`
1906
-
1907
- the index of the item to return.
1908
-
1909
- ---
1910
-
1911
-
1912
- #### Properties <a name="Properties" id="properties"></a>
1913
-
1914
- | **Name** | **Type** | **Description** |
1915
- | --- | --- | --- |
1916
- | [`internalValue`](#cdktfprovideracmecertificatednschallengelistpropertyinternalvalue) | [`cdktf.IResolvable`](#cdktf.IResolvable) \| [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[] | *No description.* |
1917
-
1918
- ---
1919
-
1920
- ##### `internalValue`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.property.internalValue" id="cdktfprovideracmecertificatednschallengelistpropertyinternalvalue"></a>
1921
-
1922
- ```typescript
1923
- public readonly internalValue: IResolvable | CertificateDnsChallenge[];
1924
- ```
1925
-
1926
- - *Type:* [`cdktf.IResolvable`](#cdktf.IResolvable) | [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[]
1927
-
1928
- ---
1929
-
1930
-
1931
- ### CertificateDnsChallengeOutputReference <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference" id="cdktfprovideracmecertificatednschallengeoutputreference"></a>
1932
-
1933
- #### Initializers <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.Initializer" id="cdktfprovideracmecertificatednschallengeoutputreferenceinitializer"></a>
1934
-
1935
- ```typescript
1936
- import { CertificateDnsChallengeOutputReference } from '@cdktf/provider-acme'
1937
-
1938
- new CertificateDnsChallengeOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
1939
- ```
1940
-
1941
- | **Name** | **Type** | **Description** |
1942
- | --- | --- | --- |
1943
- | [`terraformResource`](#cdktfprovideracmecertificatednschallengeoutputreferenceparameterterraformresource)<span title="Required">*</span> | [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent) | The parent resource. |
1944
- | [`terraformAttribute`](#cdktfprovideracmecertificatednschallengeoutputreferenceparameterterraformattribute)<span title="Required">*</span> | `string` | The attribute on the parent resource this class is referencing. |
1945
- | [`complexObjectIndex`](#cdktfprovideracmecertificatednschallengeoutputreferenceparametercomplexobjectindex)<span title="Required">*</span> | `number` | the index of this item in the list. |
1946
- | [`complexObjectIsFromSet`](#cdktfprovideracmecertificatednschallengeoutputreferenceparametercomplexobjectisfromset)<span title="Required">*</span> | `boolean` | whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
1947
-
1948
- ---
1949
-
1950
- ##### `terraformResource`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.parameter.terraformResource" id="cdktfprovideracmecertificatednschallengeoutputreferenceparameterterraformresource"></a>
1951
-
1952
- - *Type:* [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent)
1953
-
1954
- The parent resource.
1955
-
1956
- ---
1957
-
1958
- ##### `terraformAttribute`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.parameter.terraformAttribute" id="cdktfprovideracmecertificatednschallengeoutputreferenceparameterterraformattribute"></a>
1959
-
1960
- - *Type:* `string`
1961
-
1962
- The attribute on the parent resource this class is referencing.
1963
-
1964
- ---
1965
-
1966
- ##### `complexObjectIndex`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.parameter.complexObjectIndex" id="cdktfprovideracmecertificatednschallengeoutputreferenceparametercomplexobjectindex"></a>
1967
-
1968
- - *Type:* `number`
1969
-
1970
- the index of this item in the list.
1971
-
1972
- ---
1973
-
1974
- ##### `complexObjectIsFromSet`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.parameter.complexObjectIsFromSet" id="cdktfprovideracmecertificatednschallengeoutputreferenceparametercomplexobjectisfromset"></a>
1975
-
1976
- - *Type:* `boolean`
1977
-
1978
- whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
1979
-
1980
- ---
1981
-
1982
- #### Methods <a name="Methods" id="methods"></a>
1983
-
1984
- | **Name** | **Description** |
1985
- | --- | --- |
1986
- | [`resetConfig`](#cdktfprovideracmecertificatednschallengeoutputreferenceresetconfig) | *No description.* |
1987
-
1988
- ---
1989
-
1990
- ##### `resetConfig` <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.resetConfig" id="cdktfprovideracmecertificatednschallengeoutputreferenceresetconfig"></a>
1991
-
1992
- ```typescript
1993
- public resetConfig()
1994
- ```
1995
-
1996
-
1997
- #### Properties <a name="Properties" id="properties"></a>
1998
-
1999
- | **Name** | **Type** | **Description** |
2000
- | --- | --- | --- |
2001
- | [`configInput`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyconfiginput) | {[ key: string ]: `string`} | *No description.* |
2002
- | [`providerInput`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyproviderinput) | `string` | *No description.* |
2003
- | [`config`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyconfig)<span title="Required">*</span> | {[ key: string ]: `string`} | *No description.* |
2004
- | [`provider`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyprovider)<span title="Required">*</span> | `string` | *No description.* |
2005
- | [`internalValue`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyinternalvalue) | [`cdktf.IResolvable`](#cdktf.IResolvable) \| [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge) | *No description.* |
2006
-
2007
- ---
2008
-
2009
- ##### `configInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.configInput" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyconfiginput"></a>
2010
-
2011
- ```typescript
2012
- public readonly configInput: {[ key: string ]: string};
2013
- ```
2014
-
2015
- - *Type:* {[ key: string ]: `string`}
2016
-
2017
- ---
2018
-
2019
- ##### `providerInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.providerInput" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyproviderinput"></a>
2020
-
2021
- ```typescript
2022
- public readonly providerInput: string;
2023
- ```
2024
-
2025
- - *Type:* `string`
2026
-
2027
- ---
2028
-
2029
- ##### `config`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.config" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyconfig"></a>
2030
-
2031
- ```typescript
2032
- public readonly config: {[ key: string ]: string};
2033
- ```
2034
-
2035
- - *Type:* {[ key: string ]: `string`}
2036
-
2037
- ---
2038
-
2039
- ##### `provider`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.provider" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyprovider"></a>
2040
-
2041
- ```typescript
2042
- public readonly provider: string;
2043
- ```
2044
-
2045
- - *Type:* `string`
2046
-
2047
- ---
2048
-
2049
- ##### `internalValue`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.internalValue" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyinternalvalue"></a>
2050
-
2051
- ```typescript
2052
- public readonly internalValue: IResolvable | CertificateDnsChallenge;
2053
- ```
2054
-
2055
- - *Type:* [`cdktf.IResolvable`](#cdktf.IResolvable) | [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)
2056
-
2057
- ---
2058
-
2059
-
2060
- ### CertificateHttpChallengeOutputReference <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference" id="cdktfprovideracmecertificatehttpchallengeoutputreference"></a>
2061
-
2062
- #### Initializers <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.Initializer" id="cdktfprovideracmecertificatehttpchallengeoutputreferenceinitializer"></a>
2063
-
2064
- ```typescript
2065
- import { CertificateHttpChallengeOutputReference } from '@cdktf/provider-acme'
2066
-
2067
- new CertificateHttpChallengeOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
2068
- ```
2069
-
2070
- | **Name** | **Type** | **Description** |
2071
- | --- | --- | --- |
2072
- | [`terraformResource`](#cdktfprovideracmecertificatehttpchallengeoutputreferenceparameterterraformresource)<span title="Required">*</span> | [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent) | The parent resource. |
2073
- | [`terraformAttribute`](#cdktfprovideracmecertificatehttpchallengeoutputreferenceparameterterraformattribute)<span title="Required">*</span> | `string` | The attribute on the parent resource this class is referencing. |
2074
-
2075
- ---
2076
-
2077
- ##### `terraformResource`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.parameter.terraformResource" id="cdktfprovideracmecertificatehttpchallengeoutputreferenceparameterterraformresource"></a>
2078
-
2079
- - *Type:* [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent)
2080
-
2081
- The parent resource.
2082
-
2083
- ---
2084
-
2085
- ##### `terraformAttribute`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.parameter.terraformAttribute" id="cdktfprovideracmecertificatehttpchallengeoutputreferenceparameterterraformattribute"></a>
2086
-
2087
- - *Type:* `string`
2088
-
2089
- The attribute on the parent resource this class is referencing.
2090
-
2091
- ---
2092
-
2093
- #### Methods <a name="Methods" id="methods"></a>
2094
-
2095
- | **Name** | **Description** |
2096
- | --- | --- |
2097
- | [`resetPort`](#cdktfprovideracmecertificatehttpchallengeoutputreferenceresetport) | *No description.* |
2098
- | [`resetProxyHeader`](#cdktfprovideracmecertificatehttpchallengeoutputreferenceresetproxyheader) | *No description.* |
2099
-
2100
- ---
2101
-
2102
- ##### `resetPort` <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.resetPort" id="cdktfprovideracmecertificatehttpchallengeoutputreferenceresetport"></a>
2103
-
2104
- ```typescript
2105
- public resetPort()
2106
- ```
2107
-
2108
- ##### `resetProxyHeader` <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.resetProxyHeader" id="cdktfprovideracmecertificatehttpchallengeoutputreferenceresetproxyheader"></a>
2109
-
2110
- ```typescript
2111
- public resetProxyHeader()
2112
- ```
2113
-
2114
-
2115
- #### Properties <a name="Properties" id="properties"></a>
2116
-
2117
- | **Name** | **Type** | **Description** |
2118
- | --- | --- | --- |
2119
- | [`portInput`](#cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyportinput) | `number` | *No description.* |
2120
- | [`proxyHeaderInput`](#cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyproxyheaderinput) | `string` | *No description.* |
2121
- | [`port`](#cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyport)<span title="Required">*</span> | `number` | *No description.* |
2122
- | [`proxyHeader`](#cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyproxyheader)<span title="Required">*</span> | `string` | *No description.* |
2123
- | [`internalValue`](#cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyinternalvalue) | [`@cdktf/provider-acme.CertificateHttpChallenge`](#@cdktf/provider-acme.CertificateHttpChallenge) | *No description.* |
2124
-
2125
- ---
2126
-
2127
- ##### `portInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.property.portInput" id="cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyportinput"></a>
2128
-
2129
- ```typescript
2130
- public readonly portInput: number;
2131
- ```
2132
-
2133
- - *Type:* `number`
2134
-
2135
- ---
2136
-
2137
- ##### `proxyHeaderInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.property.proxyHeaderInput" id="cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyproxyheaderinput"></a>
2138
-
2139
- ```typescript
2140
- public readonly proxyHeaderInput: string;
2141
- ```
2142
-
2143
- - *Type:* `string`
2144
-
2145
- ---
2146
-
2147
- ##### `port`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.property.port" id="cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyport"></a>
2148
-
2149
- ```typescript
2150
- public readonly port: number;
2151
- ```
2152
-
2153
- - *Type:* `number`
2154
-
2155
- ---
2156
-
2157
- ##### `proxyHeader`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.property.proxyHeader" id="cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyproxyheader"></a>
2158
-
2159
- ```typescript
2160
- public readonly proxyHeader: string;
2161
- ```
2162
-
2163
- - *Type:* `string`
2164
-
2165
- ---
2166
-
2167
- ##### `internalValue`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.property.internalValue" id="cdktfprovideracmecertificatehttpchallengeoutputreferencepropertyinternalvalue"></a>
2168
-
2169
- ```typescript
2170
- public readonly internalValue: CertificateHttpChallenge;
2171
- ```
2172
-
2173
- - *Type:* [`@cdktf/provider-acme.CertificateHttpChallenge`](#@cdktf/provider-acme.CertificateHttpChallenge)
2174
-
2175
- ---
2176
-
2177
-
2178
- ### CertificateHttpMemcachedChallengeOutputReference <a name="@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference" id="cdktfprovideracmecertificatehttpmemcachedchallengeoutputreference"></a>
2179
-
2180
- #### Initializers <a name="@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference.Initializer" id="cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferenceinitializer"></a>
2181
-
2182
- ```typescript
2183
- import { CertificateHttpMemcachedChallengeOutputReference } from '@cdktf/provider-acme'
2184
-
2185
- new CertificateHttpMemcachedChallengeOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
2186
- ```
2187
-
2188
- | **Name** | **Type** | **Description** |
2189
- | --- | --- | --- |
2190
- | [`terraformResource`](#cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferenceparameterterraformresource)<span title="Required">*</span> | [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent) | The parent resource. |
2191
- | [`terraformAttribute`](#cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferenceparameterterraformattribute)<span title="Required">*</span> | `string` | The attribute on the parent resource this class is referencing. |
2192
-
2193
- ---
2194
-
2195
- ##### `terraformResource`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference.parameter.terraformResource" id="cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferenceparameterterraformresource"></a>
2196
-
2197
- - *Type:* [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent)
2198
-
2199
- The parent resource.
2200
-
2201
- ---
2202
-
2203
- ##### `terraformAttribute`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference.parameter.terraformAttribute" id="cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferenceparameterterraformattribute"></a>
2204
-
2205
- - *Type:* `string`
2206
-
2207
- The attribute on the parent resource this class is referencing.
2208
-
2209
- ---
2210
-
2211
-
2212
-
2213
- #### Properties <a name="Properties" id="properties"></a>
2214
-
2215
- | **Name** | **Type** | **Description** |
2216
- | --- | --- | --- |
2217
- | [`hostsInput`](#cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferencepropertyhostsinput) | `string`[] | *No description.* |
2218
- | [`hosts`](#cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferencepropertyhosts)<span title="Required">*</span> | `string`[] | *No description.* |
2219
- | [`internalValue`](#cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferencepropertyinternalvalue) | [`@cdktf/provider-acme.CertificateHttpMemcachedChallenge`](#@cdktf/provider-acme.CertificateHttpMemcachedChallenge) | *No description.* |
2220
-
2221
- ---
2222
-
2223
- ##### `hostsInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference.property.hostsInput" id="cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferencepropertyhostsinput"></a>
2224
-
2225
- ```typescript
2226
- public readonly hostsInput: string[];
2227
- ```
2228
-
2229
- - *Type:* `string`[]
2230
-
2231
- ---
2232
-
2233
- ##### `hosts`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference.property.hosts" id="cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferencepropertyhosts"></a>
2234
-
2235
- ```typescript
2236
- public readonly hosts: string[];
2237
- ```
2238
-
2239
- - *Type:* `string`[]
2240
-
2241
- ---
2242
-
2243
- ##### `internalValue`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference.property.internalValue" id="cdktfprovideracmecertificatehttpmemcachedchallengeoutputreferencepropertyinternalvalue"></a>
2244
-
2245
- ```typescript
2246
- public readonly internalValue: CertificateHttpMemcachedChallenge;
2247
- ```
2248
-
2249
- - *Type:* [`@cdktf/provider-acme.CertificateHttpMemcachedChallenge`](#@cdktf/provider-acme.CertificateHttpMemcachedChallenge)
2250
-
2251
- ---
2252
-
2253
-
2254
- ### CertificateHttpWebrootChallengeOutputReference <a name="@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference" id="cdktfprovideracmecertificatehttpwebrootchallengeoutputreference"></a>
2255
-
2256
- #### Initializers <a name="@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference.Initializer" id="cdktfprovideracmecertificatehttpwebrootchallengeoutputreferenceinitializer"></a>
2257
-
2258
- ```typescript
2259
- import { CertificateHttpWebrootChallengeOutputReference } from '@cdktf/provider-acme'
2260
-
2261
- new CertificateHttpWebrootChallengeOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
2262
- ```
2263
-
2264
- | **Name** | **Type** | **Description** |
2265
- | --- | --- | --- |
2266
- | [`terraformResource`](#cdktfprovideracmecertificatehttpwebrootchallengeoutputreferenceparameterterraformresource)<span title="Required">*</span> | [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent) | The parent resource. |
2267
- | [`terraformAttribute`](#cdktfprovideracmecertificatehttpwebrootchallengeoutputreferenceparameterterraformattribute)<span title="Required">*</span> | `string` | The attribute on the parent resource this class is referencing. |
2268
-
2269
- ---
2270
-
2271
- ##### `terraformResource`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference.parameter.terraformResource" id="cdktfprovideracmecertificatehttpwebrootchallengeoutputreferenceparameterterraformresource"></a>
2272
-
2273
- - *Type:* [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent)
2274
-
2275
- The parent resource.
2276
-
2277
- ---
2278
-
2279
- ##### `terraformAttribute`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference.parameter.terraformAttribute" id="cdktfprovideracmecertificatehttpwebrootchallengeoutputreferenceparameterterraformattribute"></a>
2280
-
2281
- - *Type:* `string`
2282
-
2283
- The attribute on the parent resource this class is referencing.
2284
-
2285
- ---
2286
-
2287
-
2288
-
2289
- #### Properties <a name="Properties" id="properties"></a>
2290
-
2291
- | **Name** | **Type** | **Description** |
2292
- | --- | --- | --- |
2293
- | [`directoryInput`](#cdktfprovideracmecertificatehttpwebrootchallengeoutputreferencepropertydirectoryinput) | `string` | *No description.* |
2294
- | [`directory`](#cdktfprovideracmecertificatehttpwebrootchallengeoutputreferencepropertydirectory)<span title="Required">*</span> | `string` | *No description.* |
2295
- | [`internalValue`](#cdktfprovideracmecertificatehttpwebrootchallengeoutputreferencepropertyinternalvalue) | [`@cdktf/provider-acme.CertificateHttpWebrootChallenge`](#@cdktf/provider-acme.CertificateHttpWebrootChallenge) | *No description.* |
2296
-
2297
- ---
2298
-
2299
- ##### `directoryInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference.property.directoryInput" id="cdktfprovideracmecertificatehttpwebrootchallengeoutputreferencepropertydirectoryinput"></a>
2300
-
2301
- ```typescript
2302
- public readonly directoryInput: string;
2303
- ```
2304
-
2305
- - *Type:* `string`
2306
-
2307
- ---
2308
-
2309
- ##### `directory`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference.property.directory" id="cdktfprovideracmecertificatehttpwebrootchallengeoutputreferencepropertydirectory"></a>
2310
-
2311
- ```typescript
2312
- public readonly directory: string;
2313
- ```
2314
-
2315
- - *Type:* `string`
2316
-
2317
- ---
2318
-
2319
- ##### `internalValue`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference.property.internalValue" id="cdktfprovideracmecertificatehttpwebrootchallengeoutputreferencepropertyinternalvalue"></a>
2320
-
2321
- ```typescript
2322
- public readonly internalValue: CertificateHttpWebrootChallenge;
2323
- ```
2324
-
2325
- - *Type:* [`@cdktf/provider-acme.CertificateHttpWebrootChallenge`](#@cdktf/provider-acme.CertificateHttpWebrootChallenge)
2326
-
2327
- ---
2328
-
2329
-
2330
- ### CertificateTlsChallengeOutputReference <a name="@cdktf/provider-acme.CertificateTlsChallengeOutputReference" id="cdktfprovideracmecertificatetlschallengeoutputreference"></a>
2331
-
2332
- #### Initializers <a name="@cdktf/provider-acme.CertificateTlsChallengeOutputReference.Initializer" id="cdktfprovideracmecertificatetlschallengeoutputreferenceinitializer"></a>
2333
-
2334
- ```typescript
2335
- import { CertificateTlsChallengeOutputReference } from '@cdktf/provider-acme'
2336
-
2337
- new CertificateTlsChallengeOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
2338
- ```
2339
-
2340
- | **Name** | **Type** | **Description** |
2341
- | --- | --- | --- |
2342
- | [`terraformResource`](#cdktfprovideracmecertificatetlschallengeoutputreferenceparameterterraformresource)<span title="Required">*</span> | [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent) | The parent resource. |
2343
- | [`terraformAttribute`](#cdktfprovideracmecertificatetlschallengeoutputreferenceparameterterraformattribute)<span title="Required">*</span> | `string` | The attribute on the parent resource this class is referencing. |
2344
-
2345
- ---
2346
-
2347
- ##### `terraformResource`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateTlsChallengeOutputReference.parameter.terraformResource" id="cdktfprovideracmecertificatetlschallengeoutputreferenceparameterterraformresource"></a>
2348
-
2349
- - *Type:* [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent)
2350
-
2351
- The parent resource.
2352
-
2353
- ---
2354
-
2355
- ##### `terraformAttribute`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateTlsChallengeOutputReference.parameter.terraformAttribute" id="cdktfprovideracmecertificatetlschallengeoutputreferenceparameterterraformattribute"></a>
2356
-
2357
- - *Type:* `string`
2358
-
2359
- The attribute on the parent resource this class is referencing.
2360
-
2361
- ---
2362
-
2363
- #### Methods <a name="Methods" id="methods"></a>
2364
-
2365
- | **Name** | **Description** |
2366
- | --- | --- |
2367
- | [`resetPort`](#cdktfprovideracmecertificatetlschallengeoutputreferenceresetport) | *No description.* |
2368
-
2369
- ---
2370
-
2371
- ##### `resetPort` <a name="@cdktf/provider-acme.CertificateTlsChallengeOutputReference.resetPort" id="cdktfprovideracmecertificatetlschallengeoutputreferenceresetport"></a>
2372
-
2373
- ```typescript
2374
- public resetPort()
2375
- ```
2376
-
2377
-
2378
- #### Properties <a name="Properties" id="properties"></a>
2379
-
2380
- | **Name** | **Type** | **Description** |
2381
- | --- | --- | --- |
2382
- | [`portInput`](#cdktfprovideracmecertificatetlschallengeoutputreferencepropertyportinput) | `number` | *No description.* |
2383
- | [`port`](#cdktfprovideracmecertificatetlschallengeoutputreferencepropertyport)<span title="Required">*</span> | `number` | *No description.* |
2384
- | [`internalValue`](#cdktfprovideracmecertificatetlschallengeoutputreferencepropertyinternalvalue) | [`@cdktf/provider-acme.CertificateTlsChallenge`](#@cdktf/provider-acme.CertificateTlsChallenge) | *No description.* |
2385
-
2386
- ---
2387
-
2388
- ##### `portInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateTlsChallengeOutputReference.property.portInput" id="cdktfprovideracmecertificatetlschallengeoutputreferencepropertyportinput"></a>
2389
-
2390
- ```typescript
2391
- public readonly portInput: number;
2392
- ```
2393
-
2394
- - *Type:* `number`
2395
-
2396
- ---
2397
-
2398
- ##### `port`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateTlsChallengeOutputReference.property.port" id="cdktfprovideracmecertificatetlschallengeoutputreferencepropertyport"></a>
2399
-
2400
- ```typescript
2401
- public readonly port: number;
2402
- ```
2403
-
2404
- - *Type:* `number`
2405
-
2406
- ---
2407
-
2408
- ##### `internalValue`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateTlsChallengeOutputReference.property.internalValue" id="cdktfprovideracmecertificatetlschallengeoutputreferencepropertyinternalvalue"></a>
2409
-
2410
- ```typescript
2411
- public readonly internalValue: CertificateTlsChallenge;
2412
- ```
2413
-
2414
- - *Type:* [`@cdktf/provider-acme.CertificateTlsChallenge`](#@cdktf/provider-acme.CertificateTlsChallenge)
2415
-
2416
- ---
2417
-
2418
-
2419
- ### RegistrationExternalAccountBindingOutputReference <a name="@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference" id="cdktfprovideracmeregistrationexternalaccountbindingoutputreference"></a>
2420
-
2421
- #### Initializers <a name="@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference.Initializer" id="cdktfprovideracmeregistrationexternalaccountbindingoutputreferenceinitializer"></a>
2422
-
2423
- ```typescript
2424
- import { RegistrationExternalAccountBindingOutputReference } from '@cdktf/provider-acme'
2425
-
2426
- new RegistrationExternalAccountBindingOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
2427
- ```
2428
-
2429
- | **Name** | **Type** | **Description** |
2430
- | --- | --- | --- |
2431
- | [`terraformResource`](#cdktfprovideracmeregistrationexternalaccountbindingoutputreferenceparameterterraformresource)<span title="Required">*</span> | [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent) | The parent resource. |
2432
- | [`terraformAttribute`](#cdktfprovideracmeregistrationexternalaccountbindingoutputreferenceparameterterraformattribute)<span title="Required">*</span> | `string` | The attribute on the parent resource this class is referencing. |
2433
-
2434
- ---
2435
-
2436
- ##### `terraformResource`<sup>Required</sup> <a name="@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference.parameter.terraformResource" id="cdktfprovideracmeregistrationexternalaccountbindingoutputreferenceparameterterraformresource"></a>
2437
-
2438
- - *Type:* [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent)
2439
-
2440
- The parent resource.
2441
-
2442
- ---
2443
-
2444
- ##### `terraformAttribute`<sup>Required</sup> <a name="@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference.parameter.terraformAttribute" id="cdktfprovideracmeregistrationexternalaccountbindingoutputreferenceparameterterraformattribute"></a>
2445
-
2446
- - *Type:* `string`
2447
-
2448
- The attribute on the parent resource this class is referencing.
2449
-
2450
- ---
2451
-
2452
-
2453
-
2454
- #### Properties <a name="Properties" id="properties"></a>
2455
-
2456
- | **Name** | **Type** | **Description** |
2457
- | --- | --- | --- |
2458
- | [`hmacBase64Input`](#cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertyhmacbase64input) | `string` | *No description.* |
2459
- | [`keyIdInput`](#cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertykeyidinput) | `string` | *No description.* |
2460
- | [`hmacBase64`](#cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertyhmacbase64)<span title="Required">*</span> | `string` | *No description.* |
2461
- | [`keyId`](#cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertykeyid)<span title="Required">*</span> | `string` | *No description.* |
2462
- | [`internalValue`](#cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertyinternalvalue) | [`@cdktf/provider-acme.RegistrationExternalAccountBinding`](#@cdktf/provider-acme.RegistrationExternalAccountBinding) | *No description.* |
2463
-
2464
- ---
2465
-
2466
- ##### `hmacBase64Input`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference.property.hmacBase64Input" id="cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertyhmacbase64input"></a>
2467
-
2468
- ```typescript
2469
- public readonly hmacBase64Input: string;
2470
- ```
2471
-
2472
- - *Type:* `string`
2473
-
2474
- ---
2475
-
2476
- ##### `keyIdInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference.property.keyIdInput" id="cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertykeyidinput"></a>
2477
-
2478
- ```typescript
2479
- public readonly keyIdInput: string;
2480
- ```
2481
-
2482
- - *Type:* `string`
2483
-
2484
- ---
2485
-
2486
- ##### `hmacBase64`<sup>Required</sup> <a name="@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference.property.hmacBase64" id="cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertyhmacbase64"></a>
2487
-
2488
- ```typescript
2489
- public readonly hmacBase64: string;
2490
- ```
2491
-
2492
- - *Type:* `string`
2493
-
2494
- ---
2495
-
2496
- ##### `keyId`<sup>Required</sup> <a name="@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference.property.keyId" id="cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertykeyid"></a>
2497
-
2498
- ```typescript
2499
- public readonly keyId: string;
2500
- ```
2501
-
2502
- - *Type:* `string`
2503
-
2504
- ---
2505
-
2506
- ##### `internalValue`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference.property.internalValue" id="cdktfprovideracmeregistrationexternalaccountbindingoutputreferencepropertyinternalvalue"></a>
2507
-
2508
- ```typescript
2509
- public readonly internalValue: RegistrationExternalAccountBinding;
2510
- ```
2511
-
2512
- - *Type:* [`@cdktf/provider-acme.RegistrationExternalAccountBinding`](#@cdktf/provider-acme.RegistrationExternalAccountBinding)
2513
-
2514
- ---
2515
4
 
2516
5
 
2517
6