eoapi-cdk 8.2.1__tar.gz → 8.2.2__tar.gz
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.
- {eoapi_cdk-8.2.1/src/eoapi_cdk.egg-info → eoapi_cdk-8.2.2}/PKG-INFO +1 -1
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/setup.py +2 -2
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/src/eoapi_cdk/__init__.py +6 -2
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/src/eoapi_cdk/_jsii/__init__.py +1 -1
- eoapi_cdk-8.2.2/src/eoapi_cdk/_jsii/eoapi-cdk@8.2.2.jsii.tgz +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2/src/eoapi_cdk.egg-info}/PKG-INFO +1 -1
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/src/eoapi_cdk.egg-info/SOURCES.txt +1 -1
- eoapi_cdk-8.2.1/src/eoapi_cdk/_jsii/eoapi-cdk@8.2.1.jsii.tgz +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/LICENSE +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/MANIFEST.in +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/README.md +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/pyproject.toml +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/setup.cfg +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/src/eoapi_cdk/py.typed +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/src/eoapi_cdk.egg-info/dependency_links.txt +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/src/eoapi_cdk.egg-info/requires.txt +0 -0
- {eoapi_cdk-8.2.1 → eoapi_cdk-8.2.2}/src/eoapi_cdk.egg-info/top_level.txt +0 -0
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "eoapi-cdk",
|
|
8
|
-
"version": "8.2.
|
|
8
|
+
"version": "8.2.2",
|
|
9
9
|
"description": "A set of constructs deploying pgSTAC with CDK",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"url": "https://github.com/developmentseed/eoapi-cdk.git",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"eoapi_cdk._jsii": [
|
|
29
|
-
"eoapi-cdk@8.2.
|
|
29
|
+
"eoapi-cdk@8.2.2.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"eoapi_cdk": [
|
|
32
32
|
"py.typed"
|
|
@@ -3038,7 +3038,7 @@ class StacItemLoader(
|
|
|
3038
3038
|
:param id: -
|
|
3039
3039
|
:param pgstac_db: (experimental) The PgSTAC database instance to load items into. This database must have the pgstac extension installed and be properly configured with collections before items can be loaded. The loader will use AWS Secrets Manager to securely access database credentials.
|
|
3040
3040
|
:param batch_size: (experimental) SQS batch size for lambda event source. This determines the maximum number of STAC items that will be processed together in a single lambda invocation. Larger batch sizes improve database insertion efficiency but require more memory and longer processing time. **Batching Behavior**: SQS will wait to accumulate up to this many messages before triggering the Lambda, OR until the maxBatchingWindow timeout is reached, whichever comes first. This creates an efficient balance between throughput and latency. Default: 500
|
|
3041
|
-
:param environment: (experimental) Additional environment variables for the lambda function. These will be merged with the default environment variables including PGSTAC_SECRET_ARN. Use this for custom configuration or debugging flags.
|
|
3041
|
+
:param environment: (experimental) Additional environment variables for the lambda function. These will be merged with the default environment variables including PGSTAC_SECRET_ARN. Use this for custom configuration or debugging flags. If you want to enable the option to upload a boilerplate collection record in the event that the collection record does not yet exist for an item that is set to be loaded, set the variable ``"CREATE_COLLECTIONS_IF_MISSING": "TRUE"``.
|
|
3042
3042
|
:param lambda_function_options: (experimental) Can be used to override the default lambda function properties. Default: - defined in the construct.
|
|
3043
3043
|
:param lambda_runtime: (experimental) The lambda runtime to use for the item loading function. The function is implemented in Python and uses pypgstac for database operations. Ensure the runtime version is compatible with the pgstac version specified in the database configuration. Default: lambda.Runtime.PYTHON_3_11
|
|
3044
3044
|
:param lambda_timeout_seconds: (experimental) The timeout for the item load lambda in seconds. This should accommodate the time needed to process up to ``batchSize`` items and perform database insertions. The SQS visibility timeout will be set to this value plus 10 seconds. Default: 300
|
|
@@ -3187,7 +3187,7 @@ class StacItemLoaderProps:
|
|
|
3187
3187
|
|
|
3188
3188
|
:param pgstac_db: (experimental) The PgSTAC database instance to load items into. This database must have the pgstac extension installed and be properly configured with collections before items can be loaded. The loader will use AWS Secrets Manager to securely access database credentials.
|
|
3189
3189
|
:param batch_size: (experimental) SQS batch size for lambda event source. This determines the maximum number of STAC items that will be processed together in a single lambda invocation. Larger batch sizes improve database insertion efficiency but require more memory and longer processing time. **Batching Behavior**: SQS will wait to accumulate up to this many messages before triggering the Lambda, OR until the maxBatchingWindow timeout is reached, whichever comes first. This creates an efficient balance between throughput and latency. Default: 500
|
|
3190
|
-
:param environment: (experimental) Additional environment variables for the lambda function. These will be merged with the default environment variables including PGSTAC_SECRET_ARN. Use this for custom configuration or debugging flags.
|
|
3190
|
+
:param environment: (experimental) Additional environment variables for the lambda function. These will be merged with the default environment variables including PGSTAC_SECRET_ARN. Use this for custom configuration or debugging flags. If you want to enable the option to upload a boilerplate collection record in the event that the collection record does not yet exist for an item that is set to be loaded, set the variable ``"CREATE_COLLECTIONS_IF_MISSING": "TRUE"``.
|
|
3191
3191
|
:param lambda_function_options: (experimental) Can be used to override the default lambda function properties. Default: - defined in the construct.
|
|
3192
3192
|
:param lambda_runtime: (experimental) The lambda runtime to use for the item loading function. The function is implemented in Python and uses pypgstac for database operations. Ensure the runtime version is compatible with the pgstac version specified in the database configuration. Default: lambda.Runtime.PYTHON_3_11
|
|
3193
3193
|
:param lambda_timeout_seconds: (experimental) The timeout for the item load lambda in seconds. This should accommodate the time needed to process up to ``batchSize`` items and perform database insertions. The SQS visibility timeout will be set to this value plus 10 seconds. Default: 300
|
|
@@ -3291,6 +3291,10 @@ class StacItemLoaderProps:
|
|
|
3291
3291
|
These will be merged with the default environment variables including
|
|
3292
3292
|
PGSTAC_SECRET_ARN. Use this for custom configuration or debugging flags.
|
|
3293
3293
|
|
|
3294
|
+
If you want to enable the option to upload a boilerplate collection record
|
|
3295
|
+
in the event that the collection record does not yet exist for an item that
|
|
3296
|
+
is set to be loaded, set the variable ``"CREATE_COLLECTIONS_IF_MISSING": "TRUE"``.
|
|
3297
|
+
|
|
3294
3298
|
:stability: experimental
|
|
3295
3299
|
'''
|
|
3296
3300
|
result = self._values.get("environment")
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|