├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── pull-request-lint.yml │ ├── release.yml │ └── upgrade-main.yml ├── .gitignore ├── .mergify.yml ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── .projen ├── deps.json ├── files.json └── tasks.json ├── .projenrc.ts ├── API.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cdk.context.json ├── decisions ├── ADR-01-Repo-Structure.md ├── ADR-02-using-projen.md ├── ADR-03-merge-tooling.md └── ADR-04-conflicting-contributions.md ├── package.json ├── projenrc └── sub-path-exports.ts ├── src ├── aws-codeartifact │ ├── README.md │ ├── domain.ts │ ├── index.ts │ └── repository.ts ├── aws-cur │ ├── README.md │ ├── cost-report.ts │ └── index.ts ├── aws-ec2 │ ├── README.md │ ├── index.ts │ └── instance-connect-endpoint.ts ├── aws-elasticache │ ├── README.md │ ├── daily-snapshot-time.ts │ ├── index.ts │ ├── serverless-cache.ts │ ├── user-group.ts │ ├── user.ts │ └── util.ts ├── aws-fsx │ ├── README.md │ ├── daily-automatic-backup-start-time.ts │ ├── index.ts │ ├── maintenance-time.ts │ └── ontap-file-system.ts ├── aws-redshiftserverless │ ├── README.md │ ├── index.ts │ ├── namespace.ts │ └── workgroup.ts └── index.ts ├── test ├── .gitkeep ├── aws-codeartifact │ ├── domain.test.ts │ ├── integ.codeartifact.ts │ ├── integ.codeartifact.ts.snapshot │ │ ├── CodeArtifactDomainAndRepository.assets.json │ │ ├── CodeArtifactDomainAndRepository.template.json │ │ ├── CodeArtifactDomainAndRepositoryIntegDefaultTestDeployAssert135F1932.assets.json │ │ ├── CodeArtifactDomainAndRepositoryIntegDefaultTestDeployAssert135F1932.template.json │ │ ├── cdk.out │ │ ├── integ.json │ │ ├── manifest.json │ │ └── tree.json │ └── repository.test.ts ├── aws-cur │ ├── cost-report.test.ts │ ├── integ.cost-report.ts │ └── integ.cost-report.ts.snapshot │ │ ├── CurReportDefaultTestDeployAssert2956AD14.assets.json │ │ ├── CurReportDefaultTestDeployAssert2956AD14.template.json │ │ ├── asset.b7f33614a69548d6bafe224d751a7ef238cde19097415e553fe8b63a4c8fd8a6 │ │ └── index.js │ │ ├── cdk.out │ │ ├── cur-report.assets.json │ │ ├── cur-report.template.json │ │ ├── integ.json │ │ ├── manifest.json │ │ └── tree.json ├── aws-ec2 │ ├── instance-connect-endpoint.test.ts │ ├── integ.instance-connect-endpoint.ts │ └── integ.instance-connect-endpoint.ts.snapshot │ │ ├── InstanceConnectEndpointDefaultTestDeployAssert284B1FD7.assets.json │ │ ├── InstanceConnectEndpointDefaultTestDeployAssert284B1FD7.template.json │ │ ├── InstanceConnectEndpointStack.assets.json │ │ ├── InstanceConnectEndpointStack.template.json │ │ ├── asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e │ │ ├── __entrypoint__.js │ │ └── index.js │ │ ├── cdk.out │ │ ├── integ.json │ │ ├── manifest.json │ │ └── tree.json ├── aws-elasticache │ ├── daily-snapshot-time.test.ts │ ├── integ.elasticache-serverless-cache.ts │ ├── integ.elasticache-serverless-cache.ts.snapshot │ │ ├── ElastiCacheServerlessCacheStack.assets.json │ │ ├── ElastiCacheServerlessCacheStack.template.json │ │ ├── ElastiCacheServerlessCacheTestDefaultTestDeployAssertB226C8E2.assets.json │ │ ├── ElastiCacheServerlessCacheTestDefaultTestDeployAssertB226C8E2.template.json │ │ ├── asset.7fa1e366ee8a9ded01fc355f704cff92bfd179574e6f9cfee800a3541df1b200 │ │ │ ├── __entrypoint__.js │ │ │ └── index.js │ │ ├── asset.c504585dae89ce8e394d7744ccae054318e7d1aff14afb545438d173d51dc97d.bundle │ │ │ └── index.js │ │ ├── cdk.out │ │ ├── integ.json │ │ ├── manifest.json │ │ └── tree.json │ ├── integ.import-aws-default-user.ts │ ├── integ.import-aws-default-user.ts.snapshot │ │ ├── ImportDefaultUserStack.assets.json │ │ ├── ImportDefaultUserStack.template.json │ │ ├── ImportDefaultUserTestDefaultTestDeployAssert51B7C19D.assets.json │ │ ├── ImportDefaultUserTestDefaultTestDeployAssert51B7C19D.template.json │ │ ├── cdk.out │ │ ├── integ.json │ │ ├── manifest.json │ │ └── tree.json │ ├── serverless-cache.test.ts │ ├── user-group.test.ts │ └── user.test.ts ├── aws-examplemodule │ ├── example.test.ts │ ├── integ.example.ts │ └── integ.example.ts.snapshot │ │ ├── IntegTestExampleDefaultTestDeployAssertB2D38A87.assets.json │ │ ├── IntegTestExampleDefaultTestDeployAssertB2D38A87.template.json │ │ ├── IntegrationTestExampleStack.assets.json │ │ ├── IntegrationTestExampleStack.template.json │ │ ├── cdk.out │ │ ├── integ.json │ │ ├── manifest.json │ │ └── tree.json ├── aws-fsx │ ├── integ.ontap-file-system.ts │ ├── integ.ontap-file-system.ts.snapshot │ │ ├── FsxForOntapTestDefaultTestDeployAssert20A933DE.assets.json │ │ ├── FsxForOntapTestDefaultTestDeployAssert20A933DE.template.json │ │ ├── FsxForOntapTestStack.assets.json │ │ ├── FsxForOntapTestStack.template.json │ │ ├── asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e │ │ │ ├── __entrypoint__.js │ │ │ └── index.js │ │ ├── cdk.out │ │ ├── integ.json │ │ ├── manifest.json │ │ └── tree.json │ └── ontap-file-system.test.ts └── aws-redshiftserverless │ ├── integ.redshift-serverless-namespace-workgroup.ts │ ├── integ.redshift-serverless-namespace-workgroup.ts.snapshot │ ├── RedshiftServerlessNamespaceWorkgroupStack.assets.json │ ├── RedshiftServerlessNamespaceWorkgroupStack.template.json │ ├── RedshiftServerlessNamespaceWorkgroupTestDefaultTestDeployAssertE2D901CB.assets.json │ ├── RedshiftServerlessNamespaceWorkgroupTestDefaultTestDeployAssertE2D901CB.template.json │ ├── cdk.out │ ├── integ.json │ ├── manifest.json │ └── tree.json │ ├── namespace.test.ts │ └── workgroup.test.ts └── tsconfig.dev.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.github/workflows/pull-request-lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.github/workflows/upgrade-main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.projen/deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.projen/deps.json -------------------------------------------------------------------------------- /.projen/files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.projen/files.json -------------------------------------------------------------------------------- /.projen/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.projen/tasks.json -------------------------------------------------------------------------------- /.projenrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/.projenrc.ts -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/API.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/README.md -------------------------------------------------------------------------------- /cdk.context.json: -------------------------------------------------------------------------------- 1 | { 2 | "watch": {} 3 | } -------------------------------------------------------------------------------- /decisions/ADR-01-Repo-Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/decisions/ADR-01-Repo-Structure.md -------------------------------------------------------------------------------- /decisions/ADR-02-using-projen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/decisions/ADR-02-using-projen.md -------------------------------------------------------------------------------- /decisions/ADR-03-merge-tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/decisions/ADR-03-merge-tooling.md -------------------------------------------------------------------------------- /decisions/ADR-04-conflicting-contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/decisions/ADR-04-conflicting-contributions.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/package.json -------------------------------------------------------------------------------- /projenrc/sub-path-exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/projenrc/sub-path-exports.ts -------------------------------------------------------------------------------- /src/aws-codeartifact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-codeartifact/README.md -------------------------------------------------------------------------------- /src/aws-codeartifact/domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-codeartifact/domain.ts -------------------------------------------------------------------------------- /src/aws-codeartifact/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-codeartifact/index.ts -------------------------------------------------------------------------------- /src/aws-codeartifact/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-codeartifact/repository.ts -------------------------------------------------------------------------------- /src/aws-cur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-cur/README.md -------------------------------------------------------------------------------- /src/aws-cur/cost-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-cur/cost-report.ts -------------------------------------------------------------------------------- /src/aws-cur/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cost-report'; 2 | -------------------------------------------------------------------------------- /src/aws-ec2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-ec2/README.md -------------------------------------------------------------------------------- /src/aws-ec2/index.ts: -------------------------------------------------------------------------------- 1 | export * from './instance-connect-endpoint'; 2 | -------------------------------------------------------------------------------- /src/aws-ec2/instance-connect-endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-ec2/instance-connect-endpoint.ts -------------------------------------------------------------------------------- /src/aws-elasticache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-elasticache/README.md -------------------------------------------------------------------------------- /src/aws-elasticache/daily-snapshot-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-elasticache/daily-snapshot-time.ts -------------------------------------------------------------------------------- /src/aws-elasticache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-elasticache/index.ts -------------------------------------------------------------------------------- /src/aws-elasticache/serverless-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-elasticache/serverless-cache.ts -------------------------------------------------------------------------------- /src/aws-elasticache/user-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-elasticache/user-group.ts -------------------------------------------------------------------------------- /src/aws-elasticache/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-elasticache/user.ts -------------------------------------------------------------------------------- /src/aws-elasticache/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-elasticache/util.ts -------------------------------------------------------------------------------- /src/aws-fsx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-fsx/README.md -------------------------------------------------------------------------------- /src/aws-fsx/daily-automatic-backup-start-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-fsx/daily-automatic-backup-start-time.ts -------------------------------------------------------------------------------- /src/aws-fsx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-fsx/index.ts -------------------------------------------------------------------------------- /src/aws-fsx/maintenance-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-fsx/maintenance-time.ts -------------------------------------------------------------------------------- /src/aws-fsx/ontap-file-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-fsx/ontap-file-system.ts -------------------------------------------------------------------------------- /src/aws-redshiftserverless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-redshiftserverless/README.md -------------------------------------------------------------------------------- /src/aws-redshiftserverless/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-redshiftserverless/index.ts -------------------------------------------------------------------------------- /src/aws-redshiftserverless/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-redshiftserverless/namespace.ts -------------------------------------------------------------------------------- /src/aws-redshiftserverless/workgroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/aws-redshiftserverless/workgroup.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/aws-codeartifact/domain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/domain.test.ts -------------------------------------------------------------------------------- /test/aws-codeartifact/integ.codeartifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/integ.codeartifact.ts -------------------------------------------------------------------------------- /test/aws-codeartifact/integ.codeartifact.ts.snapshot/CodeArtifactDomainAndRepository.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/integ.codeartifact.ts.snapshot/CodeArtifactDomainAndRepository.assets.json -------------------------------------------------------------------------------- /test/aws-codeartifact/integ.codeartifact.ts.snapshot/CodeArtifactDomainAndRepository.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/integ.codeartifact.ts.snapshot/CodeArtifactDomainAndRepository.template.json -------------------------------------------------------------------------------- /test/aws-codeartifact/integ.codeartifact.ts.snapshot/CodeArtifactDomainAndRepositoryIntegDefaultTestDeployAssert135F1932.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/integ.codeartifact.ts.snapshot/CodeArtifactDomainAndRepositoryIntegDefaultTestDeployAssert135F1932.assets.json -------------------------------------------------------------------------------- /test/aws-codeartifact/integ.codeartifact.ts.snapshot/CodeArtifactDomainAndRepositoryIntegDefaultTestDeployAssert135F1932.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/integ.codeartifact.ts.snapshot/CodeArtifactDomainAndRepositoryIntegDefaultTestDeployAssert135F1932.template.json -------------------------------------------------------------------------------- /test/aws-codeartifact/integ.codeartifact.ts.snapshot/cdk.out: -------------------------------------------------------------------------------- 1 | {"version":"36.0.0"} -------------------------------------------------------------------------------- /test/aws-codeartifact/integ.codeartifact.ts.snapshot/integ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/integ.codeartifact.ts.snapshot/integ.json -------------------------------------------------------------------------------- /test/aws-codeartifact/integ.codeartifact.ts.snapshot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/integ.codeartifact.ts.snapshot/manifest.json -------------------------------------------------------------------------------- /test/aws-codeartifact/integ.codeartifact.ts.snapshot/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/integ.codeartifact.ts.snapshot/tree.json -------------------------------------------------------------------------------- /test/aws-codeartifact/repository.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-codeartifact/repository.test.ts -------------------------------------------------------------------------------- /test/aws-cur/cost-report.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/cost-report.test.ts -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/integ.cost-report.ts -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts.snapshot/CurReportDefaultTestDeployAssert2956AD14.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/integ.cost-report.ts.snapshot/CurReportDefaultTestDeployAssert2956AD14.assets.json -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts.snapshot/CurReportDefaultTestDeployAssert2956AD14.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/integ.cost-report.ts.snapshot/CurReportDefaultTestDeployAssert2956AD14.template.json -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts.snapshot/asset.b7f33614a69548d6bafe224d751a7ef238cde19097415e553fe8b63a4c8fd8a6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/integ.cost-report.ts.snapshot/asset.b7f33614a69548d6bafe224d751a7ef238cde19097415e553fe8b63a4c8fd8a6/index.js -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts.snapshot/cdk.out: -------------------------------------------------------------------------------- 1 | {"version":"36.0.0"} -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts.snapshot/cur-report.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/integ.cost-report.ts.snapshot/cur-report.assets.json -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts.snapshot/cur-report.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/integ.cost-report.ts.snapshot/cur-report.template.json -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts.snapshot/integ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/integ.cost-report.ts.snapshot/integ.json -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts.snapshot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/integ.cost-report.ts.snapshot/manifest.json -------------------------------------------------------------------------------- /test/aws-cur/integ.cost-report.ts.snapshot/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-cur/integ.cost-report.ts.snapshot/tree.json -------------------------------------------------------------------------------- /test/aws-ec2/instance-connect-endpoint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/instance-connect-endpoint.test.ts -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/InstanceConnectEndpointDefaultTestDeployAssert284B1FD7.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/InstanceConnectEndpointDefaultTestDeployAssert284B1FD7.assets.json -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/InstanceConnectEndpointDefaultTestDeployAssert284B1FD7.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/InstanceConnectEndpointDefaultTestDeployAssert284B1FD7.template.json -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/InstanceConnectEndpointStack.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/InstanceConnectEndpointStack.assets.json -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/InstanceConnectEndpointStack.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/InstanceConnectEndpointStack.template.json -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e/__entrypoint__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e/__entrypoint__.js -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e/index.js -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/cdk.out: -------------------------------------------------------------------------------- 1 | {"version":"36.0.0"} -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/integ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/integ.json -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/manifest.json -------------------------------------------------------------------------------- /test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-ec2/integ.instance-connect-endpoint.ts.snapshot/tree.json -------------------------------------------------------------------------------- /test/aws-elasticache/daily-snapshot-time.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/daily-snapshot-time.test.ts -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/ElastiCacheServerlessCacheStack.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/ElastiCacheServerlessCacheStack.assets.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/ElastiCacheServerlessCacheStack.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/ElastiCacheServerlessCacheStack.template.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/ElastiCacheServerlessCacheTestDefaultTestDeployAssertB226C8E2.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/ElastiCacheServerlessCacheTestDefaultTestDeployAssertB226C8E2.assets.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/ElastiCacheServerlessCacheTestDefaultTestDeployAssertB226C8E2.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/ElastiCacheServerlessCacheTestDefaultTestDeployAssertB226C8E2.template.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/asset.7fa1e366ee8a9ded01fc355f704cff92bfd179574e6f9cfee800a3541df1b200/__entrypoint__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/asset.7fa1e366ee8a9ded01fc355f704cff92bfd179574e6f9cfee800a3541df1b200/__entrypoint__.js -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/asset.7fa1e366ee8a9ded01fc355f704cff92bfd179574e6f9cfee800a3541df1b200/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/asset.7fa1e366ee8a9ded01fc355f704cff92bfd179574e6f9cfee800a3541df1b200/index.js -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/asset.c504585dae89ce8e394d7744ccae054318e7d1aff14afb545438d173d51dc97d.bundle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/asset.c504585dae89ce8e394d7744ccae054318e7d1aff14afb545438d173d51dc97d.bundle/index.js -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/cdk.out: -------------------------------------------------------------------------------- 1 | {"version":"38.0.1"} -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/integ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/integ.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/manifest.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.elasticache-serverless-cache.ts.snapshot/tree.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.import-aws-default-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.import-aws-default-user.ts -------------------------------------------------------------------------------- /test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/ImportDefaultUserStack.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/ImportDefaultUserStack.assets.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/ImportDefaultUserStack.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/ImportDefaultUserStack.template.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/ImportDefaultUserTestDefaultTestDeployAssert51B7C19D.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/ImportDefaultUserTestDefaultTestDeployAssert51B7C19D.assets.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/ImportDefaultUserTestDefaultTestDeployAssert51B7C19D.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/ImportDefaultUserTestDefaultTestDeployAssert51B7C19D.template.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/cdk.out: -------------------------------------------------------------------------------- 1 | {"version":"36.0.0"} -------------------------------------------------------------------------------- /test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/integ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/integ.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/manifest.json -------------------------------------------------------------------------------- /test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/integ.import-aws-default-user.ts.snapshot/tree.json -------------------------------------------------------------------------------- /test/aws-elasticache/serverless-cache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/serverless-cache.test.ts -------------------------------------------------------------------------------- /test/aws-elasticache/user-group.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/user-group.test.ts -------------------------------------------------------------------------------- /test/aws-elasticache/user.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-elasticache/user.test.ts -------------------------------------------------------------------------------- /test/aws-examplemodule/example.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-examplemodule/example.test.ts -------------------------------------------------------------------------------- /test/aws-examplemodule/integ.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-examplemodule/integ.example.ts -------------------------------------------------------------------------------- /test/aws-examplemodule/integ.example.ts.snapshot/IntegTestExampleDefaultTestDeployAssertB2D38A87.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-examplemodule/integ.example.ts.snapshot/IntegTestExampleDefaultTestDeployAssertB2D38A87.assets.json -------------------------------------------------------------------------------- /test/aws-examplemodule/integ.example.ts.snapshot/IntegTestExampleDefaultTestDeployAssertB2D38A87.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-examplemodule/integ.example.ts.snapshot/IntegTestExampleDefaultTestDeployAssertB2D38A87.template.json -------------------------------------------------------------------------------- /test/aws-examplemodule/integ.example.ts.snapshot/IntegrationTestExampleStack.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-examplemodule/integ.example.ts.snapshot/IntegrationTestExampleStack.assets.json -------------------------------------------------------------------------------- /test/aws-examplemodule/integ.example.ts.snapshot/IntegrationTestExampleStack.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-examplemodule/integ.example.ts.snapshot/IntegrationTestExampleStack.template.json -------------------------------------------------------------------------------- /test/aws-examplemodule/integ.example.ts.snapshot/cdk.out: -------------------------------------------------------------------------------- 1 | {"version":"36.0.0"} -------------------------------------------------------------------------------- /test/aws-examplemodule/integ.example.ts.snapshot/integ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-examplemodule/integ.example.ts.snapshot/integ.json -------------------------------------------------------------------------------- /test/aws-examplemodule/integ.example.ts.snapshot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-examplemodule/integ.example.ts.snapshot/manifest.json -------------------------------------------------------------------------------- /test/aws-examplemodule/integ.example.ts.snapshot/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-examplemodule/integ.example.ts.snapshot/tree.json -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/FsxForOntapTestDefaultTestDeployAssert20A933DE.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts.snapshot/FsxForOntapTestDefaultTestDeployAssert20A933DE.assets.json -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/FsxForOntapTestDefaultTestDeployAssert20A933DE.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts.snapshot/FsxForOntapTestDefaultTestDeployAssert20A933DE.template.json -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/FsxForOntapTestStack.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts.snapshot/FsxForOntapTestStack.assets.json -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/FsxForOntapTestStack.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts.snapshot/FsxForOntapTestStack.template.json -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e/__entrypoint__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts.snapshot/asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e/__entrypoint__.js -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts.snapshot/asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e/index.js -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/cdk.out: -------------------------------------------------------------------------------- 1 | {"version":"36.0.0"} -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/integ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts.snapshot/integ.json -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts.snapshot/manifest.json -------------------------------------------------------------------------------- /test/aws-fsx/integ.ontap-file-system.ts.snapshot/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/integ.ontap-file-system.ts.snapshot/tree.json -------------------------------------------------------------------------------- /test/aws-fsx/ontap-file-system.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-fsx/ontap-file-system.test.ts -------------------------------------------------------------------------------- /test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts -------------------------------------------------------------------------------- /test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/RedshiftServerlessNamespaceWorkgroupStack.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/RedshiftServerlessNamespaceWorkgroupStack.assets.json -------------------------------------------------------------------------------- /test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/RedshiftServerlessNamespaceWorkgroupStack.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/RedshiftServerlessNamespaceWorkgroupStack.template.json -------------------------------------------------------------------------------- /test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/RedshiftServerlessNamespaceWorkgroupTestDefaultTestDeployAssertE2D901CB.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/RedshiftServerlessNamespaceWorkgroupTestDefaultTestDeployAssertE2D901CB.assets.json -------------------------------------------------------------------------------- /test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/RedshiftServerlessNamespaceWorkgroupTestDefaultTestDeployAssertE2D901CB.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/RedshiftServerlessNamespaceWorkgroupTestDefaultTestDeployAssertE2D901CB.template.json -------------------------------------------------------------------------------- /test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/cdk.out: -------------------------------------------------------------------------------- 1 | {"version":"36.0.0"} -------------------------------------------------------------------------------- /test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/integ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/integ.json -------------------------------------------------------------------------------- /test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/manifest.json -------------------------------------------------------------------------------- /test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/integ.redshift-serverless-namespace-workgroup.ts.snapshot/tree.json -------------------------------------------------------------------------------- /test/aws-redshiftserverless/namespace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/namespace.test.ts -------------------------------------------------------------------------------- /test/aws-redshiftserverless/workgroup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/test/aws-redshiftserverless/workgroup.test.ts -------------------------------------------------------------------------------- /tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-constructs/aws-cdk-library/HEAD/tsconfig.dev.json --------------------------------------------------------------------------------