eoapi-cdk 6.0.2 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/pull_request_template.md +2 -0
- package/.github/workflows/build.yaml +3 -3
- package/.github/workflows/{test.yaml → build_and_release.yaml} +1 -1
- package/.github/workflows/deploy.yaml +75 -0
- package/.github/workflows/distribute.yaml +2 -1
- package/.jsii +91 -78
- package/CHANGELOG.md +57 -0
- package/README.md +3 -0
- package/integration_tests/cdk/README.md +55 -0
- package/integration_tests/cdk/app.py +17 -0
- package/integration_tests/cdk/cdk.json +32 -0
- package/integration_tests/cdk/config.py +58 -0
- package/integration_tests/cdk/eoapi_template/__init__.py +0 -0
- package/integration_tests/cdk/eoapi_template/pgStacInfra.py +71 -0
- package/integration_tests/cdk/eoapi_template/vpc.py +49 -0
- package/integration_tests/cdk/package-lock.json +42 -0
- package/integration_tests/cdk/package.json +8 -0
- package/integration_tests/cdk/requirements.txt +7 -0
- package/lib/bastion-host/index.js +1 -1
- package/lib/database/bootstrapper_runtime/handler.py +7 -1
- package/lib/database/index.d.ts +1 -1
- package/lib/database/index.js +6 -7
- package/lib/ingestor-api/index.d.ts +2 -2
- package/lib/ingestor-api/index.js +11 -13
- package/lib/ingestor-api/runtime/dev_requirements.txt +1 -1
- package/lib/ingestor-api/runtime/src/loader.py +1 -0
- package/lib/ingestor-api/runtime/src/services.py +1 -1
- package/lib/stac-api/index.d.ts +1 -1
- package/lib/stac-api/index.js +5 -6
- package/lib/stac-api/runtime/src/config.py +1 -0
- package/lib/stac-browser/index.d.ts +6 -1
- package/lib/stac-browser/index.js +19 -10
- package/lib/tipg-api/index.d.ts +1 -1
- package/lib/tipg-api/index.js +5 -6
- package/lib/titiler-pgstac-api/index.d.ts +1 -1
- package/lib/titiler-pgstac-api/index.js +5 -6
- package/package.json +1 -1
- package/tox.ini +2 -2
- package/tsconfig.tsbuildinfo +6 -6
package/.jsii
CHANGED
|
@@ -3666,7 +3666,7 @@
|
|
|
3666
3666
|
},
|
|
3667
3667
|
"name": "eoapi-cdk",
|
|
3668
3668
|
"readme": {
|
|
3669
|
-
"markdown": "# eoAPI CDK Constructs\n\neoapi-cdk is a package of [AWS CDK constructs](https://docs.aws.amazon.com/prescriptive-guidance/latest/best-practices-cdk-typescript-iac/constructs-best-practices.html) designed to encapsulate eoAPI services and best practices as simple reusable components.\n\n\nFor more background on the included services see [The Earth Observation API](https://eoapi.dev/)\n\n## Included constructs\nDetailed API docs for the constructs can be found [here](https://developmentseed.org/eoapi-cdk/).\n\n### [pgSTAC Database](https://developmentseed.org/eoapi-cdk/#pgstacdatabase-)\nAn [RDS](https://aws.amazon.com/rds/) instance with [pgSTAC](https://github.com/stac-utils/pgstac) installed and the Postgres parameters optimized for the selected instance type.\n\n### [STAC API](https://developmentseed.org/eoapi-cdk/#pgstacapilambda-)\nA STAC API implementation using [stac-fastapi](https://github.com/stac-utils/stac-fastapi) with a [pgSTAC backend](https://github.com/stac-utils/stac-fastapi-pgstac). Packaged as a complete runtime for deployment with API Gateway and Lambda.\n\n### [pgSTAC Titiler API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-)\nA complete dynamic tiling API using [titiler-pgstac](https://github.com/stac-utils/titiler-pgstac) to create dynamic mosaics of assets based on [STAC Search queries](https://github.com/radiantearth/stac-api-spec/tree/master/item-search). Packaged as a complete runtime for deployment with API Gateway and Lambda and fully integrated with the pgSTAC Database construct.\n\n### [STAC browser](https://developmentseed.org/eoapi-cdk/#stacbrowser-)\nA CDK construct to host a static [Radiant Earth STAC browser](https://github.com/radiantearth/stac-browser) on S3.\n\n### [OGC Features/Tiles API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-)\nA complete OGC Features/Tiles API using [tipg](https://github.com/developmentseed/tipg). Packaged as a complete runtime for deployment with API Gateway and Lambda. By default the API will be connected to the Database's `public` schema.\n\n### [STAC Ingestor](https://developmentseed.org/eoapi-cdk/#stacingestor-)\nAn API for large scale STAC data ingestion and validation into a pgSTAC instance.\n\n\n\nAuthentication for the STAC Ingestor API can be configured with JWTs authenticated by JWKS. To learn more about securing FastAPI applications with this approach see [Securing FastAPI with JWKS (AWS Cognito, Auth0)](https://alukach.com/posts/fastapi-rs256-jwt/).\n\nA sample Cognito-based authentication system is available at [aws-asdi-auth](https://github.com/developmentseed/aws-asdi-auth).\n\n### [Bastion Host](https://developmentseed.org/eoapi-cdk/#bastionhost-)\nA bastion host is a secure gateway that provides access to resources in a private subnet. In this case it provides the ability to make administrative connections to eoAPI's pgSTAC instance.\n\n\n\nFor more background on bastion hosts in AWS see [this article](https://dev.to/aws-builders/bastion-host-in-aws-vpc-2i63).\n\nAnd for configuration instructions for this construct see [the docs](https://developmentseed.org/eoapi-cdk/#bastionhost-).\n\n\n## Published Packages\n\n- https://pypi.org/project/eoapi-cdk/\n- https://www.npmjs.com/package/eoapi-cdk/\n\n## Release\n\nVersioning is automatically handled via [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and [Semantic Release](https://semantic-release.gitbook.io/semantic-release/).\n\n_Warning_: If you rebase `main`, you must ensure that the commits referenced by tags point to commits that are within the `main` branch. If a commit references a commit that is no longer on the `main` branch, Semantic Release will fail to detect the correct version of the project. [More information](https://github.com/semantic-release/semantic-release/issues/1121#issuecomment-517945233).\n\n\n"
|
|
3669
|
+
"markdown": "# eoAPI CDK Constructs\n\neoapi-cdk is a package of [AWS CDK constructs](https://docs.aws.amazon.com/prescriptive-guidance/latest/best-practices-cdk-typescript-iac/constructs-best-practices.html) designed to encapsulate eoAPI services and best practices as simple reusable components.\n\n\nFor more background on the included services see [The Earth Observation API](https://eoapi.dev/)\n\n## Included constructs\nDetailed API docs for the constructs can be found [here](https://developmentseed.org/eoapi-cdk/).\n\n### [pgSTAC Database](https://developmentseed.org/eoapi-cdk/#pgstacdatabase-)\nAn [RDS](https://aws.amazon.com/rds/) instance with [pgSTAC](https://github.com/stac-utils/pgstac) installed and the Postgres parameters optimized for the selected instance type.\n\n### [STAC API](https://developmentseed.org/eoapi-cdk/#pgstacapilambda-)\nA STAC API implementation using [stac-fastapi](https://github.com/stac-utils/stac-fastapi) with a [pgSTAC backend](https://github.com/stac-utils/stac-fastapi-pgstac). Packaged as a complete runtime for deployment with API Gateway and Lambda.\n\n### [pgSTAC Titiler API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-)\nA complete dynamic tiling API using [titiler-pgstac](https://github.com/stac-utils/titiler-pgstac) to create dynamic mosaics of assets based on [STAC Search queries](https://github.com/radiantearth/stac-api-spec/tree/master/item-search). Packaged as a complete runtime for deployment with API Gateway and Lambda and fully integrated with the pgSTAC Database construct.\n\n### [STAC browser](https://developmentseed.org/eoapi-cdk/#stacbrowser-)\nA CDK construct to host a static [Radiant Earth STAC browser](https://github.com/radiantearth/stac-browser) on S3.\n\n### [OGC Features/Tiles API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-)\nA complete OGC Features/Tiles API using [tipg](https://github.com/developmentseed/tipg). Packaged as a complete runtime for deployment with API Gateway and Lambda. By default the API will be connected to the Database's `public` schema.\n\n### [STAC Ingestor](https://developmentseed.org/eoapi-cdk/#stacingestor-)\nAn API for large scale STAC data ingestion and validation into a pgSTAC instance.\n\n\n\nAuthentication for the STAC Ingestor API can be configured with JWTs authenticated by JWKS. To learn more about securing FastAPI applications with this approach see [Securing FastAPI with JWKS (AWS Cognito, Auth0)](https://alukach.com/posts/fastapi-rs256-jwt/).\n\nA sample Cognito-based authentication system is available at [aws-asdi-auth](https://github.com/developmentseed/aws-asdi-auth).\n\n### [Bastion Host](https://developmentseed.org/eoapi-cdk/#bastionhost-)\nA bastion host is a secure gateway that provides access to resources in a private subnet. In this case it provides the ability to make administrative connections to eoAPI's pgSTAC instance.\n\n\n\nFor more background on bastion hosts in AWS see [this article](https://dev.to/aws-builders/bastion-host-in-aws-vpc-2i63).\n\nAnd for configuration instructions for this construct see [the docs](https://developmentseed.org/eoapi-cdk/#bastionhost-).\n\n\n## Published Packages\n\n- https://pypi.org/project/eoapi-cdk/\n- https://www.npmjs.com/package/eoapi-cdk/\n\n## Release\n\nVersioning is automatically handled via [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and [Semantic Release](https://semantic-release.gitbook.io/semantic-release/).\n\n_Warning_: If you rebase `main`, you must ensure that the commits referenced by tags point to commits that are within the `main` branch. If a commit references a commit that is no longer on the `main` branch, Semantic Release will fail to detect the correct version of the project. [More information](https://github.com/semantic-release/semantic-release/issues/1121#issuecomment-517945233).\n\n\n## Tests\n\nEach pull request to `main` is added to a [merge queue](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue#triggering-merge-group-checks-with-github-actions) so that a \"deployment test\" workflow can run before the merge actually happens. If the deployment fails, the merge is cancelled. Here is [the definition of this workflow](https://github.com/developmentseed/eoapi-cdk/blob/main/.github/workflows/deploy.yaml) and the [tests definition](https://github.com/developmentseed/eoapi-cdk/blob/main/tests)."
|
|
3670
3670
|
},
|
|
3671
3671
|
"repository": {
|
|
3672
3672
|
"type": "git",
|
|
@@ -3873,7 +3873,7 @@
|
|
|
3873
3873
|
"kind": "interface",
|
|
3874
3874
|
"locationInModule": {
|
|
3875
3875
|
"filename": "lib/database/index.ts",
|
|
3876
|
-
"line":
|
|
3876
|
+
"line": 213
|
|
3877
3877
|
},
|
|
3878
3878
|
"name": "DatabaseParameters",
|
|
3879
3879
|
"properties": [
|
|
@@ -3886,7 +3886,7 @@
|
|
|
3886
3886
|
"immutable": true,
|
|
3887
3887
|
"locationInModule": {
|
|
3888
3888
|
"filename": "lib/database/index.ts",
|
|
3889
|
-
"line":
|
|
3889
|
+
"line": 229
|
|
3890
3890
|
},
|
|
3891
3891
|
"name": "effectiveCacheSize",
|
|
3892
3892
|
"type": {
|
|
@@ -3902,7 +3902,7 @@
|
|
|
3902
3902
|
"immutable": true,
|
|
3903
3903
|
"locationInModule": {
|
|
3904
3904
|
"filename": "lib/database/index.ts",
|
|
3905
|
-
"line":
|
|
3905
|
+
"line": 239
|
|
3906
3906
|
},
|
|
3907
3907
|
"name": "maintenanceWorkMem",
|
|
3908
3908
|
"type": {
|
|
@@ -3918,7 +3918,7 @@
|
|
|
3918
3918
|
"immutable": true,
|
|
3919
3919
|
"locationInModule": {
|
|
3920
3920
|
"filename": "lib/database/index.ts",
|
|
3921
|
-
"line":
|
|
3921
|
+
"line": 217
|
|
3922
3922
|
},
|
|
3923
3923
|
"name": "maxConnections",
|
|
3924
3924
|
"type": {
|
|
@@ -3934,7 +3934,7 @@
|
|
|
3934
3934
|
"immutable": true,
|
|
3935
3935
|
"locationInModule": {
|
|
3936
3936
|
"filename": "lib/database/index.ts",
|
|
3937
|
-
"line":
|
|
3937
|
+
"line": 244
|
|
3938
3938
|
},
|
|
3939
3939
|
"name": "maxLocksPerTransaction",
|
|
3940
3940
|
"type": {
|
|
@@ -3950,7 +3950,7 @@
|
|
|
3950
3950
|
"immutable": true,
|
|
3951
3951
|
"locationInModule": {
|
|
3952
3952
|
"filename": "lib/database/index.ts",
|
|
3953
|
-
"line":
|
|
3953
|
+
"line": 259
|
|
3954
3954
|
},
|
|
3955
3955
|
"name": "randomPageCost",
|
|
3956
3956
|
"type": {
|
|
@@ -3966,7 +3966,7 @@
|
|
|
3966
3966
|
"immutable": true,
|
|
3967
3967
|
"locationInModule": {
|
|
3968
3968
|
"filename": "lib/database/index.ts",
|
|
3969
|
-
"line":
|
|
3969
|
+
"line": 254
|
|
3970
3970
|
},
|
|
3971
3971
|
"name": "seqPageCost",
|
|
3972
3972
|
"type": {
|
|
@@ -3983,7 +3983,7 @@
|
|
|
3983
3983
|
"immutable": true,
|
|
3984
3984
|
"locationInModule": {
|
|
3985
3985
|
"filename": "lib/database/index.ts",
|
|
3986
|
-
"line":
|
|
3986
|
+
"line": 224
|
|
3987
3987
|
},
|
|
3988
3988
|
"name": "sharedBuffers",
|
|
3989
3989
|
"type": {
|
|
@@ -3999,7 +3999,7 @@
|
|
|
3999
3999
|
"immutable": true,
|
|
4000
4000
|
"locationInModule": {
|
|
4001
4001
|
"filename": "lib/database/index.ts",
|
|
4002
|
-
"line":
|
|
4002
|
+
"line": 249
|
|
4003
4003
|
},
|
|
4004
4004
|
"name": "tempBuffers",
|
|
4005
4005
|
"type": {
|
|
@@ -4015,7 +4015,7 @@
|
|
|
4015
4015
|
"immutable": true,
|
|
4016
4016
|
"locationInModule": {
|
|
4017
4017
|
"filename": "lib/database/index.ts",
|
|
4018
|
-
"line":
|
|
4018
|
+
"line": 234
|
|
4019
4019
|
},
|
|
4020
4020
|
"name": "workMem",
|
|
4021
4021
|
"type": {
|
|
@@ -4108,7 +4108,7 @@
|
|
|
4108
4108
|
"kind": "interface",
|
|
4109
4109
|
"locationInModule": {
|
|
4110
4110
|
"filename": "lib/stac-api/index.ts",
|
|
4111
|
-
"line":
|
|
4111
|
+
"line": 69
|
|
4112
4112
|
},
|
|
4113
4113
|
"name": "PgStacApiLambdaProps",
|
|
4114
4114
|
"properties": [
|
|
@@ -4121,7 +4121,7 @@
|
|
|
4121
4121
|
"immutable": true,
|
|
4122
4122
|
"locationInModule": {
|
|
4123
4123
|
"filename": "lib/stac-api/index.ts",
|
|
4124
|
-
"line":
|
|
4124
|
+
"line": 78
|
|
4125
4125
|
},
|
|
4126
4126
|
"name": "db",
|
|
4127
4127
|
"type": {
|
|
@@ -4137,7 +4137,7 @@
|
|
|
4137
4137
|
"immutable": true,
|
|
4138
4138
|
"locationInModule": {
|
|
4139
4139
|
"filename": "lib/stac-api/index.ts",
|
|
4140
|
-
"line":
|
|
4140
|
+
"line": 88
|
|
4141
4141
|
},
|
|
4142
4142
|
"name": "dbSecret",
|
|
4143
4143
|
"type": {
|
|
@@ -4153,7 +4153,7 @@
|
|
|
4153
4153
|
"immutable": true,
|
|
4154
4154
|
"locationInModule": {
|
|
4155
4155
|
"filename": "lib/stac-api/index.ts",
|
|
4156
|
-
"line":
|
|
4156
|
+
"line": 93
|
|
4157
4157
|
},
|
|
4158
4158
|
"name": "apiEnv",
|
|
4159
4159
|
"optional": true,
|
|
@@ -4170,14 +4170,13 @@
|
|
|
4170
4170
|
"abstract": true,
|
|
4171
4171
|
"docs": {
|
|
4172
4172
|
"default": "- defined in the construct.",
|
|
4173
|
-
"remarks": "Can be anything that can be configured on the lambda function, but some will be overwritten by values defined here.",
|
|
4174
4173
|
"stability": "experimental",
|
|
4175
|
-
"summary": "
|
|
4174
|
+
"summary": "Can be used to override the default lambda function properties."
|
|
4176
4175
|
},
|
|
4177
4176
|
"immutable": true,
|
|
4178
4177
|
"locationInModule": {
|
|
4179
4178
|
"filename": "lib/stac-api/index.ts",
|
|
4180
|
-
"line":
|
|
4179
|
+
"line": 105
|
|
4181
4180
|
},
|
|
4182
4181
|
"name": "lambdaFunctionOptions",
|
|
4183
4182
|
"optional": true,
|
|
@@ -4194,7 +4193,7 @@
|
|
|
4194
4193
|
"immutable": true,
|
|
4195
4194
|
"locationInModule": {
|
|
4196
4195
|
"filename": "lib/stac-api/index.ts",
|
|
4197
|
-
"line":
|
|
4196
|
+
"line": 98
|
|
4198
4197
|
},
|
|
4199
4198
|
"name": "stacApiDomainName",
|
|
4200
4199
|
"optional": true,
|
|
@@ -4211,7 +4210,7 @@
|
|
|
4211
4210
|
"immutable": true,
|
|
4212
4211
|
"locationInModule": {
|
|
4213
4212
|
"filename": "lib/stac-api/index.ts",
|
|
4214
|
-
"line":
|
|
4213
|
+
"line": 83
|
|
4215
4214
|
},
|
|
4216
4215
|
"name": "subnetSelection",
|
|
4217
4216
|
"optional": true,
|
|
@@ -4228,7 +4227,7 @@
|
|
|
4228
4227
|
"immutable": true,
|
|
4229
4228
|
"locationInModule": {
|
|
4230
4229
|
"filename": "lib/stac-api/index.ts",
|
|
4231
|
-
"line":
|
|
4230
|
+
"line": 73
|
|
4232
4231
|
},
|
|
4233
4232
|
"name": "vpc",
|
|
4234
4233
|
"optional": true,
|
|
@@ -4289,7 +4288,7 @@
|
|
|
4289
4288
|
},
|
|
4290
4289
|
"locationInModule": {
|
|
4291
4290
|
"filename": "lib/database/index.ts",
|
|
4292
|
-
"line":
|
|
4291
|
+
"line": 133
|
|
4293
4292
|
},
|
|
4294
4293
|
"name": "getParameters",
|
|
4295
4294
|
"parameters": [
|
|
@@ -4363,7 +4362,7 @@
|
|
|
4363
4362
|
"kind": "interface",
|
|
4364
4363
|
"locationInModule": {
|
|
4365
4364
|
"filename": "lib/database/index.ts",
|
|
4366
|
-
"line":
|
|
4365
|
+
"line": 173
|
|
4367
4366
|
},
|
|
4368
4367
|
"name": "PgStacDatabaseProps",
|
|
4369
4368
|
"properties": [
|
|
@@ -4371,14 +4370,13 @@
|
|
|
4371
4370
|
"abstract": true,
|
|
4372
4371
|
"docs": {
|
|
4373
4372
|
"default": "- defined in the construct.",
|
|
4374
|
-
"remarks": "Can be anything that can be configured on the lambda function, but some will be overwritten by values defined here.",
|
|
4375
4373
|
"stability": "experimental",
|
|
4376
|
-
"summary": "
|
|
4374
|
+
"summary": "Can be used to override the default lambda function properties."
|
|
4377
4375
|
},
|
|
4378
4376
|
"immutable": true,
|
|
4379
4377
|
"locationInModule": {
|
|
4380
4378
|
"filename": "lib/database/index.ts",
|
|
4381
|
-
"line":
|
|
4379
|
+
"line": 210
|
|
4382
4380
|
},
|
|
4383
4381
|
"name": "bootstrapperLambdaFunctionOptions",
|
|
4384
4382
|
"optional": true,
|
|
@@ -4396,7 +4394,7 @@
|
|
|
4396
4394
|
"immutable": true,
|
|
4397
4395
|
"locationInModule": {
|
|
4398
4396
|
"filename": "lib/database/index.ts",
|
|
4399
|
-
"line":
|
|
4397
|
+
"line": 201
|
|
4400
4398
|
},
|
|
4401
4399
|
"name": "customResourceProperties",
|
|
4402
4400
|
"optional": true,
|
|
@@ -4419,7 +4417,7 @@
|
|
|
4419
4417
|
"immutable": true,
|
|
4420
4418
|
"locationInModule": {
|
|
4421
4419
|
"filename": "lib/database/index.ts",
|
|
4422
|
-
"line":
|
|
4420
|
+
"line": 179
|
|
4423
4421
|
},
|
|
4424
4422
|
"name": "pgstacDbName",
|
|
4425
4423
|
"optional": true,
|
|
@@ -4437,7 +4435,7 @@
|
|
|
4437
4435
|
"immutable": true,
|
|
4438
4436
|
"locationInModule": {
|
|
4439
4437
|
"filename": "lib/database/index.ts",
|
|
4440
|
-
"line":
|
|
4438
|
+
"line": 193
|
|
4441
4439
|
},
|
|
4442
4440
|
"name": "pgstacUsername",
|
|
4443
4441
|
"optional": true,
|
|
@@ -4455,7 +4453,7 @@
|
|
|
4455
4453
|
"immutable": true,
|
|
4456
4454
|
"locationInModule": {
|
|
4457
4455
|
"filename": "lib/database/index.ts",
|
|
4458
|
-
"line":
|
|
4456
|
+
"line": 186
|
|
4459
4457
|
},
|
|
4460
4458
|
"name": "secretsPrefix",
|
|
4461
4459
|
"optional": true,
|
|
@@ -4548,7 +4546,7 @@
|
|
|
4548
4546
|
"kind": "interface",
|
|
4549
4547
|
"locationInModule": {
|
|
4550
4548
|
"filename": "lib/stac-browser/index.ts",
|
|
4551
|
-
"line":
|
|
4549
|
+
"line": 116
|
|
4552
4550
|
},
|
|
4553
4551
|
"name": "StacBrowserProps",
|
|
4554
4552
|
"properties": [
|
|
@@ -4561,7 +4559,7 @@
|
|
|
4561
4559
|
"immutable": true,
|
|
4562
4560
|
"locationInModule": {
|
|
4563
4561
|
"filename": "lib/stac-browser/index.ts",
|
|
4564
|
-
"line":
|
|
4562
|
+
"line": 141
|
|
4565
4563
|
},
|
|
4566
4564
|
"name": "githubRepoTag",
|
|
4567
4565
|
"type": {
|
|
@@ -4571,13 +4569,14 @@
|
|
|
4571
4569
|
{
|
|
4572
4570
|
"abstract": true,
|
|
4573
4571
|
"docs": {
|
|
4572
|
+
"remarks": "Overrides the catalog URL in the stac-browser configuration.",
|
|
4574
4573
|
"stability": "experimental",
|
|
4575
4574
|
"summary": "STAC catalog URL."
|
|
4576
4575
|
},
|
|
4577
4576
|
"immutable": true,
|
|
4578
4577
|
"locationInModule": {
|
|
4579
4578
|
"filename": "lib/stac-browser/index.ts",
|
|
4580
|
-
"line":
|
|
4579
|
+
"line": 130
|
|
4581
4580
|
},
|
|
4582
4581
|
"name": "stacCatalogUrl",
|
|
4583
4582
|
"type": {
|
|
@@ -4595,7 +4594,7 @@
|
|
|
4595
4594
|
"immutable": true,
|
|
4596
4595
|
"locationInModule": {
|
|
4597
4596
|
"filename": "lib/stac-browser/index.ts",
|
|
4598
|
-
"line":
|
|
4597
|
+
"line": 125
|
|
4599
4598
|
},
|
|
4600
4599
|
"name": "bucketArn",
|
|
4601
4600
|
"optional": true,
|
|
@@ -4613,7 +4612,7 @@
|
|
|
4613
4612
|
"immutable": true,
|
|
4614
4613
|
"locationInModule": {
|
|
4615
4614
|
"filename": "lib/stac-browser/index.ts",
|
|
4616
|
-
"line":
|
|
4615
|
+
"line": 165
|
|
4617
4616
|
},
|
|
4618
4617
|
"name": "cloneDirectory",
|
|
4619
4618
|
"optional": true,
|
|
@@ -4632,7 +4631,7 @@
|
|
|
4632
4631
|
"immutable": true,
|
|
4633
4632
|
"locationInModule": {
|
|
4634
4633
|
"filename": "lib/stac-browser/index.ts",
|
|
4635
|
-
"line":
|
|
4634
|
+
"line": 150
|
|
4636
4635
|
},
|
|
4637
4636
|
"name": "cloudFrontDistributionArn",
|
|
4638
4637
|
"optional": true,
|
|
@@ -4640,6 +4639,24 @@
|
|
|
4640
4639
|
"primitive": "string"
|
|
4641
4640
|
}
|
|
4642
4641
|
},
|
|
4642
|
+
{
|
|
4643
|
+
"abstract": true,
|
|
4644
|
+
"docs": {
|
|
4645
|
+
"remarks": "If not provided, default configuration in the STAC browser\nrepository is used.",
|
|
4646
|
+
"stability": "experimental",
|
|
4647
|
+
"summary": "Path to config file for the STAC browser."
|
|
4648
|
+
},
|
|
4649
|
+
"immutable": true,
|
|
4650
|
+
"locationInModule": {
|
|
4651
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4652
|
+
"line": 136
|
|
4653
|
+
},
|
|
4654
|
+
"name": "configFilePath",
|
|
4655
|
+
"optional": true,
|
|
4656
|
+
"type": {
|
|
4657
|
+
"primitive": "string"
|
|
4658
|
+
}
|
|
4659
|
+
},
|
|
4643
4660
|
{
|
|
4644
4661
|
"abstract": true,
|
|
4645
4662
|
"docs": {
|
|
@@ -4650,7 +4667,7 @@
|
|
|
4650
4667
|
"immutable": true,
|
|
4651
4668
|
"locationInModule": {
|
|
4652
4669
|
"filename": "lib/stac-browser/index.ts",
|
|
4653
|
-
"line":
|
|
4670
|
+
"line": 158
|
|
4654
4671
|
},
|
|
4655
4672
|
"name": "websiteIndexDocument",
|
|
4656
4673
|
"optional": true,
|
|
@@ -4743,7 +4760,7 @@
|
|
|
4743
4760
|
"kind": "interface",
|
|
4744
4761
|
"locationInModule": {
|
|
4745
4762
|
"filename": "lib/ingestor-api/index.ts",
|
|
4746
|
-
"line":
|
|
4763
|
+
"line": 265
|
|
4747
4764
|
},
|
|
4748
4765
|
"name": "StacIngestorProps",
|
|
4749
4766
|
"properties": [
|
|
@@ -4756,7 +4773,7 @@
|
|
|
4756
4773
|
"immutable": true,
|
|
4757
4774
|
"locationInModule": {
|
|
4758
4775
|
"filename": "lib/ingestor-api/index.ts",
|
|
4759
|
-
"line":
|
|
4776
|
+
"line": 269
|
|
4760
4777
|
},
|
|
4761
4778
|
"name": "dataAccessRole",
|
|
4762
4779
|
"type": {
|
|
@@ -4772,7 +4789,7 @@
|
|
|
4772
4789
|
"immutable": true,
|
|
4773
4790
|
"locationInModule": {
|
|
4774
4791
|
"filename": "lib/ingestor-api/index.ts",
|
|
4775
|
-
"line":
|
|
4792
|
+
"line": 284
|
|
4776
4793
|
},
|
|
4777
4794
|
"name": "stacDbSecret",
|
|
4778
4795
|
"type": {
|
|
@@ -4788,7 +4805,7 @@
|
|
|
4788
4805
|
"immutable": true,
|
|
4789
4806
|
"locationInModule": {
|
|
4790
4807
|
"filename": "lib/ingestor-api/index.ts",
|
|
4791
|
-
"line":
|
|
4808
|
+
"line": 294
|
|
4792
4809
|
},
|
|
4793
4810
|
"name": "stacDbSecurityGroup",
|
|
4794
4811
|
"type": {
|
|
@@ -4804,7 +4821,7 @@
|
|
|
4804
4821
|
"immutable": true,
|
|
4805
4822
|
"locationInModule": {
|
|
4806
4823
|
"filename": "lib/ingestor-api/index.ts",
|
|
4807
|
-
"line":
|
|
4824
|
+
"line": 274
|
|
4808
4825
|
},
|
|
4809
4826
|
"name": "stacUrl",
|
|
4810
4827
|
"type": {
|
|
@@ -4820,7 +4837,7 @@
|
|
|
4820
4837
|
"immutable": true,
|
|
4821
4838
|
"locationInModule": {
|
|
4822
4839
|
"filename": "lib/ingestor-api/index.ts",
|
|
4823
|
-
"line":
|
|
4840
|
+
"line": 279
|
|
4824
4841
|
},
|
|
4825
4842
|
"name": "stage",
|
|
4826
4843
|
"type": {
|
|
@@ -4836,7 +4853,7 @@
|
|
|
4836
4853
|
"immutable": true,
|
|
4837
4854
|
"locationInModule": {
|
|
4838
4855
|
"filename": "lib/ingestor-api/index.ts",
|
|
4839
|
-
"line":
|
|
4856
|
+
"line": 309
|
|
4840
4857
|
},
|
|
4841
4858
|
"name": "apiEndpointConfiguration",
|
|
4842
4859
|
"optional": true,
|
|
@@ -4853,7 +4870,7 @@
|
|
|
4853
4870
|
"immutable": true,
|
|
4854
4871
|
"locationInModule": {
|
|
4855
4872
|
"filename": "lib/ingestor-api/index.ts",
|
|
4856
|
-
"line":
|
|
4873
|
+
"line": 304
|
|
4857
4874
|
},
|
|
4858
4875
|
"name": "apiEnv",
|
|
4859
4876
|
"optional": true,
|
|
@@ -4870,14 +4887,13 @@
|
|
|
4870
4887
|
"abstract": true,
|
|
4871
4888
|
"docs": {
|
|
4872
4889
|
"default": "- default settings are defined in the construct.",
|
|
4873
|
-
"remarks": "Can be anything that can be configured on the lambda function, but some will be overwritten by values defined here.",
|
|
4874
4890
|
"stability": "experimental",
|
|
4875
|
-
"summary": "
|
|
4891
|
+
"summary": "Can be used to override the default lambda function properties."
|
|
4876
4892
|
},
|
|
4877
4893
|
"immutable": true,
|
|
4878
4894
|
"locationInModule": {
|
|
4879
4895
|
"filename": "lib/ingestor-api/index.ts",
|
|
4880
|
-
"line":
|
|
4896
|
+
"line": 326
|
|
4881
4897
|
},
|
|
4882
4898
|
"name": "apiLambdaFunctionOptions",
|
|
4883
4899
|
"optional": true,
|
|
@@ -4894,7 +4910,7 @@
|
|
|
4894
4910
|
"immutable": true,
|
|
4895
4911
|
"locationInModule": {
|
|
4896
4912
|
"filename": "lib/ingestor-api/index.ts",
|
|
4897
|
-
"line":
|
|
4913
|
+
"line": 314
|
|
4898
4914
|
},
|
|
4899
4915
|
"name": "apiPolicy",
|
|
4900
4916
|
"optional": true,
|
|
@@ -4911,7 +4927,7 @@
|
|
|
4911
4927
|
"immutable": true,
|
|
4912
4928
|
"locationInModule": {
|
|
4913
4929
|
"filename": "lib/ingestor-api/index.ts",
|
|
4914
|
-
"line":
|
|
4930
|
+
"line": 319
|
|
4915
4931
|
},
|
|
4916
4932
|
"name": "ingestorDomainNameOptions",
|
|
4917
4933
|
"optional": true,
|
|
@@ -4923,14 +4939,13 @@
|
|
|
4923
4939
|
"abstract": true,
|
|
4924
4940
|
"docs": {
|
|
4925
4941
|
"default": "- default settings are defined in the construct.",
|
|
4926
|
-
"remarks": "Can be anything that can be configured on the lambda function, but some will be overwritten by values defined here.",
|
|
4927
4942
|
"stability": "experimental",
|
|
4928
|
-
"summary": "
|
|
4943
|
+
"summary": "Can be used to override the default lambda function properties."
|
|
4929
4944
|
},
|
|
4930
4945
|
"immutable": true,
|
|
4931
4946
|
"locationInModule": {
|
|
4932
4947
|
"filename": "lib/ingestor-api/index.ts",
|
|
4933
|
-
"line":
|
|
4948
|
+
"line": 333
|
|
4934
4949
|
},
|
|
4935
4950
|
"name": "ingestorLambdaFunctionOptions",
|
|
4936
4951
|
"optional": true,
|
|
@@ -4947,7 +4962,7 @@
|
|
|
4947
4962
|
"immutable": true,
|
|
4948
4963
|
"locationInModule": {
|
|
4949
4964
|
"filename": "lib/ingestor-api/index.ts",
|
|
4950
|
-
"line":
|
|
4965
|
+
"line": 299
|
|
4951
4966
|
},
|
|
4952
4967
|
"name": "subnetSelection",
|
|
4953
4968
|
"optional": true,
|
|
@@ -4964,7 +4979,7 @@
|
|
|
4964
4979
|
"immutable": true,
|
|
4965
4980
|
"locationInModule": {
|
|
4966
4981
|
"filename": "lib/ingestor-api/index.ts",
|
|
4967
|
-
"line":
|
|
4982
|
+
"line": 289
|
|
4968
4983
|
},
|
|
4969
4984
|
"name": "vpc",
|
|
4970
4985
|
"optional": true,
|
|
@@ -5058,7 +5073,7 @@
|
|
|
5058
5073
|
"kind": "interface",
|
|
5059
5074
|
"locationInModule": {
|
|
5060
5075
|
"filename": "lib/tipg-api/index.ts",
|
|
5061
|
-
"line":
|
|
5076
|
+
"line": 67
|
|
5062
5077
|
},
|
|
5063
5078
|
"name": "TiPgApiLambdaProps",
|
|
5064
5079
|
"properties": [
|
|
@@ -5071,7 +5086,7 @@
|
|
|
5071
5086
|
"immutable": true,
|
|
5072
5087
|
"locationInModule": {
|
|
5073
5088
|
"filename": "lib/tipg-api/index.ts",
|
|
5074
|
-
"line":
|
|
5089
|
+
"line": 77
|
|
5075
5090
|
},
|
|
5076
5091
|
"name": "db",
|
|
5077
5092
|
"type": {
|
|
@@ -5087,7 +5102,7 @@
|
|
|
5087
5102
|
"immutable": true,
|
|
5088
5103
|
"locationInModule": {
|
|
5089
5104
|
"filename": "lib/tipg-api/index.ts",
|
|
5090
|
-
"line":
|
|
5105
|
+
"line": 87
|
|
5091
5106
|
},
|
|
5092
5107
|
"name": "dbSecret",
|
|
5093
5108
|
"type": {
|
|
@@ -5103,7 +5118,7 @@
|
|
|
5103
5118
|
"immutable": true,
|
|
5104
5119
|
"locationInModule": {
|
|
5105
5120
|
"filename": "lib/tipg-api/index.ts",
|
|
5106
|
-
"line":
|
|
5121
|
+
"line": 93
|
|
5107
5122
|
},
|
|
5108
5123
|
"name": "apiEnv",
|
|
5109
5124
|
"optional": true,
|
|
@@ -5120,14 +5135,13 @@
|
|
|
5120
5135
|
"abstract": true,
|
|
5121
5136
|
"docs": {
|
|
5122
5137
|
"default": "- defined in the construct.",
|
|
5123
|
-
"remarks": "Can be anything that can be configured on the lambda function, but some will be overwritten by values defined here.",
|
|
5124
5138
|
"stability": "experimental",
|
|
5125
|
-
"summary": "
|
|
5139
|
+
"summary": "Can be used to override the default lambda function properties."
|
|
5126
5140
|
},
|
|
5127
5141
|
"immutable": true,
|
|
5128
5142
|
"locationInModule": {
|
|
5129
5143
|
"filename": "lib/tipg-api/index.ts",
|
|
5130
|
-
"line":
|
|
5144
|
+
"line": 109
|
|
5131
5145
|
},
|
|
5132
5146
|
"name": "lambdaFunctionOptions",
|
|
5133
5147
|
"optional": true,
|
|
@@ -5144,7 +5158,7 @@
|
|
|
5144
5158
|
"immutable": true,
|
|
5145
5159
|
"locationInModule": {
|
|
5146
5160
|
"filename": "lib/tipg-api/index.ts",
|
|
5147
|
-
"line":
|
|
5161
|
+
"line": 82
|
|
5148
5162
|
},
|
|
5149
5163
|
"name": "subnetSelection",
|
|
5150
5164
|
"optional": true,
|
|
@@ -5163,7 +5177,7 @@
|
|
|
5163
5177
|
"immutable": true,
|
|
5164
5178
|
"locationInModule": {
|
|
5165
5179
|
"filename": "lib/tipg-api/index.ts",
|
|
5166
|
-
"line":
|
|
5180
|
+
"line": 101
|
|
5167
5181
|
},
|
|
5168
5182
|
"name": "tipgApiDomainName",
|
|
5169
5183
|
"optional": true,
|
|
@@ -5180,7 +5194,7 @@
|
|
|
5180
5194
|
"immutable": true,
|
|
5181
5195
|
"locationInModule": {
|
|
5182
5196
|
"filename": "lib/tipg-api/index.ts",
|
|
5183
|
-
"line":
|
|
5197
|
+
"line": 72
|
|
5184
5198
|
},
|
|
5185
5199
|
"name": "vpc",
|
|
5186
5200
|
"optional": true,
|
|
@@ -5201,7 +5215,7 @@
|
|
|
5201
5215
|
"kind": "interface",
|
|
5202
5216
|
"locationInModule": {
|
|
5203
5217
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5204
|
-
"line":
|
|
5218
|
+
"line": 93
|
|
5205
5219
|
},
|
|
5206
5220
|
"name": "TitilerPgStacApiLambdaProps",
|
|
5207
5221
|
"properties": [
|
|
@@ -5214,7 +5228,7 @@
|
|
|
5214
5228
|
"immutable": true,
|
|
5215
5229
|
"locationInModule": {
|
|
5216
5230
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5217
|
-
"line":
|
|
5231
|
+
"line": 103
|
|
5218
5232
|
},
|
|
5219
5233
|
"name": "db",
|
|
5220
5234
|
"type": {
|
|
@@ -5230,7 +5244,7 @@
|
|
|
5230
5244
|
"immutable": true,
|
|
5231
5245
|
"locationInModule": {
|
|
5232
5246
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5233
|
-
"line":
|
|
5247
|
+
"line": 113
|
|
5234
5248
|
},
|
|
5235
5249
|
"name": "dbSecret",
|
|
5236
5250
|
"type": {
|
|
@@ -5247,7 +5261,7 @@
|
|
|
5247
5261
|
"immutable": true,
|
|
5248
5262
|
"locationInModule": {
|
|
5249
5263
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5250
|
-
"line":
|
|
5264
|
+
"line": 119
|
|
5251
5265
|
},
|
|
5252
5266
|
"name": "apiEnv",
|
|
5253
5267
|
"optional": true,
|
|
@@ -5269,7 +5283,7 @@
|
|
|
5269
5283
|
"immutable": true,
|
|
5270
5284
|
"locationInModule": {
|
|
5271
5285
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5272
|
-
"line":
|
|
5286
|
+
"line": 124
|
|
5273
5287
|
},
|
|
5274
5288
|
"name": "buckets",
|
|
5275
5289
|
"optional": true,
|
|
@@ -5286,14 +5300,13 @@
|
|
|
5286
5300
|
"abstract": true,
|
|
5287
5301
|
"docs": {
|
|
5288
5302
|
"default": "- defined in the construct.",
|
|
5289
|
-
"remarks": "Can be anything that can be configured on the lambda function, but some will be overwritten by values defined here.",
|
|
5290
5303
|
"stability": "experimental",
|
|
5291
|
-
"summary": "
|
|
5304
|
+
"summary": "Can be used to override the default lambda function properties."
|
|
5292
5305
|
},
|
|
5293
5306
|
"immutable": true,
|
|
5294
5307
|
"locationInModule": {
|
|
5295
5308
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5296
|
-
"line":
|
|
5309
|
+
"line": 138
|
|
5297
5310
|
},
|
|
5298
5311
|
"name": "lambdaFunctionOptions",
|
|
5299
5312
|
"optional": true,
|
|
@@ -5310,7 +5323,7 @@
|
|
|
5310
5323
|
"immutable": true,
|
|
5311
5324
|
"locationInModule": {
|
|
5312
5325
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5313
|
-
"line":
|
|
5326
|
+
"line": 108
|
|
5314
5327
|
},
|
|
5315
5328
|
"name": "subnetSelection",
|
|
5316
5329
|
"optional": true,
|
|
@@ -5328,7 +5341,7 @@
|
|
|
5328
5341
|
"immutable": true,
|
|
5329
5342
|
"locationInModule": {
|
|
5330
5343
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5331
|
-
"line":
|
|
5344
|
+
"line": 131
|
|
5332
5345
|
},
|
|
5333
5346
|
"name": "titilerPgstacApiDomainName",
|
|
5334
5347
|
"optional": true,
|
|
@@ -5345,7 +5358,7 @@
|
|
|
5345
5358
|
"immutable": true,
|
|
5346
5359
|
"locationInModule": {
|
|
5347
5360
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5348
|
-
"line":
|
|
5361
|
+
"line": 98
|
|
5349
5362
|
},
|
|
5350
5363
|
"name": "vpc",
|
|
5351
5364
|
"optional": true,
|
|
@@ -5430,6 +5443,6 @@
|
|
|
5430
5443
|
"symbolId": "lib/titiler-pgstac-api/index:TitilerPgstacApiLambda"
|
|
5431
5444
|
}
|
|
5432
5445
|
},
|
|
5433
|
-
"version": "
|
|
5434
|
-
"fingerprint": "
|
|
5446
|
+
"version": "7.0.0",
|
|
5447
|
+
"fingerprint": "LAh6wDS4tvXQXXgBJ+fgTd9aSpIFHDpLIFNtwmhgL/o="
|
|
5435
5448
|
}
|