@aws-sdk/client-emr-serverless 3.556.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.
- package/dist-types/commands/CreateApplicationCommand.d.ts +3 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +3 -0
- package/dist-types/commands/GetJobRunCommand.d.ts +3 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +3 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +18 -1
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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
|
|
@@ -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
|
|
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.
|
|
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",
|