Skip to content

Commit 321c78e

Browse files
author
awstools
committed
feat(client-emr): Added RECONFIGURING to the InstanceFleetState convenience enum.
1 parent 387386b commit 321c78e

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

clients/client-emr/src/commands/ListInstanceFleetsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export interface ListInstanceFleetsCommandOutput extends ListInstanceFleetsOutpu
5353
* // Id: "STRING_VALUE",
5454
* // Name: "STRING_VALUE",
5555
* // Status: { // InstanceFleetStatus
56-
* // State: "PROVISIONING" || "BOOTSTRAPPING" || "RUNNING" || "RESIZING" || "SUSPENDED" || "TERMINATING" || "TERMINATED",
56+
* // State: "PROVISIONING" || "BOOTSTRAPPING" || "RUNNING" || "RESIZING" || "RECONFIGURING" || "SUSPENDED" || "TERMINATING" || "TERMINATED",
5757
* // StateChangeReason: { // InstanceFleetStateChangeReason
5858
* // Code: "INTERNAL_ERROR" || "VALIDATION_ERROR" || "INSTANCE_FAILURE" || "CLUSTER_TERMINATED",
5959
* // Message: "STRING_VALUE",

clients/client-emr/src/models/models_0.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4482,6 +4482,7 @@ export interface ListInstanceFleetsInput {
44824482
export const InstanceFleetState = {
44834483
BOOTSTRAPPING: "BOOTSTRAPPING",
44844484
PROVISIONING: "PROVISIONING",
4485+
RECONFIGURING: "RECONFIGURING",
44854486
RESIZING: "RESIZING",
44864487
RUNNING: "RUNNING",
44874488
SUSPENDED: "SUSPENDED",

codegen/sdk-codegen/aws-models/emr.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5044,6 +5044,12 @@
50445044
"smithy.api#enumValue": "RESIZING"
50455045
}
50465046
},
5047+
"RECONFIGURING": {
5048+
"target": "smithy.api#Unit",
5049+
"traits": {
5050+
"smithy.api#enumValue": "RECONFIGURING"
5051+
}
5052+
},
50475053
"SUSPENDED": {
50485054
"target": "smithy.api#Unit",
50495055
"traits": {

0 commit comments

Comments
 (0)