@cdktn/provider-generator 0.23.0-pre.0 → 0.23.0-pre.5
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/lib/__tests__/__snapshots__/provider.test.ts.snap +444 -444
- package/lib/get/__tests__/generator/__snapshots__/complex-computed-types.test.ts.snap +1 -1
- package/lib/get/__tests__/generator/__snapshots__/export-sharding.test.ts.snap +228 -228
- package/lib/get/__tests__/generator/__snapshots__/nested-types.test.ts.snap +2 -2
- package/lib/get/__tests__/generator/__snapshots__/resource-types.test.ts.snap +20 -20
- package/lib/get/__tests__/generator/__snapshots__/skipped-attributes.test.ts.snap +3 -3
- package/lib/get/__tests__/generator/__snapshots__/types.test.ts.snap +18 -18
- package/lib/get/generator/emitter/struct-emitter.js +7 -7
- package/package.json +7 -6
|
@@ -135,7 +135,7 @@ export class AcmCertificateDomainValidationOptionsList extends cdktn.ComplexList
|
|
|
135
135
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
136
136
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
137
137
|
*/
|
|
138
|
-
constructor(
|
|
138
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
139
139
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
140
140
|
}
|
|
141
141
|
|