@cdktf/provider-acme 6.0.0 → 6.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.copywrite.hcl +24 -0
- package/.gitattributes +3 -1
- package/.jsii +238 -238
- package/README.md +2 -1
- package/lib/certificate/index.d.ts +32 -28
- package/lib/certificate/index.js +11 -11
- package/lib/index.d.ts +4 -0
- package/lib/index.js +5 -1
- package/lib/provider/index.d.ts +8 -4
- package/lib/provider/index.js +5 -5
- package/lib/registration/index.d.ts +12 -8
- package/lib/registration/index.js +6 -6
- package/package.json +9 -9
- package/scripts/check-for-upgrades.js +4 -0
- package/scripts/should-release.js +4 -0
- package/API.md +0 -6
- package/docs/API.csharp.md +0 -6
- package/docs/API.go.md +0 -6
- package/docs/API.java.md +0 -6
- package/docs/API.python.md +0 -6
- package/docs/API.typescript.md +0 -6
- package/docs/certificate.csharp.md +0 -3358
- package/docs/certificate.go.md +0 -3358
- package/docs/certificate.java.md +0 -3627
- package/docs/certificate.python.md +0 -3806
- package/docs/certificate.typescript.md +0 -3319
- package/docs/provider.csharp.md +0 -417
- package/docs/provider.go.md +0 -417
- package/docs/provider.java.md +0 -433
- package/docs/provider.python.md +0 -446
- package/docs/provider.typescript.md +0 -414
- package/docs/registration.csharp.md +0 -1143
- package/docs/registration.go.md +0 -1143
- package/docs/registration.java.md +0 -1246
- package/docs/registration.python.md +0 -1309
- package/docs/registration.typescript.md +0 -1128
package/docs/registration.go.md
DELETED
|
@@ -1,1143 +0,0 @@
|
|
|
1
|
-
# `acme_registration`
|
|
2
|
-
|
|
3
|
-
Refer to the Terraform Registory for docs: [`acme_registration`](https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration).
|
|
4
|
-
|
|
5
|
-
# `registration` Submodule <a name="`registration` Submodule" id="@cdktf/provider-acme.registration"></a>
|
|
6
|
-
|
|
7
|
-
## Constructs <a name="Constructs" id="Constructs"></a>
|
|
8
|
-
|
|
9
|
-
### Registration <a name="Registration" id="@cdktf/provider-acme.registration.Registration"></a>
|
|
10
|
-
|
|
11
|
-
Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration acme_registration}.
|
|
12
|
-
|
|
13
|
-
#### Initializers <a name="Initializers" id="@cdktf/provider-acme.registration.Registration.Initializer"></a>
|
|
14
|
-
|
|
15
|
-
```go
|
|
16
|
-
import "github.com/cdktf/cdktf-provider-acme-go/acme/v6/registration"
|
|
17
|
-
|
|
18
|
-
registration.NewRegistration(scope Construct, id *string, config RegistrationConfig) Registration
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
| **Name** | **Type** | **Description** |
|
|
22
|
-
| --- | --- | --- |
|
|
23
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.Initializer.parameter.scope">scope</a></code> | <code>github.com/aws/constructs-go/constructs/v10.Construct</code> | The scope in which to define this construct. |
|
|
24
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.Initializer.parameter.id">id</a></code> | <code>*string</code> | The scoped construct ID. |
|
|
25
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.Initializer.parameter.config">config</a></code> | <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig">RegistrationConfig</a></code> | *No description.* |
|
|
26
|
-
|
|
27
|
-
---
|
|
28
|
-
|
|
29
|
-
##### `scope`<sup>Required</sup> <a name="scope" id="@cdktf/provider-acme.registration.Registration.Initializer.parameter.scope"></a>
|
|
30
|
-
|
|
31
|
-
- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
|
|
32
|
-
|
|
33
|
-
The scope in which to define this construct.
|
|
34
|
-
|
|
35
|
-
---
|
|
36
|
-
|
|
37
|
-
##### `id`<sup>Required</sup> <a name="id" id="@cdktf/provider-acme.registration.Registration.Initializer.parameter.id"></a>
|
|
38
|
-
|
|
39
|
-
- *Type:* *string
|
|
40
|
-
|
|
41
|
-
The scoped construct ID.
|
|
42
|
-
|
|
43
|
-
Must be unique amongst siblings in the same scope
|
|
44
|
-
|
|
45
|
-
---
|
|
46
|
-
|
|
47
|
-
##### `config`<sup>Required</sup> <a name="config" id="@cdktf/provider-acme.registration.Registration.Initializer.parameter.config"></a>
|
|
48
|
-
|
|
49
|
-
- *Type:* <a href="#@cdktf/provider-acme.registration.RegistrationConfig">RegistrationConfig</a>
|
|
50
|
-
|
|
51
|
-
---
|
|
52
|
-
|
|
53
|
-
#### Methods <a name="Methods" id="Methods"></a>
|
|
54
|
-
|
|
55
|
-
| **Name** | **Description** |
|
|
56
|
-
| --- | --- |
|
|
57
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.toString">ToString</a></code> | Returns a string representation of this construct. |
|
|
58
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.addOverride">AddOverride</a></code> | *No description.* |
|
|
59
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.overrideLogicalId">OverrideLogicalId</a></code> | Overrides the auto-generated logical ID with a specific ID. |
|
|
60
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.resetOverrideLogicalId">ResetOverrideLogicalId</a></code> | Resets a previously passed logical Id to use the auto-generated logical id again. |
|
|
61
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.toMetadata">ToMetadata</a></code> | *No description.* |
|
|
62
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.toTerraform">ToTerraform</a></code> | Adds this resource to the terraform JSON output. |
|
|
63
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.getAnyMapAttribute">GetAnyMapAttribute</a></code> | *No description.* |
|
|
64
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.getBooleanAttribute">GetBooleanAttribute</a></code> | *No description.* |
|
|
65
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.getBooleanMapAttribute">GetBooleanMapAttribute</a></code> | *No description.* |
|
|
66
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.getListAttribute">GetListAttribute</a></code> | *No description.* |
|
|
67
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.getNumberAttribute">GetNumberAttribute</a></code> | *No description.* |
|
|
68
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.getNumberListAttribute">GetNumberListAttribute</a></code> | *No description.* |
|
|
69
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.getNumberMapAttribute">GetNumberMapAttribute</a></code> | *No description.* |
|
|
70
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.getStringAttribute">GetStringAttribute</a></code> | *No description.* |
|
|
71
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.getStringMapAttribute">GetStringMapAttribute</a></code> | *No description.* |
|
|
72
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.interpolationForAttribute">InterpolationForAttribute</a></code> | *No description.* |
|
|
73
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.putExternalAccountBinding">PutExternalAccountBinding</a></code> | *No description.* |
|
|
74
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.resetExternalAccountBinding">ResetExternalAccountBinding</a></code> | *No description.* |
|
|
75
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.resetId">ResetId</a></code> | *No description.* |
|
|
76
|
-
|
|
77
|
-
---
|
|
78
|
-
|
|
79
|
-
##### `ToString` <a name="ToString" id="@cdktf/provider-acme.registration.Registration.toString"></a>
|
|
80
|
-
|
|
81
|
-
```go
|
|
82
|
-
func ToString() *string
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
Returns a string representation of this construct.
|
|
86
|
-
|
|
87
|
-
##### `AddOverride` <a name="AddOverride" id="@cdktf/provider-acme.registration.Registration.addOverride"></a>
|
|
88
|
-
|
|
89
|
-
```go
|
|
90
|
-
func AddOverride(path *string, value interface{})
|
|
91
|
-
```
|
|
92
|
-
|
|
93
|
-
###### `path`<sup>Required</sup> <a name="path" id="@cdktf/provider-acme.registration.Registration.addOverride.parameter.path"></a>
|
|
94
|
-
|
|
95
|
-
- *Type:* *string
|
|
96
|
-
|
|
97
|
-
---
|
|
98
|
-
|
|
99
|
-
###### `value`<sup>Required</sup> <a name="value" id="@cdktf/provider-acme.registration.Registration.addOverride.parameter.value"></a>
|
|
100
|
-
|
|
101
|
-
- *Type:* interface{}
|
|
102
|
-
|
|
103
|
-
---
|
|
104
|
-
|
|
105
|
-
##### `OverrideLogicalId` <a name="OverrideLogicalId" id="@cdktf/provider-acme.registration.Registration.overrideLogicalId"></a>
|
|
106
|
-
|
|
107
|
-
```go
|
|
108
|
-
func OverrideLogicalId(newLogicalId *string)
|
|
109
|
-
```
|
|
110
|
-
|
|
111
|
-
Overrides the auto-generated logical ID with a specific ID.
|
|
112
|
-
|
|
113
|
-
###### `newLogicalId`<sup>Required</sup> <a name="newLogicalId" id="@cdktf/provider-acme.registration.Registration.overrideLogicalId.parameter.newLogicalId"></a>
|
|
114
|
-
|
|
115
|
-
- *Type:* *string
|
|
116
|
-
|
|
117
|
-
The new logical ID to use for this stack element.
|
|
118
|
-
|
|
119
|
-
---
|
|
120
|
-
|
|
121
|
-
##### `ResetOverrideLogicalId` <a name="ResetOverrideLogicalId" id="@cdktf/provider-acme.registration.Registration.resetOverrideLogicalId"></a>
|
|
122
|
-
|
|
123
|
-
```go
|
|
124
|
-
func ResetOverrideLogicalId()
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
Resets a previously passed logical Id to use the auto-generated logical id again.
|
|
128
|
-
|
|
129
|
-
##### `ToMetadata` <a name="ToMetadata" id="@cdktf/provider-acme.registration.Registration.toMetadata"></a>
|
|
130
|
-
|
|
131
|
-
```go
|
|
132
|
-
func ToMetadata() interface{}
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
##### `ToTerraform` <a name="ToTerraform" id="@cdktf/provider-acme.registration.Registration.toTerraform"></a>
|
|
136
|
-
|
|
137
|
-
```go
|
|
138
|
-
func ToTerraform() interface{}
|
|
139
|
-
```
|
|
140
|
-
|
|
141
|
-
Adds this resource to the terraform JSON output.
|
|
142
|
-
|
|
143
|
-
##### `GetAnyMapAttribute` <a name="GetAnyMapAttribute" id="@cdktf/provider-acme.registration.Registration.getAnyMapAttribute"></a>
|
|
144
|
-
|
|
145
|
-
```go
|
|
146
|
-
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.getAnyMapAttribute.parameter.terraformAttribute"></a>
|
|
150
|
-
|
|
151
|
-
- *Type:* *string
|
|
152
|
-
|
|
153
|
-
---
|
|
154
|
-
|
|
155
|
-
##### `GetBooleanAttribute` <a name="GetBooleanAttribute" id="@cdktf/provider-acme.registration.Registration.getBooleanAttribute"></a>
|
|
156
|
-
|
|
157
|
-
```go
|
|
158
|
-
func GetBooleanAttribute(terraformAttribute *string) IResolvable
|
|
159
|
-
```
|
|
160
|
-
|
|
161
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.getBooleanAttribute.parameter.terraformAttribute"></a>
|
|
162
|
-
|
|
163
|
-
- *Type:* *string
|
|
164
|
-
|
|
165
|
-
---
|
|
166
|
-
|
|
167
|
-
##### `GetBooleanMapAttribute` <a name="GetBooleanMapAttribute" id="@cdktf/provider-acme.registration.Registration.getBooleanMapAttribute"></a>
|
|
168
|
-
|
|
169
|
-
```go
|
|
170
|
-
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
|
|
171
|
-
```
|
|
172
|
-
|
|
173
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.getBooleanMapAttribute.parameter.terraformAttribute"></a>
|
|
174
|
-
|
|
175
|
-
- *Type:* *string
|
|
176
|
-
|
|
177
|
-
---
|
|
178
|
-
|
|
179
|
-
##### `GetListAttribute` <a name="GetListAttribute" id="@cdktf/provider-acme.registration.Registration.getListAttribute"></a>
|
|
180
|
-
|
|
181
|
-
```go
|
|
182
|
-
func GetListAttribute(terraformAttribute *string) *[]*string
|
|
183
|
-
```
|
|
184
|
-
|
|
185
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.getListAttribute.parameter.terraformAttribute"></a>
|
|
186
|
-
|
|
187
|
-
- *Type:* *string
|
|
188
|
-
|
|
189
|
-
---
|
|
190
|
-
|
|
191
|
-
##### `GetNumberAttribute` <a name="GetNumberAttribute" id="@cdktf/provider-acme.registration.Registration.getNumberAttribute"></a>
|
|
192
|
-
|
|
193
|
-
```go
|
|
194
|
-
func GetNumberAttribute(terraformAttribute *string) *f64
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.getNumberAttribute.parameter.terraformAttribute"></a>
|
|
198
|
-
|
|
199
|
-
- *Type:* *string
|
|
200
|
-
|
|
201
|
-
---
|
|
202
|
-
|
|
203
|
-
##### `GetNumberListAttribute` <a name="GetNumberListAttribute" id="@cdktf/provider-acme.registration.Registration.getNumberListAttribute"></a>
|
|
204
|
-
|
|
205
|
-
```go
|
|
206
|
-
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
|
|
207
|
-
```
|
|
208
|
-
|
|
209
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.getNumberListAttribute.parameter.terraformAttribute"></a>
|
|
210
|
-
|
|
211
|
-
- *Type:* *string
|
|
212
|
-
|
|
213
|
-
---
|
|
214
|
-
|
|
215
|
-
##### `GetNumberMapAttribute` <a name="GetNumberMapAttribute" id="@cdktf/provider-acme.registration.Registration.getNumberMapAttribute"></a>
|
|
216
|
-
|
|
217
|
-
```go
|
|
218
|
-
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
|
|
219
|
-
```
|
|
220
|
-
|
|
221
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.getNumberMapAttribute.parameter.terraformAttribute"></a>
|
|
222
|
-
|
|
223
|
-
- *Type:* *string
|
|
224
|
-
|
|
225
|
-
---
|
|
226
|
-
|
|
227
|
-
##### `GetStringAttribute` <a name="GetStringAttribute" id="@cdktf/provider-acme.registration.Registration.getStringAttribute"></a>
|
|
228
|
-
|
|
229
|
-
```go
|
|
230
|
-
func GetStringAttribute(terraformAttribute *string) *string
|
|
231
|
-
```
|
|
232
|
-
|
|
233
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.getStringAttribute.parameter.terraformAttribute"></a>
|
|
234
|
-
|
|
235
|
-
- *Type:* *string
|
|
236
|
-
|
|
237
|
-
---
|
|
238
|
-
|
|
239
|
-
##### `GetStringMapAttribute` <a name="GetStringMapAttribute" id="@cdktf/provider-acme.registration.Registration.getStringMapAttribute"></a>
|
|
240
|
-
|
|
241
|
-
```go
|
|
242
|
-
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
|
|
243
|
-
```
|
|
244
|
-
|
|
245
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.getStringMapAttribute.parameter.terraformAttribute"></a>
|
|
246
|
-
|
|
247
|
-
- *Type:* *string
|
|
248
|
-
|
|
249
|
-
---
|
|
250
|
-
|
|
251
|
-
##### `InterpolationForAttribute` <a name="InterpolationForAttribute" id="@cdktf/provider-acme.registration.Registration.interpolationForAttribute"></a>
|
|
252
|
-
|
|
253
|
-
```go
|
|
254
|
-
func InterpolationForAttribute(terraformAttribute *string) IResolvable
|
|
255
|
-
```
|
|
256
|
-
|
|
257
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.Registration.interpolationForAttribute.parameter.terraformAttribute"></a>
|
|
258
|
-
|
|
259
|
-
- *Type:* *string
|
|
260
|
-
|
|
261
|
-
---
|
|
262
|
-
|
|
263
|
-
##### `PutExternalAccountBinding` <a name="PutExternalAccountBinding" id="@cdktf/provider-acme.registration.Registration.putExternalAccountBinding"></a>
|
|
264
|
-
|
|
265
|
-
```go
|
|
266
|
-
func PutExternalAccountBinding(value RegistrationExternalAccountBinding)
|
|
267
|
-
```
|
|
268
|
-
|
|
269
|
-
###### `value`<sup>Required</sup> <a name="value" id="@cdktf/provider-acme.registration.Registration.putExternalAccountBinding.parameter.value"></a>
|
|
270
|
-
|
|
271
|
-
- *Type:* <a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBinding">RegistrationExternalAccountBinding</a>
|
|
272
|
-
|
|
273
|
-
---
|
|
274
|
-
|
|
275
|
-
##### `ResetExternalAccountBinding` <a name="ResetExternalAccountBinding" id="@cdktf/provider-acme.registration.Registration.resetExternalAccountBinding"></a>
|
|
276
|
-
|
|
277
|
-
```go
|
|
278
|
-
func ResetExternalAccountBinding()
|
|
279
|
-
```
|
|
280
|
-
|
|
281
|
-
##### `ResetId` <a name="ResetId" id="@cdktf/provider-acme.registration.Registration.resetId"></a>
|
|
282
|
-
|
|
283
|
-
```go
|
|
284
|
-
func ResetId()
|
|
285
|
-
```
|
|
286
|
-
|
|
287
|
-
#### Static Functions <a name="Static Functions" id="Static Functions"></a>
|
|
288
|
-
|
|
289
|
-
| **Name** | **Description** |
|
|
290
|
-
| --- | --- |
|
|
291
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.isConstruct">IsConstruct</a></code> | Checks if `x` is a construct. |
|
|
292
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.isTerraformElement">IsTerraformElement</a></code> | *No description.* |
|
|
293
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.isTerraformResource">IsTerraformResource</a></code> | *No description.* |
|
|
294
|
-
|
|
295
|
-
---
|
|
296
|
-
|
|
297
|
-
##### `IsConstruct` <a name="IsConstruct" id="@cdktf/provider-acme.registration.Registration.isConstruct"></a>
|
|
298
|
-
|
|
299
|
-
```go
|
|
300
|
-
import "github.com/cdktf/cdktf-provider-acme-go/acme/v6/registration"
|
|
301
|
-
|
|
302
|
-
registration.Registration_IsConstruct(x interface{}) *bool
|
|
303
|
-
```
|
|
304
|
-
|
|
305
|
-
Checks if `x` is a construct.
|
|
306
|
-
|
|
307
|
-
Use this method instead of `instanceof` to properly detect `Construct`
|
|
308
|
-
instances, even when the construct library is symlinked.
|
|
309
|
-
|
|
310
|
-
Explanation: in JavaScript, multiple copies of the `constructs` library on
|
|
311
|
-
disk are seen as independent, completely different libraries. As a
|
|
312
|
-
consequence, the class `Construct` in each copy of the `constructs` library
|
|
313
|
-
is seen as a different class, and an instance of one class will not test as
|
|
314
|
-
`instanceof` the other class. `npm install` will not create installations
|
|
315
|
-
like this, but users may manually symlink construct libraries together or
|
|
316
|
-
use a monorepo tool: in those cases, multiple copies of the `constructs`
|
|
317
|
-
library can be accidentally installed, and `instanceof` will behave
|
|
318
|
-
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
319
|
-
this type-testing method instead.
|
|
320
|
-
|
|
321
|
-
###### `x`<sup>Required</sup> <a name="x" id="@cdktf/provider-acme.registration.Registration.isConstruct.parameter.x"></a>
|
|
322
|
-
|
|
323
|
-
- *Type:* interface{}
|
|
324
|
-
|
|
325
|
-
Any object.
|
|
326
|
-
|
|
327
|
-
---
|
|
328
|
-
|
|
329
|
-
##### `IsTerraformElement` <a name="IsTerraformElement" id="@cdktf/provider-acme.registration.Registration.isTerraformElement"></a>
|
|
330
|
-
|
|
331
|
-
```go
|
|
332
|
-
import "github.com/cdktf/cdktf-provider-acme-go/acme/v6/registration"
|
|
333
|
-
|
|
334
|
-
registration.Registration_IsTerraformElement(x interface{}) *bool
|
|
335
|
-
```
|
|
336
|
-
|
|
337
|
-
###### `x`<sup>Required</sup> <a name="x" id="@cdktf/provider-acme.registration.Registration.isTerraformElement.parameter.x"></a>
|
|
338
|
-
|
|
339
|
-
- *Type:* interface{}
|
|
340
|
-
|
|
341
|
-
---
|
|
342
|
-
|
|
343
|
-
##### `IsTerraformResource` <a name="IsTerraformResource" id="@cdktf/provider-acme.registration.Registration.isTerraformResource"></a>
|
|
344
|
-
|
|
345
|
-
```go
|
|
346
|
-
import "github.com/cdktf/cdktf-provider-acme-go/acme/v6/registration"
|
|
347
|
-
|
|
348
|
-
registration.Registration_IsTerraformResource(x interface{}) *bool
|
|
349
|
-
```
|
|
350
|
-
|
|
351
|
-
###### `x`<sup>Required</sup> <a name="x" id="@cdktf/provider-acme.registration.Registration.isTerraformResource.parameter.x"></a>
|
|
352
|
-
|
|
353
|
-
- *Type:* interface{}
|
|
354
|
-
|
|
355
|
-
---
|
|
356
|
-
|
|
357
|
-
#### Properties <a name="Properties" id="Properties"></a>
|
|
358
|
-
|
|
359
|
-
| **Name** | **Type** | **Description** |
|
|
360
|
-
| --- | --- | --- |
|
|
361
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.node">Node</a></code> | <code>github.com/aws/constructs-go/constructs/v10.Node</code> | The tree node. |
|
|
362
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.cdktfStack">CdktfStack</a></code> | <code>github.com/hashicorp/terraform-cdk-go/cdktf.TerraformStack</code> | *No description.* |
|
|
363
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.fqn">Fqn</a></code> | <code>*string</code> | *No description.* |
|
|
364
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.friendlyUniqueId">FriendlyUniqueId</a></code> | <code>*string</code> | *No description.* |
|
|
365
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.terraformMetaArguments">TerraformMetaArguments</a></code> | <code>*map[string]interface{}</code> | *No description.* |
|
|
366
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.terraformResourceType">TerraformResourceType</a></code> | <code>*string</code> | *No description.* |
|
|
367
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.terraformGeneratorMetadata">TerraformGeneratorMetadata</a></code> | <code>github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata</code> | *No description.* |
|
|
368
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.connection">Connection</a></code> | <code>interface{}</code> | *No description.* |
|
|
369
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.count">Count</a></code> | <code>interface{}</code> | *No description.* |
|
|
370
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.dependsOn">DependsOn</a></code> | <code>*[]*string</code> | *No description.* |
|
|
371
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.forEach">ForEach</a></code> | <code>github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator</code> | *No description.* |
|
|
372
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.lifecycle">Lifecycle</a></code> | <code>github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle</code> | *No description.* |
|
|
373
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.provider">Provider</a></code> | <code>github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider</code> | *No description.* |
|
|
374
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.provisioners">Provisioners</a></code> | <code>*[]interface{}</code> | *No description.* |
|
|
375
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.externalAccountBinding">ExternalAccountBinding</a></code> | <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference">RegistrationExternalAccountBindingOutputReference</a></code> | *No description.* |
|
|
376
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.registrationUrl">RegistrationUrl</a></code> | <code>*string</code> | *No description.* |
|
|
377
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.accountKeyPemInput">AccountKeyPemInput</a></code> | <code>*string</code> | *No description.* |
|
|
378
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.emailAddressInput">EmailAddressInput</a></code> | <code>*string</code> | *No description.* |
|
|
379
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.externalAccountBindingInput">ExternalAccountBindingInput</a></code> | <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBinding">RegistrationExternalAccountBinding</a></code> | *No description.* |
|
|
380
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.idInput">IdInput</a></code> | <code>*string</code> | *No description.* |
|
|
381
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.accountKeyPem">AccountKeyPem</a></code> | <code>*string</code> | *No description.* |
|
|
382
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.emailAddress">EmailAddress</a></code> | <code>*string</code> | *No description.* |
|
|
383
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.id">Id</a></code> | <code>*string</code> | *No description.* |
|
|
384
|
-
|
|
385
|
-
---
|
|
386
|
-
|
|
387
|
-
##### `Node`<sup>Required</sup> <a name="Node" id="@cdktf/provider-acme.registration.Registration.property.node"></a>
|
|
388
|
-
|
|
389
|
-
```go
|
|
390
|
-
func Node() Node
|
|
391
|
-
```
|
|
392
|
-
|
|
393
|
-
- *Type:* github.com/aws/constructs-go/constructs/v10.Node
|
|
394
|
-
|
|
395
|
-
The tree node.
|
|
396
|
-
|
|
397
|
-
---
|
|
398
|
-
|
|
399
|
-
##### `CdktfStack`<sup>Required</sup> <a name="CdktfStack" id="@cdktf/provider-acme.registration.Registration.property.cdktfStack"></a>
|
|
400
|
-
|
|
401
|
-
```go
|
|
402
|
-
func CdktfStack() TerraformStack
|
|
403
|
-
```
|
|
404
|
-
|
|
405
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformStack
|
|
406
|
-
|
|
407
|
-
---
|
|
408
|
-
|
|
409
|
-
##### `Fqn`<sup>Required</sup> <a name="Fqn" id="@cdktf/provider-acme.registration.Registration.property.fqn"></a>
|
|
410
|
-
|
|
411
|
-
```go
|
|
412
|
-
func Fqn() *string
|
|
413
|
-
```
|
|
414
|
-
|
|
415
|
-
- *Type:* *string
|
|
416
|
-
|
|
417
|
-
---
|
|
418
|
-
|
|
419
|
-
##### `FriendlyUniqueId`<sup>Required</sup> <a name="FriendlyUniqueId" id="@cdktf/provider-acme.registration.Registration.property.friendlyUniqueId"></a>
|
|
420
|
-
|
|
421
|
-
```go
|
|
422
|
-
func FriendlyUniqueId() *string
|
|
423
|
-
```
|
|
424
|
-
|
|
425
|
-
- *Type:* *string
|
|
426
|
-
|
|
427
|
-
---
|
|
428
|
-
|
|
429
|
-
##### `TerraformMetaArguments`<sup>Required</sup> <a name="TerraformMetaArguments" id="@cdktf/provider-acme.registration.Registration.property.terraformMetaArguments"></a>
|
|
430
|
-
|
|
431
|
-
```go
|
|
432
|
-
func TerraformMetaArguments() *map[string]interface{}
|
|
433
|
-
```
|
|
434
|
-
|
|
435
|
-
- *Type:* *map[string]interface{}
|
|
436
|
-
|
|
437
|
-
---
|
|
438
|
-
|
|
439
|
-
##### `TerraformResourceType`<sup>Required</sup> <a name="TerraformResourceType" id="@cdktf/provider-acme.registration.Registration.property.terraformResourceType"></a>
|
|
440
|
-
|
|
441
|
-
```go
|
|
442
|
-
func TerraformResourceType() *string
|
|
443
|
-
```
|
|
444
|
-
|
|
445
|
-
- *Type:* *string
|
|
446
|
-
|
|
447
|
-
---
|
|
448
|
-
|
|
449
|
-
##### `TerraformGeneratorMetadata`<sup>Optional</sup> <a name="TerraformGeneratorMetadata" id="@cdktf/provider-acme.registration.Registration.property.terraformGeneratorMetadata"></a>
|
|
450
|
-
|
|
451
|
-
```go
|
|
452
|
-
func TerraformGeneratorMetadata() TerraformProviderGeneratorMetadata
|
|
453
|
-
```
|
|
454
|
-
|
|
455
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata
|
|
456
|
-
|
|
457
|
-
---
|
|
458
|
-
|
|
459
|
-
##### `Connection`<sup>Optional</sup> <a name="Connection" id="@cdktf/provider-acme.registration.Registration.property.connection"></a>
|
|
460
|
-
|
|
461
|
-
```go
|
|
462
|
-
func Connection() interface{}
|
|
463
|
-
```
|
|
464
|
-
|
|
465
|
-
- *Type:* interface{}
|
|
466
|
-
|
|
467
|
-
---
|
|
468
|
-
|
|
469
|
-
##### `Count`<sup>Optional</sup> <a name="Count" id="@cdktf/provider-acme.registration.Registration.property.count"></a>
|
|
470
|
-
|
|
471
|
-
```go
|
|
472
|
-
func Count() interface{}
|
|
473
|
-
```
|
|
474
|
-
|
|
475
|
-
- *Type:* interface{}
|
|
476
|
-
|
|
477
|
-
---
|
|
478
|
-
|
|
479
|
-
##### `DependsOn`<sup>Optional</sup> <a name="DependsOn" id="@cdktf/provider-acme.registration.Registration.property.dependsOn"></a>
|
|
480
|
-
|
|
481
|
-
```go
|
|
482
|
-
func DependsOn() *[]*string
|
|
483
|
-
```
|
|
484
|
-
|
|
485
|
-
- *Type:* *[]*string
|
|
486
|
-
|
|
487
|
-
---
|
|
488
|
-
|
|
489
|
-
##### `ForEach`<sup>Optional</sup> <a name="ForEach" id="@cdktf/provider-acme.registration.Registration.property.forEach"></a>
|
|
490
|
-
|
|
491
|
-
```go
|
|
492
|
-
func ForEach() ITerraformIterator
|
|
493
|
-
```
|
|
494
|
-
|
|
495
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator
|
|
496
|
-
|
|
497
|
-
---
|
|
498
|
-
|
|
499
|
-
##### `Lifecycle`<sup>Optional</sup> <a name="Lifecycle" id="@cdktf/provider-acme.registration.Registration.property.lifecycle"></a>
|
|
500
|
-
|
|
501
|
-
```go
|
|
502
|
-
func Lifecycle() TerraformResourceLifecycle
|
|
503
|
-
```
|
|
504
|
-
|
|
505
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle
|
|
506
|
-
|
|
507
|
-
---
|
|
508
|
-
|
|
509
|
-
##### `Provider`<sup>Optional</sup> <a name="Provider" id="@cdktf/provider-acme.registration.Registration.property.provider"></a>
|
|
510
|
-
|
|
511
|
-
```go
|
|
512
|
-
func Provider() TerraformProvider
|
|
513
|
-
```
|
|
514
|
-
|
|
515
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
|
|
516
|
-
|
|
517
|
-
---
|
|
518
|
-
|
|
519
|
-
##### `Provisioners`<sup>Optional</sup> <a name="Provisioners" id="@cdktf/provider-acme.registration.Registration.property.provisioners"></a>
|
|
520
|
-
|
|
521
|
-
```go
|
|
522
|
-
func Provisioners() *[]interface{}
|
|
523
|
-
```
|
|
524
|
-
|
|
525
|
-
- *Type:* *[]interface{}
|
|
526
|
-
|
|
527
|
-
---
|
|
528
|
-
|
|
529
|
-
##### `ExternalAccountBinding`<sup>Required</sup> <a name="ExternalAccountBinding" id="@cdktf/provider-acme.registration.Registration.property.externalAccountBinding"></a>
|
|
530
|
-
|
|
531
|
-
```go
|
|
532
|
-
func ExternalAccountBinding() RegistrationExternalAccountBindingOutputReference
|
|
533
|
-
```
|
|
534
|
-
|
|
535
|
-
- *Type:* <a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference">RegistrationExternalAccountBindingOutputReference</a>
|
|
536
|
-
|
|
537
|
-
---
|
|
538
|
-
|
|
539
|
-
##### `RegistrationUrl`<sup>Required</sup> <a name="RegistrationUrl" id="@cdktf/provider-acme.registration.Registration.property.registrationUrl"></a>
|
|
540
|
-
|
|
541
|
-
```go
|
|
542
|
-
func RegistrationUrl() *string
|
|
543
|
-
```
|
|
544
|
-
|
|
545
|
-
- *Type:* *string
|
|
546
|
-
|
|
547
|
-
---
|
|
548
|
-
|
|
549
|
-
##### `AccountKeyPemInput`<sup>Optional</sup> <a name="AccountKeyPemInput" id="@cdktf/provider-acme.registration.Registration.property.accountKeyPemInput"></a>
|
|
550
|
-
|
|
551
|
-
```go
|
|
552
|
-
func AccountKeyPemInput() *string
|
|
553
|
-
```
|
|
554
|
-
|
|
555
|
-
- *Type:* *string
|
|
556
|
-
|
|
557
|
-
---
|
|
558
|
-
|
|
559
|
-
##### `EmailAddressInput`<sup>Optional</sup> <a name="EmailAddressInput" id="@cdktf/provider-acme.registration.Registration.property.emailAddressInput"></a>
|
|
560
|
-
|
|
561
|
-
```go
|
|
562
|
-
func EmailAddressInput() *string
|
|
563
|
-
```
|
|
564
|
-
|
|
565
|
-
- *Type:* *string
|
|
566
|
-
|
|
567
|
-
---
|
|
568
|
-
|
|
569
|
-
##### `ExternalAccountBindingInput`<sup>Optional</sup> <a name="ExternalAccountBindingInput" id="@cdktf/provider-acme.registration.Registration.property.externalAccountBindingInput"></a>
|
|
570
|
-
|
|
571
|
-
```go
|
|
572
|
-
func ExternalAccountBindingInput() RegistrationExternalAccountBinding
|
|
573
|
-
```
|
|
574
|
-
|
|
575
|
-
- *Type:* <a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBinding">RegistrationExternalAccountBinding</a>
|
|
576
|
-
|
|
577
|
-
---
|
|
578
|
-
|
|
579
|
-
##### `IdInput`<sup>Optional</sup> <a name="IdInput" id="@cdktf/provider-acme.registration.Registration.property.idInput"></a>
|
|
580
|
-
|
|
581
|
-
```go
|
|
582
|
-
func IdInput() *string
|
|
583
|
-
```
|
|
584
|
-
|
|
585
|
-
- *Type:* *string
|
|
586
|
-
|
|
587
|
-
---
|
|
588
|
-
|
|
589
|
-
##### `AccountKeyPem`<sup>Required</sup> <a name="AccountKeyPem" id="@cdktf/provider-acme.registration.Registration.property.accountKeyPem"></a>
|
|
590
|
-
|
|
591
|
-
```go
|
|
592
|
-
func AccountKeyPem() *string
|
|
593
|
-
```
|
|
594
|
-
|
|
595
|
-
- *Type:* *string
|
|
596
|
-
|
|
597
|
-
---
|
|
598
|
-
|
|
599
|
-
##### `EmailAddress`<sup>Required</sup> <a name="EmailAddress" id="@cdktf/provider-acme.registration.Registration.property.emailAddress"></a>
|
|
600
|
-
|
|
601
|
-
```go
|
|
602
|
-
func EmailAddress() *string
|
|
603
|
-
```
|
|
604
|
-
|
|
605
|
-
- *Type:* *string
|
|
606
|
-
|
|
607
|
-
---
|
|
608
|
-
|
|
609
|
-
##### `Id`<sup>Required</sup> <a name="Id" id="@cdktf/provider-acme.registration.Registration.property.id"></a>
|
|
610
|
-
|
|
611
|
-
```go
|
|
612
|
-
func Id() *string
|
|
613
|
-
```
|
|
614
|
-
|
|
615
|
-
- *Type:* *string
|
|
616
|
-
|
|
617
|
-
---
|
|
618
|
-
|
|
619
|
-
#### Constants <a name="Constants" id="Constants"></a>
|
|
620
|
-
|
|
621
|
-
| **Name** | **Type** | **Description** |
|
|
622
|
-
| --- | --- | --- |
|
|
623
|
-
| <code><a href="#@cdktf/provider-acme.registration.Registration.property.tfResourceType">TfResourceType</a></code> | <code>*string</code> | *No description.* |
|
|
624
|
-
|
|
625
|
-
---
|
|
626
|
-
|
|
627
|
-
##### `TfResourceType`<sup>Required</sup> <a name="TfResourceType" id="@cdktf/provider-acme.registration.Registration.property.tfResourceType"></a>
|
|
628
|
-
|
|
629
|
-
```go
|
|
630
|
-
func TfResourceType() *string
|
|
631
|
-
```
|
|
632
|
-
|
|
633
|
-
- *Type:* *string
|
|
634
|
-
|
|
635
|
-
---
|
|
636
|
-
|
|
637
|
-
## Structs <a name="Structs" id="Structs"></a>
|
|
638
|
-
|
|
639
|
-
### RegistrationConfig <a name="RegistrationConfig" id="@cdktf/provider-acme.registration.RegistrationConfig"></a>
|
|
640
|
-
|
|
641
|
-
#### Initializer <a name="Initializer" id="@cdktf/provider-acme.registration.RegistrationConfig.Initializer"></a>
|
|
642
|
-
|
|
643
|
-
```go
|
|
644
|
-
import "github.com/cdktf/cdktf-provider-acme-go/acme/v6/registration"
|
|
645
|
-
|
|
646
|
-
®istration.RegistrationConfig {
|
|
647
|
-
Connection: interface{},
|
|
648
|
-
Count: interface{},
|
|
649
|
-
DependsOn: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable,
|
|
650
|
-
ForEach: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator,
|
|
651
|
-
Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle,
|
|
652
|
-
Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider,
|
|
653
|
-
Provisioners: *[]interface{},
|
|
654
|
-
AccountKeyPem: *string,
|
|
655
|
-
EmailAddress: *string,
|
|
656
|
-
ExternalAccountBinding: github.com/cdktf/cdktf-provider-acme-go/acme/v6.registration.RegistrationExternalAccountBinding,
|
|
657
|
-
Id: *string,
|
|
658
|
-
}
|
|
659
|
-
```
|
|
660
|
-
|
|
661
|
-
#### Properties <a name="Properties" id="Properties"></a>
|
|
662
|
-
|
|
663
|
-
| **Name** | **Type** | **Description** |
|
|
664
|
-
| --- | --- | --- |
|
|
665
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.connection">Connection</a></code> | <code>interface{}</code> | *No description.* |
|
|
666
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.count">Count</a></code> | <code>interface{}</code> | *No description.* |
|
|
667
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.dependsOn">DependsOn</a></code> | <code>*[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable</code> | *No description.* |
|
|
668
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.forEach">ForEach</a></code> | <code>github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator</code> | *No description.* |
|
|
669
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.lifecycle">Lifecycle</a></code> | <code>github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle</code> | *No description.* |
|
|
670
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.provider">Provider</a></code> | <code>github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider</code> | *No description.* |
|
|
671
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.provisioners">Provisioners</a></code> | <code>*[]interface{}</code> | *No description.* |
|
|
672
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.accountKeyPem">AccountKeyPem</a></code> | <code>*string</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#account_key_pem Registration#account_key_pem}. |
|
|
673
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.emailAddress">EmailAddress</a></code> | <code>*string</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#email_address Registration#email_address}. |
|
|
674
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.externalAccountBinding">ExternalAccountBinding</a></code> | <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBinding">RegistrationExternalAccountBinding</a></code> | external_account_binding block. |
|
|
675
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationConfig.property.id">Id</a></code> | <code>*string</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#id Registration#id}. |
|
|
676
|
-
|
|
677
|
-
---
|
|
678
|
-
|
|
679
|
-
##### `Connection`<sup>Optional</sup> <a name="Connection" id="@cdktf/provider-acme.registration.RegistrationConfig.property.connection"></a>
|
|
680
|
-
|
|
681
|
-
```go
|
|
682
|
-
Connection interface{}
|
|
683
|
-
```
|
|
684
|
-
|
|
685
|
-
- *Type:* interface{}
|
|
686
|
-
|
|
687
|
-
---
|
|
688
|
-
|
|
689
|
-
##### `Count`<sup>Optional</sup> <a name="Count" id="@cdktf/provider-acme.registration.RegistrationConfig.property.count"></a>
|
|
690
|
-
|
|
691
|
-
```go
|
|
692
|
-
Count interface{}
|
|
693
|
-
```
|
|
694
|
-
|
|
695
|
-
- *Type:* interface{}
|
|
696
|
-
|
|
697
|
-
---
|
|
698
|
-
|
|
699
|
-
##### `DependsOn`<sup>Optional</sup> <a name="DependsOn" id="@cdktf/provider-acme.registration.RegistrationConfig.property.dependsOn"></a>
|
|
700
|
-
|
|
701
|
-
```go
|
|
702
|
-
DependsOn *[]ITerraformDependable
|
|
703
|
-
```
|
|
704
|
-
|
|
705
|
-
- *Type:* *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable
|
|
706
|
-
|
|
707
|
-
---
|
|
708
|
-
|
|
709
|
-
##### `ForEach`<sup>Optional</sup> <a name="ForEach" id="@cdktf/provider-acme.registration.RegistrationConfig.property.forEach"></a>
|
|
710
|
-
|
|
711
|
-
```go
|
|
712
|
-
ForEach ITerraformIterator
|
|
713
|
-
```
|
|
714
|
-
|
|
715
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator
|
|
716
|
-
|
|
717
|
-
---
|
|
718
|
-
|
|
719
|
-
##### `Lifecycle`<sup>Optional</sup> <a name="Lifecycle" id="@cdktf/provider-acme.registration.RegistrationConfig.property.lifecycle"></a>
|
|
720
|
-
|
|
721
|
-
```go
|
|
722
|
-
Lifecycle TerraformResourceLifecycle
|
|
723
|
-
```
|
|
724
|
-
|
|
725
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle
|
|
726
|
-
|
|
727
|
-
---
|
|
728
|
-
|
|
729
|
-
##### `Provider`<sup>Optional</sup> <a name="Provider" id="@cdktf/provider-acme.registration.RegistrationConfig.property.provider"></a>
|
|
730
|
-
|
|
731
|
-
```go
|
|
732
|
-
Provider TerraformProvider
|
|
733
|
-
```
|
|
734
|
-
|
|
735
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
|
|
736
|
-
|
|
737
|
-
---
|
|
738
|
-
|
|
739
|
-
##### `Provisioners`<sup>Optional</sup> <a name="Provisioners" id="@cdktf/provider-acme.registration.RegistrationConfig.property.provisioners"></a>
|
|
740
|
-
|
|
741
|
-
```go
|
|
742
|
-
Provisioners *[]interface{}
|
|
743
|
-
```
|
|
744
|
-
|
|
745
|
-
- *Type:* *[]interface{}
|
|
746
|
-
|
|
747
|
-
---
|
|
748
|
-
|
|
749
|
-
##### `AccountKeyPem`<sup>Required</sup> <a name="AccountKeyPem" id="@cdktf/provider-acme.registration.RegistrationConfig.property.accountKeyPem"></a>
|
|
750
|
-
|
|
751
|
-
```go
|
|
752
|
-
AccountKeyPem *string
|
|
753
|
-
```
|
|
754
|
-
|
|
755
|
-
- *Type:* *string
|
|
756
|
-
|
|
757
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#account_key_pem Registration#account_key_pem}.
|
|
758
|
-
|
|
759
|
-
---
|
|
760
|
-
|
|
761
|
-
##### `EmailAddress`<sup>Required</sup> <a name="EmailAddress" id="@cdktf/provider-acme.registration.RegistrationConfig.property.emailAddress"></a>
|
|
762
|
-
|
|
763
|
-
```go
|
|
764
|
-
EmailAddress *string
|
|
765
|
-
```
|
|
766
|
-
|
|
767
|
-
- *Type:* *string
|
|
768
|
-
|
|
769
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#email_address Registration#email_address}.
|
|
770
|
-
|
|
771
|
-
---
|
|
772
|
-
|
|
773
|
-
##### `ExternalAccountBinding`<sup>Optional</sup> <a name="ExternalAccountBinding" id="@cdktf/provider-acme.registration.RegistrationConfig.property.externalAccountBinding"></a>
|
|
774
|
-
|
|
775
|
-
```go
|
|
776
|
-
ExternalAccountBinding RegistrationExternalAccountBinding
|
|
777
|
-
```
|
|
778
|
-
|
|
779
|
-
- *Type:* <a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBinding">RegistrationExternalAccountBinding</a>
|
|
780
|
-
|
|
781
|
-
external_account_binding block.
|
|
782
|
-
|
|
783
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#external_account_binding Registration#external_account_binding}
|
|
784
|
-
|
|
785
|
-
---
|
|
786
|
-
|
|
787
|
-
##### `Id`<sup>Optional</sup> <a name="Id" id="@cdktf/provider-acme.registration.RegistrationConfig.property.id"></a>
|
|
788
|
-
|
|
789
|
-
```go
|
|
790
|
-
Id *string
|
|
791
|
-
```
|
|
792
|
-
|
|
793
|
-
- *Type:* *string
|
|
794
|
-
|
|
795
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#id Registration#id}.
|
|
796
|
-
|
|
797
|
-
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
798
|
-
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.
|
|
799
|
-
|
|
800
|
-
---
|
|
801
|
-
|
|
802
|
-
### RegistrationExternalAccountBinding <a name="RegistrationExternalAccountBinding" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBinding"></a>
|
|
803
|
-
|
|
804
|
-
#### Initializer <a name="Initializer" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBinding.Initializer"></a>
|
|
805
|
-
|
|
806
|
-
```go
|
|
807
|
-
import "github.com/cdktf/cdktf-provider-acme-go/acme/v6/registration"
|
|
808
|
-
|
|
809
|
-
®istration.RegistrationExternalAccountBinding {
|
|
810
|
-
HmacBase64: *string,
|
|
811
|
-
KeyId: *string,
|
|
812
|
-
}
|
|
813
|
-
```
|
|
814
|
-
|
|
815
|
-
#### Properties <a name="Properties" id="Properties"></a>
|
|
816
|
-
|
|
817
|
-
| **Name** | **Type** | **Description** |
|
|
818
|
-
| --- | --- | --- |
|
|
819
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBinding.property.hmacBase64">HmacBase64</a></code> | <code>*string</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#hmac_base64 Registration#hmac_base64}. |
|
|
820
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBinding.property.keyId">KeyId</a></code> | <code>*string</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#key_id Registration#key_id}. |
|
|
821
|
-
|
|
822
|
-
---
|
|
823
|
-
|
|
824
|
-
##### `HmacBase64`<sup>Required</sup> <a name="HmacBase64" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBinding.property.hmacBase64"></a>
|
|
825
|
-
|
|
826
|
-
```go
|
|
827
|
-
HmacBase64 *string
|
|
828
|
-
```
|
|
829
|
-
|
|
830
|
-
- *Type:* *string
|
|
831
|
-
|
|
832
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#hmac_base64 Registration#hmac_base64}.
|
|
833
|
-
|
|
834
|
-
---
|
|
835
|
-
|
|
836
|
-
##### `KeyId`<sup>Required</sup> <a name="KeyId" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBinding.property.keyId"></a>
|
|
837
|
-
|
|
838
|
-
```go
|
|
839
|
-
KeyId *string
|
|
840
|
-
```
|
|
841
|
-
|
|
842
|
-
- *Type:* *string
|
|
843
|
-
|
|
844
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/registration#key_id Registration#key_id}.
|
|
845
|
-
|
|
846
|
-
---
|
|
847
|
-
|
|
848
|
-
## Classes <a name="Classes" id="Classes"></a>
|
|
849
|
-
|
|
850
|
-
### RegistrationExternalAccountBindingOutputReference <a name="RegistrationExternalAccountBindingOutputReference" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference"></a>
|
|
851
|
-
|
|
852
|
-
#### Initializers <a name="Initializers" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.Initializer"></a>
|
|
853
|
-
|
|
854
|
-
```go
|
|
855
|
-
import "github.com/cdktf/cdktf-provider-acme-go/acme/v6/registration"
|
|
856
|
-
|
|
857
|
-
registration.NewRegistrationExternalAccountBindingOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) RegistrationExternalAccountBindingOutputReference
|
|
858
|
-
```
|
|
859
|
-
|
|
860
|
-
| **Name** | **Type** | **Description** |
|
|
861
|
-
| --- | --- | --- |
|
|
862
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.Initializer.parameter.terraformResource">terraformResource</a></code> | <code>github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent</code> | The parent resource. |
|
|
863
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.Initializer.parameter.terraformAttribute">terraformAttribute</a></code> | <code>*string</code> | The attribute on the parent resource this class is referencing. |
|
|
864
|
-
|
|
865
|
-
---
|
|
866
|
-
|
|
867
|
-
##### `terraformResource`<sup>Required</sup> <a name="terraformResource" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.Initializer.parameter.terraformResource"></a>
|
|
868
|
-
|
|
869
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
|
|
870
|
-
|
|
871
|
-
The parent resource.
|
|
872
|
-
|
|
873
|
-
---
|
|
874
|
-
|
|
875
|
-
##### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.Initializer.parameter.terraformAttribute"></a>
|
|
876
|
-
|
|
877
|
-
- *Type:* *string
|
|
878
|
-
|
|
879
|
-
The attribute on the parent resource this class is referencing.
|
|
880
|
-
|
|
881
|
-
---
|
|
882
|
-
|
|
883
|
-
#### Methods <a name="Methods" id="Methods"></a>
|
|
884
|
-
|
|
885
|
-
| **Name** | **Description** |
|
|
886
|
-
| --- | --- |
|
|
887
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.computeFqn">ComputeFqn</a></code> | *No description.* |
|
|
888
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getAnyMapAttribute">GetAnyMapAttribute</a></code> | *No description.* |
|
|
889
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getBooleanAttribute">GetBooleanAttribute</a></code> | *No description.* |
|
|
890
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getBooleanMapAttribute">GetBooleanMapAttribute</a></code> | *No description.* |
|
|
891
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getListAttribute">GetListAttribute</a></code> | *No description.* |
|
|
892
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getNumberAttribute">GetNumberAttribute</a></code> | *No description.* |
|
|
893
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getNumberListAttribute">GetNumberListAttribute</a></code> | *No description.* |
|
|
894
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getNumberMapAttribute">GetNumberMapAttribute</a></code> | *No description.* |
|
|
895
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getStringAttribute">GetStringAttribute</a></code> | *No description.* |
|
|
896
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getStringMapAttribute">GetStringMapAttribute</a></code> | *No description.* |
|
|
897
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.interpolationForAttribute">InterpolationForAttribute</a></code> | *No description.* |
|
|
898
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.resolve">Resolve</a></code> | Produce the Token's value at resolution time. |
|
|
899
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.toString">ToString</a></code> | Return a string representation of this resolvable object. |
|
|
900
|
-
|
|
901
|
-
---
|
|
902
|
-
|
|
903
|
-
##### `ComputeFqn` <a name="ComputeFqn" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.computeFqn"></a>
|
|
904
|
-
|
|
905
|
-
```go
|
|
906
|
-
func ComputeFqn() *string
|
|
907
|
-
```
|
|
908
|
-
|
|
909
|
-
##### `GetAnyMapAttribute` <a name="GetAnyMapAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getAnyMapAttribute"></a>
|
|
910
|
-
|
|
911
|
-
```go
|
|
912
|
-
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
|
|
913
|
-
```
|
|
914
|
-
|
|
915
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getAnyMapAttribute.parameter.terraformAttribute"></a>
|
|
916
|
-
|
|
917
|
-
- *Type:* *string
|
|
918
|
-
|
|
919
|
-
---
|
|
920
|
-
|
|
921
|
-
##### `GetBooleanAttribute` <a name="GetBooleanAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getBooleanAttribute"></a>
|
|
922
|
-
|
|
923
|
-
```go
|
|
924
|
-
func GetBooleanAttribute(terraformAttribute *string) IResolvable
|
|
925
|
-
```
|
|
926
|
-
|
|
927
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getBooleanAttribute.parameter.terraformAttribute"></a>
|
|
928
|
-
|
|
929
|
-
- *Type:* *string
|
|
930
|
-
|
|
931
|
-
---
|
|
932
|
-
|
|
933
|
-
##### `GetBooleanMapAttribute` <a name="GetBooleanMapAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getBooleanMapAttribute"></a>
|
|
934
|
-
|
|
935
|
-
```go
|
|
936
|
-
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
|
|
937
|
-
```
|
|
938
|
-
|
|
939
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getBooleanMapAttribute.parameter.terraformAttribute"></a>
|
|
940
|
-
|
|
941
|
-
- *Type:* *string
|
|
942
|
-
|
|
943
|
-
---
|
|
944
|
-
|
|
945
|
-
##### `GetListAttribute` <a name="GetListAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getListAttribute"></a>
|
|
946
|
-
|
|
947
|
-
```go
|
|
948
|
-
func GetListAttribute(terraformAttribute *string) *[]*string
|
|
949
|
-
```
|
|
950
|
-
|
|
951
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getListAttribute.parameter.terraformAttribute"></a>
|
|
952
|
-
|
|
953
|
-
- *Type:* *string
|
|
954
|
-
|
|
955
|
-
---
|
|
956
|
-
|
|
957
|
-
##### `GetNumberAttribute` <a name="GetNumberAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getNumberAttribute"></a>
|
|
958
|
-
|
|
959
|
-
```go
|
|
960
|
-
func GetNumberAttribute(terraformAttribute *string) *f64
|
|
961
|
-
```
|
|
962
|
-
|
|
963
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getNumberAttribute.parameter.terraformAttribute"></a>
|
|
964
|
-
|
|
965
|
-
- *Type:* *string
|
|
966
|
-
|
|
967
|
-
---
|
|
968
|
-
|
|
969
|
-
##### `GetNumberListAttribute` <a name="GetNumberListAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getNumberListAttribute"></a>
|
|
970
|
-
|
|
971
|
-
```go
|
|
972
|
-
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
|
|
973
|
-
```
|
|
974
|
-
|
|
975
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getNumberListAttribute.parameter.terraformAttribute"></a>
|
|
976
|
-
|
|
977
|
-
- *Type:* *string
|
|
978
|
-
|
|
979
|
-
---
|
|
980
|
-
|
|
981
|
-
##### `GetNumberMapAttribute` <a name="GetNumberMapAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getNumberMapAttribute"></a>
|
|
982
|
-
|
|
983
|
-
```go
|
|
984
|
-
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
|
|
985
|
-
```
|
|
986
|
-
|
|
987
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getNumberMapAttribute.parameter.terraformAttribute"></a>
|
|
988
|
-
|
|
989
|
-
- *Type:* *string
|
|
990
|
-
|
|
991
|
-
---
|
|
992
|
-
|
|
993
|
-
##### `GetStringAttribute` <a name="GetStringAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getStringAttribute"></a>
|
|
994
|
-
|
|
995
|
-
```go
|
|
996
|
-
func GetStringAttribute(terraformAttribute *string) *string
|
|
997
|
-
```
|
|
998
|
-
|
|
999
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getStringAttribute.parameter.terraformAttribute"></a>
|
|
1000
|
-
|
|
1001
|
-
- *Type:* *string
|
|
1002
|
-
|
|
1003
|
-
---
|
|
1004
|
-
|
|
1005
|
-
##### `GetStringMapAttribute` <a name="GetStringMapAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getStringMapAttribute"></a>
|
|
1006
|
-
|
|
1007
|
-
```go
|
|
1008
|
-
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
|
|
1009
|
-
```
|
|
1010
|
-
|
|
1011
|
-
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.getStringMapAttribute.parameter.terraformAttribute"></a>
|
|
1012
|
-
|
|
1013
|
-
- *Type:* *string
|
|
1014
|
-
|
|
1015
|
-
---
|
|
1016
|
-
|
|
1017
|
-
##### `InterpolationForAttribute` <a name="InterpolationForAttribute" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.interpolationForAttribute"></a>
|
|
1018
|
-
|
|
1019
|
-
```go
|
|
1020
|
-
func InterpolationForAttribute(property *string) IResolvable
|
|
1021
|
-
```
|
|
1022
|
-
|
|
1023
|
-
###### `property`<sup>Required</sup> <a name="property" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.interpolationForAttribute.parameter.property"></a>
|
|
1024
|
-
|
|
1025
|
-
- *Type:* *string
|
|
1026
|
-
|
|
1027
|
-
---
|
|
1028
|
-
|
|
1029
|
-
##### `Resolve` <a name="Resolve" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.resolve"></a>
|
|
1030
|
-
|
|
1031
|
-
```go
|
|
1032
|
-
func Resolve(_context IResolveContext) interface{}
|
|
1033
|
-
```
|
|
1034
|
-
|
|
1035
|
-
Produce the Token's value at resolution time.
|
|
1036
|
-
|
|
1037
|
-
###### `_context`<sup>Required</sup> <a name="_context" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.resolve.parameter._context"></a>
|
|
1038
|
-
|
|
1039
|
-
- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
|
|
1040
|
-
|
|
1041
|
-
---
|
|
1042
|
-
|
|
1043
|
-
##### `ToString` <a name="ToString" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.toString"></a>
|
|
1044
|
-
|
|
1045
|
-
```go
|
|
1046
|
-
func ToString() *string
|
|
1047
|
-
```
|
|
1048
|
-
|
|
1049
|
-
Return a string representation of this resolvable object.
|
|
1050
|
-
|
|
1051
|
-
Returns a reversible string representation.
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
#### Properties <a name="Properties" id="Properties"></a>
|
|
1055
|
-
|
|
1056
|
-
| **Name** | **Type** | **Description** |
|
|
1057
|
-
| --- | --- | --- |
|
|
1058
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.creationStack">CreationStack</a></code> | <code>*[]*string</code> | The creation stack of this resolvable which will be appended to errors thrown during resolution. |
|
|
1059
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.fqn">Fqn</a></code> | <code>*string</code> | *No description.* |
|
|
1060
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.hmacBase64Input">HmacBase64Input</a></code> | <code>*string</code> | *No description.* |
|
|
1061
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.keyIdInput">KeyIdInput</a></code> | <code>*string</code> | *No description.* |
|
|
1062
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.hmacBase64">HmacBase64</a></code> | <code>*string</code> | *No description.* |
|
|
1063
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.keyId">KeyId</a></code> | <code>*string</code> | *No description.* |
|
|
1064
|
-
| <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.internalValue">InternalValue</a></code> | <code><a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBinding">RegistrationExternalAccountBinding</a></code> | *No description.* |
|
|
1065
|
-
|
|
1066
|
-
---
|
|
1067
|
-
|
|
1068
|
-
##### `CreationStack`<sup>Required</sup> <a name="CreationStack" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.creationStack"></a>
|
|
1069
|
-
|
|
1070
|
-
```go
|
|
1071
|
-
func CreationStack() *[]*string
|
|
1072
|
-
```
|
|
1073
|
-
|
|
1074
|
-
- *Type:* *[]*string
|
|
1075
|
-
|
|
1076
|
-
The creation stack of this resolvable which will be appended to errors thrown during resolution.
|
|
1077
|
-
|
|
1078
|
-
If this returns an empty array the stack will not be attached.
|
|
1079
|
-
|
|
1080
|
-
---
|
|
1081
|
-
|
|
1082
|
-
##### `Fqn`<sup>Required</sup> <a name="Fqn" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.fqn"></a>
|
|
1083
|
-
|
|
1084
|
-
```go
|
|
1085
|
-
func Fqn() *string
|
|
1086
|
-
```
|
|
1087
|
-
|
|
1088
|
-
- *Type:* *string
|
|
1089
|
-
|
|
1090
|
-
---
|
|
1091
|
-
|
|
1092
|
-
##### `HmacBase64Input`<sup>Optional</sup> <a name="HmacBase64Input" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.hmacBase64Input"></a>
|
|
1093
|
-
|
|
1094
|
-
```go
|
|
1095
|
-
func HmacBase64Input() *string
|
|
1096
|
-
```
|
|
1097
|
-
|
|
1098
|
-
- *Type:* *string
|
|
1099
|
-
|
|
1100
|
-
---
|
|
1101
|
-
|
|
1102
|
-
##### `KeyIdInput`<sup>Optional</sup> <a name="KeyIdInput" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.keyIdInput"></a>
|
|
1103
|
-
|
|
1104
|
-
```go
|
|
1105
|
-
func KeyIdInput() *string
|
|
1106
|
-
```
|
|
1107
|
-
|
|
1108
|
-
- *Type:* *string
|
|
1109
|
-
|
|
1110
|
-
---
|
|
1111
|
-
|
|
1112
|
-
##### `HmacBase64`<sup>Required</sup> <a name="HmacBase64" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.hmacBase64"></a>
|
|
1113
|
-
|
|
1114
|
-
```go
|
|
1115
|
-
func HmacBase64() *string
|
|
1116
|
-
```
|
|
1117
|
-
|
|
1118
|
-
- *Type:* *string
|
|
1119
|
-
|
|
1120
|
-
---
|
|
1121
|
-
|
|
1122
|
-
##### `KeyId`<sup>Required</sup> <a name="KeyId" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.keyId"></a>
|
|
1123
|
-
|
|
1124
|
-
```go
|
|
1125
|
-
func KeyId() *string
|
|
1126
|
-
```
|
|
1127
|
-
|
|
1128
|
-
- *Type:* *string
|
|
1129
|
-
|
|
1130
|
-
---
|
|
1131
|
-
|
|
1132
|
-
##### `InternalValue`<sup>Optional</sup> <a name="InternalValue" id="@cdktf/provider-acme.registration.RegistrationExternalAccountBindingOutputReference.property.internalValue"></a>
|
|
1133
|
-
|
|
1134
|
-
```go
|
|
1135
|
-
func InternalValue() RegistrationExternalAccountBinding
|
|
1136
|
-
```
|
|
1137
|
-
|
|
1138
|
-
- *Type:* <a href="#@cdktf/provider-acme.registration.RegistrationExternalAccountBinding">RegistrationExternalAccountBinding</a>
|
|
1139
|
-
|
|
1140
|
-
---
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|