@aws-sdk/client-sagemaker-geospatial 3.295.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.
Files changed (29) hide show
  1. package/dist-types/SageMakerGeospatial.d.ts +20 -0
  2. package/dist-types/SageMakerGeospatialClient.d.ts +24 -4
  3. package/dist-types/commands/DeleteEarthObservationJobCommand.d.ts +16 -0
  4. package/dist-types/commands/DeleteVectorEnrichmentJobCommand.d.ts +16 -0
  5. package/dist-types/commands/ExportEarthObservationJobCommand.d.ts +16 -0
  6. package/dist-types/commands/ExportVectorEnrichmentJobCommand.d.ts +16 -0
  7. package/dist-types/commands/GetEarthObservationJobCommand.d.ts +16 -0
  8. package/dist-types/commands/GetRasterDataCollectionCommand.d.ts +16 -0
  9. package/dist-types/commands/GetTileCommand.d.ts +16 -0
  10. package/dist-types/commands/GetVectorEnrichmentJobCommand.d.ts +16 -0
  11. package/dist-types/commands/ListEarthObservationJobsCommand.d.ts +16 -0
  12. package/dist-types/commands/ListRasterDataCollectionsCommand.d.ts +16 -0
  13. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  14. package/dist-types/commands/ListVectorEnrichmentJobsCommand.d.ts +16 -0
  15. package/dist-types/commands/SearchRasterDataCollectionCommand.d.ts +16 -0
  16. package/dist-types/commands/StartEarthObservationJobCommand.d.ts +16 -0
  17. package/dist-types/commands/StartVectorEnrichmentJobCommand.d.ts +16 -0
  18. package/dist-types/commands/StopEarthObservationJobCommand.d.ts +16 -0
  19. package/dist-types/commands/StopVectorEnrichmentJobCommand.d.ts +16 -0
  20. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  21. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  22. package/dist-types/models/SageMakerGeospatialServiceException.d.ts +2 -0
  23. package/dist-types/models/models_0.d.ts +276 -0
  24. package/dist-types/pagination/Interfaces.d.ts +3 -0
  25. package/dist-types/pagination/ListEarthObservationJobsPaginator.d.ts +3 -0
  26. package/dist-types/pagination/ListRasterDataCollectionsPaginator.d.ts +3 -0
  27. package/dist-types/pagination/ListVectorEnrichmentJobsPaginator.d.ts +3 -0
  28. package/dist-types/pagination/SearchRasterDataCollectionPaginator.d.ts +3 -0
  29. package/package.json +31 -31
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListEarthObservationJobInput, ListEarthObservationJobOutput } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListEarthObservationJobsCommand}.
8
10
  */
9
11
  export interface ListEarthObservationJobsCommandInput extends ListEarthObservationJobInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListEarthObservationJobsCommand}.
13
17
  */
14
18
  export interface ListEarthObservationJobsCommandOutput extends ListEarthObservationJobOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Use this operation to get a list of the Earth Observation jobs associated with the calling Amazon Web Services account.</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 ListEarthObservationJobsCommandOutput extends ListEarthObservat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListEarthObservationJobsCommandInput - {@link ListEarthObservationJobsCommandInput}
34
+ * @returns {@link ListEarthObservationJobsCommandOutput}
28
35
  * @see {@link ListEarthObservationJobsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListEarthObservationJobsCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListEarthObservationJobsCommandOutput extends ListEarthObservat
49
56
  export declare class ListEarthObservationJobsCommand extends $Command<ListEarthObservationJobsCommandInput, ListEarthObservationJobsCommandOutput, SageMakerGeospatialClientResolvedConfig> {
50
57
  readonly input: ListEarthObservationJobsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListEarthObservationJobsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEarthObservationJobsCommandInput, ListEarthObservationJobsCommandOutput>;
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 { ListRasterDataCollectionsInput, ListRasterDataCollectionsOutput } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListRasterDataCollectionsCommand}.
8
10
  */
9
11
  export interface ListRasterDataCollectionsCommandInput extends ListRasterDataCollectionsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListRasterDataCollectionsCommand}.
13
17
  */
14
18
  export interface ListRasterDataCollectionsCommandOutput extends ListRasterDataCollectionsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Use this operation to get raster data collections.</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 ListRasterDataCollectionsCommandOutput extends ListRasterDataCo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListRasterDataCollectionsCommandInput - {@link ListRasterDataCollectionsCommandInput}
