@aws-sdk/client-emr 3.301.0 → 3.303.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-cjs/models/models_0.js +258 -298
- package/dist-cjs/protocols/Aws_json1_1.js +30 -0
- package/dist-es/models/models_0.js +258 -298
- package/dist-es/protocols/Aws_json1_1.js +30 -0
- package/dist-types/models/models_0.d.ts +479 -257
- package/dist-types/ts3.4/models/models_0.d.ts +336 -258
- package/package.json +35 -35
|
@@ -2,21 +2,31 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { EMRServiceException as __BaseException } from "./EMRServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
|
+
* @enum
|
|
5
6
|
*/
|
|
6
|
-
export declare
|
|
7
|
-
CANCEL_AND_WAIT
|
|
8
|
-
CONTINUE
|
|
9
|
-
TERMINATE_CLUSTER
|
|
10
|
-
TERMINATE_JOB_FLOW
|
|
11
|
-
}
|
|
7
|
+
export declare const ActionOnFailure: {
|
|
8
|
+
readonly CANCEL_AND_WAIT: "CANCEL_AND_WAIT";
|
|
9
|
+
readonly CONTINUE: "CONTINUE";
|
|
10
|
+
readonly TERMINATE_CLUSTER: "TERMINATE_CLUSTER";
|
|
11
|
+
readonly TERMINATE_JOB_FLOW: "TERMINATE_JOB_FLOW";
|
|
12
|
+
};
|
|
12
13
|
/**
|
|
13
14
|
* @public
|
|
14
15
|
*/
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
export type ActionOnFailure = (typeof ActionOnFailure)[keyof typeof ActionOnFailure];
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
* @enum
|
|
20
|
+
*/
|
|
21
|
+
export declare const InstanceFleetType: {
|
|
22
|
+
readonly CORE: "CORE";
|
|
23
|
+
readonly MASTER: "MASTER";
|
|
24
|
+
readonly TASK: "TASK";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export type InstanceFleetType = (typeof InstanceFleetType)[keyof typeof InstanceFleetType];
|
|
20
30
|
/**
|
|
21
31
|
* @public
|
|
22
32
|
* <p>EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s)
|
|
@@ -77,23 +87,38 @@ export interface EbsConfiguration {
|
|
|
77
87
|
}
|
|
78
88
|
/**
|
|
79
89
|
* @public
|
|
90
|
+
* @enum
|
|
80
91
|
*/
|
|
81
|
-
export declare
|
|
82
|
-
LOWEST_PRICE
|
|
83
|
-
}
|
|
92
|
+
export declare const OnDemandProvisioningAllocationStrategy: {
|
|
93
|
+
readonly LOWEST_PRICE: "lowest-price";
|
|
94
|
+
};
|
|
84
95
|
/**
|
|
85
96
|
* @public
|
|
86
97
|
*/
|
|
87
|
-
export
|
|
88
|
-
NONE = "none",
|
|
89
|
-
OPEN = "open"
|
|
90
|
-
}
|
|
98
|
+
export type OnDemandProvisioningAllocationStrategy = (typeof OnDemandProvisioningAllocationStrategy)[keyof typeof OnDemandProvisioningAllocationStrategy];
|
|
91
99
|
/**
|
|
92
100
|
* @public
|
|
101
|
+
* @enum
|
|
93
102
|
*/
|
|
94
|
-
export declare
|
|
95
|
-
|
|
96
|
-
|
|
103
|
+
export declare const OnDemandCapacityReservationPreference: {
|
|
104
|
+
readonly NONE: "none";
|
|
105
|
+
readonly OPEN: "open";
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
export type OnDemandCapacityReservationPreference = (typeof OnDemandCapacityReservationPreference)[keyof typeof OnDemandCapacityReservationPreference];
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* @enum
|
|
114
|
+
*/
|
|
115
|
+
export declare const OnDemandCapacityReservationUsageStrategy: {
|
|
116
|
+
readonly USE_CAPACITY_RESERVATIONS_FIRST: "use-capacity-reservations-first";
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export type OnDemandCapacityReservationUsageStrategy = (typeof OnDemandCapacityReservationUsageStrategy)[keyof typeof OnDemandCapacityReservationUsageStrategy];
|
|
97
122
|
/**
|
|
98
123
|
* @public
|
|
99
124
|
* <p>Describes the strategy for using unused Capacity Reservations for fulfilling On-Demand
|
|
@@ -161,17 +186,27 @@ export interface OnDemandProvisioningSpecification {
|
|
|
161
186
|
}
|
|
162
187
|
/**
|
|
163
188
|
* @public
|
|
189
|
+
* @enum
|
|
164
190
|
*/
|
|
165
|
-
export declare
|
|
166
|
-
CAPACITY_OPTIMIZED
|
|
167
|
-
}
|
|
191
|
+
export declare const SpotProvisioningAllocationStrategy: {
|
|
192
|
+
readonly CAPACITY_OPTIMIZED: "capacity-optimized";
|
|
193
|
+
};
|
|
168
194
|
/**
|
|
169
195
|
* @public
|
|
170
196
|
*/
|
|
171
|
-
export
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
197
|
+
export type SpotProvisioningAllocationStrategy = (typeof SpotProvisioningAllocationStrategy)[keyof typeof SpotProvisioningAllocationStrategy];
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
* @enum
|
|
201
|
+
*/
|
|
202
|
+
export declare const SpotProvisioningTimeoutAction: {
|
|
203
|
+
readonly SWITCH_TO_ON_DEMAND: "SWITCH_TO_ON_DEMAND";
|
|
204
|
+
readonly TERMINATE_CLUSTER: "TERMINATE_CLUSTER";
|
|
205
|
+
};
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
209
|
+
export type SpotProvisioningTimeoutAction = (typeof SpotProvisioningTimeoutAction)[keyof typeof SpotProvisioningTimeoutAction];
|
|
175
210
|
/**
|
|
176
211
|
* @public
|
|
177
212
|
* <p>The launch specification for Spot Instances in the instance fleet, which determines the
|
|
@@ -379,19 +414,29 @@ export interface ScalingConstraints {
|
|
|
379
414
|
}
|
|
380
415
|
/**
|
|
381
416
|
* @public
|
|
417
|
+
* @enum
|
|
382
418
|
*/
|
|
383
|
-
export declare
|
|
384
|
-
ON_DEMAND
|
|
385
|
-
SPOT
|
|
386
|
-
}
|
|
419
|
+
export declare const MarketType: {
|
|
420
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
421
|
+
readonly SPOT: "SPOT";
|
|
422
|
+
};
|
|
387
423
|
/**
|
|
388
424
|
* @public
|
|
389
425
|
*/
|
|
390
|
-
export
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
426
|
+
export type MarketType = (typeof MarketType)[keyof typeof MarketType];
|
|
427
|
+
/**
|
|
428
|
+
* @public
|
|
429
|
+
* @enum
|
|
430
|
+
*/
|
|
431
|
+
export declare const AdjustmentType: {
|
|
432
|
+
readonly CHANGE_IN_CAPACITY: "CHANGE_IN_CAPACITY";
|
|
433
|
+
readonly EXACT_CAPACITY: "EXACT_CAPACITY";
|
|
434
|
+
readonly PERCENT_CHANGE_IN_CAPACITY: "PERCENT_CHANGE_IN_CAPACITY";
|
|
435
|
+
};
|
|
436
|
+
/**
|
|
437
|
+
* @public
|
|
438
|
+
*/
|
|
439
|
+
export type AdjustmentType = (typeof AdjustmentType)[keyof typeof AdjustmentType];
|
|
395
440
|
/**
|
|
396
441
|
* @public
|
|
397
442
|
* <p>An automatic scaling configuration, which describes how the policy adds or removes
|
|
@@ -448,13 +493,18 @@ export interface ScalingAction {
|
|
|
448
493
|
}
|
|
449
494
|
/**
|
|
450
495
|
* @public
|
|
496
|
+
* @enum
|
|
451
497
|
*/
|
|
452
|
-
export declare
|
|
453
|
-
GREATER_THAN
|
|
454
|
-
GREATER_THAN_OR_EQUAL
|
|
455
|
-
LESS_THAN
|
|
456
|
-
LESS_THAN_OR_EQUAL
|
|
457
|
-
}
|
|
498
|
+
export declare const ComparisonOperator: {
|
|
499
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
500
|
+
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
501
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
502
|
+
readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
|
|
503
|
+
};
|
|
504
|
+
/**
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
507
|
+
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
458
508
|
/**
|
|
459
509
|
* @public
|
|
460
510
|
* <p>A CloudWatch dimension, which is specified using a <code>Key</code> (known as a
|
|
@@ -475,46 +525,56 @@ export interface MetricDimension {
|
|
|
475
525
|
}
|
|
476
526
|
/**
|
|
477
527
|
* @public
|
|
528
|
+
* @enum
|
|
478
529
|
*/
|
|
479
|
-
export declare
|
|
480
|
-
AVERAGE
|
|
481
|
-
MAXIMUM
|
|
482
|
-
MINIMUM
|
|
483
|
-
SAMPLE_COUNT
|
|
484
|
-
SUM
|
|
485
|
-
}
|
|
530
|
+
export declare const Statistic: {
|
|
531
|
+
readonly AVERAGE: "AVERAGE";
|
|
532
|
+
readonly MAXIMUM: "MAXIMUM";
|
|
533
|
+
readonly MINIMUM: "MINIMUM";
|
|
534
|
+
readonly SAMPLE_COUNT: "SAMPLE_COUNT";
|
|
535
|
+
readonly SUM: "SUM";
|
|
536
|
+
};
|
|
486
537
|
/**
|
|
487
538
|
* @public
|
|
488
539
|
*/
|
|
489
|
-
export
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
540
|
+
export type Statistic = (typeof Statistic)[keyof typeof Statistic];
|
|
541
|
+
/**
|
|
542
|
+
* @public
|
|
543
|
+
* @enum
|
|
544
|
+
*/
|
|
545
|
+
export declare const Unit: {
|
|
546
|
+
readonly BITS: "BITS";
|
|
547
|
+
readonly BITS_PER_SECOND: "BITS_PER_SECOND";
|
|
548
|
+
readonly BYTES: "BYTES";
|
|
549
|
+
readonly BYTES_PER_SECOND: "BYTES_PER_SECOND";
|
|
550
|
+
readonly COUNT: "COUNT";
|
|
551
|
+
readonly COUNT_PER_SECOND: "COUNT_PER_SECOND";
|
|
552
|
+
readonly GIGA_BITS: "GIGA_BITS";
|
|
553
|
+
readonly GIGA_BITS_PER_SECOND: "GIGA_BITS_PER_SECOND";
|
|
554
|
+
readonly GIGA_BYTES: "GIGA_BYTES";
|
|
555
|
+
readonly GIGA_BYTES_PER_SECOND: "GIGA_BYTES_PER_SECOND";
|
|
556
|
+
readonly KILO_BITS: "KILO_BITS";
|
|
557
|
+
readonly KILO_BITS_PER_SECOND: "KILO_BITS_PER_SECOND";
|
|
558
|
+
readonly KILO_BYTES: "KILO_BYTES";
|
|
559
|
+
readonly KILO_BYTES_PER_SECOND: "KILO_BYTES_PER_SECOND";
|
|
560
|
+
readonly MEGA_BITS: "MEGA_BITS";
|
|
561
|
+
readonly MEGA_BITS_PER_SECOND: "MEGA_BITS_PER_SECOND";
|
|
562
|
+
readonly MEGA_BYTES: "MEGA_BYTES";
|
|
563
|
+
readonly MEGA_BYTES_PER_SECOND: "MEGA_BYTES_PER_SECOND";
|
|
564
|
+
readonly MICRO_SECONDS: "MICRO_SECONDS";
|
|
565
|
+
readonly MILLI_SECONDS: "MILLI_SECONDS";
|
|
566
|
+
readonly NONE: "NONE";
|
|
567
|
+
readonly PERCENT: "PERCENT";
|
|
568
|
+
readonly SECONDS: "SECONDS";
|
|
569
|
+
readonly TERA_BITS: "TERA_BITS";
|
|
570
|
+
readonly TERA_BITS_PER_SECOND: "TERA_BITS_PER_SECOND";
|
|
571
|
+
readonly TERA_BYTES: "TERA_BYTES";
|
|
572
|
+
readonly TERA_BYTES_PER_SECOND: "TERA_BYTES_PER_SECOND";
|
|
573
|
+
};
|
|
574
|
+
/**
|
|
575
|
+
* @public
|
|
576
|
+
*/
|
|
577
|
+
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
518
578
|
/**
|
|
519
579
|
* @public
|
|
520
580
|
* <p>The definition of a CloudWatch metric alarm, which determines when an automatic scaling
|
|
@@ -628,12 +688,17 @@ export interface AutoScalingPolicy {
|
|
|
628
688
|
}
|
|
629
689
|
/**
|
|
630
690
|
* @public
|
|
691
|
+
* @enum
|
|
631
692
|
*/
|
|
632
|
-
export declare
|
|
633
|
-
CORE
|
|
634
|
-
MASTER
|
|
635
|
-
TASK
|
|
636
|
-
}
|
|
693
|
+
export declare const InstanceRoleType: {
|
|
694
|
+
readonly CORE: "CORE";
|
|
695
|
+
readonly MASTER: "MASTER";
|
|
696
|
+
readonly TASK: "TASK";
|
|
697
|
+
};
|
|
698
|
+
/**
|
|
699
|
+
* @public
|
|
700
|
+
*/
|
|
701
|
+
export type InstanceRoleType = (typeof InstanceRoleType)[keyof typeof InstanceRoleType];
|
|
637
702
|
/**
|
|
638
703
|
* @public
|
|
639
704
|
* <p>Output from an AddInstanceGroups call.</p>
|
|
@@ -864,30 +929,45 @@ export interface Application {
|
|
|
864
929
|
}
|
|
865
930
|
/**
|
|
866
931
|
* @public
|
|
932
|
+
* @enum
|
|
867
933
|
*/
|
|
868
|
-
export declare
|
|
869
|
-
IAM
|
|
870
|
-
SSO
|
|
871
|
-
}
|
|
934
|
+
export declare const AuthMode: {
|
|
935
|
+
readonly IAM: "IAM";
|
|
936
|
+
readonly SSO: "SSO";
|
|
937
|
+
};
|
|
872
938
|
/**
|
|
873
939
|
* @public
|
|
874
940
|
*/
|
|
875
|
-
export
|
|
876
|
-
ATTACHED = "ATTACHED",
|
|
877
|
-
ATTACHING = "ATTACHING",
|
|
878
|
-
DETACHED = "DETACHED",
|
|
879
|
-
DETACHING = "DETACHING",
|
|
880
|
-
FAILED = "FAILED",
|
|
881
|
-
PENDING = "PENDING"
|
|
882
|
-
}
|
|
941
|
+
export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
|
|
883
942
|
/**
|
|
884
943
|
* @public
|
|
944
|
+
* @enum
|
|
885
945
|
*/
|
|
886
|
-
export declare
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
946
|
+
export declare const AutoScalingPolicyState: {
|
|
947
|
+
readonly ATTACHED: "ATTACHED";
|
|
948
|
+
readonly ATTACHING: "ATTACHING";
|
|
949
|
+
readonly DETACHED: "DETACHED";
|
|
950
|
+
readonly DETACHING: "DETACHING";
|
|
951
|
+
readonly FAILED: "FAILED";
|
|
952
|
+
readonly PENDING: "PENDING";
|
|
953
|
+
};
|
|
954
|
+
/**
|
|
955
|
+
* @public
|
|
956
|
+
*/
|
|
957
|
+
export type AutoScalingPolicyState = (typeof AutoScalingPolicyState)[keyof typeof AutoScalingPolicyState];
|
|
958
|
+
/**
|
|
959
|
+
* @public
|
|
960
|
+
* @enum
|
|
961
|
+
*/
|
|
962
|
+
export declare const AutoScalingPolicyStateChangeReasonCode: {
|
|
963
|
+
readonly CLEANUP_FAILURE: "CLEANUP_FAILURE";
|
|
964
|
+
readonly PROVISION_FAILURE: "PROVISION_FAILURE";
|
|
965
|
+
readonly USER_REQUEST: "USER_REQUEST";
|
|
966
|
+
};
|
|
967
|
+
/**
|
|
968
|
+
* @public
|
|
969
|
+
*/
|
|
970
|
+
export type AutoScalingPolicyStateChangeReasonCode = (typeof AutoScalingPolicyStateChangeReasonCode)[keyof typeof AutoScalingPolicyStateChangeReasonCode];
|
|
891
971
|
/**
|
|
892
972
|
* @public
|
|
893
973
|
* <p>The reason for an <a>AutoScalingPolicyStatus</a> change.</p>
|
|
@@ -1033,11 +1113,16 @@ export interface BootstrapActionDetail {
|
|
|
1033
1113
|
}
|
|
1034
1114
|
/**
|
|
1035
1115
|
* @public
|
|
1116
|
+
* @enum
|
|
1036
1117
|
*/
|
|
1037
|
-
export declare
|
|
1038
|
-
SEND_INTERRUPT
|
|
1039
|
-
TERMINATE_PROCESS
|
|
1040
|
-
}
|
|
1118
|
+
export declare const StepCancellationOption: {
|
|
1119
|
+
readonly SEND_INTERRUPT: "SEND_INTERRUPT";
|
|
1120
|
+
readonly TERMINATE_PROCESS: "TERMINATE_PROCESS";
|
|
1121
|
+
};
|
|
1122
|
+
/**
|
|
1123
|
+
* @public
|
|
1124
|
+
*/
|
|
1125
|
+
export type StepCancellationOption = (typeof StepCancellationOption)[keyof typeof StepCancellationOption];
|
|
1041
1126
|
/**
|
|
1042
1127
|
* @public
|
|
1043
1128
|
* <p>The input argument to the <a>CancelSteps</a> operation.</p>
|
|
@@ -1060,11 +1145,16 @@ export interface CancelStepsInput {
|
|
|
1060
1145
|
}
|
|
1061
1146
|
/**
|
|
1062
1147
|
* @public
|
|
1148
|
+
* @enum
|
|
1063
1149
|
*/
|
|
1064
|
-
export declare
|
|
1065
|
-
FAILED
|
|
1066
|
-
SUBMITTED
|
|
1067
|
-
}
|
|
1150
|
+
export declare const CancelStepsRequestStatus: {
|
|
1151
|
+
readonly FAILED: "FAILED";
|
|
1152
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
1153
|
+
};
|
|
1154
|
+
/**
|
|
1155
|
+
* @public
|
|
1156
|
+
*/
|
|
1157
|
+
export type CancelStepsRequestStatus = (typeof CancelStepsRequestStatus)[keyof typeof CancelStepsRequestStatus];
|
|
1068
1158
|
/**
|
|
1069
1159
|
* @public
|
|
1070
1160
|
* <p>Specification of the status of a CancelSteps request. Available only in Amazon EMR version 4.8.0 and later, excluding version 5.0.0.</p>
|
|
@@ -1170,11 +1260,16 @@ export interface Ec2InstanceAttributes {
|
|
|
1170
1260
|
}
|
|
1171
1261
|
/**
|
|
1172
1262
|
* @public
|
|
1263
|
+
* @enum
|
|
1173
1264
|
*/
|
|
1174
|
-
export declare
|
|
1175
|
-
INSTANCE_FLEET
|
|
1176
|
-
INSTANCE_GROUP
|
|
1177
|
-
}
|
|
1265
|
+
export declare const InstanceCollectionType: {
|
|
1266
|
+
readonly INSTANCE_FLEET: "INSTANCE_FLEET";
|
|
1267
|
+
readonly INSTANCE_GROUP: "INSTANCE_GROUP";
|
|
1268
|
+
};
|
|
1269
|
+
/**
|
|
1270
|
+
* @public
|
|
1271
|
+
*/
|
|
1272
|
+
export type InstanceCollectionType = (typeof InstanceCollectionType)[keyof typeof InstanceCollectionType];
|
|
1178
1273
|
/**
|
|
1179
1274
|
* @public
|
|
1180
1275
|
* <p>Attributes for Kerberos configuration when Kerberos authentication is enabled using a
|
|
@@ -1210,13 +1305,18 @@ export interface KerberosAttributes {
|
|
|
1210
1305
|
}
|
|
1211
1306
|
/**
|
|
1212
1307
|
* @public
|
|
1308
|
+
* @enum
|
|
1213
1309
|
*/
|
|
1214
|
-
export declare
|
|
1215
|
-
CLUSTER
|
|
1216
|
-
NONE
|
|
1217
|
-
PARTITION
|
|
1218
|
-
SPREAD
|
|
1219
|
-
}
|
|
1310
|
+
export declare const PlacementGroupStrategy: {
|
|
1311
|
+
readonly CLUSTER: "CLUSTER";
|
|
1312
|
+
readonly NONE: "NONE";
|
|
1313
|
+
readonly PARTITION: "PARTITION";
|
|
1314
|
+
readonly SPREAD: "SPREAD";
|
|
1315
|
+
};
|
|
1316
|
+
/**
|
|
1317
|
+
* @public
|
|
1318
|
+
*/
|
|
1319
|
+
export type PlacementGroupStrategy = (typeof PlacementGroupStrategy)[keyof typeof PlacementGroupStrategy];
|
|
1220
1320
|
/**
|
|
1221
1321
|
* @public
|
|
1222
1322
|
* <p>Placement group configuration for an Amazon EMR cluster. The configuration
|
|
@@ -1241,43 +1341,81 @@ export interface PlacementGroupConfig {
|
|
|
1241
1341
|
}
|
|
1242
1342
|
/**
|
|
1243
1343
|
* @public
|
|
1344
|
+
* @enum
|
|
1244
1345
|
*/
|
|
1245
|
-
export declare
|
|
1246
|
-
NONE
|
|
1247
|
-
SECURITY
|
|
1248
|
-
}
|
|
1346
|
+
export declare const RepoUpgradeOnBoot: {
|
|
1347
|
+
readonly NONE: "NONE";
|
|
1348
|
+
readonly SECURITY: "SECURITY";
|
|
1349
|
+
};
|
|
1249
1350
|
/**
|
|
1250
1351
|
* @public
|
|
1251
1352
|
*/
|
|
1252
|
-
export
|
|
1253
|
-
TERMINATE_AT_INSTANCE_HOUR = "TERMINATE_AT_INSTANCE_HOUR",
|
|
1254
|
-
TERMINATE_AT_TASK_COMPLETION = "TERMINATE_AT_TASK_COMPLETION"
|
|
1255
|
-
}
|
|
1353
|
+
export type RepoUpgradeOnBoot = (typeof RepoUpgradeOnBoot)[keyof typeof RepoUpgradeOnBoot];
|
|
1256
1354
|
/**
|
|
1257
1355
|
* @public
|
|
1356
|
+
* @enum
|
|
1258
1357
|
*/
|
|
1259
|
-
export declare
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
}
|
|
1358
|
+
export declare const ScaleDownBehavior: {
|
|
1359
|
+
readonly TERMINATE_AT_INSTANCE_HOUR: "TERMINATE_AT_INSTANCE_HOUR";
|
|
1360
|
+
readonly TERMINATE_AT_TASK_COMPLETION: "TERMINATE_AT_TASK_COMPLETION";
|
|
1361
|
+
};
|
|
1362
|
+
/**
|
|
1363
|
+
* @public
|
|
1364
|
+
*/
|
|
1365
|
+
export type ScaleDownBehavior = (typeof ScaleDownBehavior)[keyof typeof ScaleDownBehavior];
|
|
1268
1366
|
/**
|
|
1269
1367
|
* @public
|
|
1368
|
+
* <p>A tuple that provides information about an error that caused a cluster to terminate.</p>
|
|
1270
1369
|
*/
|
|
1271
|
-
export
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1370
|
+
export interface ErrorDetail {
|
|
1371
|
+
/**
|
|
1372
|
+
* <p>The name or code that's associated with the error.</p>
|
|
1373
|
+
*/
|
|
1374
|
+
ErrorCode?: string;
|
|
1375
|
+
/**
|
|
1376
|
+
* <p>A list of key value pairs that provide contextual information to explain why the error may have occured.</p>
|
|
1377
|
+
*/
|
|
1378
|
+
ErrorData?: Record<string, string>[];
|
|
1379
|
+
/**
|
|
1380
|
+
* <p>A message describing the error that occured.</p>
|
|
1381
|
+
*/
|
|
1382
|
+
ErrorMessage?: string;
|
|
1280
1383
|
}
|
|
1384
|
+
/**
|
|
1385
|
+
* @public
|
|
1386
|
+
* @enum
|
|
1387
|
+
*/
|
|
1388
|
+
export declare const ClusterState: {
|
|
1389
|
+
readonly BOOTSTRAPPING: "BOOTSTRAPPING";
|
|
1390
|
+
readonly RUNNING: "RUNNING";
|
|
1391
|
+
readonly STARTING: "STARTING";
|
|
1392
|
+
readonly TERMINATED: "TERMINATED";
|
|
1393
|
+
readonly TERMINATED_WITH_ERRORS: "TERMINATED_WITH_ERRORS";
|
|
1394
|
+
readonly TERMINATING: "TERMINATING";
|
|
1395
|
+
readonly WAITING: "WAITING";
|
|
1396
|
+
};
|
|
1397
|
+
/**
|
|
1398
|
+
* @public
|
|
1399
|
+
*/
|
|
1400
|
+
export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];
|
|
1401
|
+
/**
|
|
1402
|
+
* @public
|
|
1403
|
+
* @enum
|
|
1404
|
+
*/
|
|
1405
|
+
export declare const ClusterStateChangeReasonCode: {
|
|
1406
|
+
readonly ALL_STEPS_COMPLETED: "ALL_STEPS_COMPLETED";
|
|
1407
|
+
readonly BOOTSTRAP_FAILURE: "BOOTSTRAP_FAILURE";
|
|
1408
|
+
readonly INSTANCE_FAILURE: "INSTANCE_FAILURE";
|
|
1409
|
+
readonly INSTANCE_FLEET_TIMEOUT: "INSTANCE_FLEET_TIMEOUT";
|
|
1410
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
1411
|
+
readonly STEP_FAILURE: "STEP_FAILURE";
|
|
1412
|
+
readonly USER_REQUEST: "USER_REQUEST";
|
|
1413
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
1414
|
+
};
|
|
1415
|
+
/**
|
|
1416
|
+
* @public
|
|
1417
|
+
*/
|
|
1418
|
+
export type ClusterStateChangeReasonCode = (typeof ClusterStateChangeReasonCode)[keyof typeof ClusterStateChangeReasonCode];
|
|
1281
1419
|
/**
|
|
1282
1420
|
* @public
|
|
1283
1421
|
* <p>The reason that the cluster changed to its current state.</p>
|
|
@@ -1328,6 +1466,10 @@ export interface ClusterStatus {
|
|
|
1328
1466
|
* cluster.</p>
|
|
1329
1467
|
*/
|
|
1330
1468
|
Timeline?: ClusterTimeline;
|
|
1469
|
+
/**
|
|
1470
|
+
* <p>A list of tuples that provide information about the errors that caused a cluster termination. This structure may have up to 10 different <code>ErrorDetail</code> tuples.</p>
|
|
1471
|
+
*/
|
|
1472
|
+
ErrorDetails?: ErrorDetail[];
|
|
1331
1473
|
}
|
|
1332
1474
|
/**
|
|
1333
1475
|
* @public
|
|
@@ -1383,12 +1525,17 @@ export interface Command {
|
|
|
1383
1525
|
}
|
|
1384
1526
|
/**
|
|
1385
1527
|
* @public
|
|
1528
|
+
* @enum
|
|
1386
1529
|
*/
|
|
1387
|
-
export declare
|
|
1388
|
-
InstanceFleetUnits
|
|
1389
|
-
Instances
|
|
1390
|
-
VCPU
|
|
1391
|
-
}
|
|
1530
|
+
export declare const ComputeLimitsUnitType: {
|
|
1531
|
+
readonly InstanceFleetUnits: "InstanceFleetUnits";
|
|
1532
|
+
readonly Instances: "Instances";
|
|
1533
|
+
readonly VCPU: "VCPU";
|
|
1534
|
+
};
|
|
1535
|
+
/**
|
|
1536
|
+
* @public
|
|
1537
|
+
*/
|
|
1538
|
+
export type ComputeLimitsUnitType = (typeof ComputeLimitsUnitType)[keyof typeof ComputeLimitsUnitType];
|
|
1392
1539
|
/**
|
|
1393
1540
|
* @public
|
|
1394
1541
|
* <p> The EC2 unit limits for a managed scaling policy. The managed scaling activity of a
|
|
@@ -1552,11 +1699,16 @@ export interface CreateStudioOutput {
|
|
|
1552
1699
|
}
|
|
1553
1700
|
/**
|
|
1554
1701
|
* @public
|
|
1702
|
+
* @enum
|
|
1555
1703
|
*/
|
|
1556
|
-
export declare
|
|
1557
|
-
GROUP
|
|
1558
|
-
USER
|
|
1559
|
-
}
|
|
1704
|
+
export declare const IdentityType: {
|
|
1705
|
+
readonly GROUP: "GROUP";
|
|
1706
|
+
readonly USER: "USER";
|
|
1707
|
+
};
|
|
1708
|
+
/**
|
|
1709
|
+
* @public
|
|
1710
|
+
*/
|
|
1711
|
+
export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
|
|
1560
1712
|
/**
|
|
1561
1713
|
* @public
|
|
1562
1714
|
*/
|
|
@@ -1693,17 +1845,22 @@ export interface DescribeClusterInput {
|
|
|
1693
1845
|
}
|
|
1694
1846
|
/**
|
|
1695
1847
|
* @public
|
|
1848
|
+
* @enum
|
|
1696
1849
|
*/
|
|
1697
|
-
export declare
|
|
1698
|
-
BOOTSTRAPPING
|
|
1699
|
-
COMPLETED
|
|
1700
|
-
FAILED
|
|
1701
|
-
RUNNING
|
|
1702
|
-
SHUTTING_DOWN
|
|
1703
|
-
STARTING
|
|
1704
|
-
TERMINATED
|
|
1705
|
-
WAITING
|
|
1706
|
-
}
|
|
1850
|
+
export declare const JobFlowExecutionState: {
|
|
1851
|
+
readonly BOOTSTRAPPING: "BOOTSTRAPPING";
|
|
1852
|
+
readonly COMPLETED: "COMPLETED";
|
|
1853
|
+
readonly FAILED: "FAILED";
|
|
1854
|
+
readonly RUNNING: "RUNNING";
|
|
1855
|
+
readonly SHUTTING_DOWN: "SHUTTING_DOWN";
|
|
1856
|
+
readonly STARTING: "STARTING";
|
|
1857
|
+
readonly TERMINATED: "TERMINATED";
|
|
1858
|
+
readonly WAITING: "WAITING";
|
|
1859
|
+
};
|
|
1860
|
+
/**
|
|
1861
|
+
* @public
|
|
1862
|
+
*/
|
|
1863
|
+
export type JobFlowExecutionState = (typeof JobFlowExecutionState)[keyof typeof JobFlowExecutionState];
|
|
1707
1864
|
/**
|
|
1708
1865
|
* @public
|
|
1709
1866
|
* <p> The input for the <a>DescribeJobFlows</a> operation. </p>
|
|
@@ -1758,20 +1915,25 @@ export interface JobFlowExecutionStatusDetail {
|
|
|
1758
1915
|
}
|
|
1759
1916
|
/**
|
|
1760
1917
|
* @public
|
|
1918
|
+
* @enum
|
|
1761
1919
|
*/
|
|
1762
|
-
export declare
|
|
1763
|
-
ARRESTED
|
|
1764
|
-
BOOTSTRAPPING
|
|
1765
|
-
ENDED
|
|
1766
|
-
PROVISIONING
|
|
1767
|
-
RECONFIGURING
|
|
1768
|
-
RESIZING
|
|
1769
|
-
RUNNING
|
|
1770
|
-
SHUTTING_DOWN
|
|
1771
|
-
SUSPENDED
|
|
1772
|
-
TERMINATED
|
|
1773
|
-
TERMINATING
|
|
1774
|
-
}
|
|
1920
|
+
export declare const InstanceGroupState: {
|
|
1921
|
+
readonly ARRESTED: "ARRESTED";
|
|
1922
|
+
readonly BOOTSTRAPPING: "BOOTSTRAPPING";
|
|
1923
|
+
readonly ENDED: "ENDED";
|
|
1924
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
1925
|
+
readonly RECONFIGURING: "RECONFIGURING";
|
|
1926
|
+
readonly RESIZING: "RESIZING";
|
|
1927
|
+
readonly RUNNING: "RUNNING";
|
|
1928
|
+
readonly SHUTTING_DOWN: "SHUTTING_DOWN";
|
|
1929
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
1930
|
+
readonly TERMINATED: "TERMINATED";
|
|
1931
|
+
readonly TERMINATING: "TERMINATING";
|
|
1932
|
+
};
|
|
1933
|
+
/**
|
|
1934
|
+
* @public
|
|
1935
|
+
*/
|
|
1936
|
+
export type InstanceGroupState = (typeof InstanceGroupState)[keyof typeof InstanceGroupState];
|
|
1775
1937
|
/**
|
|
1776
1938
|
* @public
|
|
1777
1939
|
* <p>Detailed information about an instance group.</p>
|
|
@@ -1936,16 +2098,21 @@ export interface JobFlowInstancesDetail {
|
|
|
1936
2098
|
}
|
|
1937
2099
|
/**
|
|
1938
2100
|
* @public
|
|
2101
|
+
* @enum
|
|
1939
2102
|
*/
|
|
1940
|
-
export declare
|
|
1941
|
-
CANCELLED
|
|
1942
|
-
COMPLETED
|
|
1943
|
-
CONTINUE
|
|
1944
|
-
FAILED
|
|
1945
|
-
INTERRUPTED
|
|
1946
|
-
PENDING
|
|
1947
|
-
RUNNING
|
|
1948
|
-
}
|
|
2103
|
+
export declare const StepExecutionState: {
|
|
2104
|
+
readonly CANCELLED: "CANCELLED";
|
|
2105
|
+
readonly COMPLETED: "COMPLETED";
|
|
2106
|
+
readonly CONTINUE: "CONTINUE";
|
|
2107
|
+
readonly FAILED: "FAILED";
|
|
2108
|
+
readonly INTERRUPTED: "INTERRUPTED";
|
|
2109
|
+
readonly PENDING: "PENDING";
|
|
2110
|
+
readonly RUNNING: "RUNNING";
|
|
2111
|
+
};
|
|
2112
|
+
/**
|
|
2113
|
+
* @public
|
|
2114
|
+
*/
|
|
2115
|
+
export type StepExecutionState = (typeof StepExecutionState)[keyof typeof StepExecutionState];
|
|
1949
2116
|
/**
|
|
1950
2117
|
* @public
|
|
1951
2118
|
* <p>The execution state of a step.</p>
|
|
@@ -2097,10 +2264,15 @@ export interface DescribeNotebookExecutionInput {
|
|
|
2097
2264
|
}
|
|
2098
2265
|
/**
|
|
2099
2266
|
* @public
|
|
2267
|
+
* @enum
|
|
2100
2268
|
*/
|
|
2101
|
-
export declare
|
|
2102
|
-
EMR
|
|
2103
|
-
}
|
|
2269
|
+
export declare const ExecutionEngineType: {
|
|
2270
|
+
readonly EMR: "EMR";
|
|
2271
|
+
};
|
|
2272
|
+
/**
|
|
2273
|
+
* @public
|
|
2274
|
+
*/
|
|
2275
|
+
export type ExecutionEngineType = (typeof ExecutionEngineType)[keyof typeof ExecutionEngineType];
|
|
2104
2276
|
/**
|
|
2105
2277
|
* @public
|
|
2106
2278
|
* <p>Specifies the execution engine (cluster) to run the notebook and perform the notebook
|
|
@@ -2127,19 +2299,24 @@ export interface ExecutionEngineConfig {
|
|
|
2127
2299
|
}
|
|
2128
2300
|
/**
|
|
2129
2301
|
* @public
|
|
2302
|
+
* @enum
|
|
2130
2303
|
*/
|
|
2131
|
-
export declare
|
|
2132
|
-
FAILED
|
|
2133
|
-
FAILING
|
|
2134
|
-
FINISHED
|
|
2135
|
-
FINISHING
|
|
2136
|
-
RUNNING
|
|
2137
|
-
STARTING
|
|
2138
|
-
START_PENDING
|
|
2139
|
-
STOPPED
|
|
2140
|
-
STOPPING
|
|
2141
|
-
STOP_PENDING
|
|
2142
|
-
}
|
|
2304
|
+
export declare const NotebookExecutionStatus: {
|
|
2305
|
+
readonly FAILED: "FAILED";
|
|
2306
|
+
readonly FAILING: "FAILING";
|
|
2307
|
+
readonly FINISHED: "FINISHED";
|
|
2308
|
+
readonly FINISHING: "FINISHING";
|
|
2309
|
+
readonly RUNNING: "RUNNING";
|
|
2310
|
+
readonly STARTING: "STARTING";
|
|
2311
|
+
readonly START_PENDING: "START_PENDING";
|
|
2312
|
+
readonly STOPPED: "STOPPED";
|
|
2313
|
+
readonly STOPPING: "STOPPING";
|
|
2314
|
+
readonly STOP_PENDING: "STOP_PENDING";
|
|
2315
|
+
};
|
|
2316
|
+
/**
|
|
2317
|
+
* @public
|
|
2318
|
+
*/
|
|
2319
|
+
export type NotebookExecutionStatus = (typeof NotebookExecutionStatus)[keyof typeof NotebookExecutionStatus];
|
|
2143
2320
|
/**
|
|
2144
2321
|
* @public
|
|
2145
2322
|
* <p>A notebook execution. An execution is a specific instance that an EMR Notebook is run
|
|
@@ -2431,22 +2608,32 @@ export interface FailureDetails {
|
|
|
2431
2608
|
}
|
|
2432
2609
|
/**
|
|
2433
2610
|
* @public
|
|
2611
|
+
* @enum
|
|
2434
2612
|
*/
|
|
2435
|
-
export declare
|
|
2436
|
-
CANCELLED
|
|
2437
|
-
CANCEL_PENDING
|
|
2438
|
-
COMPLETED
|
|
2439
|
-
FAILED
|
|
2440
|
-
INTERRUPTED
|
|
2441
|
-
PENDING
|
|
2442
|
-
RUNNING
|
|
2443
|
-
}
|
|
2613
|
+
export declare const StepState: {
|
|
2614
|
+
readonly CANCELLED: "CANCELLED";
|
|
2615
|
+
readonly CANCEL_PENDING: "CANCEL_PENDING";
|
|
2616
|
+
readonly COMPLETED: "COMPLETED";
|
|
2617
|
+
readonly FAILED: "FAILED";
|
|
2618
|
+
readonly INTERRUPTED: "INTERRUPTED";
|
|
2619
|
+
readonly PENDING: "PENDING";
|
|
2620
|
+
readonly RUNNING: "RUNNING";
|
|
2621
|
+
};
|
|
2444
2622
|
/**
|
|
2445
2623
|
* @public
|
|
2446
2624
|
*/
|
|
2447
|
-
export
|
|
2448
|
-
|
|
2449
|
-
|
|
2625
|
+
export type StepState = (typeof StepState)[keyof typeof StepState];
|
|
2626
|
+
/**
|
|
2627
|
+
* @public
|
|
2628
|
+
* @enum
|
|
2629
|
+
*/
|
|
2630
|
+
export declare const StepStateChangeReasonCode: {
|
|
2631
|
+
readonly NONE: "NONE";
|
|
2632
|
+
};
|
|
2633
|
+
/**
|
|
2634
|
+
* @public
|
|
2635
|
+
*/
|
|
2636
|
+
export type StepStateChangeReasonCode = (typeof StepStateChangeReasonCode)[keyof typeof StepStateChangeReasonCode];
|
|
2450
2637
|
/**
|
|
2451
2638
|
* @public
|
|
2452
2639
|
* <p>The details of the step state change reason.</p>
|
|
@@ -2937,25 +3124,35 @@ export interface ListInstanceFleetsInput {
|
|
|
2937
3124
|
}
|
|
2938
3125
|
/**
|
|
2939
3126
|
* @public
|
|
3127
|
+
* @enum
|
|
2940
3128
|
*/
|
|
2941
|
-
export declare
|
|
2942
|
-
BOOTSTRAPPING
|
|
2943
|
-
PROVISIONING
|
|
2944
|
-
RESIZING
|
|
2945
|
-
RUNNING
|
|
2946
|
-
SUSPENDED
|
|
2947
|
-
TERMINATED
|
|
2948
|
-
TERMINATING
|
|
2949
|
-
}
|
|
3129
|
+
export declare const InstanceFleetState: {
|
|
3130
|
+
readonly BOOTSTRAPPING: "BOOTSTRAPPING";
|
|
3131
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
3132
|
+
readonly RESIZING: "RESIZING";
|
|
3133
|
+
readonly RUNNING: "RUNNING";
|
|
3134
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
3135
|
+
readonly TERMINATED: "TERMINATED";
|
|
3136
|
+
readonly TERMINATING: "TERMINATING";
|
|
3137
|
+
};
|
|
2950
3138
|
/**
|
|
2951
3139
|
* @public
|
|
2952
3140
|
*/
|
|
2953
|
-
export
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
3141
|
+
export type InstanceFleetState = (typeof InstanceFleetState)[keyof typeof InstanceFleetState];
|
|
3142
|
+
/**
|
|
3143
|
+
* @public
|
|
3144
|
+
* @enum
|
|
3145
|
+
*/
|
|
3146
|
+
export declare const InstanceFleetStateChangeReasonCode: {
|
|
3147
|
+
readonly CLUSTER_TERMINATED: "CLUSTER_TERMINATED";
|
|
3148
|
+
readonly INSTANCE_FAILURE: "INSTANCE_FAILURE";
|
|
3149
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
3150
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
3151
|
+
};
|
|
3152
|
+
/**
|
|
3153
|
+
* @public
|
|
3154
|
+
*/
|
|
3155
|
+
export type InstanceFleetStateChangeReasonCode = (typeof InstanceFleetStateChangeReasonCode)[keyof typeof InstanceFleetStateChangeReasonCode];
|
|
2959
3156
|
/**
|
|
2960
3157
|
* @public
|
|
2961
3158
|
* <p>Provides status change reason details for the instance fleet.</p>
|
|
@@ -3072,12 +3269,17 @@ export interface ListInstanceGroupsInput {
|
|
|
3072
3269
|
}
|
|
3073
3270
|
/**
|
|
3074
3271
|
* @public
|
|
3272
|
+
* @enum
|
|
3075
3273
|
*/
|
|
3076
|
-
export declare
|
|
3077
|
-
CORE
|
|
3078
|
-
MASTER
|
|
3079
|
-
TASK
|
|
3080
|
-
}
|
|
3274
|
+
export declare const InstanceGroupType: {
|
|
3275
|
+
readonly CORE: "CORE";
|
|
3276
|
+
readonly MASTER: "MASTER";
|
|
3277
|
+
readonly TASK: "TASK";
|
|
3278
|
+
};
|
|
3279
|
+
/**
|
|
3280
|
+
* @public
|
|
3281
|
+
*/
|
|
3282
|
+
export type InstanceGroupType = (typeof InstanceGroupType)[keyof typeof InstanceGroupType];
|
|
3081
3283
|
/**
|
|
3082
3284
|
* @public
|
|
3083
3285
|
* <p>Custom policy for requesting termination protection or termination of specific instances
|
|
@@ -3117,13 +3319,18 @@ export interface ShrinkPolicy {
|
|
|
3117
3319
|
}
|
|
3118
3320
|
/**
|
|
3119
3321
|
* @public
|
|
3322
|
+
* @enum
|
|
3120
3323
|
*/
|
|
3121
|
-
export declare
|
|
3122
|
-
CLUSTER_TERMINATED
|
|
3123
|
-
INSTANCE_FAILURE
|
|
3124
|
-
INTERNAL_ERROR
|
|
3125
|
-
VALIDATION_ERROR
|
|
3126
|
-
}
|
|
3324
|
+
export declare const InstanceGroupStateChangeReasonCode: {
|
|
3325
|
+
readonly CLUSTER_TERMINATED: "CLUSTER_TERMINATED";
|
|
3326
|
+
readonly INSTANCE_FAILURE: "INSTANCE_FAILURE";
|
|
3327
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
3328
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
3329
|
+
};
|
|
3330
|
+
/**
|
|
3331
|
+
* @public
|
|
3332
|
+
*/
|
|
3333
|
+
export type InstanceGroupStateChangeReasonCode = (typeof InstanceGroupStateChangeReasonCode)[keyof typeof InstanceGroupStateChangeReasonCode];
|
|
3127
3334
|
/**
|
|
3128
3335
|
* @public
|
|
3129
3336
|
* <p>The status change reason details for the instance group.</p>
|
|
@@ -3176,14 +3383,19 @@ export interface InstanceGroupStatus {
|
|
|
3176
3383
|
}
|
|
3177
3384
|
/**
|
|
3178
3385
|
* @public
|
|
3386
|
+
* @enum
|
|
3179
3387
|
*/
|
|
3180
|
-
export declare
|
|
3181
|
-
AWAITING_FULFILLMENT
|
|
3182
|
-
BOOTSTRAPPING
|
|
3183
|
-
PROVISIONING
|
|
3184
|
-
RUNNING
|
|
3185
|
-
TERMINATED
|
|
3186
|
-
}
|
|
3388
|
+
export declare const InstanceState: {
|
|
3389
|
+
readonly AWAITING_FULFILLMENT: "AWAITING_FULFILLMENT";
|
|
3390
|
+
readonly BOOTSTRAPPING: "BOOTSTRAPPING";
|
|
3391
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
3392
|
+
readonly RUNNING: "RUNNING";
|
|
3393
|
+
readonly TERMINATED: "TERMINATED";
|
|
3394
|
+
};
|
|
3395
|
+
/**
|
|
3396
|
+
* @public
|
|
3397
|
+
*/
|
|
3398
|
+
export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
|
|
3187
3399
|
/**
|
|
3188
3400
|
* @public
|
|
3189
3401
|
* <p>This input determines which instances to list.</p>
|
|
@@ -3221,14 +3433,19 @@ export interface ListInstancesInput {
|
|
|
3221
3433
|
}
|
|
3222
3434
|
/**
|
|
3223
3435
|
* @public
|
|
3436
|
+
* @enum
|
|
3224
3437
|
*/
|
|
3225
|
-
export declare
|
|
3226
|
-
BOOTSTRAP_FAILURE
|
|
3227
|
-
CLUSTER_TERMINATED
|
|
3228
|
-
INSTANCE_FAILURE
|
|
3229
|
-
INTERNAL_ERROR
|
|
3230
|
-
VALIDATION_ERROR
|
|
3231
|
-
}
|
|
3438
|
+
export declare const InstanceStateChangeReasonCode: {
|
|
3439
|
+
readonly BOOTSTRAP_FAILURE: "BOOTSTRAP_FAILURE";
|
|
3440
|
+
readonly CLUSTER_TERMINATED: "CLUSTER_TERMINATED";
|
|
3441
|
+
readonly INSTANCE_FAILURE: "INSTANCE_FAILURE";
|
|
3442
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
3443
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
3444
|
+
};
|
|
3445
|
+
/**
|
|
3446
|
+
* @public
|
|
3447
|
+
*/
|
|
3448
|
+
export type InstanceStateChangeReasonCode = (typeof InstanceStateChangeReasonCode)[keyof typeof InstanceStateChangeReasonCode];
|
|
3232
3449
|
/**
|
|
3233
3450
|
* @public
|
|
3234
3451
|
* <p>The details of the status change reason for the instance.</p>
|
|
@@ -3882,11 +4099,16 @@ export interface ModifyInstanceFleetInput {
|
|
|
3882
4099
|
}
|
|
3883
4100
|
/**
|
|
3884
4101
|
* @public
|
|
4102
|
+
* @enum
|
|
3885
4103
|
*/
|
|
3886
|
-
export declare
|
|
3887
|
-
MERGE
|
|
3888
|
-
OVERWRITE
|
|
3889
|
-
}
|
|
4104
|
+
export declare const ReconfigurationType: {
|
|
4105
|
+
readonly MERGE: "MERGE";
|
|
4106
|
+
readonly OVERWRITE: "OVERWRITE";
|
|
4107
|
+
};
|
|
4108
|
+
/**
|
|
4109
|
+
* @public
|
|
4110
|
+
*/
|
|
4111
|
+
export type ReconfigurationType = (typeof ReconfigurationType)[keyof typeof ReconfigurationType];
|
|
3890
4112
|
/**
|
|
3891
4113
|
* @public
|
|
3892
4114
|
*/
|