diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 97b9669ef957..e735280beb5e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: run: yarn install --check-files --frozen-lockfile - name: Set git identity run: |- - git config user.name "Auto-bump" + git config user.name "Automation" git config user.email "github-actions@github.com" - name: Build run: npx projen build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cb08f997acfd..b811d2beb601 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,10 +7,11 @@ on: - master workflow_dispatch: {} jobs: - build: + release: runs-on: ubuntu-latest env: CI: "true" + RELEASE: "true" steps: - name: Checkout uses: actions/checkout@v2 @@ -23,31 +24,45 @@ jobs: - name: Install dependencies run: yarn install --check-files --frozen-lockfile - name: Anti-tamper check - run: git diff --exit-code + run: git diff --ignore-space-at-eol --exit-code - name: Set git identity run: |- - git config user.name "Auto-bump" + git config user.name "Automation" git config user.email "github-actions@github.com" - name: Bump to next version run: npx projen bump + - name: Install GitHub CLI + run: curl -sL + https://github.com/cli/cli/releases/download/v1.9.2/gh_1.9.2_linux_amd64.tar.gz + | tar -xzv --strip-components=2 gh_1.9.2_linux_amd64/bin/gh && mv gh + /usr/bin/ - name: Build run: npx projen build - - name: Anti-tamper check - run: git diff --exit-code - - name: Push commits - run: git push origin HEAD:${{ github.ref }} - - name: Push tags - run: git push --follow-tags origin ${{ github.ref }} + - name: Check for new commits + id: git_remote + run: echo ::set-output name=latest_commit::"$(git ls-remote origin -h ${{ + github.ref }} | cut -f1)" + - name: Create release + if: ${{ steps.git_remote.outputs.latest_commit == github.sha }} + run: gh release create v$(node -p "require('./package.json').version") -F + .changelog.tmp.md -t v$(node -p "require('./package.json').version") + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Unbump + run: npx projen unbump - name: Upload artifact + if: ${{ steps.git_remote.outputs.latest_commit == github.sha }} uses: actions/upload-artifact@v2.1.1 with: name: dist path: dist + - name: Anti-tamper check + run: git diff --ignore-space-at-eol --exit-code container: image: hashicorp/jsii-terraform release_npm: name: Release to NPM - needs: build + needs: release runs-on: ubuntu-latest container: image: jsii/superchain @@ -65,7 +80,7 @@ jobs: NPM_REGISTRY: registry.npmjs.org release_pypi: name: Release to PyPi - needs: build + needs: release runs-on: ubuntu-latest container: image: jsii/superchain @@ -82,7 +97,7 @@ jobs: TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} release_nuget: name: Release to Nuget - needs: build + needs: release runs-on: ubuntu-latest container: image: jsii/superchain diff --git a/.gitignore b/.gitignore index 8c415bc6425c..41b139a86538 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,8 @@ .nyc_output .terraform .yarn-integrity +/.changelog.tmp.md +/.version.tmp.json /coverage /dist /lib @@ -51,4 +53,3 @@ yarn-error.log* !/src !/test !/tsconfig.jest.json -!version.json diff --git a/.npmignore b/.npmignore index ec55993920b6..aea05accdfb1 100644 --- a/.npmignore +++ b/.npmignore @@ -6,7 +6,6 @@ /.mergify.yml /.projen /.projenrc.js -/.versionrc.json /.vscode /coverage /src diff --git a/.projen/deps.json b/.projen/deps.json index c857c3a41cd9..a97a22a5a831 100644 --- a/.projen/deps.json +++ b/.projen/deps.json @@ -2,7 +2,7 @@ "dependencies": [ { "name": "@cdktf/provider-project", - "version": "^0.1.54", + "version": "^0.1.58", "type": "build" }, { @@ -16,12 +16,12 @@ }, { "name": "cdktf-cli", - "version": "^0.2", + "version": "^0.3", "type": "build" }, { "name": "cdktf", - "version": "^0.2", + "version": "^0.3", "type": "build" }, { @@ -61,7 +61,7 @@ }, { "name": "projen", - "version": "^0.17.37", + "version": "^0.17.59", "type": "build" }, { @@ -79,7 +79,7 @@ }, { "name": "cdktf", - "version": "^0.2", + "version": "^0.3", "type": "peer" }, { diff --git a/.projen/tasks.json b/.projen/tasks.json index 1936f0d050ba..c5184ca2da3e 100644 --- a/.projen/tasks.json +++ b/.projen/tasks.json @@ -33,6 +33,30 @@ ], "condition": "git diff --exit-code > /dev/null" }, + "bump": { + "name": "bump", + "category": "20.release", + "description": "Bumps version based on latest git tag and generates a changelog entry", + "steps": [ + { + "exec": "git describe --abbrev=0 --tags > .version.tmp.json" + }, + { + "exec": "standard-version" + } + ], + "condition": "! git log --oneline -1 | grep -q \"chore(release):\"" + }, + "unbump": { + "name": "unbump", + "category": "20.release", + "description": "Restores version to 0.0.0", + "steps": [ + { + "exec": "standard-version -r 0.0.0" + } + ] + }, "compile": { "name": "compile", "category": "00.build", @@ -91,31 +115,6 @@ } ] }, - "bump": { - "name": "bump", - "category": "20.release", - "description": "Commits a bump to the package version based on conventional commits", - "steps": [ - { - "exec": "standard-version" - } - ], - "condition": "! git log --oneline -1 | grep -q \"chore(release):\"" - }, - "release": { - "name": "release", - "category": "20.release", - "description": "Bumps version & push to master", - "steps": [ - { - "spawn": "bump" - }, - { - "exec": "git push --follow-tags origin master" - } - ], - "condition": "! git log --oneline -1 | grep -q \"chore(release):\"" - }, "test:watch": { "name": "test:watch", "category": "10.test", diff --git a/.versionrc.json b/.versionrc.json index 45e1d605ab62..5bbe5c7004ca 100644 --- a/.versionrc.json +++ b/.versionrc.json @@ -1,19 +1,19 @@ { "packageFiles": [ { - "filename": "version.json", - "type": "json" + "filename": ".version.tmp.json", + "type": "plain-text" } ], "bumpFiles": [ - { - "filename": "version.json", - "type": "json" - } + "package.json" ], - "commitAll": true, - "scripts": { - "postbump": "npx projen && git add ." + "commitAll": false, + "infile": ".changelog.tmp.md", + "header": "", + "skip": { + "commit": true, + "tag": true }, "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"." } diff --git a/API.md b/API.md index 387f211fb2d3..5a1ad624eeb3 100644 --- a/API.md +++ b/API.md @@ -7662,12 +7662,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new AcmCertificateDomainValidationOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new AcmCertificateDomainValidationOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -9787,12 +9787,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new ApiGatewayAccountThrottleSettings(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new ApiGatewayAccountThrottleSettings(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -19968,12 +19968,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new CloudfrontDistributionTrustedKeyGroups(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new CloudfrontDistributionTrustedKeyGroups(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -19999,12 +19999,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new CloudfrontDistributionTrustedKeyGroupsItems(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new CloudfrontDistributionTrustedKeyGroupsItems(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -20030,12 +20030,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new CloudfrontDistributionTrustedSigners(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new CloudfrontDistributionTrustedSigners(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -20061,12 +20061,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new CloudfrontDistributionTrustedSignersItems(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new CloudfrontDistributionTrustedSignersItems(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -20607,12 +20607,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new CloudhsmV2ClusterClusterCertificates(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new CloudhsmV2ClusterClusterCertificates(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -27859,12 +27859,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbAccessLogs(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbAccessLogs(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -27989,12 +27989,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbListenerDefaultAction(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbListenerDefaultAction(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28026,12 +28026,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbListenerDefaultActionAuthenticateCognito(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbListenerDefaultActionAuthenticateCognito(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28063,12 +28063,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbListenerDefaultActionAuthenticateOidc(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbListenerDefaultActionAuthenticateOidc(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28103,12 +28103,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbListenerDefaultActionFixedResponse(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbListenerDefaultActionFixedResponse(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28135,12 +28135,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbListenerDefaultActionForward(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbListenerDefaultActionForward(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28166,12 +28166,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbListenerDefaultActionForwardStickiness(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbListenerDefaultActionForwardStickiness(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28197,12 +28197,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbListenerDefaultActionForwardTargetGroup(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbListenerDefaultActionForwardTargetGroup(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28228,12 +28228,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbListenerDefaultActionRedirect(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbListenerDefaultActionRedirect(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28263,12 +28263,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbSubnetMapping(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbSubnetMapping(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28416,12 +28416,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbTargetGroupHealthCheck(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbTargetGroupHealthCheck(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28454,12 +28454,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAlbTargetGroupStickiness(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAlbTargetGroupStickiness(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28677,12 +28677,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAmiBlockDeviceMappings(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAmiBlockDeviceMappings(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -28824,12 +28824,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAmiProductCodes(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAmiProductCodes(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -29020,12 +29020,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsApiGatewayDomainNameEndpointConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsApiGatewayDomainNameEndpointConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -29197,12 +29197,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsApiGatewayRestApiEndpointConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsApiGatewayRestApiEndpointConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -29391,12 +29391,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsApigatewayv2ApiCorsConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsApigatewayv2ApiCorsConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -29663,12 +29663,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsAutoscalingGroupLaunchTemplate(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsAutoscalingGroupLaunchTemplate(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -30385,12 +30385,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsBatchJobQueueComputeEnvironmentOrder(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsBatchJobQueueComputeEnvironmentOrder(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -30824,12 +30824,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOrigin(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOrigin(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -30858,12 +30858,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginCookiesConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginCookiesConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -30889,12 +30889,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginCookiesConfigCookies(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginCookiesConfigCookies(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -30919,12 +30919,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginHeadersConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginHeadersConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -30950,12 +30950,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginHeadersConfigHeaders(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginHeadersConfigHeaders(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -30980,12 +30980,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -31011,12 +31011,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfigQueryStrings(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontCachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfigQueryStrings(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -31236,12 +31236,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontOriginRequestPolicyCookiesConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontOriginRequestPolicyCookiesConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -31267,12 +31267,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontOriginRequestPolicyCookiesConfigCookies(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontOriginRequestPolicyCookiesConfigCookies(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -31297,12 +31297,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontOriginRequestPolicyHeadersConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontOriginRequestPolicyHeadersConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -31328,12 +31328,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontOriginRequestPolicyHeadersConfigHeaders(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontOriginRequestPolicyHeadersConfigHeaders(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -31358,12 +31358,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontOriginRequestPolicyQueryStringsConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontOriginRequestPolicyQueryStringsConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -31389,12 +31389,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudfrontOriginRequestPolicyQueryStringsConfigQueryStrings(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudfrontOriginRequestPolicyQueryStringsConfigQueryStrings(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -31503,12 +31503,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsCloudhsmV2ClusterClusterCertificates(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsCloudhsmV2ClusterClusterCertificates(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -32825,12 +32825,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsDirectoryServiceDirectoryConnectSettings(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsDirectoryServiceDirectoryConnectSettings(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -32860,12 +32860,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsDirectoryServiceDirectoryVpcSettings(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsDirectoryServiceDirectoryVpcSettings(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -33374,12 +33374,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsDynamodbTableAttribute(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsDynamodbTableAttribute(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -33405,12 +33405,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsDynamodbTableGlobalSecondaryIndex(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsDynamodbTableGlobalSecondaryIndex(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -33441,12 +33441,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsDynamodbTableLocalSecondaryIndex(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsDynamodbTableLocalSecondaryIndex(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -33474,12 +33474,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsDynamodbTablePointInTimeRecovery(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsDynamodbTablePointInTimeRecovery(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -33504,12 +33504,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsDynamodbTableReplica(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsDynamodbTableReplica(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -33534,12 +33534,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsDynamodbTableTtl(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsDynamodbTableTtl(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -35499,12 +35499,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEc2ManagedPrefixListEntries(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEc2ManagedPrefixListEntries(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -36557,12 +36557,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEcrRepositoryEncryptionConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEcrRepositoryEncryptionConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -36588,12 +36588,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEcrRepositoryImageScanningConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEcrRepositoryImageScanningConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -36689,12 +36689,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEcsClusterSetting(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEcsClusterSetting(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37025,12 +37025,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEfsAccessPointPosixUser(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEfsAccessPointPosixUser(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37057,12 +37057,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEfsAccessPointRootDirectory(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEfsAccessPointRootDirectory(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37088,12 +37088,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEfsAccessPointRootDirectoryCreationInfo(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEfsAccessPointRootDirectoryCreationInfo(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37293,12 +37293,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEfsFileSystemLifecyclePolicy(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEfsFileSystemLifecyclePolicy(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37752,12 +37752,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEksClusterCertificateAuthority(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEksClusterCertificateAuthority(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37782,12 +37782,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEksClusterIdentity(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEksClusterIdentity(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37812,12 +37812,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEksClusterIdentityOidc(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEksClusterIdentityOidc(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37842,12 +37842,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEksClusterKubernetesNetworkConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEksClusterKubernetesNetworkConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37872,12 +37872,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsEksClusterVpcConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsEksClusterVpcConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -37976,12 +37976,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticBeanstalkApplicationAppversionLifecycle(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticBeanstalkApplicationAppversionLifecycle(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38242,12 +38242,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticacheClusterCacheNodes(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticacheClusterCacheNodes(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38549,12 +38549,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainAdvancedSecurityOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainAdvancedSecurityOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38580,12 +38580,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainClusterConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainClusterConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38619,12 +38619,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainClusterConfigZoneAwarenessConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainClusterConfigZoneAwarenessConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38649,12 +38649,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainCognitoOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainCognitoOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38682,12 +38682,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainEbsOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainEbsOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38715,12 +38715,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainEncryptionAtRest(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainEncryptionAtRest(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38746,12 +38746,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainLogPublishingOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainLogPublishingOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38778,12 +38778,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainNodeToNodeEncryption(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainNodeToNodeEncryption(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38808,12 +38808,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainSnapshotOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainSnapshotOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38838,12 +38838,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElasticsearchDomainVpcOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElasticsearchDomainVpcOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -38992,12 +38992,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElbAccessLogs(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElbAccessLogs(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -39025,12 +39025,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElbHealthCheck(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElbHealthCheck(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -39124,12 +39124,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsElbListener(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsElbListener(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -39470,12 +39470,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsIamGroupUsers(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsIamGroupUsers(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40364,12 +40364,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderDistributionConfigurationDistribution(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderDistributionConfigurationDistribution(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40396,12 +40396,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderDistributionConfigurationDistributionAmiDistributionConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderDistributionConfigurationDistributionAmiDistributionConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40431,12 +40431,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderDistributionConfigurationDistributionAmiDistributionConfigurationLaunchPermission(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderDistributionConfigurationDistributionAmiDistributionConfigurationLaunchPermission(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40566,12 +40566,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderImageImageTestsConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderImageImageTestsConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40597,12 +40597,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderImageOutputResources(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderImageOutputResources(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40627,12 +40627,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderImageOutputResourcesAmis(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderImageOutputResourcesAmis(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40767,12 +40767,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderImagePipelineImageTestsConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderImagePipelineImageTestsConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40798,12 +40798,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderImagePipelineSchedule(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderImagePipelineSchedule(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40931,12 +40931,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderImageRecipeBlockDeviceMapping(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderImageRecipeBlockDeviceMapping(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -40964,12 +40964,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderImageRecipeBlockDeviceMappingEbs(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderImageRecipeBlockDeviceMappingEbs(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41000,12 +41000,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderImageRecipeComponent(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderImageRecipeComponent(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41137,12 +41137,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderInfrastructureConfigurationLogging(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderInfrastructureConfigurationLogging(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41167,12 +41167,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsImagebuilderInfrastructureConfigurationLoggingS3Logs(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsImagebuilderInfrastructureConfigurationLoggingS3Logs(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41495,12 +41495,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsInstanceCreditSpecification(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsInstanceCreditSpecification(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41525,12 +41525,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsInstanceEbsBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsInstanceEbsBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41565,12 +41565,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsInstanceEnclaveOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsInstanceEnclaveOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41595,12 +41595,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsInstanceEphemeralBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsInstanceEphemeralBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41627,12 +41627,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsInstanceMetadataOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsInstanceMetadataOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41659,12 +41659,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsInstanceRootBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsInstanceRootBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -41906,12 +41906,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsInternetGatewayAttachments(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsInternetGatewayAttachments(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -42657,12 +42657,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLakeformationDataLakeSettingsCreateDatabaseDefaultPermissions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLakeformationDataLakeSettingsCreateDatabaseDefaultPermissions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -42688,12 +42688,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLakeformationDataLakeSettingsCreateTableDefaultPermissions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLakeformationDataLakeSettingsCreateTableDefaultPermissions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43061,12 +43061,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLambdaCodeSigningConfigAllowedPublishers(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLambdaCodeSigningConfigAllowedPublishers(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43091,12 +43091,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLambdaCodeSigningConfigPolicies(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLambdaCodeSigningConfigPolicies(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43288,12 +43288,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLambdaFunctionDeadLetterConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLambdaFunctionDeadLetterConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43318,12 +43318,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLambdaFunctionEnvironment(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLambdaFunctionEnvironment(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43348,12 +43348,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLambdaFunctionFileSystemConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLambdaFunctionFileSystemConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43379,12 +43379,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLambdaFunctionTracingConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLambdaFunctionTracingConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43409,12 +43409,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLambdaFunctionVpcConfig(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLambdaFunctionVpcConfig(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43725,12 +43725,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchConfigurationEbsBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchConfigurationEbsBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43762,12 +43762,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchConfigurationEphemeralBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchConfigurationEphemeralBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43793,12 +43793,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchConfigurationMetadataOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchConfigurationMetadataOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -43825,12 +43825,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchConfigurationRootBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchConfigurationRootBlockDevice(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44125,12 +44125,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateBlockDeviceMappings(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateBlockDeviceMappings(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44158,12 +44158,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateBlockDeviceMappingsEbs(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateBlockDeviceMappingsEbs(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44195,12 +44195,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateCreditSpecification(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateCreditSpecification(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44225,12 +44225,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateElasticGpuSpecifications(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateElasticGpuSpecifications(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44255,12 +44255,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateEnclaveOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateEnclaveOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44285,12 +44285,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateHibernationOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateHibernationOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44315,12 +44315,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateIamInstanceProfile(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateIamInstanceProfile(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44346,12 +44346,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateInstanceMarketOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateInstanceMarketOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44377,12 +44377,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateInstanceMarketOptionsSpotOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateInstanceMarketOptionsSpotOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44411,12 +44411,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateMetadataOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateMetadataOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44443,12 +44443,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateMonitoring(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateMonitoring(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44473,12 +44473,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateNetworkInterfaces(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateNetworkInterfaces(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44515,12 +44515,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplatePlacement(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplatePlacement(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44551,12 +44551,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLaunchTemplateTagSpecifications(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLaunchTemplateTagSpecifications(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44703,12 +44703,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbAccessLogs(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbAccessLogs(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44833,12 +44833,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbListenerDefaultAction(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbListenerDefaultAction(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44870,12 +44870,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbListenerDefaultActionAuthenticateCognito(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbListenerDefaultActionAuthenticateCognito(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44907,12 +44907,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbListenerDefaultActionAuthenticateOidc(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbListenerDefaultActionAuthenticateOidc(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44947,12 +44947,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbListenerDefaultActionFixedResponse(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbListenerDefaultActionFixedResponse(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -44979,12 +44979,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbListenerDefaultActionForward(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbListenerDefaultActionForward(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45010,12 +45010,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbListenerDefaultActionForwardStickiness(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbListenerDefaultActionForwardStickiness(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45041,12 +45041,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbListenerDefaultActionForwardTargetGroup(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbListenerDefaultActionForwardTargetGroup(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45072,12 +45072,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbListenerDefaultActionRedirect(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbListenerDefaultActionRedirect(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45107,12 +45107,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbSubnetMapping(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbSubnetMapping(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45260,12 +45260,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbTargetGroupHealthCheck(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbTargetGroupHealthCheck(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45298,12 +45298,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLbTargetGroupStickiness(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLbTargetGroupStickiness(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45634,12 +45634,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsLexSlotTypeEnumerationValue(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsLexSlotTypeEnumerationValue(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45864,12 +45864,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsMqBrokerConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsMqBrokerConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45895,12 +45895,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsMqBrokerEncryptionOptions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsMqBrokerEncryptionOptions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45926,12 +45926,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsMqBrokerInstances(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsMqBrokerInstances(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45958,12 +45958,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsMqBrokerLdapServerMetadata(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsMqBrokerLdapServerMetadata(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -45998,12 +45998,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsMqBrokerMaintenanceWindowStartTime(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsMqBrokerMaintenanceWindowStartTime(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -46030,12 +46030,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsMqBrokerUser(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsMqBrokerUser(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -46812,12 +46812,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsNetworkInterfaceAssociation(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsNetworkInterfaceAssociation(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -46848,12 +46848,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsNetworkInterfaceAttachment(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsNetworkInterfaceAttachment(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -47058,12 +47058,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsOrganizationsOrganizationAccounts(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsOrganizationsOrganizationAccounts(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -47092,12 +47092,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsOrganizationsOrganizationNonMasterAccounts(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsOrganizationsOrganizationNonMasterAccounts(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -47126,12 +47126,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsOrganizationsOrganizationRoots(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsOrganizationsOrganizationRoots(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -47159,12 +47159,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsOrganizationsOrganizationRootsPolicyTypes(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsOrganizationsOrganizationRootsPolicyTypes(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -47256,12 +47256,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsOrganizationsOrganizationalUnitsChildren(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsOrganizationsOrganizationalUnitsChildren(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -50018,12 +50018,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsRouteTableAssociations(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsRouteTableAssociations(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -50052,12 +50052,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsRouteTableRoutes(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsRouteTableRoutes(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -50794,12 +50794,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsSecretsmanagerSecretRotationRotationRules(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsSecretsmanagerSecretRotationRotationRules(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -50824,12 +50824,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsSecretsmanagerSecretRotationRules(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsSecretsmanagerSecretRotationRules(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -51580,12 +51580,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsSignerSigningJobRevocationRecord(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsSignerSigningJobRevocationRecord(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -51612,12 +51612,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsSignerSigningJobSignedObject(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsSignerSigningJobSignedObject(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -51642,12 +51642,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsSignerSigningJobSignedObjectS3(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsSignerSigningJobSignedObjectS3(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -51673,12 +51673,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsSignerSigningJobSource(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsSignerSigningJobSource(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -51703,12 +51703,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsSignerSigningJobSourceS3(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsSignerSigningJobSourceS3(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -51835,12 +51835,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsSignerSigningProfileRevocationRecord(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsSignerSigningProfileRevocationRecord(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -51867,12 +51867,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsSignerSigningProfileSignatureValidityPeriod(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsSignerSigningProfileSignatureValidityPeriod(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -53002,12 +53002,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsVpcCidrBlockAssociations(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsVpcCidrBlockAssociations(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -53286,12 +53286,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsVpcEndpointDnsEntry(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsVpcEndpointDnsEntry(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -53718,12 +53718,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsVpcPeeringConnectionCidrBlockSet(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsVpcPeeringConnectionCidrBlockSet(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -53748,12 +53748,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsVpcPeeringConnectionPeerCidrBlockSet(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsVpcPeeringConnectionPeerCidrBlockSet(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -54636,12 +54636,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsWafv2RegexPatternSetRegularExpression(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsWafv2RegexPatternSetRegularExpression(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -54917,12 +54917,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsWorkspacesBundleComputeType(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsWorkspacesBundleComputeType(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -54947,12 +54947,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsWorkspacesBundleRootStorage(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsWorkspacesBundleRootStorage(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -54977,12 +54977,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsWorkspacesBundleUserStorage(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsWorkspacesBundleUserStorage(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -55124,12 +55124,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsWorkspacesDirectorySelfServicePermissions(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsWorkspacesDirectorySelfServicePermissions(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -55158,12 +55158,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsWorkspacesDirectoryWorkspaceAccessProperties(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsWorkspacesDirectoryWorkspaceAccessProperties(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -55194,12 +55194,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsWorkspacesDirectoryWorkspaceCreationProperties(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsWorkspacesDirectoryWorkspaceCreationProperties(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -55416,12 +55416,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DataAwsWorkspacesWorkspaceWorkspaceProperties(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DataAwsWorkspacesWorkspaceWorkspaceProperties(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -56482,12 +56482,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new DaxClusterNodes(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new DaxClusterNodes(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -69052,12 +69052,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new EfsFileSystemSizeInBytes(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new EfsFileSystemSizeInBytes(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -69878,12 +69878,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new EksClusterCertificateAuthority(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new EksClusterCertificateAuthority(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -69908,12 +69908,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new EksClusterIdentity(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new EksClusterIdentity(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -69938,12 +69938,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new EksClusterIdentityOidc(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new EksClusterIdentityOidc(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -70337,12 +70337,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new EksNodeGroupResources(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new EksNodeGroupResources(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -70368,12 +70368,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new EksNodeGroupResourcesAutoscalingGroups(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new EksNodeGroupResourcesAutoscalingGroups(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -70964,12 +70964,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new ElasticBeanstalkEnvironmentAllSettings(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new ElasticBeanstalkEnvironmentAllSettings(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -71396,12 +71396,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new ElasticacheClusterCacheNodes(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new ElasticacheClusterCacheNodes(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -75949,12 +75949,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new GlobalacceleratorAcceleratorIpSets(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new GlobalacceleratorAcceleratorIpSets(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -77934,12 +77934,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new GlueMlTransformSchema(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new GlueMlTransformSchema(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -82055,12 +82055,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new ImagebuilderImageOutputResources(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new ImagebuilderImageOutputResources(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -82085,12 +82085,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new ImagebuilderImageOutputResourcesAmis(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new ImagebuilderImageOutputResourcesAmis(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -91700,12 +91700,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new MediaPackageChannelHlsIngest(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new MediaPackageChannelHlsIngest(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -91730,12 +91730,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new MediaPackageChannelHlsIngestIngestEndpoints(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new MediaPackageChannelHlsIngestIngestEndpoints(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -92177,12 +92177,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new MqBrokerInstances(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new MqBrokerInstances(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -92916,12 +92916,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new MwaaEnvironmentLastUpdated(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new MwaaEnvironmentLastUpdated(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -92948,12 +92948,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new MwaaEnvironmentLastUpdatedError(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new MwaaEnvironmentLastUpdatedError(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -95148,12 +95148,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new NetworkfirewallFirewallFirewallStatus(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new NetworkfirewallFirewallFirewallStatus(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -95178,12 +95178,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new NetworkfirewallFirewallFirewallStatusSyncStates(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new NetworkfirewallFirewallFirewallStatusSyncStates(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -95209,12 +95209,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new NetworkfirewallFirewallFirewallStatusSyncStatesAttachment(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new NetworkfirewallFirewallFirewallStatusSyncStatesAttachment(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -101252,12 +101252,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new OrganizationsOrganizationAccounts(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new OrganizationsOrganizationAccounts(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -101286,12 +101286,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new OrganizationsOrganizationNonMasterAccounts(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new OrganizationsOrganizationNonMasterAccounts(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -101320,12 +101320,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new OrganizationsOrganizationRoots(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new OrganizationsOrganizationRoots(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -101353,12 +101353,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new OrganizationsOrganizationRootsPolicyTypes(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new OrganizationsOrganizationRootsPolicyTypes(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -101454,12 +101454,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new OrganizationsOrganizationalUnitAccounts(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new OrganizationsOrganizationalUnitAccounts(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -105188,12 +105188,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new RdsGlobalClusterGlobalClusterMembers(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new RdsGlobalClusterGlobalClusterMembers(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -111190,12 +111190,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new S3OutpostsEndpointNetworkInterfaces(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new S3OutpostsEndpointNetworkInterfaces(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -116124,12 +116124,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new SignerSigningJobRevocationRecord(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new SignerSigningJobRevocationRecord(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -116156,12 +116156,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new SignerSigningJobSignedObject(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new SignerSigningJobSignedObject(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -116186,12 +116186,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new SignerSigningJobSignedObjectS3(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new SignerSigningJobSignedObjectS3(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -116452,12 +116452,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new SignerSigningProfileRevocationRecord(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new SignerSigningProfileRevocationRecord(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -119467,12 +119467,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new SsmDocumentParameter(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new SsmDocumentParameter(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -121254,12 +121254,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new StoragegatewayGatewayGatewayNetworkInterface(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new StoragegatewayGatewayGatewayNetworkInterface(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -122870,12 +122870,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new SyntheticsCanaryTimeline(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new SyntheticsCanaryTimeline(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -124053,12 +124053,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new VpcEndpointDnsEntry(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new VpcEndpointDnsEntry(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -124344,12 +124344,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new VpcEndpointServicePrivateDnsNameConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new VpcEndpointServicePrivateDnsNameConfiguration(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -125723,12 +125723,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new VpnConnectionRoutes(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new VpnConnectionRoutes(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* @@ -125755,12 +125755,12 @@ __Extends__: [ComplexComputedList](#cdktf-complexcomputedlist) ```ts -new VpnConnectionVgwTelemetry(terraformResource: ITerraformResource, terraformAttribute: string, index: string) +new VpnConnectionVgwTelemetry(terraformResource: ITerraformResource, terraformAttribute: string, complexComputedListIndex: string) ``` * **terraformResource** ([ITerraformResource](#cdktf-iterraformresource)) *No description* * **terraformAttribute** (string) *No description* -* **index** (string) *No description* +* **complexComputedListIndex** (string) *No description* diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index c373e840c9b4..000000000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,333 +0,0 @@ -# Changelog - -All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. - -### [1.0.56](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.55...v1.0.56) (2021-04-22) - -### [1.0.55](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.54...v1.0.55) (2021-04-22) - -### [1.0.54](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.53...v1.0.54) (2021-04-22) - -### [1.0.53](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.52...v1.0.53) (2021-04-22) - -### [1.0.52](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.51...v1.0.52) (2021-04-16) - -### [1.0.51](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.50...v1.0.51) (2021-04-16) - -### [1.0.50](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.49...v1.0.50) (2021-04-15) - -### [1.0.49](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.48...v1.0.49) (2021-04-14) - -### [1.0.48](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.47...v1.0.48) (2021-04-14) - -### [1.0.47](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.46...v1.0.47) (2021-04-14) - -### [1.0.46](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.45...v1.0.46) (2021-04-14) - -### [1.0.45](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.44...v1.0.45) (2021-04-14) - -### [1.0.44](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.43...v1.0.44) (2021-04-13) - -### [1.0.43](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.42...v1.0.43) (2021-04-13) - -### [1.0.42](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.41...v1.0.42) (2021-04-13) - -### [1.0.41](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.40...v1.0.41) (2021-04-13) - -### [1.0.40](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.39...v1.0.40) (2021-04-07) - -### [1.0.39](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.38...v1.0.39) (2021-04-07) - -### [1.0.38](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.37...v1.0.38) (2021-04-07) - -### [1.0.37](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.36...v1.0.37) (2021-04-07) - -### [1.0.36](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.35...v1.0.36) (2021-03-29) - -### [1.0.35](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.34...v1.0.35) (2021-03-29) - -### [1.0.34](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.33...v1.0.34) (2021-03-26) - -### [1.0.33](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.32...v1.0.33) (2021-03-23) - -### [1.0.32](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.31...v1.0.32) (2021-03-22) - -### [1.0.31](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.30...v1.0.31) (2021-03-19) - -### [1.0.30](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.29...v1.0.30) (2021-03-18) - -### [1.0.29](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.28...v1.0.29) (2021-03-18) - -### [1.0.28](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.27...v1.0.28) (2021-03-17) - -### [1.0.27](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.26...v1.0.27) (2021-03-17) - -### [1.0.26](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.25...v1.0.26) (2021-03-17) - -### [1.0.25](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.22...v1.0.25) (2021-03-10) - -### [1.0.24](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.22...v1.0.24) (2021-03-08) - -### [1.0.23](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.22...v1.0.23) (2021-03-05) - -### [1.0.22](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.20...v1.0.22) (2021-03-04) - -### [1.0.21](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.20...v1.0.21) (2021-03-04) - -### [1.0.20](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.18...v1.0.20) (2021-03-03) - -### [1.0.19](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.18...v1.0.19) (2021-03-02) - -### [1.0.18](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.17...v1.0.18) (2021-03-01) - -### [1.0.17](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.16...v1.0.17) (2021-02-26) - -### [1.0.16](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.14...v1.0.16) (2021-02-25) - -### [1.0.15](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.14...v1.0.15) (2021-02-24) - -### [1.0.14](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.12...v1.0.14) (2021-02-23) - -### [1.0.13](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.12...v1.0.13) (2021-02-22) - -### [1.0.12](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.9...v1.0.12) (2021-02-20) - -### [1.0.9](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.8...v1.0.9) (2021-02-01) - -### [1.0.8](https://github.com/terraform-cdk-providers/cdktf-provider-aws/compare/v1.0.6...v1.0.8) (2021-01-29) - -### 1.0.7 (2021-01-29) - -### 1.0.6 (2021-01-27) - -### 1.0.5 (2021-01-26) - -### 1.0.4 (2021-01-20) - -### 1.0.3 (2021-01-19) - -### 1.0.2 (2021-01-18) - -### 1.0.1 (2021-01-16) - -### 0.0.111 (2021-01-15) - -### 0.0.110 (2021-01-14) - -### 0.0.109 (2021-01-13) - -### 0.0.108 (2021-01-12) - -### 0.0.107 (2021-01-11) - -### 0.0.106 (2021-01-08) - -### 0.0.105 (2021-01-07) - -### 0.0.104 (2021-01-06) - -### 0.0.103 (2021-01-05) - -### 0.0.102 (2021-01-04) - -### 0.0.101 (2021-01-01) - -### 0.0.100 (2020-12-30) - -### 0.0.99 (2020-12-29) - -### 0.0.98 (2020-12-28) - -### 0.0.97 (2020-12-25) - -### 0.0.96 (2020-12-24) - -### 0.0.95 (2020-12-23) - -### 0.0.94 (2020-12-22) - -### 0.0.93 (2020-12-21) - -### 0.0.92 (2020-12-18) - -### 0.0.91 (2020-12-16) - -### 0.0.90 (2020-12-15) - -### 0.0.89 (2020-12-14) - -### 0.0.88 (2020-12-11) - -### 0.0.87 (2020-12-09) - -### 0.0.86 (2020-12-08) - -### 0.0.85 (2020-12-07) - -### 0.0.84 (2020-12-04) - -### 0.0.83 (2020-12-02) - -### 0.0.82 (2020-12-01) - -### 0.0.81 (2020-11-30) - -### 0.0.80 (2020-11-26) - -### 0.0.79 (2020-11-25) - -### 0.0.78 (2020-11-25) - -### 0.0.77 (2020-11-24) - -### 0.0.76 (2020-11-20) - -### 0.0.75 (2020-11-19) - -### 0.0.74 (2020-11-18) - -### 0.0.73 (2020-11-17) - -### 0.0.72 (2020-11-16) - -### 0.0.71 (2020-11-12) - -### 0.0.70 (2020-11-11) - -### 0.0.69 (2020-11-10) - -### 0.0.68 (2020-11-09) - -### 0.0.67 (2020-11-06) - -### 0.0.66 (2020-11-05) - -### 0.0.65 (2020-11-03) - -### 0.0.64 (2020-10-30) - -### 0.0.63 (2020-10-29) - -### 0.0.62 (2020-10-27) - -### 0.0.61 (2020-10-26) - -### 0.0.60 (2020-10-26) - -### 0.0.59 (2020-10-23) - -### 0.0.58 (2020-10-22) - -### 0.0.57 (2020-10-21) - -### 0.0.56 (2020-10-20) - -### 0.0.55 (2020-10-19) - -### 0.0.54 (2020-10-16) - -### 0.0.53 (2020-10-14) - -### 0.0.52 (2020-10-13) - -### 0.0.51 (2020-10-12) - -### 0.0.50 (2020-10-09) - -### 0.0.49 (2020-10-06) - -### 0.0.48 (2020-10-05) - -### 0.0.47 (2020-10-02) - -### 0.0.46 (2020-10-01) - -### 0.0.45 (2020-09-30) - -### 0.0.44 (2020-09-28) - -### 0.0.43 (2020-09-23) - -### 0.0.42 (2020-09-22) - -### 0.0.41 (2020-09-21) - -### 0.0.40 (2020-09-17) - -### 0.0.39 (2020-09-16) - -### 0.0.38 (2020-09-15) - -### 0.0.37 (2020-09-14) - -### 0.0.36 (2020-09-11) - -### 0.0.35 (2020-09-09) - -### 0.0.34 (2020-09-08) - -### 0.0.33 (2020-09-07) - -### 0.0.32 (2020-09-04) - -### 0.0.31 (2020-09-03) - -### 0.0.30 (2020-09-02) - -### 0.0.29 (2020-09-01) - -### 0.0.28 (2020-08-31) - -### 0.0.27 (2020-08-28) - -### 0.0.26 (2020-08-28) - -### 0.0.25 (2020-08-27) - -### 0.0.24 (2020-08-25) - -### 0.0.23 (2020-08-24) - -### 0.0.22 (2020-08-24) - -### 0.0.21 (2020-08-21) - -### 0.0.20 (2020-08-21) - -### 0.0.19 (2020-08-20) - -### 0.0.18 (2020-08-20) - -### 0.0.17 (2020-08-20) - -### 0.0.16 (2020-08-20) - -### 0.0.15 (2020-08-11) - -### 0.0.14 (2020-08-09) - -### 0.0.13 (2020-08-09) - -### 0.0.12 (2020-08-09) - -### 0.0.11 (2020-08-09) - -### 0.0.10 (2020-08-09) - -### [0.0.9](https://github.com/skorfmann/cdktf-provider-aws/compare/v0.0.8...v0.0.9) (2020-08-05) - -### [0.0.8](https://github.com/skorfmann/cdktf-provider-aws/compare/v0.0.7...v0.0.8) (2020-08-05) - -### 0.0.7 (2020-08-05) - -### 0.0.6 (2020-08-05) - -### 0.0.5 (2020-08-05) - -### 0.0.4 (2020-08-05) - -### 0.0.3 (2020-08-05) - -### 0.0.2 (2020-08-05) - -### 0.0.1 (2020-08-05) diff --git a/package.json b/package.json index 6a87d9350fbc..0e7b64499896 100644 --- a/package.json +++ b/package.json @@ -7,12 +7,12 @@ }, "scripts": { "clobber": "npx projen clobber", + "bump": "npx projen bump", + "unbump": "npx projen unbump", "compile": "jsii --silence-warnings=reserved-word", "test:compile": "npx projen test:compile", "test": "jest --passWithNoTests", "build": "npx projen build", - "bump": "npx projen bump", - "release": "npx projen release", "test:watch": "npx projen test:watch", "test:update": "npx projen test:update", "projen:upgrade": "npx projen projen:upgrade", @@ -33,11 +33,11 @@ "organization": true }, "devDependencies": { - "@cdktf/provider-project": "^0.1.54", + "@cdktf/provider-project": "^0.1.58", "@types/jest": "^26.0.7", "@types/node": "^10.17.0", - "cdktf": "^0.2", - "cdktf-cli": "^0.2", + "cdktf": "^0.3", + "cdktf-cli": "^0.3", "constructs": "^3.0.4", "dot-prop": "^5.2.0", "jest": "^26.0.1", @@ -46,13 +46,13 @@ "jsii-diff": "^1.19.0", "jsii-docgen": "^1.8.33", "jsii-pacmak": "^1.19.0", - "projen": "^0.17.37", + "projen": "^0.17.59", "standard-version": "^9", "ts-jest": "^26.1.0", "typescript": "^3.9.5" }, "peerDependencies": { - "cdktf": "^0.2", + "cdktf": "^0.3", "constructs": "^3.0.4" }, "bundledDependencies": [], @@ -68,10 +68,10 @@ }, "main": "lib/index.js", "license": "MPL-2.0", - "version": "1.0.56", "publishConfig": { "access": "public" }, + "version": "0.0.0", "jest": { "testMatch": [ "**/__tests__/**/*.ts?(x)", diff --git a/version.json b/version.json deleted file mode 100644 index 625a4e604fad..000000000000 --- a/version.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "version": "1.0.56" -} diff --git a/yarn.lock b/yarn.lock index e530584c91c3..c3d8b1e62c37 100644 --- a/yarn.lock +++ b/yarn.lock @@ -270,18 +270,18 @@ resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== -"@cdktf/hcl2json@0.2.2": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@cdktf/hcl2json/-/hcl2json-0.2.2.tgz#a8c471268462209aaf2c33c4a6ecb8a52d241a80" - integrity sha512-C/IOl8ARTRiafC9mdZiIuJbqys6LRmaVM/grux7OASkVbkyYy2RHKPVXRBsD5mtfLBXQaL/NGjLLJ4aSC7jFZQ== +"@cdktf/hcl2json@0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@cdktf/hcl2json/-/hcl2json-0.3.0.tgz#bee9a80cfe3997fe799846f748bb39892089795b" + integrity sha512-iZ5eKhlZSpoWM0+ULUEkxY+qzBGhr3EVkXoYdUbNf/nPx8bd2Qqgk87x4uvqFK8+uNMuINR0HCbCdHFgkfho4A== dependencies: "@types/node-fetch" "^2.5.8" node-fetch "^2.6.1" -"@cdktf/provider-project@^0.1.54": - version "0.1.54" - resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.1.54.tgz#72c74408700ee2c8e226908bc3649d347de0cacf" - integrity sha512-x3iLRnKEs0g3uMT+fXEas//9h6wR+gC2jqYfvFHkfu+kDr2x1+Uj/kR6rIHQZ2hkkqYS/a7BkPY7jA2yyHw5vg== +"@cdktf/provider-project@^0.1.58": + version "0.1.58" + resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.1.58.tgz#231ca27965a15a457bfc33d9a054506457ca4e1b" + integrity sha512-4AyBwKkeoL/EYPdriqpdma9UlEDOppGZNYhC0HWKGPURDhqSHepf9rJyx7DOnLNgDZoqbD0PMWY15ScPBIW1HA== dependencies: change-case "^4.1.2" @@ -485,7 +485,7 @@ "@types/yargs" "^15.0.0" chalk "^4.0.0" -"@jsii/spec@^1.16.0", "@jsii/spec@^1.28.0", "@jsii/spec@^1.29.0": +"@jsii/spec@^1.16.0", "@jsii/spec@^1.29.0": version "1.29.0" resolved "https://registry.yarnpkg.com/@jsii/spec/-/spec-1.29.0.tgz#2378bbacd94e0159c6344c1556af0129e4d3e2f4" integrity sha512-Y0ouCaYVPy7KjQ8di6Hu4xizKYp4klqqDf08BaEgqd38TzqBuO0abgcd9OJFUQyoDnCCWTdGBfqTo2xfvW9Pbw== @@ -545,10 +545,10 @@ prop-types "^15.5.10" yn "^3.1.1" -"@skorfmann/terraform-cloud@^1.9.1": - version "1.9.1" - resolved "https://registry.yarnpkg.com/@skorfmann/terraform-cloud/-/terraform-cloud-1.9.1.tgz#6fbdf6846efd6fdeb3405126cc91cd7d5c846eff" - integrity sha512-R28bedoGjAmDiEYHu2cmeVd3R6vxq6anQQlGCpdjk5oqnSiROFFm8dzywvMon4/9C+CErhgY7fr76NVErS/U2w== +"@skorfmann/terraform-cloud@^1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@skorfmann/terraform-cloud/-/terraform-cloud-1.10.0.tgz#cba669213dacf92aa1a80c8e8d112f0b5e422cc9" + integrity sha512-Yd5WWmmUjFYBpQpsAnAntwQMerilNRpHILNPA7x0EkwHhf+5KTSKYZwzYL/bOY1QfGJX6DTnOSHXIRStHZDUgg== dependencies: axios "^0.21.1" camelcase-keys "^6.2.2" @@ -682,6 +682,13 @@ dependencies: "@types/yargs-parser" "*" +"@types/yauzl@^2.9.1": + version "2.9.1" + resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.9.1.tgz#d10f69f9f522eef3cf98e30afb684a1e1ec923af" + integrity sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA== + dependencies: + "@types/node" "*" + "@types/yoga-layout@1.9.2": version "1.9.2" resolved "https://registry.yarnpkg.com/@types/yoga-layout/-/yoga-layout-1.9.2.tgz#efaf9e991a7390dc081a0b679185979a83a9639a" @@ -1083,7 +1090,7 @@ bser@2.1.1: dependencies: node-int64 "^0.4.0" -buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: +buffer-crc32@^0.2.1, buffer-crc32@^0.2.13, buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= @@ -1200,20 +1207,22 @@ caseless@~0.12.0: resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= -cdktf-cli@^0.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/cdktf-cli/-/cdktf-cli-0.2.2.tgz#0664a285e809d5f862d0cedb25cf1cbfa786eb81" - integrity sha512-tkUGs4+739C+3lklwQQM/wLgp41maVlJUK/2cCzuNxVBgobLXBxn55lHxbmEuh2Ddc8PtNV31uzHzn1f2ZzdfQ== +cdktf-cli@^0.3: + version "0.3.0" + resolved "https://registry.yarnpkg.com/cdktf-cli/-/cdktf-cli-0.3.0.tgz#efe6c25dd889f9d67d640b9cda0a598863d1159f" + integrity sha512-8ZICMcjBkKMBzzyVQfa3CGb/kkxBfvr7nxvOLpyEO1ecJt4E1gkrAwsKb8oVX/zfQ371UJqrqJxwBwb+OUT5Wg== dependencies: - "@cdktf/hcl2json" "0.2.2" + "@cdktf/hcl2json" "0.3.0" "@skorfmann/ink-confirm-input" "^3.0.0" - "@skorfmann/terraform-cloud" "^1.9.1" + "@skorfmann/terraform-cloud" "^1.10.0" "@types/node" "^14.0.26" archiver "^5.1.0" - cdktf "0.2.2" + cdktf "0.3.0" chalk "^4.1.0" codemaker "^0.22.0" constructs "^3.0.0" + extract-zip "^2.0.1" + follow-redirects "^1.13.3" fs-extra "^8.1.0" indent-string "^4.0.0" ink "^3.0.8" @@ -1230,10 +1239,10 @@ cdktf-cli@^0.2: uuid "^8.3.0" yargs "^15.1.0" -cdktf@0.2.2, cdktf@^0.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/cdktf/-/cdktf-0.2.2.tgz#93aec902694bca77009ecd1c1490fec19e908a12" - integrity sha512-SMiDV99ruSGhjBm+dj30XmtV20BKesjY75SGGB3sTcFeaqn5d1Gf8gAaG69QTm3zqI8SbYO12MDslkoX1BY5Zw== +cdktf@0.3.0, cdktf@^0.3: + version "0.3.0" + resolved "https://registry.yarnpkg.com/cdktf/-/cdktf-0.3.0.tgz#72fcaba8475dbc0316187c37f7d1005485ef9cc4" + integrity sha512-+Nk6eKVMjcnIlu5KPZ02vo2VuD1B+wFydGS00BvvpwDjymhNnMTc5ADjPtGhwpi067i30j/HCFRHDKG04dgVbg== dependencies: json-stable-stringify "^1.0.1" @@ -2205,6 +2214,17 @@ extglob@^2.0.4: snapdragon "^0.8.1" to-regex "^3.0.1" +extract-zip@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" + integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== + dependencies: + debug "^4.1.1" + get-stream "^5.1.0" + yauzl "^2.10.0" + optionalDependencies: + "@types/yauzl" "^2.9.1" + extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" @@ -2237,6 +2257,13 @@ fb-watchman@^2.0.0: dependencies: bser "2.1.1" +fd-slicer@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" + integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= + dependencies: + pend "~1.2.0" + figures@^3.0.0, figures@^3.1.0: version "3.2.0" resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" @@ -2309,6 +2336,11 @@ follow-redirects@^1.10.0: resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.1.tgz#5f69b813376cee4fd0474a3aba835df04ab763b7" integrity sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg== +follow-redirects@^1.13.3: + version "1.13.3" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.3.tgz#e5598ad50174c1bc4e872301e82ac2cd97f90267" + integrity sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA== + for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" @@ -2449,6 +2481,13 @@ get-stream@^5.0.0: dependencies: pump "^3.0.0" +get-stream@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + dependencies: + pump "^3.0.0" + get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" @@ -3599,7 +3638,7 @@ jsii-pacmak@^1.12.0, jsii-pacmak@^1.19.0: xmlbuilder "^15.1.1" yargs "^16.2.0" -jsii-reflect@^1.16.0, jsii-reflect@^1.28.0, jsii-reflect@^1.29.0: +jsii-reflect@^1.16.0, jsii-reflect@^1.29.0: version "1.29.0" resolved "https://registry.yarnpkg.com/jsii-reflect/-/jsii-reflect-1.29.0.tgz#eaa80f383619586cddab1f296bb5a30c7157c3a0" integrity sha512-r1XpKsnaMTaI0B2XXJ4rF1rbufqFDThASrArE+SyuuGeWTJxWQ4UtIzvXNVFLbZba0A5hX4K0JxiMIfaRFCEEg== @@ -4542,6 +4581,11 @@ path-type@^3.0.0: dependencies: pify "^3.0.0" +pend@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" + integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= + performance-now@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" @@ -4618,10 +4662,10 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -projen@^0.17.37: - version "0.17.37" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.17.37.tgz#7eaeb6aba8484147aeadd4521d5af902a36732c5" - integrity sha512-alIcnqPrwKnXq4Em/TaKZytrTLL88V4VeXYhguJPB9tk+YRwj4JaB3PxcUgNxWRDd1D33Wz3H1o4Jz8hkryMEA== +projen@^0.17.59: + version "0.17.59" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.17.59.tgz#d62d9ad4d9145b5ff16e8654883c185b039f5b97" + integrity sha512-wTr/WWoW88vLTFg67MzpM+SbPSp5ryIp1iFz++tzDQuKeqODHZ9zobHnhV0yCGU/zfTiQT1ET4qmZRq7ihCY3A== dependencies: "@iarna/toml" "^2.2.5" chalk "^4.1.0" @@ -6164,6 +6208,14 @@ yargs@^16.0.0, yargs@^16.2.0: y18n "^5.0.5" yargs-parser "^20.2.2" +yauzl@^2.10.0: + version "2.10.0" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" + integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= + dependencies: + buffer-crc32 "~0.2.3" + fd-slicer "~1.1.0" + yn@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"