34
+ * @returns {@link ListRasterDataCollectionsCommandOutput}
28
35
  * @see {@link ListRasterDataCollectionsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListRasterDataCollectionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListRasterDataCollectionsCommandOutput extends ListRasterDataCo
49
56
  export declare class ListRasterDataCollectionsCommand extends $Command<ListRasterDataCollectionsCommandInput, ListRasterDataCollectionsCommandOutput, SageMakerGeospatialClientResolvedConfig> {
50
57
  readonly input: ListRasterDataCollectionsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListRasterDataCollectionsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRasterDataCollectionsCommandInput, ListRasterDataCollectionsCommandOutput>;
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the tags attached to the resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
49
56
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SageMakerGeospatialClientResolvedConfig> {
50
57
  readonly input: ListTagsForResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListTagsForResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { ListVectorEnrichmentJobInput, ListVectorEnrichmentJobOutput } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVectorEnrichmentJobsCommand}.
8
10
  */
9
11
  export interface ListVectorEnrichmentJobsCommandInput extends ListVectorEnrichmentJobInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVectorEnrichmentJobsCommand}.
13
17
  */
14
18
  export interface ListVectorEnrichmentJobsCommandOutput extends ListVectorEnrichmentJobOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of vector enrichment jobs.</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 ListVectorEnrichmentJobsCommandOutput extends ListVectorEnrichm
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListVectorEnrichmentJobsCommandInput - {@link ListVectorEnrichmentJobsCommandInput}
34
+ * @returns {@link ListVectorEnrichmentJobsCommandOutput}
28
35
  * @see {@link ListVectorEnrichmentJobsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListVectorEnrichmentJobsCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListVectorEnrichmentJobsCommandOutput extends ListVectorEnrichm
49
56
  export declare class ListVectorEnrichmentJobsCommand extends $Command<ListVectorEnrichmentJobsCommandInput, ListVectorEnrichmentJobsCommandOutput, SageMakerGeospatialClientResolvedConfig> {
50
57
  readonly input: ListVectorEnrichmentJobsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListVectorEnrichmentJobsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVectorEnrichmentJobsCommandInput, ListVectorEnrichmentJobsCommandOutput>;
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 { SearchRasterDataCollectionInput, SearchRasterDataCollectionOutput } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchRasterDataCollectionCommand}.
8
10
  */
9
11
  export interface SearchRasterDataCollectionCommandInput extends SearchRasterDataCollectionInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchRasterDataCollectionCommand}.
13
17
  */
14
18
  export interface SearchRasterDataCollectionCommandOutput extends SearchRasterDataCollectionOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
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 SearchRasterDataCollectionCommandOutput extends SearchRasterDat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param SearchRasterDataCollectionCommandInput - {@link SearchRasterDataCollectionCommandInput}
34
+ * @returns {@link SearchRasterDataCollectionCommandOutput}
28
35
  * @see {@link SearchRasterDataCollectionCommandInput} for command's `input` shape.
29
36
  * @see {@link SearchRasterDataCollectionCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -49,11 +56,20 @@ export interface SearchRasterDataCollectionCommandOutput extends SearchRasterDat
49
56
  export declare class SearchRasterDataCollectionCommand extends $Command<SearchRasterDataCollectionCommandInput, SearchRasterDataCollectionCommandOutput, SageMakerGeospatialClientResolvedConfig> {
50
57
  readonly input: SearchRasterDataCollectionCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: SearchRasterDataCollectionCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchRasterDataCollectionCommandInput, SearchRasterDataCollectionCommandOutput>;
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 { StartEarthObservationJobInput, StartEarthObservationJobOutput } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartEarthObservationJobCommand}.
8
10
  */
9
11
  export interface StartEarthObservationJobCommandInput extends StartEarthObservationJobInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartEarthObservationJobCommand}.
13
17
  */
14
18
  export interface StartEarthObservationJobCommandOutput extends StartEarthObservationJobOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Use this operation to create 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 StartEarthObservationJobCommandOutput extends StartEarthObserva
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartEarthObservationJobCommandInput - {@link StartEarthObservationJobCommandInput}
34
+ * @returns {@link StartEarthObservationJobCommandOutput}
28
35
  * @see {@link StartEarthObservationJobCommandInput} for command's `input` shape.
29
36
  * @see {@link StartEarthObservationJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -55,11 +62,20 @@ export interface StartEarthObservationJobCommandOutput extends StartEarthObserva
55
62
  export declare class StartEarthObservationJobCommand extends $Command<StartEarthObservationJobCommandInput, StartEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
56
63
  readonly input: StartEarthObservationJobCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: StartEarthObservationJobCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartEarthObservationJobCommandInput, StartEarthObservationJobCommandOutput>;
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 { StartVectorEnrichmentJobInput, StartVectorEnrichmentJobOutput } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartVectorEnrichmentJobCommand}.
8
10
  */
9
11
  export interface StartVectorEnrichmentJobCommandInput extends StartVectorEnrichmentJobInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartVectorEnrichmentJobCommand}.
