Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SageMakerGeospatial

import { SageMakerGeospatial } from "https://aws-api.deno.dev/v0.4/services/sagemakergeospatial.ts?docs=full";
class SageMakerGeospatial {
constructor(apiFactory: client.ApiFactory);
async deleteEarthObservationJob(params: DeleteEarthObservationJobInput, opts?: client.RequestOptions): Promise<void>;
async deleteVectorEnrichmentJob(params: DeleteVectorEnrichmentJobInput, opts?: client.RequestOptions): Promise<void>;
async exportEarthObservationJob(params: ExportEarthObservationJobInput, opts?: client.RequestOptions): Promise<ExportEarthObservationJobOutput>;
async exportVectorEnrichmentJob(params: ExportVectorEnrichmentJobInput, opts?: client.RequestOptions): Promise<ExportVectorEnrichmentJobOutput>;
async getEarthObservationJob(params: GetEarthObservationJobInput, opts?: client.RequestOptions): Promise<GetEarthObservationJobOutput>;
async getRasterDataCollection(params: GetRasterDataCollectionInput, opts?: client.RequestOptions): Promise<GetRasterDataCollectionOutput>;
async getTile(params: GetTileInput, opts?: client.RequestOptions): Promise<GetTileOutput>;
async getVectorEnrichmentJob(params: GetVectorEnrichmentJobInput, opts?: client.RequestOptions): Promise<GetVectorEnrichmentJobOutput>;
async listEarthObservationJobs(params?: ListEarthObservationJobInput, opts?: client.RequestOptions): Promise<ListEarthObservationJobOutput>;
async listRasterDataCollections(params?: ListRasterDataCollectionsInput, opts?: client.RequestOptions): Promise<ListRasterDataCollectionsOutput>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async listVectorEnrichmentJobs(params?: ListVectorEnrichmentJobInput, opts?: client.RequestOptions): Promise<ListVectorEnrichmentJobOutput>;
async searchRasterDataCollection(params: SearchRasterDataCollectionInput, opts?: client.RequestOptions): Promise<SearchRasterDataCollectionOutput>;
async startEarthObservationJob(params: StartEarthObservationJobInput, opts?: client.RequestOptions): Promise<StartEarthObservationJobOutput>;
async startVectorEnrichmentJob(params: StartVectorEnrichmentJobInput, opts?: client.RequestOptions): Promise<StartVectorEnrichmentJobOutput>;
async stopEarthObservationJob(params: StopEarthObservationJobInput, opts?: client.RequestOptions): Promise<void>;
async stopVectorEnrichmentJob(params: StopVectorEnrichmentJobInput, opts?: client.RequestOptions): Promise<void>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new SageMakerGeospatial(apiFactory: client.ApiFactory)
[src]

§Methods

§
deleteEarthObservationJob(params: DeleteEarthObservationJobInput, opts?: client.RequestOptions): Promise<void>
[src]

Use this operation to delete an Earth Observation job.

§
deleteVectorEnrichmentJob(params: DeleteVectorEnrichmentJobInput, opts?: client.RequestOptions): Promise<void>
[src]

Use this operation to delete a Vector Enrichment job.

§

Use this operation to export results of an Earth Observation job and optionally source images used as input to the EOJ to an S3 location.

§

Use this operation to copy results of a Vector Enrichment job to an S3 location.

§

Get the details for a previously initiated Earth Observation job.

§

Use this operation to get details of a specific raster data collection.

§
getTile(params: GetTileInput, opts?: client.RequestOptions): Promise<GetTileOutput>
[src]

Gets a web mercator tile for the given Earth Observation job.

§

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

§

Use this operation to get a list of the Earth Observation jobs associated with the calling Amazon Web Services account.

§

Use this operation to get raster data collections.

§

Lists the tags attached to the resource.

§

Retrieves a list of vector enrichment jobs.

§

Allows you run image query on a specific raster data collection to get a list of the satellite imagery matching the selected filters.

§

Use this operation to create an Earth observation job.

§

Creates a Vector Enrichment job for the supplied job type. Currently, there are two supported job types: reverse geocoding and map matching.

§
stopEarthObservationJob(params: StopEarthObservationJobInput, opts?: client.RequestOptions): Promise<void>
[src]

Use this operation to stop an existing earth observation job.

§
stopVectorEnrichmentJob(params: StopVectorEnrichmentJobInput, opts?: client.RequestOptions): Promise<void>
[src]

Stops the Vector Enrichment job for a given job ARN.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

The resource you want to tag.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

The resource you want to untag.

§Static Properties