@aws-sdk/client-sagemaker-geospatial 3.936.0 → 3.939.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 +166 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +141 -0
- package/dist-es/models/models_0.js +1 -141
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +564 -0
- package/dist-types/models/models_0.d.ts +1 -564
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +184 -0
- package/dist-types/ts3.4/models/models_0.d.ts +26 -184
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -1579,6 +1579,148 @@ const paginateListVectorEnrichmentJobs = core.createPaginator(SageMakerGeospatia
|
|
|
1579
1579
|
|
|
1580
1580
|
const paginateSearchRasterDataCollection = core.createPaginator(SageMakerGeospatialClient, SearchRasterDataCollectionCommand, "NextToken", "NextToken", "");
|
|
1581
1581
|
|
|
1582
|
+
const AlgorithmNameCloudRemoval = {
|
|
1583
|
+
INTERPOLATION: "INTERPOLATION",
|
|
1584
|
+
};
|
|
1585
|
+
const AlgorithmNameGeoMosaic = {
|
|
1586
|
+
AVERAGE: "AVERAGE",
|
|
1587
|
+
BILINEAR: "BILINEAR",
|
|
1588
|
+
CUBIC: "CUBIC",
|
|
1589
|
+
CUBICSPLINE: "CUBICSPLINE",
|
|
1590
|
+
LANCZOS: "LANCZOS",
|
|
1591
|
+
MAX: "MAX",
|
|
1592
|
+
MED: "MED",
|
|
1593
|
+
MIN: "MIN",
|
|
1594
|
+
MODE: "MODE",
|
|
1595
|
+
NEAR: "NEAR",
|
|
1596
|
+
Q1: "Q1",
|
|
1597
|
+
Q3: "Q3",
|
|
1598
|
+
RMS: "RMS",
|
|
1599
|
+
SUM: "SUM",
|
|
1600
|
+
};
|
|
1601
|
+
const AlgorithmNameResampling = {
|
|
1602
|
+
AVERAGE: "AVERAGE",
|
|
1603
|
+
BILINEAR: "BILINEAR",
|
|
1604
|
+
CUBIC: "CUBIC",
|
|
1605
|
+
CUBICSPLINE: "CUBICSPLINE",
|
|
1606
|
+
LANCZOS: "LANCZOS",
|
|
1607
|
+
MAX: "MAX",
|
|
1608
|
+
MED: "MED",
|
|
1609
|
+
MIN: "MIN",
|
|
1610
|
+
MODE: "MODE",
|
|
1611
|
+
NEAR: "NEAR",
|
|
1612
|
+
Q1: "Q1",
|
|
1613
|
+
Q3: "Q3",
|
|
1614
|
+
RMS: "RMS",
|
|
1615
|
+
SUM: "SUM",
|
|
1616
|
+
};
|
|
1617
|
+
const OutputType = {
|
|
1618
|
+
FLOAT32: "FLOAT32",
|
|
1619
|
+
FLOAT64: "FLOAT64",
|
|
1620
|
+
INT16: "INT16",
|
|
1621
|
+
INT32: "INT32",
|
|
1622
|
+
UINT16: "UINT16",
|
|
1623
|
+
};
|
|
1624
|
+
const ComparisonOperator = {
|
|
1625
|
+
EQUALS: "EQUALS",
|
|
1626
|
+
NOT_EQUALS: "NOT_EQUALS",
|
|
1627
|
+
STARTS_WITH: "STARTS_WITH",
|
|
1628
|
+
};
|
|
1629
|
+
const DataCollectionType = {
|
|
1630
|
+
PREMIUM: "PREMIUM",
|
|
1631
|
+
PUBLIC: "PUBLIC",
|
|
1632
|
+
USER: "USER",
|
|
1633
|
+
};
|
|
1634
|
+
const EarthObservationJobExportStatus = {
|
|
1635
|
+
FAILED: "FAILED",
|
|
1636
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1637
|
+
SUCCEEDED: "SUCCEEDED",
|
|
1638
|
+
};
|
|
1639
|
+
const EarthObservationJobErrorType = {
|
|
1640
|
+
CLIENT_ERROR: "CLIENT_ERROR",
|
|
1641
|
+
SERVER_ERROR: "SERVER_ERROR",
|
|
1642
|
+
};
|
|
1643
|
+
const ExportErrorType = {
|
|
1644
|
+
CLIENT_ERROR: "CLIENT_ERROR",
|
|
1645
|
+
SERVER_ERROR: "SERVER_ERROR",
|
|
1646
|
+
};
|
|
1647
|
+
const LogicalOperator = {
|
|
1648
|
+
AND: "AND",
|
|
1649
|
+
};
|
|
1650
|
+
const Unit = {
|
|
1651
|
+
METERS: "METERS",
|
|
1652
|
+
};
|
|
1653
|
+
const PredefinedResolution = {
|
|
1654
|
+
AVERAGE: "AVERAGE",
|
|
1655
|
+
HIGHEST: "HIGHEST",
|
|
1656
|
+
LOWEST: "LOWEST",
|
|
1657
|
+
};
|
|
1658
|
+
const GroupBy = {
|
|
1659
|
+
ALL: "ALL",
|
|
1660
|
+
YEARLY: "YEARLY",
|
|
1661
|
+
};
|
|
1662
|
+
const TemporalStatistics = {
|
|
1663
|
+
MEAN: "MEAN",
|
|
1664
|
+
MEDIAN: "MEDIAN",
|
|
1665
|
+
STANDARD_DEVIATION: "STANDARD_DEVIATION",
|
|
1666
|
+
};
|
|
1667
|
+
const ZonalStatistics = {
|
|
1668
|
+
MAX: "MAX",
|
|
1669
|
+
MEAN: "MEAN",
|
|
1670
|
+
MEDIAN: "MEDIAN",
|
|
1671
|
+
MIN: "MIN",
|
|
1672
|
+
STANDARD_DEVIATION: "STANDARD_DEVIATION",
|
|
1673
|
+
SUM: "SUM",
|
|
1674
|
+
};
|
|
1675
|
+
const EarthObservationJobStatus = {
|
|
1676
|
+
COMPLETED: "COMPLETED",
|
|
1677
|
+
DELETED: "DELETED",
|
|
1678
|
+
DELETING: "DELETING",
|
|
1679
|
+
FAILED: "FAILED",
|
|
1680
|
+
INITIALIZING: "INITIALIZING",
|
|
1681
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1682
|
+
STOPPED: "STOPPED",
|
|
1683
|
+
STOPPING: "STOPPING",
|
|
1684
|
+
};
|
|
1685
|
+
const TargetOptions = {
|
|
1686
|
+
INPUT: "INPUT",
|
|
1687
|
+
OUTPUT: "OUTPUT",
|
|
1688
|
+
};
|
|
1689
|
+
const SortOrder = {
|
|
1690
|
+
ASCENDING: "ASCENDING",
|
|
1691
|
+
DESCENDING: "DESCENDING",
|
|
1692
|
+
};
|
|
1693
|
+
const VectorEnrichmentJobExportStatus = {
|
|
1694
|
+
FAILED: "FAILED",
|
|
1695
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1696
|
+
SUCCEEDED: "SUCCEEDED",
|
|
1697
|
+
};
|
|
1698
|
+
const VectorEnrichmentJobErrorType = {
|
|
1699
|
+
CLIENT_ERROR: "CLIENT_ERROR",
|
|
1700
|
+
SERVER_ERROR: "SERVER_ERROR",
|
|
1701
|
+
};
|
|
1702
|
+
const VectorEnrichmentJobExportErrorType = {
|
|
1703
|
+
CLIENT_ERROR: "CLIENT_ERROR",
|
|
1704
|
+
SERVER_ERROR: "SERVER_ERROR",
|
|
1705
|
+
};
|
|
1706
|
+
const VectorEnrichmentJobDocumentType = {
|
|
1707
|
+
CSV: "CSV",
|
|
1708
|
+
};
|
|
1709
|
+
const VectorEnrichmentJobStatus = {
|
|
1710
|
+
COMPLETED: "COMPLETED",
|
|
1711
|
+
DELETED: "DELETED",
|
|
1712
|
+
DELETING: "DELETING",
|
|
1713
|
+
FAILED: "FAILED",
|
|
1714
|
+
INITIALIZING: "INITIALIZING",
|
|
1715
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1716
|
+
STOPPED: "STOPPED",
|
|
1717
|
+
STOPPING: "STOPPING",
|
|
1718
|
+
};
|
|
1719
|
+
const VectorEnrichmentJobType = {
|
|
1720
|
+
MAP_MATCHING: "MAP_MATCHING",
|
|
1721
|
+
REVERSE_GEOCODING: "REVERSE_GEOCODING",
|
|
1722
|
+
};
|
|
1723
|
+
|
|
1582
1724
|
Object.defineProperty(exports, "$Command", {
|
|
1583
1725
|
enumerable: true,
|
|
1584
1726
|
get: function () { return smithyClient.Command; }
|
|
@@ -1588,34 +1730,58 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1588
1730
|
get: function () { return smithyClient.Client; }
|
|
1589
1731
|
});
|
|
1590
1732
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1733
|
+
exports.AlgorithmNameCloudRemoval = AlgorithmNameCloudRemoval;
|
|
1734
|
+
exports.AlgorithmNameGeoMosaic = AlgorithmNameGeoMosaic;
|
|
1735
|
+
exports.AlgorithmNameResampling = AlgorithmNameResampling;
|
|
1736
|
+
exports.ComparisonOperator = ComparisonOperator;
|
|
1591
1737
|
exports.ConflictException = ConflictException$1;
|
|
1738
|
+
exports.DataCollectionType = DataCollectionType;
|
|
1592
1739
|
exports.DeleteEarthObservationJobCommand = DeleteEarthObservationJobCommand;
|
|
1593
1740
|
exports.DeleteVectorEnrichmentJobCommand = DeleteVectorEnrichmentJobCommand;
|
|
1741
|
+
exports.EarthObservationJobErrorType = EarthObservationJobErrorType;
|
|
1742
|
+
exports.EarthObservationJobExportStatus = EarthObservationJobExportStatus;
|
|
1743
|
+
exports.EarthObservationJobStatus = EarthObservationJobStatus;
|
|
1594
1744
|
exports.ExportEarthObservationJobCommand = ExportEarthObservationJobCommand;
|
|
1745
|
+
exports.ExportErrorType = ExportErrorType;
|
|
1595
1746
|
exports.ExportVectorEnrichmentJobCommand = ExportVectorEnrichmentJobCommand;
|
|
1596
1747
|
exports.GetEarthObservationJobCommand = GetEarthObservationJobCommand;
|
|
1597
1748
|
exports.GetRasterDataCollectionCommand = GetRasterDataCollectionCommand;
|
|
1598
1749
|
exports.GetTileCommand = GetTileCommand;
|
|
1599
1750
|
exports.GetVectorEnrichmentJobCommand = GetVectorEnrichmentJobCommand;
|
|
1751
|
+
exports.GroupBy = GroupBy;
|
|
1600
1752
|
exports.InternalServerException = InternalServerException$1;
|
|
1601
1753
|
exports.ListEarthObservationJobsCommand = ListEarthObservationJobsCommand;
|
|
1602
1754
|
exports.ListRasterDataCollectionsCommand = ListRasterDataCollectionsCommand;
|
|
1603
1755
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1604
1756
|
exports.ListVectorEnrichmentJobsCommand = ListVectorEnrichmentJobsCommand;
|
|
1757
|
+
exports.LogicalOperator = LogicalOperator;
|
|
1758
|
+
exports.OutputType = OutputType;
|
|
1759
|
+
exports.PredefinedResolution = PredefinedResolution;
|
|
1605
1760
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1606
1761
|
exports.SageMakerGeospatial = SageMakerGeospatial;
|
|
1607
1762
|
exports.SageMakerGeospatialClient = SageMakerGeospatialClient;
|
|
1608
1763
|
exports.SageMakerGeospatialServiceException = SageMakerGeospatialServiceException$1;
|
|
1609
1764
|
exports.SearchRasterDataCollectionCommand = SearchRasterDataCollectionCommand;
|
|
1610
1765
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1766
|
+
exports.SortOrder = SortOrder;
|
|
1611
1767
|
exports.StartEarthObservationJobCommand = StartEarthObservationJobCommand;
|
|
1612
1768
|
exports.StartVectorEnrichmentJobCommand = StartVectorEnrichmentJobCommand;
|
|
1613
1769
|
exports.StopEarthObservationJobCommand = StopEarthObservationJobCommand;
|
|
1614
1770
|
exports.StopVectorEnrichmentJobCommand = StopVectorEnrichmentJobCommand;
|
|
1615
1771
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1772
|
+
exports.TargetOptions = TargetOptions;
|
|
1773
|
+
exports.TemporalStatistics = TemporalStatistics;
|
|
1616
1774
|
exports.ThrottlingException = ThrottlingException$1;
|
|
1775
|
+
exports.Unit = Unit;
|
|
1617
1776
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1618
1777
|
exports.ValidationException = ValidationException$1;
|
|
1778
|
+
exports.VectorEnrichmentJobDocumentType = VectorEnrichmentJobDocumentType;
|
|
1779
|
+
exports.VectorEnrichmentJobErrorType = VectorEnrichmentJobErrorType;
|
|
1780
|
+
exports.VectorEnrichmentJobExportErrorType = VectorEnrichmentJobExportErrorType;
|
|
1781
|
+
exports.VectorEnrichmentJobExportStatus = VectorEnrichmentJobExportStatus;
|
|
1782
|
+
exports.VectorEnrichmentJobStatus = VectorEnrichmentJobStatus;
|
|
1783
|
+
exports.VectorEnrichmentJobType = VectorEnrichmentJobType;
|
|
1784
|
+
exports.ZonalStatistics = ZonalStatistics;
|
|
1619
1785
|
exports.paginateListEarthObservationJobs = paginateListEarthObservationJobs;
|
|
1620
1786
|
exports.paginateListRasterDataCollections = paginateListRasterDataCollections;
|
|
1621
1787
|
exports.paginateListVectorEnrichmentJobs = paginateListVectorEnrichmentJobs;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./SageMakerGeospatialClient";
|
|
|
2
2
|
export * from "./SageMakerGeospatial";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { SageMakerGeospatialServiceException } from "./models/SageMakerGeospatialServiceException";
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
export const AlgorithmNameCloudRemoval = {
|
|
2
|
+
INTERPOLATION: "INTERPOLATION",
|
|
3
|
+
};
|
|
4
|
+
export const AlgorithmNameGeoMosaic = {
|
|
5
|
+
AVERAGE: "AVERAGE",
|
|
6
|
+
BILINEAR: "BILINEAR",
|
|
7
|
+
CUBIC: "CUBIC",
|
|
8
|
+
CUBICSPLINE: "CUBICSPLINE",
|
|
9
|
+
LANCZOS: "LANCZOS",
|
|
10
|
+
MAX: "MAX",
|
|
11
|
+
MED: "MED",
|
|
12
|
+
MIN: "MIN",
|
|
13
|
+
MODE: "MODE",
|
|
14
|
+
NEAR: "NEAR",
|
|
15
|
+
Q1: "Q1",
|
|
16
|
+
Q3: "Q3",
|
|
17
|
+
RMS: "RMS",
|
|
18
|
+
SUM: "SUM",
|
|
19
|
+
};
|
|
20
|
+
export const AlgorithmNameResampling = {
|
|
21
|
+
AVERAGE: "AVERAGE",
|
|
22
|
+
BILINEAR: "BILINEAR",
|
|
23
|
+
CUBIC: "CUBIC",
|
|
24
|
+
CUBICSPLINE: "CUBICSPLINE",
|
|
25
|
+
LANCZOS: "LANCZOS",
|
|
26
|
+
MAX: "MAX",
|
|
27
|
+
MED: "MED",
|
|
28
|
+
MIN: "MIN",
|
|
29
|
+
MODE: "MODE",
|
|
30
|
+
NEAR: "NEAR",
|
|
31
|
+
Q1: "Q1",
|
|
32
|
+
Q3: "Q3",
|
|
33
|
+
RMS: "RMS",
|
|
34
|
+
SUM: "SUM",
|
|
35
|
+
};
|
|
36
|
+
export const OutputType = {
|
|
37
|
+
FLOAT32: "FLOAT32",
|
|
38
|
+
FLOAT64: "FLOAT64",
|
|
39
|
+
INT16: "INT16",
|
|
40
|
+
INT32: "INT32",
|
|
41
|
+
UINT16: "UINT16",
|
|
42
|
+
};
|
|
43
|
+
export const ComparisonOperator = {
|
|
44
|
+
EQUALS: "EQUALS",
|
|
45
|
+
NOT_EQUALS: "NOT_EQUALS",
|
|
46
|
+
STARTS_WITH: "STARTS_WITH",
|
|
47
|
+
};
|
|
48
|
+
export const DataCollectionType = {
|
|
49
|
+
PREMIUM: "PREMIUM",
|
|
50
|
+
PUBLIC: "PUBLIC",
|
|
51
|
+
USER: "USER",
|
|
52
|
+
};
|
|
53
|
+
export const EarthObservationJobExportStatus = {
|
|
54
|
+
FAILED: "FAILED",
|
|
55
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
56
|
+
SUCCEEDED: "SUCCEEDED",
|
|
57
|
+
};
|
|
58
|
+
export const EarthObservationJobErrorType = {
|
|
59
|
+
CLIENT_ERROR: "CLIENT_ERROR",
|
|
60
|
+
SERVER_ERROR: "SERVER_ERROR",
|
|
61
|
+
};
|
|
62
|
+
export const ExportErrorType = {
|
|
63
|
+
CLIENT_ERROR: "CLIENT_ERROR",
|
|
64
|
+
SERVER_ERROR: "SERVER_ERROR",
|
|
65
|
+
};
|
|
66
|
+
export const LogicalOperator = {
|
|
67
|
+
AND: "AND",
|
|
68
|
+
};
|
|
69
|
+
export const Unit = {
|
|
70
|
+
METERS: "METERS",
|
|
71
|
+
};
|
|
72
|
+
export const PredefinedResolution = {
|
|
73
|
+
AVERAGE: "AVERAGE",
|
|
74
|
+
HIGHEST: "HIGHEST",
|
|
75
|
+
LOWEST: "LOWEST",
|
|
76
|
+
};
|
|
77
|
+
export const GroupBy = {
|
|
78
|
+
ALL: "ALL",
|
|
79
|
+
YEARLY: "YEARLY",
|
|
80
|
+
};
|
|
81
|
+
export const TemporalStatistics = {
|
|
82
|
+
MEAN: "MEAN",
|
|
83
|
+
MEDIAN: "MEDIAN",
|
|
84
|
+
STANDARD_DEVIATION: "STANDARD_DEVIATION",
|
|
85
|
+
};
|
|
86
|
+
export const ZonalStatistics = {
|
|
87
|
+
MAX: "MAX",
|
|
88
|
+
MEAN: "MEAN",
|
|
89
|
+
MEDIAN: "MEDIAN",
|
|
90
|
+
MIN: "MIN",
|
|
91
|
+
STANDARD_DEVIATION: "STANDARD_DEVIATION",
|
|
92
|
+
SUM: "SUM",
|
|
93
|
+
};
|
|
94
|
+
export const EarthObservationJobStatus = {
|
|
95
|
+
COMPLETED: "COMPLETED",
|
|
96
|
+
DELETED: "DELETED",
|
|
97
|
+
DELETING: "DELETING",
|
|
98
|
+
FAILED: "FAILED",
|
|
99
|
+
INITIALIZING: "INITIALIZING",
|
|
100
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
101
|
+
STOPPED: "STOPPED",
|
|
102
|
+
STOPPING: "STOPPING",
|
|
103
|
+
};
|
|
104
|
+
export const TargetOptions = {
|
|
105
|
+
INPUT: "INPUT",
|
|
106
|
+
OUTPUT: "OUTPUT",
|
|
107
|
+
};
|
|
108
|
+
export const SortOrder = {
|
|
109
|
+
ASCENDING: "ASCENDING",
|
|
110
|
+
DESCENDING: "DESCENDING",
|
|
111
|
+
};
|
|
112
|
+
export const VectorEnrichmentJobExportStatus = {
|
|
113
|
+
FAILED: "FAILED",
|
|
114
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
115
|
+
SUCCEEDED: "SUCCEEDED",
|
|
116
|
+
};
|
|
117
|
+
export const VectorEnrichmentJobErrorType = {
|
|
118
|
+
CLIENT_ERROR: "CLIENT_ERROR",
|
|
119
|
+
SERVER_ERROR: "SERVER_ERROR",
|
|
120
|
+
};
|
|
121
|
+
export const VectorEnrichmentJobExportErrorType = {
|
|
122
|
+
CLIENT_ERROR: "CLIENT_ERROR",
|
|
123
|
+
SERVER_ERROR: "SERVER_ERROR",
|
|
124
|
+
};
|
|
125
|
+
export const VectorEnrichmentJobDocumentType = {
|
|
126
|
+
CSV: "CSV",
|
|
127
|
+
};
|
|
128
|
+
export const VectorEnrichmentJobStatus = {
|
|
129
|
+
COMPLETED: "COMPLETED",
|
|
130
|
+
DELETED: "DELETED",
|
|
131
|
+
DELETING: "DELETING",
|
|
132
|
+
FAILED: "FAILED",
|
|
133
|
+
INITIALIZING: "INITIALIZING",
|
|
134
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
135
|
+
STOPPED: "STOPPED",
|
|
136
|
+
STOPPING: "STOPPING",
|
|
137
|
+
};
|
|
138
|
+
export const VectorEnrichmentJobType = {
|
|
139
|
+
MAP_MATCHING: "MAP_MATCHING",
|
|
140
|
+
REVERSE_GEOCODING: "REVERSE_GEOCODING",
|
|
141
|
+
};
|
|
@@ -1,141 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
INTERPOLATION: "INTERPOLATION",
|
|
3
|
-
};
|
|
4
|
-
export const AlgorithmNameGeoMosaic = {
|
|
5
|
-
AVERAGE: "AVERAGE",
|
|
6
|
-
BILINEAR: "BILINEAR",
|
|
7
|
-
CUBIC: "CUBIC",
|
|
8
|
-
CUBICSPLINE: "CUBICSPLINE",
|
|
9
|
-
LANCZOS: "LANCZOS",
|
|
10
|
-
MAX: "MAX",
|
|
11
|
-
MED: "MED",
|
|
12
|
-
MIN: "MIN",
|
|
13
|
-
MODE: "MODE",
|
|
14
|
-
NEAR: "NEAR",
|
|
15
|
-
Q1: "Q1",
|
|
16
|
-
Q3: "Q3",
|
|
17
|
-
RMS: "RMS",
|
|
18
|
-
SUM: "SUM",
|
|
19
|
-
};
|
|
20
|
-
export const AlgorithmNameResampling = {
|
|
21
|
-
AVERAGE: "AVERAGE",
|
|
22
|
-
BILINEAR: "BILINEAR",
|
|
23
|
-
CUBIC: "CUBIC",
|
|
24
|
-
CUBICSPLINE: "CUBICSPLINE",
|
|
25
|
-
LANCZOS: "LANCZOS",
|
|
26
|
-
MAX: "MAX",
|
|
27
|
-
MED: "MED",
|
|
28
|
-
MIN: "MIN",
|
|
29
|
-
MODE: "MODE",
|
|
30
|
-
NEAR: "NEAR",
|
|
31
|
-
Q1: "Q1",
|
|
32
|
-
Q3: "Q3",
|
|
33
|
-
RMS: "RMS",
|
|
34
|
-
SUM: "SUM",
|
|
35
|
-
};
|
|
36
|
-
export const OutputType = {
|
|
37
|
-
FLOAT32: "FLOAT32",
|
|
38
|
-
FLOAT64: "FLOAT64",
|
|
39
|
-
INT16: "INT16",
|
|
40
|
-
INT32: "INT32",
|
|
41
|
-
UINT16: "UINT16",
|
|
42
|
-
};
|
|
43
|
-
export const ComparisonOperator = {
|
|
44
|
-
EQUALS: "EQUALS",
|
|
45
|
-
NOT_EQUALS: "NOT_EQUALS",
|
|
46
|
-
STARTS_WITH: "STARTS_WITH",
|
|
47
|
-
};
|
|
48
|
-
export const DataCollectionType = {
|
|
49
|
-
PREMIUM: "PREMIUM",
|
|
50
|
-
PUBLIC: "PUBLIC",
|
|
51
|
-
USER: "USER",
|
|
52
|
-
};
|
|
53
|
-
export const EarthObservationJobExportStatus = {
|
|
54
|
-
FAILED: "FAILED",
|
|
55
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
56
|
-
SUCCEEDED: "SUCCEEDED",
|
|
57
|
-
};
|
|
58
|
-
export const EarthObservationJobErrorType = {
|
|
59
|
-
CLIENT_ERROR: "CLIENT_ERROR",
|
|
60
|
-
SERVER_ERROR: "SERVER_ERROR",
|
|
61
|
-
};
|
|
62
|
-
export const ExportErrorType = {
|
|
63
|
-
CLIENT_ERROR: "CLIENT_ERROR",
|
|
64
|
-
SERVER_ERROR: "SERVER_ERROR",
|
|
65
|
-
};
|
|
66
|
-
export const LogicalOperator = {
|
|
67
|
-
AND: "AND",
|
|
68
|
-
};
|
|
69
|
-
export const Unit = {
|
|
70
|
-
METERS: "METERS",
|
|
71
|
-
};
|
|
72
|
-
export const PredefinedResolution = {
|
|
73
|
-
AVERAGE: "AVERAGE",
|
|
74
|
-
HIGHEST: "HIGHEST",
|
|
75
|
-
LOWEST: "LOWEST",
|
|
76
|
-
};
|
|
77
|
-
export const GroupBy = {
|
|
78
|
-
ALL: "ALL",
|
|
79
|
-
YEARLY: "YEARLY",
|
|
80
|
-
};
|
|
81
|
-
export const TemporalStatistics = {
|
|
82
|
-
MEAN: "MEAN",
|
|
83
|
-
MEDIAN: "MEDIAN",
|
|
84
|
-
STANDARD_DEVIATION: "STANDARD_DEVIATION",
|
|
85
|
-
};
|
|
86
|
-
export const ZonalStatistics = {
|
|
87
|
-
MAX: "MAX",
|
|
88
|
-
MEAN: "MEAN",
|
|
89
|
-
MEDIAN: "MEDIAN",
|
|
90
|
-
MIN: "MIN",
|
|
91
|
-
STANDARD_DEVIATION: "STANDARD_DEVIATION",
|
|
92
|
-
SUM: "SUM",
|
|
93
|
-
};
|
|
94
|
-
export const EarthObservationJobStatus = {
|
|
95
|
-
COMPLETED: "COMPLETED",
|
|
96
|
-
DELETED: "DELETED",
|
|
97
|
-
DELETING: "DELETING",
|
|
98
|
-
FAILED: "FAILED",
|
|
99
|
-
INITIALIZING: "INITIALIZING",
|
|
100
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
101
|
-
STOPPED: "STOPPED",
|
|
102
|
-
STOPPING: "STOPPING",
|
|
103
|
-
};
|
|
104
|
-
export const TargetOptions = {
|
|
105
|
-
INPUT: "INPUT",
|
|
106
|
-
OUTPUT: "OUTPUT",
|
|
107
|
-
};
|
|
108
|
-
export const SortOrder = {
|
|
109
|
-
ASCENDING: "ASCENDING",
|
|
110
|
-
DESCENDING: "DESCENDING",
|
|
111
|
-
};
|
|
112
|
-
export const VectorEnrichmentJobExportStatus = {
|
|
113
|
-
FAILED: "FAILED",
|
|
114
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
115
|
-
SUCCEEDED: "SUCCEEDED",
|
|
116
|
-
};
|
|
117
|
-
export const VectorEnrichmentJobErrorType = {
|
|
118
|
-
CLIENT_ERROR: "CLIENT_ERROR",
|
|
119
|
-
SERVER_ERROR: "SERVER_ERROR",
|
|
120
|
-
};
|
|
121
|
-
export const VectorEnrichmentJobExportErrorType = {
|
|
122
|
-
CLIENT_ERROR: "CLIENT_ERROR",
|
|
123
|
-
SERVER_ERROR: "SERVER_ERROR",
|
|
124
|
-
};
|
|
125
|
-
export const VectorEnrichmentJobDocumentType = {
|
|
126
|
-
CSV: "CSV",
|
|
127
|
-
};
|
|
128
|
-
export const VectorEnrichmentJobStatus = {
|
|
129
|
-
COMPLETED: "COMPLETED",
|
|
130
|
-
DELETED: "DELETED",
|
|
131
|
-
DELETING: "DELETING",
|
|
132
|
-
FAILED: "FAILED",
|
|
133
|
-
INITIALIZING: "INITIALIZING",
|
|
134
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
135
|
-
STOPPED: "STOPPED",
|
|
136
|
-
STOPPING: "STOPPING",
|
|
137
|
-
};
|
|
138
|
-
export const VectorEnrichmentJobType = {
|
|
139
|
-
MAP_MATCHING: "MAP_MATCHING",
|
|
140
|
-
REVERSE_GEOCODING: "REVERSE_GEOCODING",
|
|
141
|
-
};
|
|
1
|
+
export {};
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { SageMakerGeospatialExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
+
export * from "./models/enums";
|
|
13
14
|
export * from "./models/errors";
|
|
14
15
|
export type * from "./models/models_0";
|
|
15
16
|
export { SageMakerGeospatialServiceException } from "./models/SageMakerGeospatialServiceException";
|