@aws-sdk/client-emr-serverless 3.554.0 → 3.558.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.
@@ -45,6 +45,7 @@ declare const CreateApplicationCommand_base: {
45
45
  * cpu: "STRING_VALUE", // required
46
46
  * memory: "STRING_VALUE", // required
47
47
  * disk: "STRING_VALUE",
48
+ * diskType: "STRING_VALUE",
48
49
  * },
49
50
  * },
50
51
  * },
@@ -119,6 +120,9 @@ declare const CreateApplicationCommand_base: {
119
120
  * ],
120
121
  * },
121
122
  * },
123
+ * prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
124
+ * remoteWriteUrl: "STRING_VALUE",
125
+ * },
122
126
  * },
123
127
  * };
124
128
  * const command = new CreateApplicationCommand(input);
@@ -54,6 +54,7 @@ declare const GetApplicationCommand_base: {
54
54
  * // cpu: "STRING_VALUE", // required
55
55
  * // memory: "STRING_VALUE", // required
56
56
  * // disk: "STRING_VALUE",
57
+ * // diskType: "STRING_VALUE",
57
58
  * // },
58
59
  * // },
59
60
  * // },
@@ -132,6 +133,9 @@ declare const GetApplicationCommand_base: {
132
133
  * // ],
133
134
  * // },
134
135
  * // },
136
+ * // prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
137
+ * // remoteWriteUrl: "STRING_VALUE",
138
+ * // },
135
139
  * // },
136
140
  * // },
137
141
  * // };
@@ -90,6 +90,9 @@ declare const GetJobRunCommand_base: {
90
90
  * // ],
91
91
  * // },
92
92
  * // },
93
+ * // prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
94
+ * // remoteWriteUrl: "STRING_VALUE",
95
+ * // },
93
96
  * // },
94
97
  * // },
95
98
  * // jobDriver: { // JobDriver Union: only one key present
@@ -89,6 +89,9 @@ declare const StartJobRunCommand_base: {
89
89
  * ],
90
90
  * },
91
91
  * },
92
+ * prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
93
+ * remoteWriteUrl: "STRING_VALUE",
94
+ * },
92
95
  * },
93
96
  * },
94
97
  * tags: { // TagMap
@@ -44,6 +44,7 @@ declare const UpdateApplicationCommand_base: {
44
44
  * cpu: "STRING_VALUE", // required
45
45
  * memory: "STRING_VALUE", // required
46
46
  * disk: "STRING_VALUE",
47
+ * diskType: "STRING_VALUE",
47
48
  * },
48
49
  * },
49
50
  * },
@@ -116,6 +117,9 @@ declare const UpdateApplicationCommand_base: {
116
117
  * ],
117
118
  * },
118
119
  * },
120
+ * prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
121
+ * remoteWriteUrl: "STRING_VALUE",
122
+ * },
119
123
  * },
120
124
  * };
121
125
  * const command = new UpdateApplicationCommand(input);
@@ -136,6 +140,7 @@ declare const UpdateApplicationCommand_base: {
136
140
  * // cpu: "STRING_VALUE", // required
137
141
  * // memory: "STRING_VALUE", // required
138
142
  * // disk: "STRING_VALUE",
143
+ * // diskType: "STRING_VALUE",
139
144
  * // },
140
145
  * // },
141
146
  * // },
@@ -214,6 +219,9 @@ declare const UpdateApplicationCommand_base: {
214
219
  * // ],
215
220
  * // },
216
221
  * // },
222
+ * // prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
223
+ * // remoteWriteUrl: "STRING_VALUE",
224
+ * // },
217
225
  * // },
218
226
  * // },
219
227
  * // };
@@ -81,6 +81,12 @@ export interface WorkerResourceConfig {
81
81
  * @public
82
82
  */
83
83
  disk?: string;
84
+ /**
85
+ * <p>The disk type for every worker instance of the work type. Shuffle optimized disks have higher performance
86
+ * characteristics and are better for shuffle heavy workloads. Default is <code>STANDARD</code>.</p>
87
+ * @public
88
+ */
89
+ diskType?: string;
84
90
  }
85
91
  /**
86
92
  * <p>The initial capacity configuration per worker.</p>
@@ -190,6 +196,17 @@ export interface ManagedPersistenceMonitoringConfiguration {
190
196
  */
191
197
  encryptionKeyArn?: string;
192
198
  }
199
+ /**
200
+ * <p>The monitoring configuration object you can configure to send metrics to Amazon Managed Service for Prometheus for a job run.</p>
201
+ * @public
202
+ */
203
+ export interface PrometheusMonitoringConfiguration {
204
+ /**
205
+ * <p>The remote write URL in the Amazon Managed Service for Prometheus workspace to send metrics to.</p>
206
+ * @public
207
+ */
208
+ remoteWriteUrl?: string;
209
+ }
193
210
  /**
194
211
  * <p>The Amazon S3 configuration for monitoring log publishing. You can configure your jobs
195
212
  * to send log information to Amazon S3.</p>
@@ -228,6 +245,11 @@ export interface MonitoringConfiguration {
228
245
  * @public
229
246
  */
230
247
  cloudWatchLoggingConfiguration?: CloudWatchLoggingConfiguration;
248
+ /**
249
+ * <p>The monitoring configuration object you can configure to send metrics to Amazon Managed Service for Prometheus for a job run.</p>
250
+ * @public
251
+ */
252
+ prometheusMonitoringConfiguration?: PrometheusMonitoringConfiguration;
231
253
  }
232
254
  /**
233
255
  * <p>The network configuration for customer VPC connectivity.</p>
@@ -20,6 +20,7 @@ export interface WorkerResourceConfig {
20
20
  cpu: string | undefined;
21
21
  memory: string | undefined;
22
22
  disk?: string;
23
+ diskType?: string;
23
24
  }
24
25
  export interface InitialCapacityConfig {
25
26
  workerCount: number | undefined;
@@ -41,6 +42,9 @@ export interface ManagedPersistenceMonitoringConfiguration {
41
42
  enabled?: boolean;
42
43
  encryptionKeyArn?: string;
43
44
  }
45
+ export interface PrometheusMonitoringConfiguration {
46
+ remoteWriteUrl?: string;
47
+ }
44
48
  export interface S3MonitoringConfiguration {
45
49
  logUri?: string;
46
50
  encryptionKeyArn?: string;
@@ -49,6 +53,7 @@ export interface MonitoringConfiguration {
49
53
  s3MonitoringConfiguration?: S3MonitoringConfiguration;
50
54
  managedPersistenceMonitoringConfiguration?: ManagedPersistenceMonitoringConfiguration;
51
55
  cloudWatchLoggingConfiguration?: CloudWatchLoggingConfiguration;
56
+ prometheusMonitoringConfiguration?: PrometheusMonitoringConfiguration;
52
57
  }
53
58
  export interface NetworkConfiguration {
54
59
  subnetIds?: string[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-emr-serverless",
3
3
  "description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native",
4
- "version": "3.554.0",
4
+ "version": "3.558.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-emr-serverless",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.554.0",
24
- "@aws-sdk/core": "3.554.0",
25
- "@aws-sdk/credential-provider-node": "3.554.0",
23
+ "@aws-sdk/client-sts": "3.556.0",
24
+ "@aws-sdk/core": "3.556.0",
25
+ "@aws-sdk/credential-provider-node": "3.556.0",
26
26
  "@aws-sdk/middleware-host-header": "3.535.0",
27
27
  "@aws-sdk/middleware-logger": "3.535.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.535.0",