@aws-sdk/client-sagemaker-geospatial 3.296.0 → 3.297.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/dist-types/SageMakerGeospatial.d.ts +20 -0
- package/dist-types/SageMakerGeospatialClient.d.ts +24 -4
- package/dist-types/commands/DeleteEarthObservationJobCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVectorEnrichmentJobCommand.d.ts +16 -0
- package/dist-types/commands/ExportEarthObservationJobCommand.d.ts +16 -0
- package/dist-types/commands/ExportVectorEnrichmentJobCommand.d.ts +16 -0
- package/dist-types/commands/GetEarthObservationJobCommand.d.ts +16 -0
- package/dist-types/commands/GetRasterDataCollectionCommand.d.ts +16 -0
- package/dist-types/commands/GetTileCommand.d.ts +16 -0
- package/dist-types/commands/GetVectorEnrichmentJobCommand.d.ts +16 -0
- package/dist-types/commands/ListEarthObservationJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListRasterDataCollectionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListVectorEnrichmentJobsCommand.d.ts +16 -0
- package/dist-types/commands/SearchRasterDataCollectionCommand.d.ts +16 -0
- package/dist-types/commands/StartEarthObservationJobCommand.d.ts +16 -0
- package/dist-types/commands/StartVectorEnrichmentJobCommand.d.ts +16 -0
- package/dist-types/commands/StopEarthObservationJobCommand.d.ts +16 -0
- package/dist-types/commands/StopVectorEnrichmentJobCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/SageMakerGeospatialServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +276 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListEarthObservationJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRasterDataCollectionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVectorEnrichmentJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchRasterDataCollectionPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -20,118 +20,138 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
20
20
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
21
|
import { SageMakerGeospatialClient } from "./SageMakerGeospatialClient";
|
|
22
22
|
/**
|
|
23
|
+
* @public
|
|
23
24
|
* <p>Provides APIs for creating and managing SageMaker geospatial resources.</p>
|
|
24
25
|
*/
|
|
25
26
|
export declare class SageMakerGeospatial extends SageMakerGeospatialClient {
|
|
26
27
|
/**
|
|
28
|
+
* @public
|
|
27
29
|
* <p>Use this operation to delete an Earth Observation job.</p>
|
|
28
30
|
*/
|
|
29
31
|
deleteEarthObservationJob(args: DeleteEarthObservationJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEarthObservationJobCommandOutput>;
|
|
30
32
|
deleteEarthObservationJob(args: DeleteEarthObservationJobCommandInput, cb: (err: any, data?: DeleteEarthObservationJobCommandOutput) => void): void;
|
|
31
33
|
deleteEarthObservationJob(args: DeleteEarthObservationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEarthObservationJobCommandOutput) => void): void;
|
|
32
34
|
/**
|
|
35
|
+
* @public
|
|
33
36
|
* <p>Use this operation to delete a Vector Enrichment job.</p>
|
|
34
37
|
*/
|
|
35
38
|
deleteVectorEnrichmentJob(args: DeleteVectorEnrichmentJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVectorEnrichmentJobCommandOutput>;
|
|
36
39
|
deleteVectorEnrichmentJob(args: DeleteVectorEnrichmentJobCommandInput, cb: (err: any, data?: DeleteVectorEnrichmentJobCommandOutput) => void): void;
|
|
37
40
|
deleteVectorEnrichmentJob(args: DeleteVectorEnrichmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVectorEnrichmentJobCommandOutput) => void): void;
|
|
38
41
|
/**
|
|
42
|
+
* @public
|
|
39
43
|
* <p>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.</p>
|
|
40
44
|
*/
|
|
41
45
|
exportEarthObservationJob(args: ExportEarthObservationJobCommandInput, options?: __HttpHandlerOptions): Promise<ExportEarthObservationJobCommandOutput>;
|
|
42
46
|
exportEarthObservationJob(args: ExportEarthObservationJobCommandInput, cb: (err: any, data?: ExportEarthObservationJobCommandOutput) => void): void;
|
|
43
47
|
exportEarthObservationJob(args: ExportEarthObservationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportEarthObservationJobCommandOutput) => void): void;
|
|
44
48
|
/**
|
|
49
|
+
* @public
|
|
45
50
|
* <p>Use this operation to copy results of a Vector Enrichment job to an S3 location.</p>
|
|
46
51
|
*/
|
|
47
52
|
exportVectorEnrichmentJob(args: ExportVectorEnrichmentJobCommandInput, options?: __HttpHandlerOptions): Promise<ExportVectorEnrichmentJobCommandOutput>;
|
|
48
53
|
exportVectorEnrichmentJob(args: ExportVectorEnrichmentJobCommandInput, cb: (err: any, data?: ExportVectorEnrichmentJobCommandOutput) => void): void;
|
|
49
54
|
exportVectorEnrichmentJob(args: ExportVectorEnrichmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportVectorEnrichmentJobCommandOutput) => void): void;
|
|
50
55
|
/**
|
|
56
|
+
* @public
|
|
51
57
|
* <p>Get the details for a previously initiated Earth Observation job.</p>
|
|
52
58
|
*/
|
|
53
59
|
getEarthObservationJob(args: GetEarthObservationJobCommandInput, options?: __HttpHandlerOptions): Promise<GetEarthObservationJobCommandOutput>;
|
|
54
60
|
getEarthObservationJob(args: GetEarthObservationJobCommandInput, cb: (err: any, data?: GetEarthObservationJobCommandOutput) => void): void;
|
|
55
61
|
getEarthObservationJob(args: GetEarthObservationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEarthObservationJobCommandOutput) => void): void;
|
|
56
62
|
/**
|
|
63
|
+
* @public
|
|
57
64
|
* <p>Use this operation to get details of a specific raster data collection.</p>
|
|
58
65
|
*/
|
|
59
66
|
getRasterDataCollection(args: GetRasterDataCollectionCommandInput, options?: __HttpHandlerOptions): Promise<GetRasterDataCollectionCommandOutput>;
|
|
60
67
|
getRasterDataCollection(args: GetRasterDataCollectionCommandInput, cb: (err: any, data?: GetRasterDataCollectionCommandOutput) => void): void;
|
|
61
68
|
getRasterDataCollection(args: GetRasterDataCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRasterDataCollectionCommandOutput) => void): void;
|
|
62
69
|
/**
|
|
70
|
+
* @public
|
|
63
71
|
* <p>Gets a web mercator tile for the given Earth Observation job.</p>
|
|
64
72
|
*/
|
|
65
73
|
getTile(args: GetTileCommandInput, options?: __HttpHandlerOptions): Promise<GetTileCommandOutput>;
|
|
66
74
|
getTile(args: GetTileCommandInput, cb: (err: any, data?: GetTileCommandOutput) => void): void;
|
|
67
75
|
getTile(args: GetTileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTileCommandOutput) => void): void;
|
|
68
76
|
/**
|
|
77
|
+
* @public
|
|
69
78
|
* <p>Retrieves details of a Vector Enrichment Job for a given job Amazon Resource Name (ARN).</p>
|
|
70
79
|
*/
|
|
71
80
|
getVectorEnrichmentJob(args: GetVectorEnrichmentJobCommandInput, options?: __HttpHandlerOptions): Promise<GetVectorEnrichmentJobCommandOutput>;
|
|
72
81
|
getVectorEnrichmentJob(args: GetVectorEnrichmentJobCommandInput, cb: (err: any, data?: GetVectorEnrichmentJobCommandOutput) => void): void;
|
|
73
82
|
getVectorEnrichmentJob(args: GetVectorEnrichmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVectorEnrichmentJobCommandOutput) => void): void;
|
|
74
83
|
/**
|
|
84
|
+
* @public
|
|
75
85
|
* <p>Use this operation to get a list of the Earth Observation jobs associated with the calling Amazon Web Services account.</p>
|
|
76
86
|
*/
|
|
77
87
|
listEarthObservationJobs(args: ListEarthObservationJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListEarthObservationJobsCommandOutput>;
|
|
78
88
|
listEarthObservationJobs(args: ListEarthObservationJobsCommandInput, cb: (err: any, data?: ListEarthObservationJobsCommandOutput) => void): void;
|
|
79
89
|
listEarthObservationJobs(args: ListEarthObservationJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEarthObservationJobsCommandOutput) => void): void;
|
|
80
90
|
/**
|
|
91
|
+
* @public
|
|
81
92
|
* <p>Use this operation to get raster data collections.</p>
|
|
82
93
|
*/
|
|
83
94
|
listRasterDataCollections(args: ListRasterDataCollectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListRasterDataCollectionsCommandOutput>;
|
|
84
95
|
listRasterDataCollections(args: ListRasterDataCollectionsCommandInput, cb: (err: any, data?: ListRasterDataCollectionsCommandOutput) => void): void;
|
|
85
96
|
listRasterDataCollections(args: ListRasterDataCollectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRasterDataCollectionsCommandOutput) => void): void;
|
|
86
97
|
/**
|
|
98
|
+
* @public
|
|
87
99
|
* <p>Lists the tags attached to the resource.</p>
|
|
88
100
|
*/
|
|
89
101
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
90
102
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
91
103
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
92
104
|
/**
|
|
105
|
+
* @public
|
|
93
106
|
* <p>Retrieves a list of vector enrichment jobs.</p>
|
|
94
107
|
*/
|
|
95
108
|
listVectorEnrichmentJobs(args: ListVectorEnrichmentJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListVectorEnrichmentJobsCommandOutput>;
|
|
96
109
|
listVectorEnrichmentJobs(args: ListVectorEnrichmentJobsCommandInput, cb: (err: any, data?: ListVectorEnrichmentJobsCommandOutput) => void): void;
|
|
97
110
|
listVectorEnrichmentJobs(args: ListVectorEnrichmentJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVectorEnrichmentJobsCommandOutput) => void): void;
|
|
98
111
|
/**
|
|
112
|
+
* @public
|
|
99
113
|
* <p>Allows you run image query on a specific raster data collection to get a list of the satellite imagery matching the selected filters.</p>
|
|
100
114
|
*/
|
|
101
115
|
searchRasterDataCollection(args: SearchRasterDataCollectionCommandInput, options?: __HttpHandlerOptions): Promise<SearchRasterDataCollectionCommandOutput>;
|
|
102
116
|
searchRasterDataCollection(args: SearchRasterDataCollectionCommandInput, cb: (err: any, data?: SearchRasterDataCollectionCommandOutput) => void): void;
|
|
103
117
|
searchRasterDataCollection(args: SearchRasterDataCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchRasterDataCollectionCommandOutput) => void): void;
|
|
104
118
|
/**
|
|
119
|
+
* @public
|
|
105
120
|
* <p>Use this operation to create an Earth observation job.</p>
|
|
106
121
|
*/
|
|
107
122
|
startEarthObservationJob(args: StartEarthObservationJobCommandInput, options?: __HttpHandlerOptions): Promise<StartEarthObservationJobCommandOutput>;
|
|
108
123
|
startEarthObservationJob(args: StartEarthObservationJobCommandInput, cb: (err: any, data?: StartEarthObservationJobCommandOutput) => void): void;
|
|
109
124
|
startEarthObservationJob(args: StartEarthObservationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartEarthObservationJobCommandOutput) => void): void;
|
|
110
125
|
/**
|
|
126
|
+
* @public
|
|
111
127
|
* <p>Creates a Vector Enrichment job for the supplied job type. Currently, there are two supported job types: reverse geocoding and map matching.</p>
|
|
112
128
|
*/
|
|
113
129
|
startVectorEnrichmentJob(args: StartVectorEnrichmentJobCommandInput, options?: __HttpHandlerOptions): Promise<StartVectorEnrichmentJobCommandOutput>;
|
|
114
130
|
startVectorEnrichmentJob(args: StartVectorEnrichmentJobCommandInput, cb: (err: any, data?: StartVectorEnrichmentJobCommandOutput) => void): void;
|
|
115
131
|
startVectorEnrichmentJob(args: StartVectorEnrichmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartVectorEnrichmentJobCommandOutput) => void): void;
|
|
116
132
|
/**
|
|
133
|
+
* @public
|
|
117
134
|
* <p>Use this operation to stop an existing earth observation job.</p>
|
|
118
135
|
*/
|
|
119
136
|
stopEarthObservationJob(args: StopEarthObservationJobCommandInput, options?: __HttpHandlerOptions): Promise<StopEarthObservationJobCommandOutput>;
|
|
120
137
|
stopEarthObservationJob(args: StopEarthObservationJobCommandInput, cb: (err: any, data?: StopEarthObservationJobCommandOutput) => void): void;
|
|
121
138
|
stopEarthObservationJob(args: StopEarthObservationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopEarthObservationJobCommandOutput) => void): void;
|
|
122
139
|
/**
|
|
140
|
+
* @public
|
|
123
141
|
* <p>Stops the Vector Enrichment job for a given job ARN.</p>
|
|
124
142
|
*/
|
|
125
143
|
stopVectorEnrichmentJob(args: StopVectorEnrichmentJobCommandInput, options?: __HttpHandlerOptions): Promise<StopVectorEnrichmentJobCommandOutput>;
|
|
126
144
|
stopVectorEnrichmentJob(args: StopVectorEnrichmentJobCommandInput, cb: (err: any, data?: StopVectorEnrichmentJobCommandOutput) => void): void;
|
|
127
145
|
stopVectorEnrichmentJob(args: StopVectorEnrichmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopVectorEnrichmentJobCommandOutput) => void): void;
|
|
128
146
|
/**
|
|
147
|
+
* @public
|
|
129
148
|
* <p>The resource you want to tag.</p>
|
|
130
149
|
*/
|
|
131
150
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
132
151
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
133
152
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
134
153
|
/**
|
|
154
|
+
* @public
|
|
135
155
|
* <p>The resource you want to untag.</p>
|
|
136
156
|
*/
|
|
137
157
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
@@ -27,15 +27,24 @@ import { StopVectorEnrichmentJobCommandInput, StopVectorEnrichmentJobCommandOutp
|
|
|
27
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
28
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
29
29
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
30
33
|
export type ServiceInputTypes = DeleteEarthObservationJobCommandInput | DeleteVectorEnrichmentJobCommandInput | ExportEarthObservationJobCommandInput | ExportVectorEnrichmentJobCommandInput | GetEarthObservationJobCommandInput | GetRasterDataCollectionCommandInput | GetTileCommandInput | GetVectorEnrichmentJobCommandInput | ListEarthObservationJobsCommandInput | ListRasterDataCollectionsCommandInput | ListTagsForResourceCommandInput | ListVectorEnrichmentJobsCommandInput | SearchRasterDataCollectionCommandInput | StartEarthObservationJobCommandInput | StartVectorEnrichmentJobCommandInput | StopEarthObservationJobCommandInput | StopVectorEnrichmentJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
31
37
|
export type ServiceOutputTypes = DeleteEarthObservationJobCommandOutput | DeleteVectorEnrichmentJobCommandOutput | ExportEarthObservationJobCommandOutput | ExportVectorEnrichmentJobCommandOutput | GetEarthObservationJobCommandOutput | GetRasterDataCollectionCommandOutput | GetTileCommandOutput | GetVectorEnrichmentJobCommandOutput | ListEarthObservationJobsCommandOutput | ListRasterDataCollectionsCommandOutput | ListTagsForResourceCommandOutput | ListVectorEnrichmentJobsCommandOutput | SearchRasterDataCollectionCommandOutput | StartEarthObservationJobCommandOutput | StartVectorEnrichmentJobCommandOutput | StopEarthObservationJobCommandOutput | StopVectorEnrichmentJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
32
41
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
33
42
|
/**
|
|
34
43
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
35
44
|
*/
|
|
36
45
|
requestHandler?: __HttpHandler;
|
|
37
46
|
/**
|
|
38
|
-
* A constructor for a class implementing the {@link
|
|
47
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
39
48
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
40
49
|
* @internal
|
|
41
50
|
*/
|
|
@@ -125,7 +134,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
125
134
|
*/
|
|
126
135
|
logger?: __Logger;
|
|
127
136
|
/**
|
|
128
|
-
* The {@link
|
|
137
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
129
138
|
*/
|
|
130
139
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
131
140
|
/**
|
|
@@ -134,19 +143,30 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
134
143
|
*/
|
|
135
144
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
136
145
|
}
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
137
149
|
type SageMakerGeospatialClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
138
150
|
/**
|
|
139
|
-
*
|
|
151
|
+
* @public
|
|
152
|
+
*
|
|
153
|
+
* The configuration interface of SageMakerGeospatialClient class constructor that set the region, credentials and other options.
|
|
140
154
|
*/
|
|
141
155
|
export interface SageMakerGeospatialClientConfig extends SageMakerGeospatialClientConfigType {
|
|
142
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
143
160
|
type SageMakerGeospatialClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
144
161
|
/**
|
|
145
|
-
*
|
|
162
|
+
* @public
|
|
163
|
+
*
|
|
164
|
+
* The resolved configuration interface of SageMakerGeospatialClient class. This is resolved and normalized from the {@link SageMakerGeospatialClientConfig | constructor configuration interface}.
|
|
146
165
|
*/
|
|
147
166
|
export interface SageMakerGeospatialClientResolvedConfig extends SageMakerGeospatialClientResolvedConfigType {
|
|
148
167
|
}
|
|
149
168
|
/**
|
|
169
|
+
* @public
|
|
150
170
|
* <p>Provides APIs for creating and managing SageMaker geospatial resources.</p>
|
|
151
171
|
*/
|
|
152
172
|
export declare class SageMakerGeospatialClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SageMakerGeospatialClientResolvedConfig> {
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteEarthObservationJobInput, DeleteEarthObservationJobOutput } from "../models/models_0";
|
|
5
5
|
import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteEarthObservationJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteEarthObservationJobCommandInput extends DeleteEarthObservationJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteEarthObservationJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteEarthObservationJobCommandOutput extends DeleteEarthObservationJobOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Use this operation to delete an Earth Observation job.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteEarthObservationJobCommandOutput extends DeleteEarthObser
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteEarthObservationJobCommandInput - {@link DeleteEarthObservationJobCommandInput}
|
|
34
|
+
* @returns {@link DeleteEarthObservationJobCommandOutput}
|
|
28
35
|
* @see {@link DeleteEarthObservationJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteEarthObservationJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteEarthObservationJobCommandOutput extends DeleteEarthObser
|
|
|
52
59
|
export declare class DeleteEarthObservationJobCommand extends $Command<DeleteEarthObservationJobCommandInput, DeleteEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteEarthObservationJobCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteEarthObservationJobCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEarthObservationJobCommandInput, DeleteEarthObservationJobCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteVectorEnrichmentJobInput, DeleteVectorEnrichmentJobOutput } from "../models/models_0";
|
|
5
5
|
import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVectorEnrichmentJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVectorEnrichmentJobCommandInput extends DeleteVectorEnrichmentJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVectorEnrichmentJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVectorEnrichmentJobCommandOutput extends DeleteVectorEnrichmentJobOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Use this operation to delete a Vector Enrichment job.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteVectorEnrichmentJobCommandOutput extends DeleteVectorEnri
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteVectorEnrichmentJobCommandInput - {@link DeleteVectorEnrichmentJobCommandInput}
|
|
34
|
+
* @returns {@link DeleteVectorEnrichmentJobCommandOutput}
|
|
28
35
|
* @see {@link DeleteVectorEnrichmentJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteVectorEnrichmentJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteVectorEnrichmentJobCommandOutput extends DeleteVectorEnri
|
|
|
52
59
|
export declare class DeleteVectorEnrichmentJobCommand extends $Command<DeleteVectorEnrichmentJobCommandInput, DeleteVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteVectorEnrichmentJobCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteVectorEnrichmentJobCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVectorEnrichmentJobCommandInput, DeleteVectorEnrichmentJobCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ExportEarthObservationJobInput, ExportEarthObservationJobOutput } from "../models/models_0";
|
|
5
5
|
import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ExportEarthObservationJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ExportEarthObservationJobCommandInput extends ExportEarthObservationJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ExportEarthObservationJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ExportEarthObservationJobCommandOutput extends ExportEarthObservationJobOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>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.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ExportEarthObservationJobCommandOutput extends ExportEarthObser
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ExportEarthObservationJobCommandInput - {@link ExportEarthObservationJobCommandInput}
|
|
34
|
+
* @returns {@link ExportEarthObservationJobCommandOutput}
|
|
28
35
|
* @see {@link ExportEarthObservationJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ExportEarthObservationJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ExportEarthObservationJobCommandOutput extends ExportEarthObser
|
|
|
55
62
|
export declare class ExportEarthObservationJobCommand extends $Command<ExportEarthObservationJobCommandInput, ExportEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
|
|
56
63
|
readonly input: ExportEarthObservationJobCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ExportEarthObservationJobCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportEarthObservationJobCommandInput, ExportEarthObservationJobCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ExportVectorEnrichmentJobInput, ExportVectorEnrichmentJobOutput } from "../models/models_0";
|
|
5
5
|
import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ExportVectorEnrichmentJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ExportVectorEnrichmentJobCommandInput extends ExportVectorEnrichmentJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ExportVectorEnrichmentJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ExportVectorEnrichmentJobCommandOutput extends ExportVectorEnrichmentJobOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Use this operation to copy results of a Vector Enrichment job to an S3 location.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ExportVectorEnrichmentJobCommandOutput extends ExportVectorEnri
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ExportVectorEnrichmentJobCommandInput - {@link ExportVectorEnrichmentJobCommandInput}
|
|
34
|
+
* @returns {@link ExportVectorEnrichmentJobCommandOutput}
|
|
28
35
|
* @see {@link ExportVectorEnrichmentJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ExportVectorEnrichmentJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ExportVectorEnrichmentJobCommandOutput extends ExportVectorEnri
|
|
|
55
62
|
export declare class ExportVectorEnrichmentJobCommand extends $Command<ExportVectorEnrichmentJobCommandInput, ExportVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
|
|
56
63
|
readonly input: ExportVectorEnrichmentJobCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ExportVectorEnrichmentJobCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportVectorEnrichmentJobCommandInput, ExportVectorEnrichmentJobCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetEarthObservationJobInput, GetEarthObservationJobOutput } from "../models/models_0";
|
|
5
5
|
import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetEarthObservationJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetEarthObservationJobCommandInput extends GetEarthObservationJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetEarthObservationJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetEarthObservationJobCommandOutput extends GetEarthObservationJobOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Get the details for a previously initiated Earth Observation job.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetEarthObservationJobCommandOutput extends GetEarthObservation
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetEarthObservationJobCommandInput - {@link GetEarthObservationJobCommandInput}
|
|
34
|
+
* @returns {@link GetEarthObservationJobCommandOutput}
|
|
28
35
|
* @see {@link GetEarthObservationJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetEarthObservationJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetEarthObservationJobCommandOutput extends GetEarthObservation
|
|
|
49
56
|
export declare class GetEarthObservationJobCommand extends $Command<GetEarthObservationJobCommandInput, GetEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
|
|
50
57
|
readonly input: GetEarthObservationJobCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetEarthObservationJobCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEarthObservationJobCommandInput, GetEarthObservationJobCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetRasterDataCollectionInput, GetRasterDataCollectionOutput } from "../models/models_0";
|
|
5
5
|
import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRasterDataCollectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRasterDataCollectionCommandInput extends GetRasterDataCollectionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRasterDataCollectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRasterDataCollectionCommandOutput extends GetRasterDataCollectionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Use this operation to get details of a specific raster data collection.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetRasterDataCollectionCommandOutput extends GetRasterDataColle
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetRasterDataCollectionCommandInput - {@link GetRasterDataCollectionCommandInput}
|
|
34
|
+
* @returns {@link GetRasterDataCollectionCommandOutput}
|
|
28
35
|
* @see {@link GetRasterDataCollectionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetRasterDataCollectionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetRasterDataCollectionCommandOutput extends GetRasterDataColle
|
|
|
49
56
|
export declare class GetRasterDataCollectionCommand extends $Command<GetRasterDataCollectionCommandInput, GetRasterDataCollectionCommandOutput, SageMakerGeospatialClientResolvedConfig> {
|
|
50
57
|
readonly input: GetRasterDataCollectionCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetRasterDataCollectionCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRasterDataCollectionCommandInput, GetRasterDataCollectionCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetTileInput, GetTileOutput } from "../models/models_0";
|
|
5
5
|
import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTileCommandInput extends GetTileInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTileCommandOutput extends __WithSdkStreamMixin<GetTileOutput, "BinaryFile">, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets a web mercator tile for the given Earth Observation job.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetTileCommandOutput extends __WithSdkStreamMixin<GetTileOutput
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetTileCommandInput - {@link GetTileCommandInput}
|
|
34
|
+
* @returns {@link GetTileCommandOutput}
|
|
28
35
|
* @see {@link GetTileCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetTileCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetTileCommandOutput extends __WithSdkStreamMixin<GetTileOutput
|
|
|
49
56
|
export declare class GetTileCommand extends $Command<GetTileCommandInput, GetTileCommandOutput, SageMakerGeospatialClientResolvedConfig> {
|
|
50
57
|
readonly input: GetTileCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetTileCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTileCommandInput, GetTileCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetVectorEnrichmentJobInput, GetVectorEnrichmentJobOutput } from "../models/models_0";
|
|
5
5
|
import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetVectorEnrichmentJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetVectorEnrichmentJobCommandInput extends GetVectorEnrichmentJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetVectorEnrichmentJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetVectorEnrichmentJobCommandOutput extends GetVectorEnrichmentJobOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves details of a Vector Enrichment Job for a given job Amazon Resource Name (ARN).</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetVectorEnrichmentJobCommandOutput extends GetVectorEnrichment
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetVectorEnrichmentJobCommandInput - {@link GetVectorEnrichmentJobCommandInput}
|
|
34
|
+
* @returns {@link GetVectorEnrichmentJobCommandOutput}
|
|
28
35
|
* @see {@link GetVectorEnrichmentJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetVectorEnrichmentJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetVectorEnrichmentJobCommandOutput extends GetVectorEnrichment
|
|
|
49
56
|
export declare class GetVectorEnrichmentJobCommand extends $Command<GetVectorEnrichmentJobCommandInput, GetVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
|
|
50
57
|
readonly input: GetVectorEnrichmentJobCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetVectorEnrichmentJobCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetVectorEnrichmentJobCommandInput, GetVectorEnrichmentJobCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|