@aws-sdk/client-sagemaker-geospatial 3.687.0 → 3.691.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.
@@ -102,7 +102,7 @@ export declare namespace AreaOfInterest {
102
102
  const visit: <T>(value: AreaOfInterest, visitor: Visitor<T>) => T;
103
103
  }
104
104
  export interface AssetValue {
105
- Href?: string;
105
+ Href?: string | undefined;
106
106
  }
107
107
  export declare const OutputType: {
108
108
  readonly FLOAT32: "FLOAT32";
@@ -115,20 +115,20 @@ export type OutputType = (typeof OutputType)[keyof typeof OutputType];
115
115
  export interface Operation {
116
116
  Name: string | undefined;
117
117
  Equation: string | undefined;
118
- OutputType?: OutputType;
118
+ OutputType?: OutputType | undefined;
119
119
  }
120
120
  export interface CustomIndicesInput {
121
- Operations?: Operation[];
121
+ Operations?: Operation[] | undefined;
122
122
  }
123
123
  export interface BandMathConfigInput {
124
- PredefinedIndices?: string[];
125
- CustomIndices?: CustomIndicesInput;
124
+ PredefinedIndices?: string[] | undefined;
125
+ CustomIndices?: CustomIndicesInput | undefined;
126
126
  }
127
127
  export interface CloudMaskingConfigInput {}
128
128
  export interface CloudRemovalConfigInput {
129
- AlgorithmName?: AlgorithmNameCloudRemoval;
130
- InterpolationValue?: string;
131
- TargetBands?: string[];
129
+ AlgorithmName?: AlgorithmNameCloudRemoval | undefined;
130
+ InterpolationValue?: string | undefined;
131
+ TargetBands?: string[] | undefined;
132
132
  }
133
133
  export declare const ComparisonOperator: {
134
134
  readonly EQUALS: "EQUALS";
@@ -141,14 +141,14 @@ export declare class ConflictException extends __BaseException {
141
141
  readonly name: "ConflictException";
142
142
  readonly $fault: "client";
143
143
  Message: string | undefined;
144
- ResourceId?: string;
144
+ ResourceId?: string | undefined;
145
145
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
146
146
  }
147
147
  export interface Filter {
148
148
  Name: string | undefined;
149
149
  Type: string | undefined;
150
- Minimum?: number;
151
- Maximum?: number;
150
+ Minimum?: number | undefined;
151
+ Maximum?: number | undefined;
152
152
  }
153
153
  export declare const DataCollectionType: {
154
154
  readonly PREMIUM: "PREMIUM";
@@ -162,9 +162,9 @@ export interface RasterDataCollectionMetadata {
162
162
  Arn: string | undefined;
163
163
  Type: DataCollectionType | undefined;
164
164
  Description: string | undefined;
165
- DescriptionPageUrl?: string;
165
+ DescriptionPageUrl?: string | undefined;
166
166
  SupportedFilters: Filter[] | undefined;
167
- Tags?: Record<string, string>;
167
+ Tags?: Record<string, string> | undefined;
168
168
  }
169
169
  export interface DeleteEarthObservationJobInput {
170
170
  Arn: string | undefined;
@@ -174,7 +174,7 @@ export declare class InternalServerException extends __BaseException {
174
174
  readonly name: "InternalServerException";
175
175
  readonly $fault: "server";
176
176
  Message: string | undefined;
177
- ResourceId?: string;
177
+ ResourceId?: string | undefined;
178
178
  constructor(
179
179
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
180
180
  );
@@ -183,7 +183,7 @@ export declare class ResourceNotFoundException extends __BaseException {
183
183
  readonly name: "ResourceNotFoundException";
184
184
  readonly $fault: "client";
185
185
  Message: string | undefined;
186
- ResourceId?: string;
186
+ ResourceId?: string | undefined;
187
187
  constructor(
188
188
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
189
189
  );
@@ -192,7 +192,7 @@ export declare class ThrottlingException extends __BaseException {
192
192
  readonly name: "ThrottlingException";
193
193
  readonly $fault: "client";
194
194
  Message: string | undefined;
195
- ResourceId?: string;
195
+ ResourceId?: string | undefined;
196
196
  constructor(
197
197
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
198
198
  );
@@ -201,7 +201,7 @@ export declare class ValidationException extends __BaseException {
201
201
  readonly name: "ValidationException";
202
202
  readonly $fault: "client";
203
203
  Message: string | undefined;
204
- ResourceId?: string;
204
+ ResourceId?: string | undefined;
205
205
  constructor(
206
206
  opts: __ExceptionOptionType<ValidationException, __BaseException>
207
207
  );
@@ -212,17 +212,17 @@ export interface DeleteVectorEnrichmentJobInput {
212
212
  export interface DeleteVectorEnrichmentJobOutput {}
213
213
  export interface ExportS3DataInput {
214
214
  S3Uri: string | undefined;
215
- KmsKeyId?: string;
215
+ KmsKeyId?: string | undefined;
216
216
  }
217
217
  export interface OutputConfigInput {
218
218
  S3Data: ExportS3DataInput | undefined;
219
219
  }
220
220
  export interface ExportEarthObservationJobInput {
221
221
  Arn: string | undefined;
222
- ClientToken?: string;
222
+ ClientToken?: string | undefined;
223
223
  ExecutionRoleArn: string | undefined;
224
224
  OutputConfig: OutputConfigInput | undefined;
225
- ExportSourceImages?: boolean;
225
+ ExportSourceImages?: boolean | undefined;
226
226
  }
227
227
  export declare const EarthObservationJobExportStatus: {
228
228
  readonly FAILED: "FAILED";
@@ -237,13 +237,13 @@ export interface ExportEarthObservationJobOutput {
237
237
  ExportStatus: EarthObservationJobExportStatus | undefined;
238
238
  ExecutionRoleArn: string | undefined;
239
239
  OutputConfig: OutputConfigInput | undefined;
240
- ExportSourceImages?: boolean;
240
+ ExportSourceImages?: boolean | undefined;
241
241
  }
242
242
  export declare class ServiceQuotaExceededException extends __BaseException {
243
243
  readonly name: "ServiceQuotaExceededException";
244
244
  readonly $fault: "client";
245
245
  Message: string | undefined;
246
- ResourceId?: string;
246
+ ResourceId?: string | undefined;
247
247
  constructor(
248
248
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
249
249
  );
@@ -258,8 +258,8 @@ export declare const EarthObservationJobErrorType: {
258
258
  export type EarthObservationJobErrorType =
259
259
  (typeof EarthObservationJobErrorType)[keyof typeof EarthObservationJobErrorType];
260
260
  export interface EarthObservationJobErrorDetails {
261
- Type?: EarthObservationJobErrorType;
262
- Message?: string;
261
+ Type?: EarthObservationJobErrorType | undefined;
262
+ Message?: string | undefined;
263
263
  }
264
264
  export declare const ExportErrorType: {
265
265
  readonly CLIENT_ERROR: "CLIENT_ERROR";
@@ -268,12 +268,12 @@ export declare const ExportErrorType: {
268
268
  export type ExportErrorType =
269
269
  (typeof ExportErrorType)[keyof typeof ExportErrorType];
270
270
  export interface ExportErrorDetailsOutput {
271
- Type?: ExportErrorType;
272
- Message?: string;
271
+ Type?: ExportErrorType | undefined;
272
+ Message?: string | undefined;
273
273
  }
274
274
  export interface ExportErrorDetails {
275
- ExportResults?: ExportErrorDetailsOutput;
276
- ExportSourceImages?: ExportErrorDetailsOutput;
275
+ ExportResults?: ExportErrorDetailsOutput | undefined;
276
+ ExportSourceImages?: ExportErrorDetailsOutput | undefined;
277
277
  }
278
278
  export declare const LogicalOperator: {
279
279
  readonly AND: "AND";
@@ -290,7 +290,7 @@ export interface LandsatCloudCoverLandInput {
290
290
  }
291
291
  export interface PlatformInput {
292
292
  Value: string | undefined;
293
- ComparisonOperator?: ComparisonOperator;
293
+ ComparisonOperator?: ComparisonOperator | undefined;
294
294
  }
295
295
  export interface ViewOffNadirInput {
296
296
  LowerBound: number | undefined;
@@ -391,8 +391,8 @@ export interface PropertyFilter {
391
391
  Property: Property | undefined;
392
392
  }
393
393
  export interface PropertyFilters {
394
- Properties?: PropertyFilter[];
395
- LogicalOperator?: LogicalOperator;
394
+ Properties?: PropertyFilter[] | undefined;
395
+ LogicalOperator?: LogicalOperator | undefined;
396
396
  }
397
397
  export interface TimeRangeFilterOutput {
398
398
  StartTime: Date | undefined;
@@ -402,16 +402,16 @@ export interface RasterDataCollectionQueryOutput {
402
402
  RasterDataCollectionArn: string | undefined;
403
403
  RasterDataCollectionName: string | undefined;
404
404
  TimeRangeFilter: TimeRangeFilterOutput | undefined;
405
- AreaOfInterest?: AreaOfInterest;
406
- PropertyFilters?: PropertyFilters;
405
+ AreaOfInterest?: AreaOfInterest | undefined;
406
+ PropertyFilters?: PropertyFilters | undefined;
407
407
  }
408
408
  export interface InputConfigOutput {
409
- PreviousEarthObservationJobArn?: string;
410
- RasterDataCollectionQuery?: RasterDataCollectionQueryOutput;
409
+ PreviousEarthObservationJobArn?: string | undefined;
410
+ RasterDataCollectionQuery?: RasterDataCollectionQueryOutput | undefined;
411
411
  }
412
412
  export interface GeoMosaicConfigInput {
413
- AlgorithmName?: AlgorithmNameGeoMosaic;
414
- TargetBands?: string[];
413
+ AlgorithmName?: AlgorithmNameGeoMosaic | undefined;
414
+ TargetBands?: string[] | undefined;
415
415
  }
416
416
  export interface LandCoverSegmentationConfigInput {}
417
417
  export declare const Unit: {
@@ -427,8 +427,8 @@ export interface OutputResolutionResamplingInput {
427
427
  }
428
428
  export interface ResamplingConfigInput {
429
429
  OutputResolution: OutputResolutionResamplingInput | undefined;
430
- AlgorithmName?: AlgorithmNameResampling;
431
- TargetBands?: string[];
430
+ AlgorithmName?: AlgorithmNameResampling | undefined;
431
+ TargetBands?: string[] | undefined;
432
432
  }
433
433
  export declare const PredefinedResolution: {
434
434
  readonly AVERAGE: "AVERAGE";
@@ -438,12 +438,12 @@ export declare const PredefinedResolution: {
438
438
  export type PredefinedResolution =
439
439
  (typeof PredefinedResolution)[keyof typeof PredefinedResolution];
440
440
  export interface OutputResolutionStackInput {
441
- Predefined?: PredefinedResolution;
442
- UserDefined?: UserDefined;
441
+ Predefined?: PredefinedResolution | undefined;
442
+ UserDefined?: UserDefined | undefined;
443
443
  }
444
444
  export interface StackConfigInput {
445
- OutputResolution?: OutputResolutionStackInput;
446
- TargetBands?: string[];
445
+ OutputResolution?: OutputResolutionStackInput | undefined;
446
+ TargetBands?: string[] | undefined;
447
447
  }
448
448
  export declare const GroupBy: {
449
449
  readonly ALL: "ALL";
@@ -458,9 +458,9 @@ export declare const TemporalStatistics: {
458
458
  export type TemporalStatistics =
459
459
  (typeof TemporalStatistics)[keyof typeof TemporalStatistics];
460
460
  export interface TemporalStatisticsConfigInput {
461
- GroupBy?: GroupBy;
461
+ GroupBy?: GroupBy | undefined;
462
462
  Statistics: TemporalStatistics[] | undefined;
463
- TargetBands?: string[];
463
+ TargetBands?: string[] | undefined;
464
464
  }
465
465
  export declare const ZonalStatistics: {
466
466
  readonly MAX: "MAX";
@@ -475,8 +475,8 @@ export type ZonalStatistics =
475
475
  export interface ZonalStatisticsConfigInput {
476
476
  ZoneS3Path: string | undefined;
477
477
  Statistics: ZonalStatistics[] | undefined;
478
- TargetBands?: string[];
479
- ZoneS3PathKmsKeyId?: string;
478
+ TargetBands?: string[] | undefined;
479
+ ZoneS3PathKmsKeyId?: string | undefined;
480
480
  }
481
481
  export type JobConfigInput =
482
482
  | JobConfigInput.BandMathConfigMember
@@ -646,15 +646,15 @@ export interface GetEarthObservationJobOutput {
646
646
  CreationTime: Date | undefined;
647
647
  DurationInSeconds: number | undefined;
648
648
  Status: EarthObservationJobStatus | undefined;
649
- KmsKeyId?: string;
649
+ KmsKeyId?: string | undefined;
650
650
  InputConfig: InputConfigOutput | undefined;
651
651
  JobConfig: JobConfigInput | undefined;
652
- OutputBands?: OutputBand[];
653
- ExecutionRoleArn?: string;
654
- ErrorDetails?: EarthObservationJobErrorDetails;
655
- ExportStatus?: EarthObservationJobExportStatus;
656
- ExportErrorDetails?: ExportErrorDetails;
657
- Tags?: Record<string, string>;
652
+ OutputBands?: OutputBand[] | undefined;
653
+ ExecutionRoleArn?: string | undefined;
654
+ ErrorDetails?: EarthObservationJobErrorDetails | undefined;
655
+ ExportStatus?: EarthObservationJobExportStatus | undefined;
656
+ ExportErrorDetails?: ExportErrorDetails | undefined;
657
+ Tags?: Record<string, string> | undefined;
658
658
  }
659
659
  export declare const TargetOptions: {
660
660
  readonly INPUT: "INPUT";
@@ -668,15 +668,15 @@ export interface GetTileInput {
668
668
  ImageAssets: string[] | undefined;
669
669
  Target: TargetOptions | undefined;
670
670
  Arn: string | undefined;
671
- ImageMask?: boolean;
672
- OutputFormat?: string;
673
- TimeRangeFilter?: string;
674
- PropertyFilters?: string;
675
- OutputDataType?: OutputType;
676
- ExecutionRoleArn?: string;
671
+ ImageMask?: boolean | undefined;
672
+ OutputFormat?: string | undefined;
673
+ TimeRangeFilter?: string | undefined;
674
+ PropertyFilters?: string | undefined;
675
+ OutputDataType?: OutputType | undefined;
676
+ ExecutionRoleArn?: string | undefined;
677
677
  }
678
678
  export interface GetTileOutput {
679
- BinaryFile?: StreamingBlobTypes;
679
+ BinaryFile?: StreamingBlobTypes | undefined;
680
680
  }
681
681
  export declare const SortOrder: {
682
682
  readonly ASCENDING: "ASCENDING";
@@ -684,11 +684,11 @@ export declare const SortOrder: {
684
684
  };
685
685
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
686
686
  export interface ListEarthObservationJobInput {
687
- StatusEquals?: EarthObservationJobStatus;
688
- SortOrder?: SortOrder;
689
- SortBy?: string;
690
- NextToken?: string;
691
- MaxResults?: number;
687
+ StatusEquals?: EarthObservationJobStatus | undefined;
688
+ SortOrder?: SortOrder | undefined;
689
+ SortBy?: string | undefined;
690
+ NextToken?: string | undefined;
691
+ MaxResults?: number | undefined;
692
692
  }
693
693
  export interface ListEarthObservationJobOutputConfig {
694
694
  Arn: string | undefined;
@@ -697,13 +697,13 @@ export interface ListEarthObservationJobOutputConfig {
697
697
  DurationInSeconds: number | undefined;
698
698
  Status: EarthObservationJobStatus | undefined;
699
699
  OperationType: string | undefined;
700
- Tags?: Record<string, string>;
700
+ Tags?: Record<string, string> | undefined;
701
701
  }
702
702
  export interface ListEarthObservationJobOutput {
703
703
  EarthObservationJobSummaries:
704
704
  | ListEarthObservationJobOutputConfig[]
705
705
  | undefined;
706
- NextToken?: string;
706
+ NextToken?: string | undefined;
707
707
  }
708
708
  export interface TimeRangeFilterInput {
709
709
  StartTime: Date | undefined;
@@ -712,21 +712,21 @@ export interface TimeRangeFilterInput {
712
712
  export interface RasterDataCollectionQueryInput {
713
713
  RasterDataCollectionArn: string | undefined;
714
714
  TimeRangeFilter: TimeRangeFilterInput | undefined;
715
- AreaOfInterest?: AreaOfInterest;
716
- PropertyFilters?: PropertyFilters;
715
+ AreaOfInterest?: AreaOfInterest | undefined;
716
+ PropertyFilters?: PropertyFilters | undefined;
717
717
  }
718
718
  export interface InputConfigInput {
719
- PreviousEarthObservationJobArn?: string;
720
- RasterDataCollectionQuery?: RasterDataCollectionQueryInput;
719
+ PreviousEarthObservationJobArn?: string | undefined;
720
+ RasterDataCollectionQuery?: RasterDataCollectionQueryInput | undefined;
721
721
  }
722
722
  export interface StartEarthObservationJobInput {
723
723
  Name: string | undefined;
724
- ClientToken?: string;
725
- KmsKeyId?: string;
724
+ ClientToken?: string | undefined;
725
+ KmsKeyId?: string | undefined;
726
726
  InputConfig: InputConfigInput | undefined;
727
727
  JobConfig: JobConfigInput | undefined;
728
728
  ExecutionRoleArn: string | undefined;
729
- Tags?: Record<string, string>;
729
+ Tags?: Record<string, string> | undefined;
730
730
  }
731
731
  export interface StartEarthObservationJobOutput {
732
732
  Name: string | undefined;
@@ -734,11 +734,11 @@ export interface StartEarthObservationJobOutput {
734
734
  CreationTime: Date | undefined;
735
735
  DurationInSeconds: number | undefined;
736
736
  Status: EarthObservationJobStatus | undefined;
737
- KmsKeyId?: string;
738
- InputConfig?: InputConfigOutput;
737
+ KmsKeyId?: string | undefined;
738
+ InputConfig?: InputConfigOutput | undefined;
739
739
  JobConfig: JobConfigInput | undefined;
740
740
  ExecutionRoleArn: string | undefined;
741
- Tags?: Record<string, string>;
741
+ Tags?: Record<string, string> | undefined;
742
742
  }
743
743
  export interface StopEarthObservationJobInput {
744
744
  Arn: string | undefined;
@@ -746,14 +746,14 @@ export interface StopEarthObservationJobInput {
746
746
  export interface StopEarthObservationJobOutput {}
747
747
  export interface VectorEnrichmentJobS3Data {
748
748
  S3Uri: string | undefined;
749
- KmsKeyId?: string;
749
+ KmsKeyId?: string | undefined;
750
750
  }
751
751
  export interface ExportVectorEnrichmentJobOutputConfig {
752
752
  S3Data: VectorEnrichmentJobS3Data | undefined;
753
753
  }
754
754
  export interface ExportVectorEnrichmentJobInput {
755
755
  Arn: string | undefined;
756
- ClientToken?: string;
756
+ ClientToken?: string | undefined;
757
757
  ExecutionRoleArn: string | undefined;
758
758
  OutputConfig: ExportVectorEnrichmentJobOutputConfig | undefined;
759
759
  }
@@ -786,7 +786,7 @@ export interface GetRasterDataCollectionOutput {
786
786
  DescriptionPageUrl: string | undefined;
787
787
  SupportedFilters: Filter[] | undefined;
788
788
  ImageSourceBands: string[] | undefined;
789
- Tags?: Record<string, string>;
789
+ Tags?: Record<string, string> | undefined;
790
790
  }
791
791
  export interface GetVectorEnrichmentJobInput {
792
792
  Arn: string | undefined;
@@ -798,8 +798,8 @@ export declare const VectorEnrichmentJobErrorType: {
798
798
  export type VectorEnrichmentJobErrorType =
799
799
  (typeof VectorEnrichmentJobErrorType)[keyof typeof VectorEnrichmentJobErrorType];
800
800
  export interface VectorEnrichmentJobErrorDetails {
801
- ErrorType?: VectorEnrichmentJobErrorType;
802
- ErrorMessage?: string;
801
+ ErrorType?: VectorEnrichmentJobErrorType | undefined;
802
+ ErrorMessage?: string | undefined;
803
803
  }
804
804
  export declare const VectorEnrichmentJobExportErrorType: {
805
805
  readonly CLIENT_ERROR: "CLIENT_ERROR";
@@ -808,8 +808,8 @@ export declare const VectorEnrichmentJobExportErrorType: {
808
808
  export type VectorEnrichmentJobExportErrorType =
809
809
  (typeof VectorEnrichmentJobExportErrorType)[keyof typeof VectorEnrichmentJobExportErrorType];
810
810
  export interface VectorEnrichmentJobExportErrorDetails {
811
- Type?: VectorEnrichmentJobExportErrorType;
812
- Message?: string;
811
+ Type?: VectorEnrichmentJobExportErrorType | undefined;
812
+ Message?: string | undefined;
813
813
  }
814
814
  export type VectorEnrichmentJobDataSourceConfigInput =
815
815
  | VectorEnrichmentJobDataSourceConfigInput.S3DataMember
@@ -903,50 +903,50 @@ export interface GetVectorEnrichmentJobOutput {
903
903
  CreationTime: Date | undefined;
904
904
  DurationInSeconds: number | undefined;
905
905
  Status: VectorEnrichmentJobStatus | undefined;
906
- KmsKeyId?: string;
906
+ KmsKeyId?: string | undefined;
907
907
  InputConfig: VectorEnrichmentJobInputConfig | undefined;
908
908
  JobConfig: VectorEnrichmentJobConfig | undefined;
909
909
  ExecutionRoleArn: string | undefined;
910
- ErrorDetails?: VectorEnrichmentJobErrorDetails;
911
- ExportStatus?: VectorEnrichmentJobExportStatus;
912
- ExportErrorDetails?: VectorEnrichmentJobExportErrorDetails;
913
- Tags?: Record<string, string>;
910
+ ErrorDetails?: VectorEnrichmentJobErrorDetails | undefined;
911
+ ExportStatus?: VectorEnrichmentJobExportStatus | undefined;
912
+ ExportErrorDetails?: VectorEnrichmentJobExportErrorDetails | undefined;
913
+ Tags?: Record<string, string> | undefined;
914
914
  }
915
915
  export interface Properties {
916
- EoCloudCover?: number;
917
- ViewOffNadir?: number;
918
- ViewSunAzimuth?: number;
919
- ViewSunElevation?: number;
920
- Platform?: string;
921
- LandsatCloudCoverLand?: number;
916
+ EoCloudCover?: number | undefined;
917
+ ViewOffNadir?: number | undefined;
918
+ ViewSunAzimuth?: number | undefined;
919
+ ViewSunElevation?: number | undefined;
920
+ Platform?: string | undefined;
921
+ LandsatCloudCoverLand?: number | undefined;
922
922
  }
923
923
  export interface ItemSource {
924
924
  Id: string | undefined;
925
925
  Geometry: Geometry | undefined;
926
- Assets?: Record<string, AssetValue>;
926
+ Assets?: Record<string, AssetValue> | undefined;
927
927
  DateTime: Date | undefined;
928
- Properties?: Properties;
928
+ Properties?: Properties | undefined;
929
929
  }
930
930
  export interface ListRasterDataCollectionsInput {
931
- NextToken?: string;
932
- MaxResults?: number;
931
+ NextToken?: string | undefined;
932
+ MaxResults?: number | undefined;
933
933
  }
934
934
  export interface ListRasterDataCollectionsOutput {
935
935
  RasterDataCollectionSummaries: RasterDataCollectionMetadata[] | undefined;
936
- NextToken?: string;
936
+ NextToken?: string | undefined;
937
937
  }
938
938
  export interface ListTagsForResourceRequest {
939
939
  ResourceArn: string | undefined;
940
940
  }
941
941
  export interface ListTagsForResourceResponse {
942
- Tags?: Record<string, string>;
942
+ Tags?: Record<string, string> | undefined;
943
943
  }
944
944
  export interface ListVectorEnrichmentJobInput {
945
- StatusEquals?: string;
946
- SortOrder?: SortOrder;
947
- SortBy?: string;
948
- NextToken?: string;
949
- MaxResults?: number;
945
+ StatusEquals?: string | undefined;
946
+ SortOrder?: SortOrder | undefined;
947
+ SortBy?: string | undefined;
948
+ NextToken?: string | undefined;
949
+ MaxResults?: number | undefined;
950
950
  }
951
951
  export interface ListVectorEnrichmentJobOutputConfig {
952
952
  Arn: string | undefined;
@@ -955,31 +955,31 @@ export interface ListVectorEnrichmentJobOutputConfig {
955
955
  CreationTime: Date | undefined;
956
956
  DurationInSeconds: number | undefined;
957
957
  Status: VectorEnrichmentJobStatus | undefined;
958
- Tags?: Record<string, string>;
958
+ Tags?: Record<string, string> | undefined;
959
959
  }
960
960
  export interface ListVectorEnrichmentJobOutput {
961
961
  VectorEnrichmentJobSummaries:
962
962
  | ListVectorEnrichmentJobOutputConfig[]
963
963
  | undefined;
964
- NextToken?: string;
964
+ NextToken?: string | undefined;
965
965
  }
966
966
  export interface RasterDataCollectionQueryWithBandFilterInput {
967
967
  TimeRangeFilter: TimeRangeFilterInput | undefined;
968
- AreaOfInterest?: AreaOfInterest;
969
- PropertyFilters?: PropertyFilters;
970
- BandFilter?: string[];
968
+ AreaOfInterest?: AreaOfInterest | undefined;
969
+ PropertyFilters?: PropertyFilters | undefined;
970
+ BandFilter?: string[] | undefined;
971
971
  }
972
972
  export interface SearchRasterDataCollectionInput {
973
973
  Arn: string | undefined;
974
974
  RasterDataCollectionQuery:
975
975
  | RasterDataCollectionQueryWithBandFilterInput
976
976
  | undefined;
977
- NextToken?: string;
977
+ NextToken?: string | undefined;
978
978
  }
979
979
  export interface SearchRasterDataCollectionOutput {
980
980
  ApproximateResultCount: number | undefined;
981
- NextToken?: string;
982
- Items?: ItemSource[];
981
+ NextToken?: string | undefined;
982
+ Items?: ItemSource[] | undefined;
983
983
  }
984
984
  export interface TagResourceRequest {
985
985
  ResourceArn: string | undefined;
@@ -993,12 +993,12 @@ export interface UntagResourceRequest {
993
993
  export interface UntagResourceResponse {}
994
994
  export interface StartVectorEnrichmentJobInput {
995
995
  Name: string | undefined;
996
- ClientToken?: string;
997
- KmsKeyId?: string;
996
+ ClientToken?: string | undefined;
997
+ KmsKeyId?: string | undefined;
998
998
  InputConfig: VectorEnrichmentJobInputConfig | undefined;
999
999
  JobConfig: VectorEnrichmentJobConfig | undefined;
1000
1000
  ExecutionRoleArn: string | undefined;
1001
- Tags?: Record<string, string>;
1001
+ Tags?: Record<string, string> | undefined;
1002
1002
  }
1003
1003
  export interface StartVectorEnrichmentJobOutput {
1004
1004
  Name: string | undefined;
@@ -1007,11 +1007,11 @@ export interface StartVectorEnrichmentJobOutput {
1007
1007
  CreationTime: Date | undefined;
1008
1008
  DurationInSeconds: number | undefined;
1009
1009
  Status: VectorEnrichmentJobStatus | undefined;
1010
- KmsKeyId?: string;
1010
+ KmsKeyId?: string | undefined;
1011
1011
  InputConfig: VectorEnrichmentJobInputConfig | undefined;
1012
1012
  JobConfig: VectorEnrichmentJobConfig | undefined;
1013
1013
  ExecutionRoleArn: string | undefined;
1014
- Tags?: Record<string, string>;
1014
+ Tags?: Record<string, string> | undefined;
1015
1015
  }
1016
1016
  export interface StopVectorEnrichmentJobInput {
1017
1017
  Arn: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker-geospatial",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Geospatial Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sagemaker-geospatial",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",