@aws-sdk/client-emr 3.85.0 → 3.92.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.
Files changed (37) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +3 -4
  3. package/dist-cjs/models/models_0.js +14 -3
  4. package/dist-cjs/protocols/Aws_json1_1.js +24 -0
  5. package/dist-es/models/models_0.js +9 -0
  6. package/dist-es/protocols/Aws_json1_1.js +26 -4
  7. package/dist-types/EMR.d.ts +99 -78
  8. package/dist-types/EMRClient.d.ts +3 -4
  9. package/dist-types/commands/AddInstanceFleetCommand.d.ts +2 -2
  10. package/dist-types/commands/AddJobFlowStepsCommand.d.ts +8 -7
  11. package/dist-types/commands/AddTagsCommand.d.ts +5 -3
  12. package/dist-types/commands/CancelStepsCommand.d.ts +4 -3
  13. package/dist-types/commands/CreateStudioSessionMappingCommand.d.ts +5 -2
  14. package/dist-types/commands/DescribeReleaseLabelCommand.d.ts +3 -1
  15. package/dist-types/commands/DescribeStudioCommand.d.ts +2 -2
  16. package/dist-types/commands/GetBlockPublicAccessConfigurationCommand.d.ts +3 -4
  17. package/dist-types/commands/GetStudioSessionMappingCommand.d.ts +2 -2
  18. package/dist-types/commands/ListClustersCommand.d.ts +5 -5
  19. package/dist-types/commands/ListInstanceFleetsCommand.d.ts +2 -2
  20. package/dist-types/commands/ListStepsCommand.d.ts +4 -1
  21. package/dist-types/commands/ListStudioSessionMappingsCommand.d.ts +2 -2
  22. package/dist-types/commands/ListStudiosCommand.d.ts +2 -2
  23. package/dist-types/commands/ModifyInstanceFleetCommand.d.ts +2 -2
  24. package/dist-types/commands/PutAutoScalingPolicyCommand.d.ts +3 -3
  25. package/dist-types/commands/PutAutoTerminationPolicyCommand.d.ts +7 -2
  26. package/dist-types/commands/PutBlockPublicAccessConfigurationCommand.d.ts +4 -4
  27. package/dist-types/commands/PutManagedScalingPolicyCommand.d.ts +4 -4
  28. package/dist-types/commands/RemoveTagsCommand.d.ts +4 -3
  29. package/dist-types/commands/RunJobFlowCommand.d.ts +4 -4
  30. package/dist-types/commands/SetTerminationProtectionCommand.d.ts +2 -2
  31. package/dist-types/commands/SetVisibleToAllUsersCommand.d.ts +11 -6
  32. package/dist-types/commands/TerminateJobFlowsCommand.d.ts +3 -3
  33. package/dist-types/commands/UpdateStudioCommand.d.ts +2 -1
  34. package/dist-types/commands/UpdateStudioSessionMappingCommand.d.ts +1 -2
  35. package/dist-types/models/models_0.d.ts +616 -435
  36. package/dist-types/ts3.4/models/models_0.d.ts +21 -0
  37. package/package.json +3 -3
@@ -53,17 +53,16 @@ import { UpdateStudioCommandInput, UpdateStudioCommandOutput } from "./commands/
53
53
  import { UpdateStudioSessionMappingCommandInput, UpdateStudioSessionMappingCommandOutput } from "./commands/UpdateStudioSessionMappingCommand";
54
54
  import { EMRClient } from "./EMRClient";
55
55
  /**
56
- * <p>Amazon EMR is a web service that makes it easier to process large amounts of data
57
- * efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do
58
- * tasks such as web indexing, data mining, log file analysis, machine learning, scientific
59
- * simulation, and data warehouse management.</p>
56
+ * <p>Amazon EMR is a web service that makes it easier to process large amounts of
57
+ * data efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do tasks such as web indexing, data mining, log file analysis,
58
+ * machine learning, scientific simulation, and data warehouse management.</p>
60
59
  */