13
17
  */
14
18
  export interface StartVectorEnrichmentJobCommandOutput extends StartVectorEnrichmentJobOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a Vector Enrichment job for the supplied job type. Currently, there are two supported job types: reverse geocoding and map matching.</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 StartVectorEnrichmentJobCommandOutput extends StartVectorEnrich
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartVectorEnrichmentJobCommandInput - {@link StartVectorEnrichmentJobCommandInput}
34
+ * @returns {@link StartVectorEnrichmentJobCommandOutput}
28
35
  * @see {@link StartVectorEnrichmentJobCommandInput} for command's `input` shape.
29
36
  * @see {@link StartVectorEnrichmentJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -55,11 +62,20 @@ export interface StartVectorEnrichmentJobCommandOutput extends StartVectorEnrich
55
62
  export declare class StartVectorEnrichmentJobCommand extends $Command<StartVectorEnrichmentJobCommandInput, StartVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
56
63
  readonly input: StartVectorEnrichmentJobCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: StartVectorEnrichmentJobCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartVectorEnrichmentJobCommandInput, StartVectorEnrichmentJobCommandOutput>;
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 { StopEarthObservationJobInput, StopEarthObservationJobOutput } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopEarthObservationJobCommand}.
8
10
  */
9
11
  export interface StopEarthObservationJobCommandInput extends StopEarthObservationJobInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopEarthObservationJobCommand}.
13
17
  */
14
18
  export interface StopEarthObservationJobCommandOutput extends StopEarthObservationJobOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Use this operation to stop an existing 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 StopEarthObservationJobCommandOutput extends StopEarthObservati
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopEarthObservationJobCommandInput - {@link StopEarthObservationJobCommandInput}
34
+ * @returns {@link StopEarthObservationJobCommandOutput}
28
35
  * @see {@link StopEarthObservationJobCommandInput} for command's `input` shape.
29
36
  * @see {@link StopEarthObservationJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -52,11 +59,20 @@ export interface StopEarthObservationJobCommandOutput extends StopEarthObservati
52
59
  export declare class StopEarthObservationJobCommand extends $Command<StopEarthObservationJobCommandInput, StopEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
53
60
  readonly input: StopEarthObservationJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: StopEarthObservationJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopEarthObservationJobCommandInput, StopEarthObservationJobCommandOutput>;
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 { StopVectorEnrichmentJobInput, StopVectorEnrichmentJobOutput } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopVectorEnrichmentJobCommand}.
8
10
  */
9
11
  export interface StopVectorEnrichmentJobCommandInput extends StopVectorEnrichmentJobInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopVectorEnrichmentJobCommand}.
13
17
  */
14
18
  export interface StopVectorEnrichmentJobCommandOutput extends StopVectorEnrichmentJobOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops the Vector Enrichment job for a given job 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 StopVectorEnrichmentJobCommandOutput extends StopVectorEnrichme
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopVectorEnrichmentJobCommandInput - {@link StopVectorEnrichmentJobCommandInput}
34
+ * @returns {@link StopVectorEnrichmentJobCommandOutput}
28
35
  * @see {@link StopVectorEnrichmentJobCommandInput} for command's `input` shape.
29
36
  * @see {@link StopVectorEnrichmentJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -52,11 +59,20 @@ export interface StopVectorEnrichmentJobCommandOutput extends StopVectorEnrichme
52
59
  export declare class StopVectorEnrichmentJobCommand extends $Command<StopVectorEnrichmentJobCommandInput, StopVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig> {
53
60
  readonly input: StopVectorEnrichmentJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: StopVectorEnrichmentJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopVectorEnrichmentJobCommandInput, StopVectorEnrichmentJobCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>The resource you want to tag.</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 TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -49,11 +56,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
49
56
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SageMakerGeospatialClientResolvedConfig> {
50
57
  readonly input: TagResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: TagResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
5
  import { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerGeospatialClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>The resource you want to untag.</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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link SageMakerGeospatialClientResolvedConfig | config} for SageMakerGeospatialClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
49
56
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SageMakerGeospatialClientResolvedConfig> {
50
57
  readonly input: UntagResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UntagResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerGeospatialClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from SageMakerGeospatial service.
4
6
  */
5
7
  export declare class SageMakerGeospatialServiceException extends __ServiceException {