@aws-sdk/client-sagemaker-geospatial 3.928.0 → 3.930.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-cjs/index.js +1141 -1623
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SageMakerGeospatialClient.js +2 -0
- package/dist-es/commands/DeleteEarthObservationJobCommand.js +3 -9
- package/dist-es/commands/DeleteVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/ExportEarthObservationJobCommand.js +3 -9
- package/dist-es/commands/ExportVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/GetEarthObservationJobCommand.js +3 -10
- package/dist-es/commands/GetRasterDataCollectionCommand.js +3 -9
- package/dist-es/commands/GetTileCommand.js +3 -10
- package/dist-es/commands/GetVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/ListEarthObservationJobsCommand.js +3 -10
- package/dist-es/commands/ListRasterDataCollectionsCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListVectorEnrichmentJobsCommand.js +3 -10
- package/dist-es/commands/SearchRasterDataCollectionCommand.js +3 -10
- package/dist-es/commands/StartEarthObservationJobCommand.js +3 -10
- package/dist-es/commands/StartVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/StopEarthObservationJobCommand.js +3 -9
- package/dist-es/commands/StopVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -199
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1098 -0
- package/dist-types/SageMakerGeospatialClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +24 -106
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +145 -0
- package/dist-types/ts3.4/SageMakerGeospatialClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +152 -0
- package/package.json +34 -35
- package/dist-es/protocols/Aws_restJson1.js +0 -1259
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -173
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -236
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { DeleteEarthObservationJobCommandInput, DeleteEarthObservationJobCommandOutput } from "./commands/DeleteEarthObservationJobCommand";
|
|
11
11
|
import { DeleteVectorEnrichmentJobCommandInput, DeleteVectorEnrichmentJobCommandOutput } from "./commands/DeleteVectorEnrichmentJobCommand";
|
|
@@ -160,6 +160,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
160
160
|
* Optional extensions
|
|
161
161
|
*/
|
|
162
162
|
extensions?: RuntimeExtension[];
|
|
163
|
+
/**
|
|
164
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
165
|
+
* may be overridden. A default will always be set by the client.
|
|
166
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
167
|
+
* the client.
|
|
168
|
+
* @alpha
|
|
169
|
+
*
|
|
170
|
+
*/
|
|
171
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
163
172
|
/**
|
|
164
173
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
165
174
|
*/
|
|
@@ -217,12 +217,15 @@ export declare namespace AreaOfInterestGeometry {
|
|
|
217
217
|
MultiPolygonGeometry?: never;
|
|
218
218
|
$unknown: [string, any];
|
|
219
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* @deprecated unused in schema-serde mode.
|
|
222
|
+
*
|
|
223
|
+
*/
|
|
220
224
|
interface Visitor<T> {
|
|
221
225
|
PolygonGeometry: (value: PolygonGeometryInput) => T;
|
|
222
226
|
MultiPolygonGeometry: (value: MultiPolygonGeometryInput) => T;
|
|
223
227
|
_: (name: string, value: any) => T;
|
|
224
228
|
}
|
|
225
|
-
const visit: <T>(value: AreaOfInterestGeometry, visitor: Visitor<T>) => T;
|
|
226
229
|
}
|
|
227
230
|
/**
|
|
228
231
|
* <p>The geographic extent of the Earth Observation job.</p>
|
|
@@ -248,11 +251,14 @@ export declare namespace AreaOfInterest {
|
|
|
248
251
|
AreaOfInterestGeometry?: never;
|
|
249
252
|
$unknown: [string, any];
|
|
250
253
|
}
|
|
254
|
+
/**
|
|
255
|
+
* @deprecated unused in schema-serde mode.
|
|
256
|
+
*
|
|
257
|
+
*/
|
|
251
258
|
interface Visitor<T> {
|
|
252
259
|
AreaOfInterestGeometry: (value: AreaOfInterestGeometry) => T;
|
|
253
260
|
_: (name: string, value: any) => T;
|
|
254
261
|
}
|
|
255
|
-
const visit: <T>(value: AreaOfInterest, visitor: Visitor<T>) => T;
|
|
256
262
|
}
|
|
257
263
|
/**
|
|
258
264
|
* <p>The structure containing the asset properties.</p>
|
|
@@ -1055,6 +1061,10 @@ export declare namespace Property {
|
|
|
1055
1061
|
LandsatCloudCoverLand?: never;
|
|
1056
1062
|
$unknown: [string, any];
|
|
1057
1063
|
}
|
|
1064
|
+
/**
|
|
1065
|
+
* @deprecated unused in schema-serde mode.
|
|
1066
|
+
*
|
|
1067
|
+
*/
|
|
1058
1068
|
interface Visitor<T> {
|
|
1059
1069
|
EoCloudCover: (value: EoCloudCoverInput) => T;
|
|
1060
1070
|
ViewOffNadir: (value: ViewOffNadirInput) => T;
|
|
@@ -1064,7 +1074,6 @@ export declare namespace Property {
|
|
|
1064
1074
|
LandsatCloudCoverLand: (value: LandsatCloudCoverLandInput) => T;
|
|
1065
1075
|
_: (name: string, value: any) => T;
|
|
1066
1076
|
}
|
|
1067
|
-
const visit: <T>(value: Property, visitor: Visitor<T>) => T;
|
|
1068
1077
|
}
|
|
1069
1078
|
/**
|
|
1070
1079
|
* <p>The structure representing a single PropertyFilter.</p>
|
|
@@ -1611,6 +1620,10 @@ export declare namespace JobConfigInput {
|
|
|
1611
1620
|
LandCoverSegmentationConfig?: never;
|
|
1612
1621
|
$unknown: [string, any];
|
|
1613
1622
|
}
|
|
1623
|
+
/**
|
|
1624
|
+
* @deprecated unused in schema-serde mode.
|
|
1625
|
+
*
|
|
1626
|
+
*/
|
|
1614
1627
|
interface Visitor<T> {
|
|
1615
1628
|
BandMathConfig: (value: BandMathConfigInput) => T;
|
|
1616
1629
|
ResamplingConfig: (value: ResamplingConfigInput) => T;
|
|
@@ -1623,7 +1636,6 @@ export declare namespace JobConfigInput {
|
|
|
1623
1636
|
LandCoverSegmentationConfig: (value: LandCoverSegmentationConfigInput) => T;
|
|
1624
1637
|
_: (name: string, value: any) => T;
|
|
1625
1638
|
}
|
|
1626
|
-
const visit: <T>(value: JobConfigInput, visitor: Visitor<T>) => T;
|
|
1627
1639
|
}
|
|
1628
1640
|
/**
|
|
1629
1641
|
* <p>A single EarthObservationJob output band.</p>
|
|
@@ -2392,11 +2404,14 @@ export declare namespace VectorEnrichmentJobDataSourceConfigInput {
|
|
|
2392
2404
|
S3Data?: never;
|
|
2393
2405
|
$unknown: [string, any];
|
|
2394
2406
|
}
|
|
2407
|
+
/**
|
|
2408
|
+
* @deprecated unused in schema-serde mode.
|
|
2409
|
+
*
|
|
2410
|
+
*/
|
|
2395
2411
|
interface Visitor<T> {
|
|
2396
2412
|
S3Data: (value: VectorEnrichmentJobS3Data) => T;
|
|
2397
2413
|
_: (name: string, value: any) => T;
|
|
2398
2414
|
}
|
|
2399
|
-
const visit: <T>(value: VectorEnrichmentJobDataSourceConfigInput, visitor: Visitor<T>) => T;
|
|
2400
2415
|
}
|
|
2401
2416
|
/**
|
|
2402
2417
|
* @public
|
|
@@ -2502,12 +2517,15 @@ export declare namespace VectorEnrichmentJobConfig {
|
|
|
2502
2517
|
MapMatchingConfig?: never;
|
|
2503
2518
|
$unknown: [string, any];
|
|
2504
2519
|
}
|
|
2520
|
+
/**
|
|
2521
|
+
* @deprecated unused in schema-serde mode.
|
|
2522
|
+
*
|
|
2523
|
+
*/
|
|
2505
2524
|
interface Visitor<T> {
|
|
2506
2525
|
ReverseGeocodingConfig: (value: ReverseGeocodingConfig) => T;
|
|
2507
2526
|
MapMatchingConfig: (value: MapMatchingConfig) => T;
|
|
2508
2527
|
_: (name: string, value: any) => T;
|
|
2509
2528
|
}
|
|
2510
|
-
const visit: <T>(value: VectorEnrichmentJobConfig, visitor: Visitor<T>) => T;
|
|
2511
2529
|
}
|
|
2512
2530
|
/**
|
|
2513
2531
|
* @public
|
|
@@ -3051,103 +3069,3 @@ export interface StopVectorEnrichmentJobInput {
|
|
|
3051
3069
|
*/
|
|
3052
3070
|
export interface StopVectorEnrichmentJobOutput {
|
|
3053
3071
|
}
|
|
3054
|
-
/**
|
|
3055
|
-
* @internal
|
|
3056
|
-
*/
|
|
3057
|
-
export declare const MultiPolygonGeometryInputFilterSensitiveLog: (obj: MultiPolygonGeometryInput) => any;
|
|
3058
|
-
/**
|
|
3059
|
-
* @internal
|
|
3060
|
-
*/
|
|
3061
|
-
export declare const PolygonGeometryInputFilterSensitiveLog: (obj: PolygonGeometryInput) => any;
|
|
3062
|
-
/**
|
|
3063
|
-
* @internal
|
|
3064
|
-
*/
|
|
3065
|
-
export declare const AreaOfInterestGeometryFilterSensitiveLog: (obj: AreaOfInterestGeometry) => any;
|
|
3066
|
-
/**
|
|
3067
|
-
* @internal
|
|
3068
|
-
*/
|
|
3069
|
-
export declare const AreaOfInterestFilterSensitiveLog: (obj: AreaOfInterest) => any;
|
|
3070
|
-
/**
|
|
3071
|
-
* @internal
|
|
3072
|
-
*/
|
|
3073
|
-
export declare const TimeRangeFilterOutputFilterSensitiveLog: (obj: TimeRangeFilterOutput) => any;
|
|
3074
|
-
/**
|
|
3075
|
-
* @internal
|
|
3076
|
-
*/
|
|
3077
|
-
export declare const RasterDataCollectionQueryOutputFilterSensitiveLog: (obj: RasterDataCollectionQueryOutput) => any;
|
|
3078
|
-
/**
|
|
3079
|
-
* @internal
|
|
3080
|
-
*/
|
|
3081
|
-
export declare const InputConfigOutputFilterSensitiveLog: (obj: InputConfigOutput) => any;
|
|
3082
|
-
/**
|
|
3083
|
-
* @internal
|
|
3084
|
-
*/
|
|
3085
|
-
export declare const GetEarthObservationJobOutputFilterSensitiveLog: (obj: GetEarthObservationJobOutput) => any;
|
|
3086
|
-
/**
|
|
3087
|
-
* @internal
|
|
3088
|
-
*/
|
|
3089
|
-
export declare const GetTileOutputFilterSensitiveLog: (obj: GetTileOutput) => any;
|
|
3090
|
-
/**
|
|
3091
|
-
* @internal
|
|
3092
|
-
*/
|
|
3093
|
-
export declare const ListEarthObservationJobInputFilterSensitiveLog: (obj: ListEarthObservationJobInput) => any;
|
|
3094
|
-
/**
|
|
3095
|
-
* @internal
|
|
3096
|
-
*/
|
|
3097
|
-
export declare const ListEarthObservationJobOutputFilterSensitiveLog: (obj: ListEarthObservationJobOutput) => any;
|
|
3098
|
-
/**
|
|
3099
|
-
* @internal
|
|
3100
|
-
*/
|
|
3101
|
-
export declare const TimeRangeFilterInputFilterSensitiveLog: (obj: TimeRangeFilterInput) => any;
|
|
3102
|
-
/**
|
|
3103
|
-
* @internal
|
|
3104
|
-
*/
|
|
3105
|
-
export declare const RasterDataCollectionQueryInputFilterSensitiveLog: (obj: RasterDataCollectionQueryInput) => any;
|
|
3106
|
-
/**
|
|
3107
|
-
* @internal
|
|
3108
|
-
*/
|
|
3109
|
-
export declare const InputConfigInputFilterSensitiveLog: (obj: InputConfigInput) => any;
|
|
3110
|
-
/**
|
|
3111
|
-
* @internal
|
|
3112
|
-
*/
|
|
3113
|
-
export declare const StartEarthObservationJobInputFilterSensitiveLog: (obj: StartEarthObservationJobInput) => any;
|
|
3114
|
-
/**
|
|
3115
|
-
* @internal
|
|
3116
|
-
*/
|
|
3117
|
-
export declare const StartEarthObservationJobOutputFilterSensitiveLog: (obj: StartEarthObservationJobOutput) => any;
|
|
3118
|
-
/**
|
|
3119
|
-
* @internal
|
|
3120
|
-
*/
|
|
3121
|
-
export declare const GeometryFilterSensitiveLog: (obj: Geometry) => any;
|
|
3122
|
-
/**
|
|
3123
|
-
* @internal
|
|
3124
|
-
*/
|
|
3125
|
-
export declare const ItemSourceFilterSensitiveLog: (obj: ItemSource) => any;
|
|
3126
|
-
/**
|
|
3127
|
-
* @internal
|
|
3128
|
-
*/
|
|
3129
|
-
export declare const ListRasterDataCollectionsInputFilterSensitiveLog: (obj: ListRasterDataCollectionsInput) => any;
|
|
3130
|
-
/**
|
|
3131
|
-
* @internal
|
|
3132
|
-
*/
|
|
3133
|
-
export declare const ListRasterDataCollectionsOutputFilterSensitiveLog: (obj: ListRasterDataCollectionsOutput) => any;
|
|
3134
|
-
/**
|
|
3135
|
-
* @internal
|
|
3136
|
-
*/
|
|
3137
|
-
export declare const ListVectorEnrichmentJobInputFilterSensitiveLog: (obj: ListVectorEnrichmentJobInput) => any;
|
|
3138
|
-
/**
|
|
3139
|
-
* @internal
|
|
3140
|
-
*/
|
|
3141
|
-
export declare const ListVectorEnrichmentJobOutputFilterSensitiveLog: (obj: ListVectorEnrichmentJobOutput) => any;
|
|
3142
|
-
/**
|
|
3143
|
-
* @internal
|
|
3144
|
-
*/
|
|
3145
|
-
export declare const RasterDataCollectionQueryWithBandFilterInputFilterSensitiveLog: (obj: RasterDataCollectionQueryWithBandFilterInput) => any;
|
|
3146
|
-
/**
|
|
3147
|
-
* @internal
|
|
3148
|
-
*/
|
|
3149
|
-
export declare const SearchRasterDataCollectionInputFilterSensitiveLog: (obj: SearchRasterDataCollectionInput) => any;
|
|
3150
|
-
/**
|
|
3151
|
-
* @internal
|
|
3152
|
-
*/
|
|
3153
|
-
export declare const SearchRasterDataCollectionOutputFilterSensitiveLog: (obj: SearchRasterDataCollectionOutput) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig)
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
33
34
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
35
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig)
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
35
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
37
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig)
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig)
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerGeospatialHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
18
19
|
serviceId: string;
|
|
19
20
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var BinaryFile: StaticSimpleSchema;
|
|
3
|
+
export declare var NextToken: StaticSimpleSchema;
|
|
4
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
5
|
+
export declare var AssetValue: StaticStructureSchema;
|
|
6
|
+
export declare var BandMathConfigInput: StaticStructureSchema;
|
|
7
|
+
export declare var CloudMaskingConfigInput: StaticStructureSchema;
|
|
8
|
+
export declare var CloudRemovalConfigInput: StaticStructureSchema;
|
|
9
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
10
|
+
export declare var CustomIndicesInput: StaticStructureSchema;
|
|
11
|
+
export declare var DeleteEarthObservationJobInput: StaticStructureSchema;
|
|
12
|
+
export declare var DeleteEarthObservationJobOutput: StaticStructureSchema;
|
|
13
|
+
export declare var DeleteVectorEnrichmentJobInput: StaticStructureSchema;
|
|
14
|
+
export declare var DeleteVectorEnrichmentJobOutput: StaticStructureSchema;
|
|
15
|
+
export declare var EarthObservationJobErrorDetails: StaticStructureSchema;
|
|
16
|
+
export declare var EoCloudCoverInput: StaticStructureSchema;
|
|
17
|
+
export declare var ExportEarthObservationJobInput: StaticStructureSchema;
|
|
18
|
+
export declare var ExportEarthObservationJobOutput: StaticStructureSchema;
|
|
19
|
+
export declare var ExportErrorDetails: StaticStructureSchema;
|
|
20
|
+
export declare var ExportErrorDetailsOutput: StaticStructureSchema;
|
|
21
|
+
export declare var ExportS3DataInput: StaticStructureSchema;
|
|
22
|
+
export declare var ExportVectorEnrichmentJobInput: StaticStructureSchema;
|
|
23
|
+
export declare var ExportVectorEnrichmentJobOutput: StaticStructureSchema;
|
|
24
|
+
export declare var ExportVectorEnrichmentJobOutputConfig: StaticStructureSchema;
|
|
25
|
+
export declare var Filter: StaticStructureSchema;
|
|
26
|
+
export declare var Geometry: StaticStructureSchema;
|
|
27
|
+
export declare var GeoMosaicConfigInput: StaticStructureSchema;
|
|
28
|
+
export declare var GetEarthObservationJobInput: StaticStructureSchema;
|
|
29
|
+
export declare var GetEarthObservationJobOutput: StaticStructureSchema;
|
|
30
|
+
export declare var GetRasterDataCollectionInput: StaticStructureSchema;
|
|
31
|
+
export declare var GetRasterDataCollectionOutput: StaticStructureSchema;
|
|
32
|
+
export declare var GetTileInput: StaticStructureSchema;
|
|
33
|
+
export declare var GetTileOutput: StaticStructureSchema;
|
|
34
|
+
export declare var GetVectorEnrichmentJobInput: StaticStructureSchema;
|
|
35
|
+
export declare var GetVectorEnrichmentJobOutput: StaticStructureSchema;
|
|
36
|
+
export declare var InputConfigInput: StaticStructureSchema;
|
|
37
|
+
export declare var InputConfigOutput: StaticStructureSchema;
|
|
38
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
39
|
+
export declare var ItemSource: StaticStructureSchema;
|
|
40
|
+
export declare var LandCoverSegmentationConfigInput: StaticStructureSchema;
|
|
41
|
+
export declare var LandsatCloudCoverLandInput: StaticStructureSchema;
|
|
42
|
+
export declare var ListEarthObservationJobInput: StaticStructureSchema;
|
|
43
|
+
export declare var ListEarthObservationJobOutput: StaticStructureSchema;
|
|
44
|
+
export declare var ListEarthObservationJobOutputConfig: StaticStructureSchema;
|
|
45
|
+
export declare var ListRasterDataCollectionsInput: StaticStructureSchema;
|
|
46
|
+
export declare var ListRasterDataCollectionsOutput: StaticStructureSchema;
|
|
47
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
48
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
49
|
+
export declare var ListVectorEnrichmentJobInput: StaticStructureSchema;
|
|
50
|
+
export declare var ListVectorEnrichmentJobOutput: StaticStructureSchema;
|
|
51
|
+
export declare var ListVectorEnrichmentJobOutputConfig: StaticStructureSchema;
|
|
52
|
+
export declare var MapMatchingConfig: StaticStructureSchema;
|
|
53
|
+
export declare var MultiPolygonGeometryInput: StaticStructureSchema;
|
|
54
|
+
export declare var Operation: StaticStructureSchema;
|
|
55
|
+
export declare var OutputBand: StaticStructureSchema;
|
|
56
|
+
export declare var OutputConfigInput: StaticStructureSchema;
|
|
57
|
+
export declare var OutputResolutionResamplingInput: StaticStructureSchema;
|
|
58
|
+
export declare var OutputResolutionStackInput: StaticStructureSchema;
|
|
59
|
+
export declare var PlatformInput: StaticStructureSchema;
|
|
60
|
+
export declare var PolygonGeometryInput: StaticStructureSchema;
|
|
61
|
+
export declare var Properties: StaticStructureSchema;
|
|
62
|
+
export declare var PropertyFilter: StaticStructureSchema;
|
|
63
|
+
export declare var PropertyFilters: StaticStructureSchema;
|
|
64
|
+
export declare var RasterDataCollectionMetadata: StaticStructureSchema;
|
|
65
|
+
export declare var RasterDataCollectionQueryInput: StaticStructureSchema;
|
|
66
|
+
export declare var RasterDataCollectionQueryOutput: StaticStructureSchema;
|
|
67
|
+
export declare var RasterDataCollectionQueryWithBandFilterInput: StaticStructureSchema;
|
|
68
|
+
export declare var ResamplingConfigInput: StaticStructureSchema;
|
|
69
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
70
|
+
export declare var ReverseGeocodingConfig: StaticStructureSchema;
|
|
71
|
+
export declare var SearchRasterDataCollectionInput: StaticStructureSchema;
|
|
72
|
+
export declare var SearchRasterDataCollectionOutput: StaticStructureSchema;
|
|
73
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
74
|
+
export declare var StackConfigInput: StaticStructureSchema;
|
|
75
|
+
export declare var StartEarthObservationJobInput: StaticStructureSchema;
|
|
76
|
+
export declare var StartEarthObservationJobOutput: StaticStructureSchema;
|
|
77
|
+
export declare var StartVectorEnrichmentJobInput: StaticStructureSchema;
|
|
78
|
+
export declare var StartVectorEnrichmentJobOutput: StaticStructureSchema;
|
|
79
|
+
export declare var StopEarthObservationJobInput: StaticStructureSchema;
|
|
80
|
+
export declare var StopEarthObservationJobOutput: StaticStructureSchema;
|
|
81
|
+
export declare var StopVectorEnrichmentJobInput: StaticStructureSchema;
|
|
82
|
+
export declare var StopVectorEnrichmentJobOutput: StaticStructureSchema;
|
|
83
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
84
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
85
|
+
export declare var TemporalStatisticsConfigInput: StaticStructureSchema;
|
|
86
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
87
|
+
export declare var TimeRangeFilterInput: StaticStructureSchema;
|
|
88
|
+
export declare var TimeRangeFilterOutput: StaticStructureSchema;
|
|
89
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
90
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
91
|
+
export declare var UserDefined: StaticStructureSchema;
|
|
92
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
93
|
+
export declare var VectorEnrichmentJobErrorDetails: StaticStructureSchema;
|
|
94
|
+
export declare var VectorEnrichmentJobExportErrorDetails: StaticStructureSchema;
|
|
95
|
+
export declare var VectorEnrichmentJobInputConfig: StaticStructureSchema;
|
|
96
|
+
export declare var VectorEnrichmentJobS3Data: StaticStructureSchema;
|
|
97
|
+
export declare var ViewOffNadirInput: StaticStructureSchema;
|
|
98
|
+
export declare var ViewSunAzimuthInput: StaticStructureSchema;
|
|
99
|
+
export declare var ViewSunElevationInput: StaticStructureSchema;
|
|
100
|
+
export declare var ZonalStatisticsConfigInput: StaticStructureSchema;
|
|
101
|
+
export declare var SageMakerGeospatialServiceException: StaticErrorSchema;
|
|
102
|
+
export declare var DataCollectionsList: StaticListSchema;
|
|
103
|
+
export declare var EarthObservationJobList: StaticListSchema;
|
|
104
|
+
export declare var EarthObservationJobOutputBands: StaticListSchema;
|
|
105
|
+
export declare var FilterList: StaticListSchema;
|
|
106
|
+
export declare var ImageSourceBandList: number;
|
|
107
|
+
export declare var ItemSourceList: StaticListSchema;
|
|
108
|
+
export declare var LinearRing: StaticListSchema;
|
|
109
|
+
export declare var LinearRings: StaticListSchema;
|
|
110
|
+
export declare var LinearRingsList: StaticListSchema;
|
|
111
|
+
export declare var OperationsListInput: StaticListSchema;
|
|
112
|
+
export declare var Position: StaticListSchema;
|
|
113
|
+
export declare var PropertyFiltersList: StaticListSchema;
|
|
114
|
+
export declare var StringListInput: number;
|
|
115
|
+
export declare var TagKeyList: number;
|
|
116
|
+
export declare var TemporalStatisticsListInput: number;
|
|
117
|
+
export declare var VectorEnrichmentJobList: StaticListSchema;
|
|
118
|
+
export declare var ZonalStatisticsListInput: number;
|
|
119
|
+
export declare var AssetsMap: StaticMapSchema;
|
|
120
|
+
export declare var Tags: number;
|
|
121
|
+
export declare var AreaOfInterest: StaticStructureSchema;
|
|
122
|
+
export declare var AreaOfInterestGeometry: StaticStructureSchema;
|
|
123
|
+
export declare var JobConfigInput: StaticStructureSchema;
|
|
124
|
+
export declare var Property: StaticStructureSchema;
|
|
125
|
+
export declare var VectorEnrichmentJobConfig: StaticStructureSchema;
|
|
126
|
+
export declare var VectorEnrichmentJobDataSourceConfigInput: StaticStructureSchema;
|
|
127
|
+
export declare var DeleteEarthObservationJob: StaticOperationSchema;
|
|
128
|
+
export declare var DeleteVectorEnrichmentJob: StaticOperationSchema;
|
|
129
|
+
export declare var ExportEarthObservationJob: StaticOperationSchema;
|
|
130
|
+
export declare var ExportVectorEnrichmentJob: StaticOperationSchema;
|
|
131
|
+
export declare var GetEarthObservationJob: StaticOperationSchema;
|
|
132
|
+
export declare var GetRasterDataCollection: StaticOperationSchema;
|
|
133
|
+
export declare var GetTile: StaticOperationSchema;
|
|
134
|
+
export declare var GetVectorEnrichmentJob: StaticOperationSchema;
|
|
135
|
+
export declare var ListEarthObservationJobs: StaticOperationSchema;
|
|
136
|
+
export declare var ListRasterDataCollections: StaticOperationSchema;
|
|
137
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
138
|
+
export declare var ListVectorEnrichmentJobs: StaticOperationSchema;
|
|
139
|
+
export declare var SearchRasterDataCollection: StaticOperationSchema;
|
|
140
|
+
export declare var StartEarthObservationJob: StaticOperationSchema;
|
|
141
|
+
export declare var StartVectorEnrichmentJob: StaticOperationSchema;
|
|
142
|
+
export declare var StopEarthObservationJob: StaticOperationSchema;
|
|
143
|
+
export declare var StopVectorEnrichmentJob: StaticOperationSchema;
|
|
144
|
+
export declare var TagResource: StaticOperationSchema;
|
|
145
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -193,6 +196,7 @@ export interface ClientDefaults
|
|
|
193
196
|
retryMode?: string | __Provider<string>;
|
|
194
197
|
logger?: __Logger;
|
|
195
198
|
extensions?: RuntimeExtension[];
|
|
199
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
196
200
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
197
201
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
198
202
|
}
|
|
@@ -81,7 +81,6 @@ export declare namespace AreaOfInterestGeometry {
|
|
|
81
81
|
MultiPolygonGeometry: (value: MultiPolygonGeometryInput) => T;
|
|
82
82
|
_: (name: string, value: any) => T;
|
|
83
83
|
}
|
|
84
|
-
const visit: <T>(value: AreaOfInterestGeometry, visitor: Visitor<T>) => T;
|
|
85
84
|
}
|
|
86
85
|
export type AreaOfInterest =
|
|
87
86
|
| AreaOfInterest.AreaOfInterestGeometryMember
|
|
@@ -99,7 +98,6 @@ export declare namespace AreaOfInterest {
|
|
|
99
98
|
AreaOfInterestGeometry: (value: AreaOfInterestGeometry) => T;
|
|
100
99
|
_: (name: string, value: any) => T;
|
|
101
100
|
}
|
|
102
|
-
const visit: <T>(value: AreaOfInterest, visitor: Visitor<T>) => T;
|
|
103
101
|
}
|
|
104
102
|
export interface AssetValue {
|
|
105
103
|
Href?: string | undefined;
|
|
@@ -385,7 +383,6 @@ export declare namespace Property {
|
|
|
385
383
|
LandsatCloudCoverLand: (value: LandsatCloudCoverLandInput) => T;
|
|
386
384
|
_: (name: string, value: any) => T;
|
|
387
385
|
}
|
|
388
|
-
const visit: <T>(value: Property, visitor: Visitor<T>) => T;
|
|
389
386
|
}
|
|
390
387
|
export interface PropertyFilter {
|
|
391
388
|
Property: Property | undefined;
|
|
@@ -622,7 +619,6 @@ export declare namespace JobConfigInput {
|
|
|
622
619
|
LandCoverSegmentationConfig: (value: LandCoverSegmentationConfigInput) => T;
|
|
623
620
|
_: (name: string, value: any) => T;
|
|
624
621
|
}
|
|
625
|
-
const visit: <T>(value: JobConfigInput, visitor: Visitor<T>) => T;
|
|
626
622
|
}
|
|
627
623
|
export interface OutputBand {
|
|
628
624
|
BandName: string | undefined;
|
|
@@ -827,10 +823,6 @@ export declare namespace VectorEnrichmentJobDataSourceConfigInput {
|
|
|
827
823
|
S3Data: (value: VectorEnrichmentJobS3Data) => T;
|
|
828
824
|
_: (name: string, value: any) => T;
|
|
829
825
|
}
|
|
830
|
-
const visit: <T>(
|
|
831
|
-
value: VectorEnrichmentJobDataSourceConfigInput,
|
|
832
|
-
visitor: Visitor<T>
|
|
833
|
-
) => T;
|
|
834
826
|
}
|
|
835
827
|
export declare const VectorEnrichmentJobDocumentType: {
|
|
836
828
|
readonly CSV: "CSV";
|
|
@@ -876,7 +868,6 @@ export declare namespace VectorEnrichmentJobConfig {
|
|
|
876
868
|
MapMatchingConfig: (value: MapMatchingConfig) => T;
|
|
877
869
|
_: (name: string, value: any) => T;
|
|
878
870
|
}
|
|
879
|
-
const visit: <T>(value: VectorEnrichmentJobConfig, visitor: Visitor<T>) => T;
|
|
880
871
|
}
|
|
881
872
|
export declare const VectorEnrichmentJobStatus: {
|
|
882
873
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -1017,74 +1008,3 @@ export interface StopVectorEnrichmentJobInput {
|
|
|
1017
1008
|
Arn: string | undefined;
|
|
1018
1009
|
}
|
|
1019
1010
|
export interface StopVectorEnrichmentJobOutput {}
|
|
1020
|
-
export declare const MultiPolygonGeometryInputFilterSensitiveLog: (
|
|
1021
|
-
obj: MultiPolygonGeometryInput
|
|
1022
|
-
) => any;
|
|
1023
|
-
export declare const PolygonGeometryInputFilterSensitiveLog: (
|
|
1024
|
-
obj: PolygonGeometryInput
|
|
1025
|
-
) => any;
|
|
1026
|
-
export declare const AreaOfInterestGeometryFilterSensitiveLog: (
|
|
1027
|
-
obj: AreaOfInterestGeometry
|
|
1028
|
-
) => any;
|
|
1029
|
-
export declare const AreaOfInterestFilterSensitiveLog: (
|
|
1030
|
-
obj: AreaOfInterest
|
|
1031
|
-
) => any;
|
|
1032
|
-
export declare const TimeRangeFilterOutputFilterSensitiveLog: (
|
|
1033
|
-
obj: TimeRangeFilterOutput
|
|
1034
|
-
) => any;
|
|
1035
|
-
export declare const RasterDataCollectionQueryOutputFilterSensitiveLog: (
|
|
1036
|
-
obj: RasterDataCollectionQueryOutput
|
|
1037
|
-
) => any;
|
|
1038
|
-
export declare const InputConfigOutputFilterSensitiveLog: (
|
|
1039
|
-
obj: InputConfigOutput
|
|
1040
|
-
) => any;
|
|
1041
|
-
export declare const GetEarthObservationJobOutputFilterSensitiveLog: (
|
|
1042
|
-
obj: GetEarthObservationJobOutput
|
|
1043
|
-
) => any;
|
|
1044
|
-
export declare const GetTileOutputFilterSensitiveLog: (
|
|
1045
|
-
obj: GetTileOutput
|
|
1046
|
-
) => any;
|
|
1047
|
-
export declare const ListEarthObservationJobInputFilterSensitiveLog: (
|
|
1048
|
-
obj: ListEarthObservationJobInput
|
|
1049
|
-
) => any;
|
|
1050
|
-
export declare const ListEarthObservationJobOutputFilterSensitiveLog: (
|
|
1051
|
-
obj: ListEarthObservationJobOutput
|
|
1052
|
-
) => any;
|
|
1053
|
-
export declare const TimeRangeFilterInputFilterSensitiveLog: (
|
|
1054
|
-
obj: TimeRangeFilterInput
|
|
1055
|
-
) => any;
|
|
1056
|
-
export declare const RasterDataCollectionQueryInputFilterSensitiveLog: (
|
|
1057
|
-
obj: RasterDataCollectionQueryInput
|
|
1058
|
-
) => any;
|
|
1059
|
-
export declare const InputConfigInputFilterSensitiveLog: (
|
|
1060
|
-
obj: InputConfigInput
|
|
1061
|
-
) => any;
|
|
1062
|
-
export declare const StartEarthObservationJobInputFilterSensitiveLog: (
|
|
1063
|
-
obj: StartEarthObservationJobInput
|
|
1064
|
-
) => any;
|
|
1065
|
-
export declare const StartEarthObservationJobOutputFilterSensitiveLog: (
|
|
1066
|
-
obj: StartEarthObservationJobOutput
|
|
1067
|
-
) => any;
|
|
1068
|
-
export declare const GeometryFilterSensitiveLog: (obj: Geometry) => any;
|
|
1069
|
-
export declare const ItemSourceFilterSensitiveLog: (obj: ItemSource) => any;
|
|
1070
|
-
export declare const ListRasterDataCollectionsInputFilterSensitiveLog: (
|
|
1071
|
-
obj: ListRasterDataCollectionsInput
|
|
1072
|
-
) => any;
|
|
1073
|
-
export declare const ListRasterDataCollectionsOutputFilterSensitiveLog: (
|
|
1074
|
-
obj: ListRasterDataCollectionsOutput
|
|
1075
|
-
) => any;
|
|
1076
|
-
export declare const ListVectorEnrichmentJobInputFilterSensitiveLog: (
|
|
1077
|
-
obj: ListVectorEnrichmentJobInput
|
|
1078
|
-
) => any;
|
|
1079
|
-
export declare const ListVectorEnrichmentJobOutputFilterSensitiveLog: (
|
|
1080
|
-
obj: ListVectorEnrichmentJobOutput
|
|
1081
|
-
) => any;
|
|
1082
|
-
export declare const RasterDataCollectionQueryWithBandFilterInputFilterSensitiveLog: (
|
|
1083
|
-
obj: RasterDataCollectionQueryWithBandFilterInput
|
|
1084
|
-
) => any;
|
|
1085
|
-
export declare const SearchRasterDataCollectionInputFilterSensitiveLog: (
|
|
1086
|
-
obj: SearchRasterDataCollectionInput
|
|
1087
|
-
) => any;
|
|
1088
|
-
export declare const SearchRasterDataCollectionOutputFilterSensitiveLog: (
|
|
1089
|
-
obj: SearchRasterDataCollectionOutput
|
|
1090
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
44
48
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
45
49
|
userAgentAppId?:
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
44
48
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
45
49
|
retryStrategy?:
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerGeospatialHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
20
24
|
serviceId: string;
|
|
21
25
|
urlParser: import("@smithy/types").UrlParser;
|