Skip to main content

vector_enrichment_jobs

Creates, updates, deletes, gets or lists a vector_enrichment_jobs resource.

Overview

Namevector_enrichment_jobs
TypeResource
Idaws.sagemaker_geospatial.vector_enrichment_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the Vector Enrichment job.
creation_timestring (date-time)The creation time.
duration_in_secondsintegerThe duration of the Vector Enrichment job, in seconds.
error_detailsobjectDetails about the errors generated during the Vector Enrichment job.
execution_role_arnstringThe Amazon Resource Name (ARN) of the IAM role that you specified for the job. (pattern: <code>^arn:(aws[a-z-]*):iam::([0-9]{12}):role/[a-zA-Z0-9+=,.@_/-]+$</code>)
export_error_detailsobjectDetails about the errors generated during the ExportVectorEnrichmentJob.
export_statusstringThe export status of the Vector Enrichment job being initiated. (IN_PROGRESS, SUCCEEDED, FAILED)
input_configobjectInput configuration information for the Vector Enrichment job.
job_configobjectAn object containing information about the job configuration.
kms_key_idstringThe Key Management Service key ID for server-side encryption.
namestringThe name of the Vector Enrichment job.
statusstringThe status of the initiated Vector Enrichment job. (INITIALIZING, IN_PROGRESS, STOPPING, STOPPED, COMPLETED, FAILED, DELETING, DELETED)
tagsobjectEach tag consists of a key and a value.
typestringThe type of the Vector Enrichment job being initiated. (REVERSE_GEOCODING, MAP_MATCHING)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_vector_enrichment_jobselectarn, regionRetrieves details of a Vector Enrichment Job for a given job Amazon Resource Name (ARN).
list_vector_enrichment_jobsselectregionRetrieves a list of vector enrichment jobs.
delete_vector_enrichment_jobdeletearn, regionUse this operation to delete a Vector Enrichment job.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the Vector Enrichment job being deleted.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves details of a Vector Enrichment Job for a given job Amazon Resource Name (ARN).

SELECT
arn,
creation_time,
duration_in_seconds,
error_details,
execution_role_arn,
export_error_details,
export_status,
input_config,
job_config,
kms_key_id,
name,
status,
tags,
type
FROM aws.sagemaker_geospatial.vector_enrichment_jobs
WHERE arn = '{{ arn }}' -- required
AND region = '{{ region }}' -- required
;

DELETE examples

Use this operation to delete a Vector Enrichment job.

DELETE FROM aws.sagemaker_geospatial.vector_enrichment_jobs
WHERE arn = '{{ arn }}' --required
AND region = '{{ region }}' --required
;