@aws-sdk/client-cost-explorer 3.441.0 → 3.445.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.
|
@@ -192,6 +192,13 @@ export interface GetReservationPurchaseRecommendationCommandOutput extends GetRe
|
|
|
192
192
|
* // CurrentGeneration: true || false,
|
|
193
193
|
* // SizeFlexEligible: true || false,
|
|
194
194
|
* // },
|
|
195
|
+
* // MemoryDBInstanceDetails: { // MemoryDBInstanceDetails
|
|
196
|
+
* // Family: "STRING_VALUE",
|
|
197
|
+
* // NodeType: "STRING_VALUE",
|
|
198
|
+
* // Region: "STRING_VALUE",
|
|
199
|
+
* // CurrentGeneration: true || false,
|
|
200
|
+
* // SizeFlexEligible: true || false,
|
|
201
|
+
* // },
|
|
195
202
|
* // },
|
|
196
203
|
* // RecommendedNumberOfInstancesToPurchase: "STRING_VALUE",
|
|
197
204
|
* // RecommendedNormalizedUnitsToPurchase: "STRING_VALUE",
|
package/dist-types/index.d.ts
CHANGED
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
export * from "./CostExplorerClient";
|
|
22
22
|
export * from "./CostExplorer";
|
|
23
23
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
24
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
25
|
+
export { CostExplorerExtensionConfiguration } from "./extensionConfiguration";
|
|
24
26
|
export * from "./commands";
|
|
25
27
|
export * from "./pagination";
|
|
26
28
|
export * from "./models";
|
|
@@ -1728,7 +1728,7 @@ export interface ReservationPurchaseRecommendationMetadata {
|
|
|
1728
1728
|
}
|
|
1729
1729
|
/**
|
|
1730
1730
|
* @public
|
|
1731
|
-
* <p>Details about the Amazon EC2
|
|
1731
|
+
* <p>Details about the Amazon EC2 reservations that Amazon Web Services recommends that you
|
|
1732
1732
|
* purchase.</p>
|
|
1733
1733
|
*/
|
|
1734
1734
|
export interface EC2InstanceDetails {
|
|
@@ -1776,8 +1776,8 @@ export interface EC2InstanceDetails {
|
|
|
1776
1776
|
}
|
|
1777
1777
|
/**
|
|
1778
1778
|
* @public
|
|
1779
|
-
* <p>Details about the Amazon ElastiCache
|
|
1780
|
-
* you purchase.</p>
|
|
1779
|
+
* <p>Details about the Amazon ElastiCache reservations that Amazon Web Services recommends
|
|
1780
|
+
* that you purchase.</p>
|
|
1781
1781
|
*/
|
|
1782
1782
|
export interface ElastiCacheInstanceDetails {
|
|
1783
1783
|
/**
|
|
@@ -1813,8 +1813,8 @@ export interface ElastiCacheInstanceDetails {
|
|
|
1813
1813
|
}
|
|
1814
1814
|
/**
|
|
1815
1815
|
* @public
|
|
1816
|
-
* <p>Details about the Amazon OpenSearch Service
|
|
1817
|
-
* that you purchase.</p>
|
|
1816
|
+
* <p>Details about the Amazon OpenSearch Service reservations that Amazon Web Services
|
|
1817
|
+
* recommends that you purchase.</p>
|
|
1818
1818
|
*/
|
|
1819
1819
|
export interface ESInstanceDetails {
|
|
1820
1820
|
/**
|
|
@@ -1845,7 +1845,39 @@ export interface ESInstanceDetails {
|
|
|
1845
1845
|
}
|
|
1846
1846
|
/**
|
|
1847
1847
|
* @public
|
|
1848
|
-
* <p>Details about the
|
|
1848
|
+
* <p>Details about the MemoryDB reservations that Amazon Web Services recommends that you
|
|
1849
|
+
* purchase.</p>
|
|
1850
|
+
*/
|
|
1851
|
+
export interface MemoryDBInstanceDetails {
|
|
1852
|
+
/**
|
|
1853
|
+
* @public
|
|
1854
|
+
* <p>The instance family of the recommended reservation.</p>
|
|
1855
|
+
*/
|
|
1856
|
+
Family?: string;
|
|
1857
|
+
/**
|
|
1858
|
+
* @public
|
|
1859
|
+
* <p>The node type of the recommended reservation.</p>
|
|
1860
|
+
*/
|
|
1861
|
+
NodeType?: string;
|
|
1862
|
+
/**
|
|
1863
|
+
* @public
|
|
1864
|
+
* <p>The Amazon Web Services Region of the recommended reservation.</p>
|
|
1865
|
+
*/
|
|
1866
|
+
Region?: string;
|
|
1867
|
+
/**
|
|
1868
|
+
* @public
|
|
1869
|
+
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
1870
|
+
*/
|
|
1871
|
+
CurrentGeneration?: boolean;
|
|
1872
|
+
/**
|
|
1873
|
+
* @public
|
|
1874
|
+
* <p>Determines whether the recommended reservation is size flexible.</p>
|
|
1875
|
+
*/
|
|
1876
|
+
SizeFlexEligible?: boolean;
|
|
1877
|
+
}
|
|
1878
|
+
/**
|
|
1879
|
+
* @public
|
|
1880
|
+
* <p>Details about the Amazon RDS reservations that Amazon Web Services recommends that you
|
|
1849
1881
|
* purchase.</p>
|
|
1850
1882
|
*/
|
|
1851
1883
|
export interface RDSInstanceDetails {
|
|
@@ -1898,7 +1930,7 @@ export interface RDSInstanceDetails {
|
|
|
1898
1930
|
}
|
|
1899
1931
|
/**
|
|
1900
1932
|
* @public
|
|
1901
|
-
* <p>Details about the Amazon Redshift
|
|
1933
|
+
* <p>Details about the Amazon Redshift reservations that Amazon Web Services recommends that
|
|
1902
1934
|
* you purchase.</p>
|
|
1903
1935
|
*/
|
|
1904
1936
|
export interface RedshiftInstanceDetails {
|
|
@@ -1930,37 +1962,45 @@ export interface RedshiftInstanceDetails {
|
|
|
1930
1962
|
}
|
|
1931
1963
|
/**
|
|
1932
1964
|
* @public
|
|
1933
|
-
* <p>Details about the
|
|
1965
|
+
* <p>Details about the reservations that Amazon Web Services recommends that you
|
|
1934
1966
|
* purchase.</p>
|
|
1935
1967
|
*/
|
|
1936
1968
|
export interface InstanceDetails {
|
|
1937
1969
|
/**
|
|
1938
1970
|
* @public
|
|
1939
|
-
* <p>The Amazon EC2
|
|
1971
|
+
* <p>The Amazon EC2 reservations that Amazon Web Services recommends that you
|
|
1972
|
+
* purchase.</p>
|
|
1940
1973
|
*/
|
|
1941
1974
|
EC2InstanceDetails?: EC2InstanceDetails;
|
|
1942
1975
|
/**
|
|
1943
1976
|
* @public
|
|
1944
|
-
* <p>The Amazon RDS
|
|
1977
|
+
* <p>The Amazon RDS reservations that Amazon Web Services recommends that you
|
|
1978
|
+
* purchase.</p>
|
|
1945
1979
|
*/
|
|
1946
1980
|
RDSInstanceDetails?: RDSInstanceDetails;
|
|
1947
1981
|
/**
|
|
1948
1982
|
* @public
|
|
1949
|
-
* <p>The Amazon Redshift
|
|
1983
|
+
* <p>The Amazon Redshift reservations that Amazon Web Services recommends that you
|
|
1950
1984
|
* purchase.</p>
|
|
1951
1985
|
*/
|
|
1952
1986
|
RedshiftInstanceDetails?: RedshiftInstanceDetails;
|
|
1953
1987
|
/**
|
|
1954
1988
|
* @public
|
|
1955
|
-
* <p>The ElastiCache
|
|
1989
|
+
* <p>The ElastiCache reservations that Amazon Web Services recommends that you
|
|
1990
|
+
* purchase.</p>
|
|
1956
1991
|
*/
|
|
1957
1992
|
ElastiCacheInstanceDetails?: ElastiCacheInstanceDetails;
|
|
1958
1993
|
/**
|
|
1959
1994
|
* @public
|
|
1960
|
-
* <p>The Amazon OpenSearch Service
|
|
1995
|
+
* <p>The Amazon OpenSearch Service reservations that Amazon Web Services recommends that you
|
|
1961
1996
|
* purchase.</p>
|
|
1962
1997
|
*/
|
|
1963
1998
|
ESInstanceDetails?: ESInstanceDetails;
|
|
1999
|
+
/**
|
|
2000
|
+
* @public
|
|
2001
|
+
* <p>The MemoryDB reservations that Amazon Web Services recommends that you purchase.</p>
|
|
2002
|
+
*/
|
|
2003
|
+
MemoryDBInstanceDetails?: MemoryDBInstanceDetails;
|
|
1964
2004
|
}
|
|
1965
2005
|
/**
|
|
1966
2006
|
* @public
|
|
@@ -1974,7 +2014,7 @@ export interface ReservationPurchaseRecommendationDetail {
|
|
|
1974
2014
|
AccountId?: string;
|
|
1975
2015
|
/**
|
|
1976
2016
|
* @public
|
|
1977
|
-
* <p>Details about the
|
|
2017
|
+
* <p>Details about the reservations that Amazon Web Services recommends that you
|
|
1978
2018
|
* purchase.</p>
|
|
1979
2019
|
*/
|
|
1980
2020
|
InstanceDetails?: InstanceDetails;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from "./CostExplorerClient";
|
|
2
2
|
export * from "./CostExplorer";
|
|
3
3
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { CostExplorerExtensionConfiguration } from "./extensionConfiguration";
|
|
4
6
|
export * from "./commands";
|
|
5
7
|
export * from "./pagination";
|
|
6
8
|
export * from "./models";
|
|
@@ -538,6 +538,13 @@ export interface ESInstanceDetails {
|
|
|
538
538
|
CurrentGeneration?: boolean;
|
|
539
539
|
SizeFlexEligible?: boolean;
|
|
540
540
|
}
|
|
541
|
+
export interface MemoryDBInstanceDetails {
|
|
542
|
+
Family?: string;
|
|
543
|
+
NodeType?: string;
|
|
544
|
+
Region?: string;
|
|
545
|
+
CurrentGeneration?: boolean;
|
|
546
|
+
SizeFlexEligible?: boolean;
|
|
547
|
+
}
|
|
541
548
|
export interface RDSInstanceDetails {
|
|
542
549
|
Family?: string;
|
|
543
550
|
InstanceType?: string;
|
|
@@ -562,6 +569,7 @@ export interface InstanceDetails {
|
|
|
562
569
|
RedshiftInstanceDetails?: RedshiftInstanceDetails;
|
|
563
570
|
ElastiCacheInstanceDetails?: ElastiCacheInstanceDetails;
|
|
564
571
|
ESInstanceDetails?: ESInstanceDetails;
|
|
572
|
+
MemoryDBInstanceDetails?: MemoryDBInstanceDetails;
|
|
565
573
|
}
|
|
566
574
|
export interface ReservationPurchaseRecommendationDetail {
|
|
567
575
|
AccountId?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cost-explorer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cost Explorer Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.445.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.445.0",
|
|
25
|
+
"@aws-sdk/core": "3.445.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.445.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.433.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|