@aws-sdk/client-emr-serverless 3.556.0 → 3.563.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.
@@ -120,6 +120,9 @@ declare const CreateApplicationCommand_base: {
120
120
  * ],
121
121
  * },
122
122
  * },
123
+ * prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
124
+ * remoteWriteUrl: "STRING_VALUE",
125
+ * },
123
126
  * },
124
127
  * };
125
128
  * const command = new CreateApplicationCommand(input);
@@ -133,6 +133,9 @@ declare const GetApplicationCommand_base: {
133
133
  * // ],
134
134
  * // },
135
135
  * // },
136
+ * // prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
137
+ * // remoteWriteUrl: "STRING_VALUE",
138
+ * // },
136
139
  * // },
137
140
  * // },
138
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
@@ -117,6 +117,9 @@ declare const UpdateApplicationCommand_base: {
117
117
  * ],
118
118
  * },
119
119
  * },
120
+ * prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
121
+ * remoteWriteUrl: "STRING_VALUE",
122
+ * },
120
123
  * },
121
124
  * };
122
125
  * const command = new UpdateApplicationCommand(input);
@@ -216,6 +219,9 @@ declare const UpdateApplicationCommand_base: {
216
219
  * // ],
217
220
  * // },
218
221
  * // },
222
+ * // prometheusMonitoringConfiguration: { // PrometheusMonitoringConfiguration
223
+ * // remoteWriteUrl: "STRING_VALUE",
224
+ * // },
219
225
  * // },
220
226
  * // },
221
227
  * // };
@@ -82,7 +82,8 @@ export interface WorkerResourceConfig {
82
82
  */
83
83
  disk?: string;
84
84
  /**
85
- * <p>The disk type for every worker instance of the work type. Shuffle optimized disks have higher performance characteristics and are better for shuffle heavy workloads. Default is <code>STANDARD</code>.</p>
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>
86
87
  * @public
87
88
  */
88
89
  diskType?: string;
@@ -195,6 +196,17 @@ export interface ManagedPersistenceMonitoringConfiguration {
195
196
  */
196
197
  encryptionKeyArn?: string;
197
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
+ }
198
210
  /**
199
211
  * <p>The Amazon S3 configuration for monitoring log publishing. You can configure your jobs
200
212
  * to send log information to Amazon S3.</p>
@@ -233,6 +245,11 @@ export interface MonitoringConfiguration {
233
245
  * @public
234
246
  */
235
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;
236
253
  }
237
254
  /**
238
255
  * <p>The network configuration for customer VPC connectivity.</p>
@@ -42,6 +42,9 @@ export interface ManagedPersistenceMonitoringConfiguration {
42
42
  enabled?: boolean;
43
43
  encryptionKeyArn?: string;
44
44
  }
45
+ export interface PrometheusMonitoringConfiguration {
46
+ remoteWriteUrl?: string;
47
+ }
45
48
  export interface S3MonitoringConfiguration {
46
49
  logUri?: string;
47
50
  encryptionKeyArn?: string;
@@ -50,6 +53,7 @@ export interface MonitoringConfiguration {
50
53
  s3MonitoringConfiguration?: S3MonitoringConfiguration;
51
54
  managedPersistenceMonitoringConfiguration?: ManagedPersistenceMonitoringConfiguration;
52
55
  cloudWatchLoggingConfiguration?: CloudWatchLoggingConfiguration;
56
+ prometheusMonitoringConfiguration?: PrometheusMonitoringConfiguration;
53
57
  }
54
58
  export interface NetworkConfiguration {
55
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.556.0",
4
+ "version": "3.563.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",
@@ -22,7 +22,7 @@
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
23
  "@aws-sdk/client-sts": "3.556.0",
24
24
  "@aws-sdk/core": "3.556.0",
25
- "@aws-sdk/credential-provider-node": "3.556.0",
25
+ "@aws-sdk/credential-provider-node": "3.563.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",