61
60
  export declare class EMR extends EMRClient {
62
61
  /**
63
62
  * <p>Adds an instance fleet to a running cluster.</p>
64
63
  * <note>
65
- * <p>The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and
66
- * later, excluding 5.0.x.</p>
64
+ * <p>The instance fleet configuration is available only in Amazon EMR versions
65
+ * 4.8.0 and later, excluding 5.0.x.</p>
67
66
  * </note>
68
67
  */
69
68
  addInstanceFleet(args: AddInstanceFleetCommandInput, options?: __HttpHandlerOptions): Promise<AddInstanceFleetCommandOutput>;
@@ -85,34 +84,38 @@ export declare class EMR extends EMRClient {
85
84
  * information on how to do this, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/AddMoreThan256Steps.html">Add More than 256 Steps to a
86
85
  * Cluster</a> in the <i>Amazon EMR Management Guide</i>.</p>
87
86
  * <p>A step specifies the location of a JAR file stored either on the master node of the
88
- * cluster or in Amazon S3. Each step is performed by the main function of the main class of
89
- * the JAR file. The main class can be specified either in the manifest of the JAR or by using
90
- * the MainFunction parameter of the step.</p>
91
- * <p>Amazon EMR executes each step in the order listed. For a step to be considered complete,
92
- * the main function must exit with a zero exit code and all Hadoop jobs started while the
93
- * step was running must have completed and run successfully.</p>
87
+ * cluster or in Amazon S3. Each step is performed by the main function of the main
88
+ * class of the JAR file. The main class can be specified either in the manifest of the JAR or
89
+ * by using the MainFunction parameter of the step.</p>
90
+ * <p>Amazon EMR executes each step in the order listed. For a step to be considered
91
+ * complete, the main function must exit with a zero exit code and all Hadoop jobs started
92
+ * while the step was running must have completed and run successfully.</p>
94
93
  * <p>You can only add steps to a cluster that is in one of the following states: STARTING,
95
94
  * BOOTSTRAPPING, RUNNING, or WAITING.</p>
96
95
  * <note>
97
- * <p>The string values passed into <code>HadoopJarStep</code> object cannot exceed a total of 10240 characters.</p>
96
+ * <p>The string values passed into <code>HadoopJarStep</code> object cannot exceed a total
97
+ * of 10240 characters.</p>
98
98
  * </note>
99
99
  */
100
100
  addJobFlowSteps(args: AddJobFlowStepsCommandInput, options?: __HttpHandlerOptions): Promise<AddJobFlowStepsCommandOutput>;
101
101
  addJobFlowSteps(args: AddJobFlowStepsCommandInput, cb: (err: any, data?: AddJobFlowStepsCommandOutput) => void): void;
102
102
  addJobFlowSteps(args: AddJobFlowStepsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddJobFlowStepsCommandOutput) => void): void;
103
103
  /**
104
- * <p>Adds tags to an Amazon EMR resource, such as a cluster or an Amazon EMR Studio. Tags make it easier to associate resources in
105
- * various ways, such as grouping clusters to track your Amazon EMR resource allocation costs.
106
- * For more information, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html">Tag Clusters</a>. </p>
104
+ * <p>Adds tags to an Amazon EMR resource, such as a cluster or an Amazon EMR
105
+ * Studio. Tags make it easier to associate resources in various ways, such as grouping
106
+ * clusters to track your Amazon EMR resource allocation costs. For more information,
107
+ * see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html">Tag
108
+ * Clusters</a>. </p>
107
109
  */
108
110
  addTags(args: AddTagsCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsCommandOutput>;
109
111
  addTags(args: AddTagsCommandInput, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
110
112
  addTags(args: AddTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
111
113
  /**
112
- * <p>Cancels a pending step or steps in a running cluster. Available only in Amazon EMR
113
- * versions 4.8.0 and later, excluding version 5.0.0. A maximum of 256 steps are allowed in
114
+ * <p>Cancels a pending step or steps in a running cluster. Available only in Amazon EMR versions 4.8.0 and later, excluding version 5.0.0. A maximum of 256 steps are allowed in
114
115
  * each CancelSteps request. CancelSteps is idempotent but asynchronous; it does not guarantee
115
- * that a step will be canceled, even if the request is successfully submitted. When you use Amazon EMR versions 5.28.0 and later, you can cancel steps that are in a <code>PENDING</code> or <code>RUNNING</code> state. In earlier versions of Amazon EMR, you can only cancel steps that are in a <code>PENDING</code> state. </p>
116
+ * that a step will be canceled, even if the request is successfully submitted. When you use
117
+ * Amazon EMR versions 5.28.0 and later, you can cancel steps that are in a
118
+ * <code>PENDING</code> or <code>RUNNING</code> state. In earlier versions of Amazon EMR, you can only cancel steps that are in a <code>PENDING</code> state. </p>
116
119
  */
117
120
  cancelSteps(args: CancelStepsCommandInput, options?: __HttpHandlerOptions): Promise<CancelStepsCommandOutput>;
118
121
  cancelSteps(args: CancelStepsCommandInput, cb: (err: any, data?: CancelStepsCommandOutput) => void): void;
@@ -131,8 +134,11 @@ export declare class EMR extends EMRClient {
131
134
  createStudio(args: CreateStudioCommandInput, cb: (err: any, data?: CreateStudioCommandOutput) => void): void;
132
135
  createStudio(args: CreateStudioCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStudioCommandOutput) => void): void;
133
136
  /**
134
- * <p>Maps a user or group to the Amazon EMR Studio specified by <code>StudioId</code>, and
135
- * applies a session policy to refine Studio permissions for that user or group. Use <code>CreateStudioSessionMapping</code> to assign users to a Studio when you use Amazon Web Services SSO authentication. For instructions on how to assign users to a Studio when you use IAM authentication, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-studio-manage-users.html#emr-studio-assign-users-groups">Assign a user or group to your EMR Studio</a>.</p>
137
+ * <p>Maps a user or group to the Amazon EMR Studio specified by
138
+ * <code>StudioId</code>, and applies a session policy to refine Studio permissions for that
139
+ * user or group. Use <code>CreateStudioSessionMapping</code> to assign users to a Studio when
140
+ * you use Amazon Web Services SSO authentication. For instructions on how to assign users to a
141
+ * Studio when you use IAM authentication, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-studio-manage-users.html#emr-studio-assign-users-groups">Assign a user or group to your EMR Studio</a>.</p>
136
142
  */
137
143
  createStudioSessionMapping(args: CreateStudioSessionMappingCommandInput, options?: __HttpHandlerOptions): Promise<CreateStudioSessionMappingCommandOutput>;
138
144
  createStudioSessionMapping(args: CreateStudioSessionMappingCommandInput, cb: (err: any, data?: CreateStudioSessionMappingCommandOutput) => void): void;
@@ -197,7 +203,9 @@ export declare class EMR extends EMRClient {
197
203
  describeNotebookExecution(args: DescribeNotebookExecutionCommandInput, cb: (err: any, data?: DescribeNotebookExecutionCommandOutput) => void): void;
198
204
  describeNotebookExecution(args: DescribeNotebookExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNotebookExecutionCommandOutput) => void): void;
199
205
  /**
200
- * <p>Provides EMR release label details, such as releases available the region where the API request is run, and the available applications for a specific EMR release label. Can also list EMR release versions that support a specified version of Spark.</p>
206
+ * <p>Provides EMR release label details, such as releases available the region where the API
207
+ * request is run, and the available applications for a specific EMR release label. Can also
208
+ * list EMR release versions that support a specified version of Spark.</p>
201
209
  */
202
210
  describeReleaseLabel(args: DescribeReleaseLabelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReleaseLabelCommandOutput>;
203
211
  describeReleaseLabel(args: DescribeReleaseLabelCommandInput, cb: (err: any, data?: DescribeReleaseLabelCommandOutput) => void): void;
@@ -216,8 +224,8 @@ export declare class EMR extends EMRClient {
216
224
  describeStep(args: DescribeStepCommandInput, cb: (err: any, data?: DescribeStepCommandOutput) => void): void;
217
225
  describeStep(args: DescribeStepCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStepCommandOutput) => void): void;
218
226
  /**
219
- * <p>Returns details for the specified Amazon EMR Studio including ID, Name, VPC, Studio
220
- * access URL, and so on.</p>
227
+ * <p>Returns details for the specified Amazon EMR Studio including ID, Name, VPC,
228
+ * Studio access URL, and so on.</p>
221
229
  */
222
230
  describeStudio(args: DescribeStudioCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStudioCommandOutput>;
223
231
  describeStudio(args: DescribeStudioCommandInput, cb: (err: any, data?: DescribeStudioCommandOutput) => void): void;
@@ -229,10 +237,9 @@ export declare class EMR extends EMRClient {
229
237
  getAutoTerminationPolicy(args: GetAutoTerminationPolicyCommandInput, cb: (err: any, data?: GetAutoTerminationPolicyCommandOutput) => void): void;
230
238
  getAutoTerminationPolicy(args: GetAutoTerminationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAutoTerminationPolicyCommandOutput) => void): void;
231
239
  /**
232
- * <p>Returns the Amazon EMR block public access configuration for your Amazon Web Services account in the
233
- * current Region. For more information see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/configure-block-public-access.html">Configure Block
234
- * Public Access for Amazon EMR</a> in the <i>Amazon EMR Management
235
- * Guide</i>.</p>
240
+ * <p>Returns the Amazon EMR block public access configuration for your Amazon Web Services account in the current Region. For more information see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/configure-block-public-access.html">Configure Block
241
+ * Public Access for Amazon EMR</a> in the <i>Amazon EMR
242
+ * Management Guide</i>.</p>
236
243
  */
237
244
  getBlockPublicAccessConfiguration(args: GetBlockPublicAccessConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetBlockPublicAccessConfigurationCommandOutput>;
238
245
  getBlockPublicAccessConfiguration(args: GetBlockPublicAccessConfigurationCommandInput, cb: (err: any, data?: GetBlockPublicAccessConfigurationCommandOutput) => void): void;
@@ -244,8 +251,8 @@ export declare class EMR extends EMRClient {
244
251
  getManagedScalingPolicy(args: GetManagedScalingPolicyCommandInput, cb: (err: any, data?: GetManagedScalingPolicyCommandOutput) => void): void;
245
252
  getManagedScalingPolicy(args: GetManagedScalingPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetManagedScalingPolicyCommandOutput) => void): void;
246
253
  /**
247
- * <p>Fetches mapping details for the specified Amazon EMR Studio and identity (user or
248
- * group).</p>
254
+ * <p>Fetches mapping details for the specified Amazon EMR Studio and identity (user
255
+ * or group).</p>
249
256
  */
250
257
  getStudioSessionMapping(args: GetStudioSessionMappingCommandInput, options?: __HttpHandlerOptions): Promise<GetStudioSessionMappingCommandOutput>;
251
258
  getStudioSessionMapping(args: GetStudioSessionMappingCommandInput, cb: (err: any, data?: GetStudioSessionMappingCommandOutput) => void): void;
@@ -257,11 +264,11 @@ export declare class EMR extends EMRClient {
257
264
  listBootstrapActions(args: ListBootstrapActionsCommandInput, cb: (err: any, data?: ListBootstrapActionsCommandOutput) => void): void;
258
265
  listBootstrapActions(args: ListBootstrapActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBootstrapActionsCommandOutput) => void): void;
259
266
  /**
260
- * <p>Provides the status of all clusters visible to this Amazon Web Services account. Allows you to filter
261
- * the list of clusters based on certain criteria; for example, filtering by cluster creation
262
- * date and time or by status. This call returns a maximum of 50 clusters in unsorted order per call, but
263
- * returns a marker to track the paging of the cluster list across multiple ListClusters
264
- * calls.</p>
267
+ * <p>Provides the status of all clusters visible to this Amazon Web Services account. Allows
268
+ * you to filter the list of clusters based on certain criteria; for example, filtering by
269
+ * cluster creation date and time or by status. This call returns a maximum of 50 clusters in
270
+ * unsorted order per call, but returns a marker to track the paging of the cluster list
271
+ * across multiple ListClusters calls.</p>
265
272
  */
266
273
  listClusters(args: ListClustersCommandInput, options?: __HttpHandlerOptions): Promise<ListClustersCommandOutput>;
267
274
  listClusters(args: ListClustersCommandInput, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
@@ -269,8 +276,8 @@ export declare class EMR extends EMRClient {
269
276
  /**
270
277
  * <p>Lists all available details about the instance fleets in a cluster.</p>
271
278
  * <note>
272
- * <p>The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and
273
- * later, excluding 5.0.x versions.</p>
279
+ * <p>The instance fleet configuration is available only in Amazon EMR versions
280
+ * 4.8.0 and later, excluding 5.0.x versions.</p>
274
281
  * </note>
275
282
  */
276
283
  listInstanceFleets(args: ListInstanceFleetsCommandInput, options?: __HttpHandlerOptions): Promise<ListInstanceFleetsCommandOutput>;
@@ -317,21 +324,24 @@ export declare class EMR extends EMRClient {
317
324
  /**
318
325
  * <p>Provides a list of steps for the cluster in reverse order unless you specify
319
326
  * <code>stepIds</code> with the request or filter by <code>StepStates</code>. You can
320
- * specify a maximum of 10 <code>stepIDs</code>. The CLI automatically paginates results to return a list greater than 50 steps. To return more than 50 steps using the CLI, specify a <code>Marker</code>, which is a pagination token that indicates the next set of steps to retrieve.</p>
327
+ * specify a maximum of 10 <code>stepIDs</code>. The CLI automatically
328
+ * paginates results to return a list greater than 50 steps. To return more than 50 steps
329
+ * using the CLI, specify a <code>Marker</code>, which is a pagination token
330
+ * that indicates the next set of steps to retrieve.</p>
321
331
  */
322
332
  listSteps(args: ListStepsCommandInput, options?: __HttpHandlerOptions): Promise<ListStepsCommandOutput>;
323
333
  listSteps(args: ListStepsCommandInput, cb: (err: any, data?: ListStepsCommandOutput) => void): void;
324
334
  listSteps(args: ListStepsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStepsCommandOutput) => void): void;
325
335
  /**
326
- * <p>Returns a list of all Amazon EMR Studios associated with the Amazon Web Services account. The list
327
- * includes details such as ID, Studio Access URL, and creation time for each Studio.</p>
336
+ * <p>Returns a list of all Amazon EMR Studios associated with the Amazon Web Services account. The list includes details such as ID, Studio Access URL, and
337
+ * creation time for each Studio.</p>
328
338
  */
329
339
  listStudios(args: ListStudiosCommandInput, options?: __HttpHandlerOptions): Promise<ListStudiosCommandOutput>;
330
340
  listStudios(args: ListStudiosCommandInput, cb: (err: any, data?: ListStudiosCommandOutput) => void): void;
331
341
  listStudios(args: ListStudiosCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStudiosCommandOutput) => void): void;
332
342
  /**
333
- * <p>Returns a list of all user or group session mappings for the Amazon EMR Studio specified by
334
- * <code>StudioId</code>.</p>
343
+ * <p>Returns a list of all user or group session mappings for the Amazon EMR Studio
344
+ * specified by <code>StudioId</code>.</p>
335
345
  */
336
346
  listStudioSessionMappings(args: ListStudioSessionMappingsCommandInput, options?: __HttpHandlerOptions): Promise<ListStudioSessionMappingsCommandOutput>;
337
347
  listStudioSessionMappings(args: ListStudioSessionMappingsCommandInput, cb: (err: any, data?: ListStudioSessionMappingsCommandOutput) => void): void;
@@ -348,8 +358,8 @@ export declare class EMR extends EMRClient {
348
358
  * specified InstanceFleetID within the cluster specified using ClusterID. The call either
349
359
  * succeeds or fails atomically.</p>
350
360
  * <note>
351
- * <p>The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and
352
- * later, excluding 5.0.x versions.</p>
361
+ * <p>The instance fleet configuration is available only in Amazon EMR versions
362
+ * 4.8.0 and later, excluding 5.0.x versions.</p>
353
363
  * </note>
354
364
  */
355
365
  modifyInstanceFleet(args: ModifyInstanceFleetCommandInput, options?: __HttpHandlerOptions): Promise<ModifyInstanceFleetCommandOutput>;
@@ -365,36 +375,41 @@ export declare class EMR extends EMRClient {
365
375
  modifyInstanceGroups(args: ModifyInstanceGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyInstanceGroupsCommandOutput) => void): void;
366
376
  /**
367
377
  * <p>Creates or updates an automatic scaling policy for a core instance group or task
368
- * instance group in an Amazon EMR cluster. The automatic scaling policy defines how an
369
- * instance group dynamically adds and terminates EC2 instances in response to the value of a
370
- * CloudWatch metric.</p>
378
+ * instance group in an Amazon EMR cluster. The automatic scaling policy defines how
379
+ * an instance group dynamically adds and terminates EC2 instances in response to the value of
380
+ * a CloudWatch metric.</p>
371
381
  */
372
382
  putAutoScalingPolicy(args: PutAutoScalingPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutAutoScalingPolicyCommandOutput>;
373
383
  putAutoScalingPolicy(args: PutAutoScalingPolicyCommandInput, cb: (err: any, data?: PutAutoScalingPolicyCommandOutput) => void): void;
374
384
  putAutoScalingPolicy(args: PutAutoScalingPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAutoScalingPolicyCommandOutput) => void): void;
375
385
  /**
376
386
  * <note>
377
- * <p>Auto-termination is supported in Amazon EMR versions 5.30.0 and 6.1.0 and later. For more information, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-auto-termination-policy.html">Using an auto-termination policy</a>.</p>
387
+ * <p>Auto-termination is supported in Amazon EMR versions 5.30.0 and 6.1.0 and
388
+ * later. For more information, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-auto-termination-policy.html">Using an
389
+ * auto-termination policy</a>.</p>
378
390
  * </note>
379
- * <p>Creates or updates an auto-termination policy for an Amazon EMR cluster. An auto-termination policy defines the amount of idle time in seconds after which a cluster automatically terminates. For alternative cluster termination options, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-termination.html">Control cluster termination</a>.</p>
391
+ * <p>Creates or updates an auto-termination policy for an Amazon EMR cluster. An
392
+ * auto-termination policy defines the amount of idle time in seconds after which a cluster
393
+ * automatically terminates. For alternative cluster termination options, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-termination.html">Control
394
+ * cluster termination</a>.</p>
380
395
  */
381
396
  putAutoTerminationPolicy(args: PutAutoTerminationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutAutoTerminationPolicyCommandOutput>;
382
397
  putAutoTerminationPolicy(args: PutAutoTerminationPolicyCommandInput, cb: (err: any, data?: PutAutoTerminationPolicyCommandOutput) => void): void;
383
398
  putAutoTerminationPolicy(args: PutAutoTerminationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAutoTerminationPolicyCommandOutput) => void): void;
384
399
  /**
385
- * <p>Creates or updates an Amazon EMR block public access configuration for your Amazon Web Services account
386
- * in the current Region. For more information see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/configure-block-public-access.html">Configure Block
387
- * Public Access for Amazon EMR</a> in the <i>Amazon EMR Management
388
- * Guide</i>.</p>
400
+ * <p>Creates or updates an Amazon EMR block public access configuration for your
401
+ * Amazon Web Services account in the current Region. For more information see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/configure-block-public-access.html">Configure Block
402
+ * Public Access for Amazon EMR</a> in the <i>Amazon EMR
403
+ * Management Guide</i>.</p>
389
404
  */
390
405
  putBlockPublicAccessConfiguration(args: PutBlockPublicAccessConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutBlockPublicAccessConfigurationCommandOutput>;
391
406
  putBlockPublicAccessConfiguration(args: PutBlockPublicAccessConfigurationCommandInput, cb: (err: any, data?: PutBlockPublicAccessConfigurationCommandOutput) => void): void;
392
407
  putBlockPublicAccessConfiguration(args: PutBlockPublicAccessConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutBlockPublicAccessConfigurationCommandOutput) => void): void;
393
408
  /**
394
- * <p>Creates or updates a managed scaling policy for an Amazon EMR cluster. The managed
395
- * scaling policy defines the limits for resources, such as EC2 instances that can be added or
396
- * terminated from a cluster. The policy only applies to the core and task nodes. The master
397
- * node cannot be scaled after initial configuration. </p>
409
+ * <p>Creates or updates a managed scaling policy for an Amazon EMR cluster. The
410
+ * managed scaling policy defines the limits for resources, such as EC2 instances that can be
411
+ * added or terminated from a cluster. The policy only applies to the core and task nodes. The
412
+ * master node cannot be scaled after initial configuration. </p>
398
413
  */
399
414
  putManagedScalingPolicy(args: PutManagedScalingPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutManagedScalingPolicyCommandOutput>;
400
415
  putManagedScalingPolicy(args: PutManagedScalingPolicyCommandInput, cb: (err: any, data?: PutManagedScalingPolicyCommandOutput) => void): void;
@@ -419,9 +434,10 @@ export declare class EMR extends EMRClient {
419
434
  removeManagedScalingPolicy(args: RemoveManagedScalingPolicyCommandInput, cb: (err: any, data?: RemoveManagedScalingPolicyCommandOutput) => void): void;
420
435
  removeManagedScalingPolicy(args: RemoveManagedScalingPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveManagedScalingPolicyCommandOutput) => void): void;
421
436
  /**
422
- * <p>Removes tags from an Amazon EMR resource, such as a cluster or Amazon EMR Studio. Tags make it easier to associate resources in
423
- * various ways, such as grouping clusters to track your Amazon EMR resource allocation costs.
424
- * For more information, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html">Tag Clusters</a>. </p>
437
+ * <p>Removes tags from an Amazon EMR resource, such as a cluster or Amazon EMR Studio. Tags make it easier to associate resources in various ways, such as grouping
438
+ * clusters to track your Amazon EMR resource allocation costs. For more information,
439
+ * see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html">Tag
440
+ * Clusters</a>. </p>
425
441
  * <p>The following example removes the stack tag with value Prod from a cluster:</p>
426
442
  */
427
443
  removeTags(args: RemoveTagsCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsCommandOutput>;
@@ -431,7 +447,7 @@ export declare class EMR extends EMRClient {
431
447
  * <p>RunJobFlow creates and starts running a new cluster (job flow). The cluster runs the
432
448
  * steps specified. After the steps complete, the cluster stops and the HDFS partition is
433
449
  * lost. To prevent loss of data, configure the last step of the job flow to store results in
434
- * Amazon S3. If the <a>JobFlowInstancesConfig</a>
450
+ * Amazon S3. If the <a>JobFlowInstancesConfig</a>
435
451
  * <code>KeepJobFlowAliveWhenNoSteps</code> parameter is set to <code>TRUE</code>, the cluster
436
452
  * transitions to the WAITING state rather than shutting down after the steps have completed. </p>
437
453
  * <p>For additional protection, you can set the <a>JobFlowInstancesConfig</a>
@@ -447,9 +463,9 @@ export declare class EMR extends EMRClient {
447
463
  * Cluster</a> in the <i>Amazon EMR Management Guide</i>.</p>
448
464
  * <p>For long running clusters, we recommend that you periodically store your results.</p>
449
465
  * <note>
450
- * <p>The instance fleets configuration is available only in Amazon EMR versions 4.8.0 and
451
- * later, excluding 5.0.x versions. The RunJobFlow request can contain InstanceFleets
452
- * parameters or InstanceGroups parameters, but not both.</p>
466
+ * <p>The instance fleets configuration is available only in Amazon EMR versions
467
+ * 4.8.0 and later, excluding 5.0.x versions. The RunJobFlow request can contain
468
+ * InstanceFleets parameters or InstanceGroups parameters, but not both.</p>
453
469
  * </note>
454
470
  */
455
471
  runJobFlow(args: RunJobFlowCommandInput, options?: __HttpHandlerOptions): Promise<RunJobFlowCommandOutput>;
@@ -459,8 +475,8 @@ export declare class EMR extends EMRClient {
459
475
  * <p>SetTerminationProtection locks a cluster (job flow) so the EC2 instances in the cluster
460
476
  * cannot be terminated by user intervention, an API call, or in the event of a job-flow
461
477
  * error. The cluster still terminates upon successful completion of the job flow. Calling
462
- * <code>SetTerminationProtection</code> on a cluster is similar to calling the Amazon EC2
463
- * <code>DisableAPITermination</code> API on all EC2 instances in a cluster.</p>
478
+ * <code>SetTerminationProtection</code> on a cluster is similar to calling the Amazon EC2
479
+ * <code>DisableAPITermination</code> API on all EC2 instances in a cluster.</p>
464
480
  * <p>
465
481
  * <code>SetTerminationProtection</code> is used to prevent accidental termination of a
466
482
  * cluster and to ensure that in the event of an error, the instances persist so that you can
@@ -477,14 +493,19 @@ export declare class EMR extends EMRClient {
477
493
  setTerminationProtection(args: SetTerminationProtectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetTerminationProtectionCommandOutput) => void): void;
478
494
  /**
479
495
  * <important>
480
- * <p>The SetVisibleToAllUsers parameter is no longer supported. Your cluster may be visible to all users in your account.
481
- * To restrict cluster access using an IAM policy, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-access-iam.html">Identity and Access Management for EMR</a>.
482
- * </p>
496
+ * <p>The SetVisibleToAllUsers parameter is no longer supported. Your cluster may be
497
+ * visible to all users in your account. To restrict cluster access using an IAM policy, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-access-iam.html">Identity and Access
498
+ * Management for EMR</a>. </p>
483
499
  * </important>
484
- * <p>Sets the <a>Cluster$VisibleToAllUsers</a> value for an EMR cluster. When <code>true</code>, IAM principals in the
485
- * Amazon Web Services account can perform EMR cluster actions that their IAM policies allow. When <code>false</code>, only the IAM principal that created the cluster and the Amazon Web Services account root user can perform EMR actions on the cluster, regardless of IAM permissions policies attached to other IAM principals.</p>
500
+ * <p>Sets the <a>Cluster$VisibleToAllUsers</a> value for an EMR cluster. When
501
+ * <code>true</code>, IAM principals in the Amazon Web Services account can perform EMR
502
+ * cluster actions that their IAM policies allow. When <code>false</code>, only
503
+ * the IAM principal that created the cluster and the Amazon Web Services account root user can
504
+ * perform EMR actions on the cluster, regardless of IAM permissions policies attached to
505
+ * other IAM principals.</p>
486
506
  * <p>This action works on running clusters. When you create a cluster, use the <a>RunJobFlowInput$VisibleToAllUsers</a> parameter.</p>
487
- * <p>For more information, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/security_iam_emr-with-iam.html#security_set_visible_to_all_users">Understanding the EMR Cluster VisibleToAllUsers Setting</a> in the <i>Amazon EMRManagement Guide</i>.</p>
507
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/security_iam_emr-with-iam.html#security_set_visible_to_all_users">Understanding the EMR Cluster VisibleToAllUsers Setting</a> in the
508
+ * <i>Amazon EMRManagement Guide</i>.</p>
488
509
  */
489
510
  setVisibleToAllUsers(args: SetVisibleToAllUsersCommandInput, options?: __HttpHandlerOptions): Promise<SetVisibleToAllUsersCommandOutput>;
490
511
  setVisibleToAllUsers(args: SetVisibleToAllUsersCommandInput, cb: (err: any, data?: SetVisibleToAllUsersCommandOutput) => void): void;
@@ -504,25 +525,25 @@ export declare class EMR extends EMRClient {
504
525
  /**
505
526
  * <p>TerminateJobFlows shuts a list of clusters (job flows) down. When a job flow is shut
506
527
  * down, any step not yet completed is canceled and the EC2 instances on which the cluster is
507
- * running are stopped. Any log files not already saved are uploaded to Amazon S3 if a LogUri
508
- * was specified when the cluster was created.</p>
528
+ * running are stopped. Any log files not already saved are uploaded to Amazon S3 if a
529
+ * LogUri was specified when the cluster was created.</p>
509
530
  * <p>The maximum number of clusters allowed is 10. The call to <code>TerminateJobFlows</code>
510
531
  * is asynchronous. Depending on the configuration of the cluster, it may take up to 1-5
511
532
  * minutes for the cluster to completely terminate and release allocated resources, such as
512
- * Amazon EC2 instances.</p>
533
+ * Amazon EC2 instances.</p>
513
534
  */
514
535
  terminateJobFlows(args: TerminateJobFlowsCommandInput, options?: __HttpHandlerOptions): Promise<TerminateJobFlowsCommandOutput>;
515
536
  terminateJobFlows(args: TerminateJobFlowsCommandInput, cb: (err: any, data?: TerminateJobFlowsCommandOutput) => void): void;
516
537
  terminateJobFlows(args: TerminateJobFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateJobFlowsCommandOutput) => void): void;
517
538
  /**
518
- * <p>Updates an Amazon EMR Studio configuration, including attributes such as name, description, and subnets.</p>
539
+ * <p>Updates an Amazon EMR Studio configuration, including attributes such as name,
540
+ * description, and subnets.</p>
519
541
  */
520
542
  updateStudio(args: UpdateStudioCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStudioCommandOutput>;
521
543
  updateStudio(args: UpdateStudioCommandInput, cb: (err: any, data?: UpdateStudioCommandOutput) => void): void;
522
544
  updateStudio(args: UpdateStudioCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStudioCommandOutput) => void): void;
523
545
  /**
524
- * <p>Updates the session policy attached to the user or group for the specified Amazon EMR
525
- * Studio.</p>
546
+ * <p>Updates the session policy attached to the user or group for the specified Amazon EMR Studio.</p>
526
547
  */
527
548
  updateStudioSessionMapping(args: UpdateStudioSessionMappingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStudioSessionMappingCommandOutput>;
528
549
  updateStudioSessionMapping(args: UpdateStudioSessionMappingCommandInput, cb: (err: any, data?: UpdateStudioSessionMappingCommandOutput) => void): void;
@@ -178,10 +178,9 @@ declare type EMRClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpH
178
178
  export interface EMRClientResolvedConfig extends EMRClientResolvedConfigType {
179
179
  }
180
180
  /**
181
- * <p>Amazon EMR is a web service that makes it easier to process large amounts of data
182
- * efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do
183
- * tasks such as web indexing, data mining, log file analysis, machine learning, scientific
184
- * simulation, and data warehouse management.</p>
181
+ * <p>Amazon EMR is a web service that makes it easier to process large amounts of
182
+ * data efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do tasks such as web indexing, data mining, log file analysis,
183
+ * machine learning, scientific simulation, and data warehouse management.</p>
185
184
  */
186
185
  export declare class EMRClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, EMRClientResolvedConfig> {
187
186
  /**
@@ -9,8 +9,8 @@ export interface AddInstanceFleetCommandOutput extends AddInstanceFleetOutput, _
9
9
  /**
10
10
  * <p>Adds an instance fleet to a running cluster.</p>
11
11
  * <note>
12
- * <p>The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and
13
- * later, excluding 5.0.x.</p>
12
+ * <p>The instance fleet configuration is available only in Amazon EMR versions
13
+ * 4.8.0 and later, excluding 5.0.x.</p>
14
14
  * </note>
15
15
  * @example
16
16
  * Use a bare-bones client and the command you need to make an API call.
@@ -16,16 +16,17 @@ export interface AddJobFlowStepsCommandOutput extends AddJobFlowStepsOutput, __M
16
16
  * information on how to do this, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/AddMoreThan256Steps.html">Add More than 256 Steps to a
17
17
  * Cluster</a> in the <i>Amazon EMR Management Guide</i>.</p>
18
18
  * <p>A step specifies the location of a JAR file stored either on the master node of the
19
- * cluster or in Amazon S3. Each step is performed by the main function of the main class of
20
- * the JAR file. The main class can be specified either in the manifest of the JAR or by using
21
- * the MainFunction parameter of the step.</p>
22
- * <p>Amazon EMR executes each step in the order listed. For a step to be considered complete,
23
- * the main function must exit with a zero exit code and all Hadoop jobs started while the
24
- * step was running must have completed and run successfully.</p>
19
+ * cluster or in Amazon S3. Each step is performed by the main function of the main
20
+ * class of the JAR file. The main class can be specified either in the manifest of the JAR or
21
+ * by using the MainFunction parameter of the step.</p>
22
+ * <p>Amazon EMR executes each step in the order listed. For a step to be considered
23
+ * complete, the main function must exit with a zero exit code and all Hadoop jobs started
24
+ * while the step was running must have completed and run successfully.</p>
25
25
  * <p>You can only add steps to a cluster that is in one of the following states: STARTING,
26
26
  * BOOTSTRAPPING, RUNNING, or WAITING.</p>
27
27
  * <note>
28
- * <p>The string values passed into <code>HadoopJarStep</code> object cannot exceed a total of 10240 characters.</p>
28
+ * <p>The string values passed into <code>HadoopJarStep</code> object cannot exceed a total
29
+ * of 10240 characters.</p>
29
30
  * </note>
30
31
  * @example
31
32
  * Use a bare-bones client and the command you need to make an API call.
@@ -7,9 +7,11 @@ export interface AddTagsCommandInput extends AddTagsInput {
7
7
  export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Adds tags to an Amazon EMR resource, such as a cluster or an Amazon EMR Studio. Tags make it easier to associate resources in
11
- * various ways, such as grouping clusters to track your Amazon EMR resource allocation costs.
12
- * For more information, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html">Tag Clusters</a>. </p>
10
+ * <p>Adds tags to an Amazon EMR resource, such as a cluster or an Amazon EMR
11
+ * Studio. Tags make it easier to associate resources in various ways, such as grouping
12
+ * clusters to track your Amazon EMR resource allocation costs. For more information,
13
+ * see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html">Tag
14
+ * Clusters</a>. </p>
13
15
  * @example
14
16
  * Use a bare-bones client and the command you need to make an API call.
15
17
  * ```javascript
@@ -7,10 +7,11 @@ export interface CancelStepsCommandInput extends CancelStepsInput {
7
7
  export interface CancelStepsCommandOutput extends CancelStepsOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Cancels a pending step or steps in a running cluster. Available only in Amazon EMR
11
- * versions 4.8.0 and later, excluding version 5.0.0. A maximum of 256 steps are allowed in
10
+ * <p>Cancels a pending step or steps in a running cluster. Available only in Amazon EMR versions 4.8.0 and later, excluding version 5.0.0. A maximum of 256 steps are allowed in
12
11
  * each CancelSteps request. CancelSteps is idempotent but asynchronous; it does not guarantee
13
- * that a step will be canceled, even if the request is successfully submitted. When you use Amazon EMR versions 5.28.0 and later, you can cancel steps that are in a <code>PENDING</code> or <code>RUNNING</code> state. In earlier versions of Amazon EMR, you can only cancel steps that are in a <code>PENDING</code> state. </p>
12
+ * that a step will be canceled, even if the request is successfully submitted. When you use
13
+ * Amazon EMR versions 5.28.0 and later, you can cancel steps that are in a
14
+ * <code>PENDING</code> or <code>RUNNING</code> state. In earlier versions of Amazon EMR, you can only cancel steps that are in a <code>PENDING</code> state. </p>
14
15
  * @example
15
16
  * Use a bare-bones client and the command you need to make an API call.
16
17
  * ```javascript
@@ -7,8 +7,11 @@ export interface CreateStudioSessionMappingCommandInput extends CreateStudioSess
7
7
  export interface CreateStudioSessionMappingCommandOutput extends __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Maps a user or group to the Amazon EMR Studio specified by <code>StudioId</code>, and
11
- * applies a session policy to refine Studio permissions for that user or group. Use <code>CreateStudioSessionMapping</code> to assign users to a Studio when you use Amazon Web Services SSO authentication. For instructions on how to assign users to a Studio when you use IAM authentication, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-studio-manage-users.html#emr-studio-assign-users-groups">Assign a user or group to your EMR Studio</a>.</p>
10
+ * <p>Maps a user or group to the Amazon EMR Studio specified by
11
+ * <code>StudioId</code>, and applies a session policy to refine Studio permissions for that
12
+ * user or group. Use <code>CreateStudioSessionMapping</code> to assign users to a Studio when
13
+ * you use Amazon Web Services SSO authentication. For instructions on how to assign users to a
14
+ * Studio when you use IAM authentication, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-studio-manage-users.html#emr-studio-assign-users-groups">Assign a user or group to your EMR Studio</a>.</p>
12
15
  * @example
13
16
  * Use a bare-bones client and the command you need to make an API call.
14
17
  * ```javascript
@@ -7,7 +7,9 @@ export interface DescribeReleaseLabelCommandInput extends DescribeReleaseLabelIn
7
7
  export interface DescribeReleaseLabelCommandOutput extends DescribeReleaseLabelOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Provides EMR release label details, such as releases available the region where the API request is run, and the available applications for a specific EMR release label. Can also list EMR release versions that support a specified version of Spark.</p>
10
+ * <p>Provides EMR release label details, such as releases available the region where the API
11
+ * request is run, and the available applications for a specific EMR release label. Can also
12
+ * list EMR release versions that support a specified version of Spark.</p>
11
13
  * @example
12
14
  * Use a bare-bones client and the command you need to make an API call.
13
15
  * ```javascript
@@ -7,8 +7,8 @@ export interface DescribeStudioCommandInput extends DescribeStudioInput {
7
7
  export interface DescribeStudioCommandOutput extends DescribeStudioOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns details for the specified Amazon EMR Studio including ID, Name, VPC, Studio
11
- * access URL, and so on.</p>
10
+ * <p>Returns details for the specified Amazon EMR Studio including ID, Name, VPC,
11
+ * Studio access URL, and so on.</p>
12
12
  * @example
13
13
  * Use a bare-bones client and the command you need to make an API call.
14
14
  * ```javascript
@@ -7,10 +7,9 @@ export interface GetBlockPublicAccessConfigurationCommandInput extends GetBlockP
7
7
  export interface GetBlockPublicAccessConfigurationCommandOutput extends GetBlockPublicAccessConfigurationOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns the Amazon EMR block public access configuration for your Amazon Web Services account in the
11
- * current Region. For more information see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/configure-block-public-access.html">Configure Block
12
- * Public Access for Amazon EMR</a> in the <i>Amazon EMR Management
13
- * Guide</i>.</p>
10
+ * <p>Returns the Amazon EMR block public access configuration for your Amazon Web Services account in the current Region. For more information see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/configure-block-public-access.html">Configure Block
11
+ * Public Access for Amazon EMR</a> in the <i>Amazon EMR
12
+ * Management Guide</i>.</p>
14
13
  * @example
15
14
  * Use a bare-bones client and the command you need to make an API call.
16
15
  * ```javascript
@@ -7,8 +7,8 @@ export interface GetStudioSessionMappingCommandInput extends GetStudioSessionMap
7
7
  export interface GetStudioSessionMappingCommandOutput extends GetStudioSessionMappingOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Fetches mapping details for the specified Amazon EMR Studio and identity (user or
11
- * group).</p>
10
+ * <p>Fetches mapping details for the specified Amazon EMR Studio and identity (user
11
+ * or group).</p>
12
12
  * @example
13
13
  * Use a bare-bones client and the command you need to make an API call.
14
14
  * ```javascript
@@ -7,11 +7,11 @@ export interface ListClustersCommandInput extends ListClustersInput {
7
7
  export interface ListClustersCommandOutput extends ListClustersOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Provides the status of all clusters visible to this Amazon Web Services account. Allows you to filter
11
- * the list of clusters based on certain criteria; for example, filtering by cluster creation
12
- * date and time or by status. This call returns a maximum of 50 clusters in unsorted order per call, but
13
- * returns a marker to track the paging of the cluster list across multiple ListClusters
14
- * calls.</p>
10
+ * <p>Provides the status of all clusters visible to this Amazon Web Services account. Allows
11
+ * you to filter the list of clusters based on certain criteria; for example, filtering by
12
+ * cluster creation date and time or by status. This call returns a maximum of 50 clusters in
13
+ * unsorted order per call, but returns a marker to track the paging of the cluster list
14
+ * across multiple ListClusters calls.</p>
15
15
  * @example
16
16
  * Use a bare-bones client and the command you need to make an API call.
17
17
  * ```javascript
@@ -9,8 +9,8 @@ export interface ListInstanceFleetsCommandOutput extends ListInstanceFleetsOutpu
9
9
  /**
10
10
  * <p>Lists all available details about the instance fleets in a cluster.</p>
11
11
  * <note>
12
- * <p>The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and
13
- * later, excluding 5.0.x versions.</p>
12
+ * <p>The instance fleet configuration is available only in Amazon EMR versions
13
+ * 4.8.0 and later, excluding 5.0.x versions.</p>
14
14
  * </note>
15
15
  * @example
16
16
  * Use a bare-bones client and the command you need to make an API call.
@@ -9,7 +9,10 @@ export interface ListStepsCommandOutput extends ListStepsOutput, __MetadataBeare
9
9
  /**
10
10
  * <p>Provides a list of steps for the cluster in reverse order unless you specify
11
11
  * <code>stepIds</code> with the request or filter by <code>StepStates</code>. You can
12
- * specify a maximum of 10 <code>stepIDs</code>. The CLI automatically paginates results to return a list greater than 50 steps. To return more than 50 steps using the CLI, specify a <code>Marker</code>, which is a pagination token that indicates the next set of steps to retrieve.</p>
12
+ * specify a maximum of 10 <code>stepIDs</code>. The CLI automatically
13
+ * paginates results to return a list greater than 50 steps. To return more than 50 steps
14
+ * using the CLI, specify a <code>Marker</code>, which is a pagination token
15
+ * that indicates the next set of steps to retrieve.</p>
13
16
  * @example
14
17
  * Use a bare-bones client and the command you need to make an API call.
15
18
  * ```javascript
@@ -7,8 +7,8 @@ export interface ListStudioSessionMappingsCommandInput extends ListStudioSession
7
7
  export interface ListStudioSessionMappingsCommandOutput extends ListStudioSessionMappingsOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns a list of all user or group session mappings for the Amazon EMR Studio specified by
11
- * <code>StudioId</code>.</p>
10
+ * <p>Returns a list of all user or group session mappings for the Amazon EMR Studio
11
+ * specified by <code>StudioId</code>.</p>
12
12
  * @example
13
13
  * Use a bare-bones client and the command you need to make an API call.
14
14
  * ```javascript
@@ -7,8 +7,8 @@ export interface ListStudiosCommandInput extends ListStudiosInput {
7
7
  export interface ListStudiosCommandOutput extends ListStudiosOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns a list of all Amazon EMR Studios associated with the Amazon Web Services account. The list
11
- * includes details such as ID, Studio Access URL, and creation time for each Studio.</p>
10
+ * <p>Returns a list of all Amazon EMR Studios associated with the Amazon Web Services account. The list includes details such as ID, Studio Access URL, and
11
+ * creation time for each Studio.</p>
12
12
  * @example
13
13
  * Use a bare-bones client and the command you need to make an API call.
14
14
  * ```javascript