@aws-sdk/client-emr 3.687.0 → 3.692.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.
@@ -17,17 +17,17 @@ export type InstanceFleetType =
17
17
  (typeof InstanceFleetType)[keyof typeof InstanceFleetType];
18
18
  export interface VolumeSpecification {
19
19
  VolumeType: string | undefined;
20
- Iops?: number;
20
+ Iops?: number | undefined;
21
21
  SizeInGB: number | undefined;
22
- Throughput?: number;
22
+ Throughput?: number | undefined;
23
23
  }
24
24
  export interface EbsBlockDeviceConfig {
25
25
  VolumeSpecification: VolumeSpecification | undefined;
26
- VolumesPerInstance?: number;
26
+ VolumesPerInstance?: number | undefined;
27
27
  }
28
28
  export interface EbsConfiguration {
29
- EbsBlockDeviceConfigs?: EbsBlockDeviceConfig[];
30
- EbsOptimized?: boolean;
29
+ EbsBlockDeviceConfigs?: EbsBlockDeviceConfig[] | undefined;
30
+ EbsOptimized?: boolean | undefined;
31
31
  }
32
32
  export declare const OnDemandProvisioningAllocationStrategy: {
33
33
  readonly LOWEST_PRICE: "lowest-price";
@@ -47,13 +47,15 @@ export declare const OnDemandCapacityReservationUsageStrategy: {
47
47
  export type OnDemandCapacityReservationUsageStrategy =
48
48
  (typeof OnDemandCapacityReservationUsageStrategy)[keyof typeof OnDemandCapacityReservationUsageStrategy];
49
49
  export interface OnDemandCapacityReservationOptions {
50
- UsageStrategy?: OnDemandCapacityReservationUsageStrategy;
51
- CapacityReservationPreference?: OnDemandCapacityReservationPreference;
52
- CapacityReservationResourceGroupArn?: string;
50
+ UsageStrategy?: OnDemandCapacityReservationUsageStrategy | undefined;
51
+ CapacityReservationPreference?:
52
+ | OnDemandCapacityReservationPreference
53
+ | undefined;
54
+ CapacityReservationResourceGroupArn?: string | undefined;
53
55
  }
54
56
  export interface OnDemandProvisioningSpecification {
55
57
  AllocationStrategy: OnDemandProvisioningAllocationStrategy | undefined;
56
- CapacityReservationOptions?: OnDemandCapacityReservationOptions;
58
+ CapacityReservationOptions?: OnDemandCapacityReservationOptions | undefined;
57
59
  }
58
60
  export declare const SpotProvisioningAllocationStrategy: {
59
61
  readonly CAPACITY_OPTIMIZED: "capacity-optimized";
@@ -73,35 +75,35 @@ export type SpotProvisioningTimeoutAction =
73
75
  export interface SpotProvisioningSpecification {
74
76
  TimeoutDurationMinutes: number | undefined;
75
77
  TimeoutAction: SpotProvisioningTimeoutAction | undefined;
76
- BlockDurationMinutes?: number;
77
- AllocationStrategy?: SpotProvisioningAllocationStrategy;
78
+ BlockDurationMinutes?: number | undefined;
79
+ AllocationStrategy?: SpotProvisioningAllocationStrategy | undefined;
78
80
  }
79
81
  export interface InstanceFleetProvisioningSpecifications {
80
- SpotSpecification?: SpotProvisioningSpecification;
81
- OnDemandSpecification?: OnDemandProvisioningSpecification;
82
+ SpotSpecification?: SpotProvisioningSpecification | undefined;
83
+ OnDemandSpecification?: OnDemandProvisioningSpecification | undefined;
82
84
  }
83
85
  export interface OnDemandResizingSpecification {
84
- TimeoutDurationMinutes?: number;
85
- AllocationStrategy?: OnDemandProvisioningAllocationStrategy;
86
- CapacityReservationOptions?: OnDemandCapacityReservationOptions;
86
+ TimeoutDurationMinutes?: number | undefined;
87
+ AllocationStrategy?: OnDemandProvisioningAllocationStrategy | undefined;
88
+ CapacityReservationOptions?: OnDemandCapacityReservationOptions | undefined;
87
89
  }
88
90
  export interface SpotResizingSpecification {
89
- TimeoutDurationMinutes?: number;
90
- AllocationStrategy?: SpotProvisioningAllocationStrategy;
91
+ TimeoutDurationMinutes?: number | undefined;
92
+ AllocationStrategy?: SpotProvisioningAllocationStrategy | undefined;
91
93
  }
92
94
  export interface InstanceFleetResizingSpecifications {
93
- SpotResizeSpecification?: SpotResizingSpecification;
94
- OnDemandResizeSpecification?: OnDemandResizingSpecification;
95
+ SpotResizeSpecification?: SpotResizingSpecification | undefined;
96
+ OnDemandResizeSpecification?: OnDemandResizingSpecification | undefined;
95
97
  }
96
98
  export interface AddInstanceFleetOutput {
97
- ClusterId?: string;
98
- InstanceFleetId?: string;
99
- ClusterArn?: string;
99
+ ClusterId?: string | undefined;
100
+ InstanceFleetId?: string | undefined;
101
+ ClusterArn?: string | undefined;
100
102
  }
101
103
  export declare class InternalServerException extends __BaseException {
102
104
  readonly name: "InternalServerException";
103
105
  readonly $fault: "server";
104
- Message?: string;
106
+ Message?: string | undefined;
105
107
  constructor(
106
108
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
107
109
  );
@@ -109,8 +111,8 @@ export declare class InternalServerException extends __BaseException {
109
111
  export declare class InvalidRequestException extends __BaseException {
110
112
  readonly name: "InvalidRequestException";
111
113
  readonly $fault: "client";
112
- ErrorCode?: string;
113
- Message?: string;
114
+ ErrorCode?: string | undefined;
115
+ Message?: string | undefined;
114
116
  constructor(
115
117
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
116
118
  );
@@ -132,12 +134,12 @@ export declare const AdjustmentType: {
132
134
  export type AdjustmentType =
133
135
  (typeof AdjustmentType)[keyof typeof AdjustmentType];
134
136
  export interface SimpleScalingPolicyConfiguration {
135
- AdjustmentType?: AdjustmentType;
137
+ AdjustmentType?: AdjustmentType | undefined;
136
138
  ScalingAdjustment: number | undefined;
137
- CoolDown?: number;
139
+ CoolDown?: number | undefined;
138
140
  }
139
141
  export interface ScalingAction {
140
- Market?: MarketType;
142
+ Market?: MarketType | undefined;
141
143
  SimpleScalingPolicyConfiguration:
142
144
  | SimpleScalingPolicyConfiguration
143
145
  | undefined;
@@ -151,8 +153,8 @@ export declare const ComparisonOperator: {
151
153
  export type ComparisonOperator =
152
154
  (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
153
155
  export interface MetricDimension {
154
- Key?: string;
155
- Value?: string;
156
+ Key?: string | undefined;
157
+ Value?: string | undefined;
156
158
  }
157
159
  export declare const Statistic: {
158
160
  readonly AVERAGE: "AVERAGE";
@@ -194,21 +196,21 @@ export declare const Unit: {
194
196
  export type Unit = (typeof Unit)[keyof typeof Unit];
195
197
  export interface CloudWatchAlarmDefinition {
196
198
  ComparisonOperator: ComparisonOperator | undefined;
197
- EvaluationPeriods?: number;
199
+ EvaluationPeriods?: number | undefined;
198
200
  MetricName: string | undefined;
199
- Namespace?: string;
201
+ Namespace?: string | undefined;
200
202
  Period: number | undefined;
201
- Statistic?: Statistic;
203
+ Statistic?: Statistic | undefined;
202
204
  Threshold: number | undefined;
203
- Unit?: Unit;
204
- Dimensions?: MetricDimension[];
205
+ Unit?: Unit | undefined;
206
+ Dimensions?: MetricDimension[] | undefined;
205
207
  }
206
208
  export interface ScalingTrigger {
207
209
  CloudWatchAlarmDefinition: CloudWatchAlarmDefinition | undefined;
208
210
  }
209
211
  export interface ScalingRule {
210
212
  Name: string | undefined;
211
- Description?: string;
213
+ Description?: string | undefined;
212
214
  Action: ScalingAction | undefined;
213
215
  Trigger: ScalingTrigger | undefined;
214
216
  }
@@ -224,9 +226,9 @@ export declare const InstanceRoleType: {
224
226
  export type InstanceRoleType =
225
227
  (typeof InstanceRoleType)[keyof typeof InstanceRoleType];
226
228
  export interface AddInstanceGroupsOutput {
227
- JobFlowId?: string;
228
- InstanceGroupIds?: string[];
229
- ClusterArn?: string;
229
+ JobFlowId?: string | undefined;
230
+ InstanceGroupIds?: string[] | undefined;
231
+ ClusterArn?: string | undefined;
230
232
  }
231
233
  export declare class InternalServerError extends __BaseException {
232
234
  readonly name: "InternalServerError";
@@ -236,31 +238,31 @@ export declare class InternalServerError extends __BaseException {
236
238
  );
237
239
  }
238
240
  export interface KeyValue {
239
- Key?: string;
240
- Value?: string;
241
+ Key?: string | undefined;
242
+ Value?: string | undefined;
241
243
  }
242
244
  export interface HadoopJarStepConfig {
243
- Properties?: KeyValue[];
245
+ Properties?: KeyValue[] | undefined;
244
246
  Jar: string | undefined;
245
- MainClass?: string;
246
- Args?: string[];
247
+ MainClass?: string | undefined;
248
+ Args?: string[] | undefined;
247
249
  }
248
250
  export interface StepConfig {
249
251
  Name: string | undefined;
250
- ActionOnFailure?: ActionOnFailure;
252
+ ActionOnFailure?: ActionOnFailure | undefined;
251
253
  HadoopJarStep: HadoopJarStepConfig | undefined;
252
254
  }
253
255
  export interface AddJobFlowStepsInput {
254
256
  JobFlowId: string | undefined;
255
257
  Steps: StepConfig[] | undefined;
256
- ExecutionRoleArn?: string;
258
+ ExecutionRoleArn?: string | undefined;
257
259
  }
258
260
  export interface AddJobFlowStepsOutput {
259
- StepIds?: string[];
261
+ StepIds?: string[] | undefined;
260
262
  }
261
263
  export interface Tag {
262
- Key?: string;
263
- Value?: string;
264
+ Key?: string | undefined;
265
+ Value?: string | undefined;
264
266
  }
265
267
  export interface AddTagsInput {
266
268
  ResourceId: string | undefined;
@@ -268,10 +270,10 @@ export interface AddTagsInput {
268
270
  }
269
271
  export interface AddTagsOutput {}
270
272
  export interface Application {
271
- Name?: string;
272
- Version?: string;
273
- Args?: string[];
274
- AdditionalInfo?: Record<string, string>;
273
+ Name?: string | undefined;
274
+ Version?: string | undefined;
275
+ Args?: string[] | undefined;
276
+ AdditionalInfo?: Record<string, string> | undefined;
275
277
  }
276
278
  export declare const AuthMode: {
277
279
  readonly IAM: "IAM";
@@ -296,24 +298,24 @@ export declare const AutoScalingPolicyStateChangeReasonCode: {
296
298
  export type AutoScalingPolicyStateChangeReasonCode =
297
299
  (typeof AutoScalingPolicyStateChangeReasonCode)[keyof typeof AutoScalingPolicyStateChangeReasonCode];
298
300
  export interface AutoScalingPolicyStateChangeReason {
299
- Code?: AutoScalingPolicyStateChangeReasonCode;
300
- Message?: string;
301
+ Code?: AutoScalingPolicyStateChangeReasonCode | undefined;
302
+ Message?: string | undefined;
301
303
  }
302
304
  export interface AutoScalingPolicyStatus {
303
- State?: AutoScalingPolicyState;
304
- StateChangeReason?: AutoScalingPolicyStateChangeReason;
305
+ State?: AutoScalingPolicyState | undefined;
306
+ StateChangeReason?: AutoScalingPolicyStateChangeReason | undefined;
305
307
  }
306
308
  export interface AutoScalingPolicyDescription {
307
- Status?: AutoScalingPolicyStatus;
308
- Constraints?: ScalingConstraints;
309
- Rules?: ScalingRule[];
309
+ Status?: AutoScalingPolicyStatus | undefined;
310
+ Constraints?: ScalingConstraints | undefined;
311
+ Rules?: ScalingRule[] | undefined;
310
312
  }
311
313
  export interface AutoTerminationPolicy {
312
- IdleTimeout?: number;
314
+ IdleTimeout?: number | undefined;
313
315
  }
314
316
  export interface PortRange {
315
317
  MinRange: number | undefined;
316
- MaxRange?: number;
318
+ MaxRange?: number | undefined;
317
319
  }
318
320
  export interface BlockPublicAccessConfigurationMetadata {
319
321
  CreationDateTime: Date | undefined;
@@ -321,14 +323,14 @@ export interface BlockPublicAccessConfigurationMetadata {
321
323
  }
322
324
  export interface ScriptBootstrapActionConfig {
323
325
  Path: string | undefined;
324
- Args?: string[];
326
+ Args?: string[] | undefined;
325
327
  }
326
328
  export interface BootstrapActionConfig {
327
329
  Name: string | undefined;
328
330
  ScriptBootstrapAction: ScriptBootstrapActionConfig | undefined;
329
331
  }
330
332
  export interface BootstrapActionDetail {
331
- BootstrapActionConfig?: BootstrapActionConfig;
333
+ BootstrapActionConfig?: BootstrapActionConfig | undefined;
332
334
  }
333
335
  export declare const StepCancellationOption: {
334
336
  readonly SEND_INTERRUPT: "SEND_INTERRUPT";
@@ -339,7 +341,7 @@ export type StepCancellationOption =
339
341
  export interface CancelStepsInput {
340
342
  ClusterId: string | undefined;
341
343
  StepIds: string[] | undefined;
342
- StepCancellationOption?: StepCancellationOption;
344
+ StepCancellationOption?: StepCancellationOption | undefined;
343
345
  }
344
346
  export declare const CancelStepsRequestStatus: {
345
347
  readonly FAILED: "FAILED";
@@ -348,25 +350,25 @@ export declare const CancelStepsRequestStatus: {
348
350
  export type CancelStepsRequestStatus =
349
351
  (typeof CancelStepsRequestStatus)[keyof typeof CancelStepsRequestStatus];
350
352
  export interface CancelStepsInfo {
351
- StepId?: string;
352
- Status?: CancelStepsRequestStatus;
353
- Reason?: string;
353
+ StepId?: string | undefined;
354
+ Status?: CancelStepsRequestStatus | undefined;
355
+ Reason?: string | undefined;
354
356
  }
355
357
  export interface CancelStepsOutput {
356
- CancelStepsInfoList?: CancelStepsInfo[];
358
+ CancelStepsInfoList?: CancelStepsInfo[] | undefined;
357
359
  }
358
360
  export interface Ec2InstanceAttributes {
359
- Ec2KeyName?: string;
360
- Ec2SubnetId?: string;
361
- RequestedEc2SubnetIds?: string[];
362
- Ec2AvailabilityZone?: string;
363
- RequestedEc2AvailabilityZones?: string[];
364
- IamInstanceProfile?: string;
365
- EmrManagedMasterSecurityGroup?: string;
366
- EmrManagedSlaveSecurityGroup?: string;
367
- ServiceAccessSecurityGroup?: string;
368
- AdditionalMasterSecurityGroups?: string[];
369
- AdditionalSlaveSecurityGroups?: string[];
361
+ Ec2KeyName?: string | undefined;
362
+ Ec2SubnetId?: string | undefined;
363
+ RequestedEc2SubnetIds?: string[] | undefined;
364
+ Ec2AvailabilityZone?: string | undefined;
365
+ RequestedEc2AvailabilityZones?: string[] | undefined;
366
+ IamInstanceProfile?: string | undefined;
367
+ EmrManagedMasterSecurityGroup?: string | undefined;
368
+ EmrManagedSlaveSecurityGroup?: string | undefined;
369
+ ServiceAccessSecurityGroup?: string | undefined;
370
+ AdditionalMasterSecurityGroups?: string[] | undefined;
371
+ AdditionalSlaveSecurityGroups?: string[] | undefined;
370
372
  }
371
373
  export declare const InstanceCollectionType: {
372
374
  readonly INSTANCE_FLEET: "INSTANCE_FLEET";
@@ -377,9 +379,9 @@ export type InstanceCollectionType =
377
379
  export interface KerberosAttributes {
378
380
  Realm: string | undefined;
379
381
  KdcAdminPassword: string | undefined;
380
- CrossRealmTrustPrincipalPassword?: string;
381
- ADDomainJoinUser?: string;
382
- ADDomainJoinPassword?: string;
382
+ CrossRealmTrustPrincipalPassword?: string | undefined;
383
+ ADDomainJoinUser?: string | undefined;
384
+ ADDomainJoinPassword?: string | undefined;
383
385
  }
384
386
  export declare const PlacementGroupStrategy: {
385
387
  readonly CLUSTER: "CLUSTER";
@@ -391,7 +393,7 @@ export type PlacementGroupStrategy =
391
393
  (typeof PlacementGroupStrategy)[keyof typeof PlacementGroupStrategy];
392
394
  export interface PlacementGroupConfig {
393
395
  InstanceRole: InstanceRoleType | undefined;
394
- PlacementStrategy?: PlacementGroupStrategy;
396
+ PlacementStrategy?: PlacementGroupStrategy | undefined;
395
397
  }
396
398
  export declare const RepoUpgradeOnBoot: {
397
399
  readonly NONE: "NONE";
@@ -406,9 +408,9 @@ export declare const ScaleDownBehavior: {
406
408
  export type ScaleDownBehavior =
407
409
  (typeof ScaleDownBehavior)[keyof typeof ScaleDownBehavior];
408
410
  export interface ErrorDetail {
409
- ErrorCode?: string;
410
- ErrorData?: Record<string, string>[];
411
- ErrorMessage?: string;
411
+ ErrorCode?: string | undefined;
412
+ ErrorData?: Record<string, string>[] | undefined;
413
+ ErrorMessage?: string | undefined;
412
414
  }
413
415
  export declare const ClusterState: {
414
416
  readonly BOOTSTRAPPING: "BOOTSTRAPPING";
@@ -433,32 +435,32 @@ export declare const ClusterStateChangeReasonCode: {
433
435
  export type ClusterStateChangeReasonCode =
434
436
  (typeof ClusterStateChangeReasonCode)[keyof typeof ClusterStateChangeReasonCode];
435
437
  export interface ClusterStateChangeReason {
436
- Code?: ClusterStateChangeReasonCode;
437
- Message?: string;
438
+ Code?: ClusterStateChangeReasonCode | undefined;
439
+ Message?: string | undefined;
438
440
  }
439
441
  export interface ClusterTimeline {
440
- CreationDateTime?: Date;
441
- ReadyDateTime?: Date;
442
- EndDateTime?: Date;
442
+ CreationDateTime?: Date | undefined;
443
+ ReadyDateTime?: Date | undefined;
444
+ EndDateTime?: Date | undefined;
443
445
  }
444
446
  export interface ClusterStatus {
445
- State?: ClusterState;
446
- StateChangeReason?: ClusterStateChangeReason;
447
- Timeline?: ClusterTimeline;
448
- ErrorDetails?: ErrorDetail[];
447
+ State?: ClusterState | undefined;
448
+ StateChangeReason?: ClusterStateChangeReason | undefined;
449
+ Timeline?: ClusterTimeline | undefined;
450
+ ErrorDetails?: ErrorDetail[] | undefined;
449
451
  }
450
452
  export interface ClusterSummary {
451
- Id?: string;
452
- Name?: string;
453
- Status?: ClusterStatus;
454
- NormalizedInstanceHours?: number;
455
- ClusterArn?: string;
456
- OutpostArn?: string;
453
+ Id?: string | undefined;
454
+ Name?: string | undefined;
455
+ Status?: ClusterStatus | undefined;
456
+ NormalizedInstanceHours?: number | undefined;
457
+ ClusterArn?: string | undefined;
458
+ OutpostArn?: string | undefined;
457
459
  }
458
460
  export interface Command {
459
- Name?: string;
460
- ScriptPath?: string;
461
- Args?: string[];
461
+ Name?: string | undefined;
462
+ ScriptPath?: string | undefined;
463
+ Args?: string[] | undefined;
462
464
  }
463
465
  export declare const ComputeLimitsUnitType: {
464
466
  readonly InstanceFleetUnits: "InstanceFleetUnits";
@@ -471,8 +473,8 @@ export interface ComputeLimits {
471
473
  UnitType: ComputeLimitsUnitType | undefined;
472
474
  MinimumCapacityUnits: number | undefined;
473
475
  MaximumCapacityUnits: number | undefined;
474
- MaximumOnDemandCapacityUnits?: number;
475
- MaximumCoreCapacityUnits?: number;
476
+ MaximumOnDemandCapacityUnits?: number | undefined;
477
+ MaximumCoreCapacityUnits?: number | undefined;
476
478
  }
477
479
  export interface CreateSecurityConfigurationInput {
478
480
  Name: string | undefined;
@@ -490,26 +492,26 @@ export type IdcUserAssignment =
490
492
  (typeof IdcUserAssignment)[keyof typeof IdcUserAssignment];
491
493
  export interface CreateStudioInput {
492
494
  Name: string | undefined;
493
- Description?: string;
495
+ Description?: string | undefined;
494
496
  AuthMode: AuthMode | undefined;
495
497
  VpcId: string | undefined;
496
498
  SubnetIds: string[] | undefined;
497
499
  ServiceRole: string | undefined;
498
- UserRole?: string;
500
+ UserRole?: string | undefined;
499
501
  WorkspaceSecurityGroupId: string | undefined;
500
502
  EngineSecurityGroupId: string | undefined;
501
503
  DefaultS3Location: string | undefined;
502
- IdpAuthUrl?: string;
503
- IdpRelayStateParameterName?: string;
504
- Tags?: Tag[];
505
- TrustedIdentityPropagationEnabled?: boolean;
506
- IdcUserAssignment?: IdcUserAssignment;
507
- IdcInstanceArn?: string;
508
- EncryptionKeyArn?: string;
504
+ IdpAuthUrl?: string | undefined;
505
+ IdpRelayStateParameterName?: string | undefined;
506
+ Tags?: Tag[] | undefined;
507
+ TrustedIdentityPropagationEnabled?: boolean | undefined;
508
+ IdcUserAssignment?: IdcUserAssignment | undefined;
509
+ IdcInstanceArn?: string | undefined;
510
+ EncryptionKeyArn?: string | undefined;
509
511
  }
510
512
  export interface CreateStudioOutput {
511
- StudioId?: string;
512
- Url?: string;
513
+ StudioId?: string | undefined;
514
+ Url?: string | undefined;
513
515
  }
514
516
  export declare const IdentityType: {
515
517
  readonly GROUP: "GROUP";
@@ -518,14 +520,14 @@ export declare const IdentityType: {
518
520
  export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
519
521
  export interface CreateStudioSessionMappingInput {
520
522
  StudioId: string | undefined;
521
- IdentityId?: string;
522
- IdentityName?: string;
523
+ IdentityId?: string | undefined;
524
+ IdentityName?: string | undefined;
523
525
  IdentityType: IdentityType | undefined;
524
526
  SessionPolicyArn: string | undefined;
525
527
  }
526
528
  export interface UsernamePassword {
527
- Username?: string;
528
- Password?: string;
529
+ Username?: string | undefined;
530
+ Password?: string | undefined;
529
531
  }
530
532
  export type Credentials =
531
533
  | Credentials.UsernamePasswordMember
@@ -554,8 +556,8 @@ export interface DeleteStudioInput {
554
556
  }
555
557
  export interface DeleteStudioSessionMappingInput {
556
558
  StudioId: string | undefined;
557
- IdentityId?: string;
558
- IdentityName?: string;
559
+ IdentityId?: string | undefined;
560
+ IdentityName?: string | undefined;
559
561
  IdentityType: IdentityType | undefined;
560
562
  }
561
563
  export interface DescribeClusterInput {
@@ -574,18 +576,18 @@ export declare const JobFlowExecutionState: {
574
576
  export type JobFlowExecutionState =
575
577
  (typeof JobFlowExecutionState)[keyof typeof JobFlowExecutionState];
576
578
  export interface DescribeJobFlowsInput {
577
- CreatedAfter?: Date;
578
- CreatedBefore?: Date;
579
- JobFlowIds?: string[];
580
- JobFlowStates?: JobFlowExecutionState[];
579
+ CreatedAfter?: Date | undefined;
580
+ CreatedBefore?: Date | undefined;
581
+ JobFlowIds?: string[] | undefined;
582
+ JobFlowStates?: JobFlowExecutionState[] | undefined;
581
583
  }
582
584
  export interface JobFlowExecutionStatusDetail {
583
585
  State: JobFlowExecutionState | undefined;
584
586
  CreationDateTime: Date | undefined;
585
- StartDateTime?: Date;
586
- ReadyDateTime?: Date;
587
- EndDateTime?: Date;
588
- LastStateChangeReason?: string;
587
+ StartDateTime?: Date | undefined;
588
+ ReadyDateTime?: Date | undefined;
589
+ EndDateTime?: Date | undefined;
590
+ LastStateChangeReason?: string | undefined;
589
591
  }
590
592
  export declare const InstanceGroupState: {
591
593
  readonly ARRESTED: "ARRESTED";
@@ -603,41 +605,41 @@ export declare const InstanceGroupState: {
603
605
  export type InstanceGroupState =
604
606
  (typeof InstanceGroupState)[keyof typeof InstanceGroupState];
605
607
  export interface InstanceGroupDetail {
606
- InstanceGroupId?: string;
607
- Name?: string;
608
+ InstanceGroupId?: string | undefined;
609
+ Name?: string | undefined;
608
610
  Market: MarketType | undefined;
609
611
  InstanceRole: InstanceRoleType | undefined;
610
- BidPrice?: string;
612
+ BidPrice?: string | undefined;
611
613
  InstanceType: string | undefined;
612
614
  InstanceRequestCount: number | undefined;
613
615
  InstanceRunningCount: number | undefined;
614
616
  State: InstanceGroupState | undefined;
615
- LastStateChangeReason?: string;
617
+ LastStateChangeReason?: string | undefined;
616
618
  CreationDateTime: Date | undefined;
617
- StartDateTime?: Date;
618
- ReadyDateTime?: Date;
619
- EndDateTime?: Date;
620
- CustomAmiId?: string;
619
+ StartDateTime?: Date | undefined;
620
+ ReadyDateTime?: Date | undefined;
621
+ EndDateTime?: Date | undefined;
622
+ CustomAmiId?: string | undefined;
621
623
  }
622
624
  export interface PlacementType {
623
- AvailabilityZone?: string;
624
- AvailabilityZones?: string[];
625
+ AvailabilityZone?: string | undefined;
626
+ AvailabilityZones?: string[] | undefined;
625
627
  }
626
628
  export interface JobFlowInstancesDetail {
627
629
  MasterInstanceType: string | undefined;
628
- MasterPublicDnsName?: string;
629
- MasterInstanceId?: string;
630
+ MasterPublicDnsName?: string | undefined;
631
+ MasterInstanceId?: string | undefined;
630
632
  SlaveInstanceType: string | undefined;
631
633
  InstanceCount: number | undefined;
632
- InstanceGroups?: InstanceGroupDetail[];
633
- NormalizedInstanceHours?: number;
634
- Ec2KeyName?: string;
635
- Ec2SubnetId?: string;
636
- Placement?: PlacementType;
637
- KeepJobFlowAliveWhenNoSteps?: boolean;
638
- TerminationProtected?: boolean;
639
- UnhealthyNodeReplacement?: boolean;
640
- HadoopVersion?: string;
634
+ InstanceGroups?: InstanceGroupDetail[] | undefined;
635
+ NormalizedInstanceHours?: number | undefined;
636
+ Ec2KeyName?: string | undefined;
637
+ Ec2SubnetId?: string | undefined;
638
+ Placement?: PlacementType | undefined;
639
+ KeepJobFlowAliveWhenNoSteps?: boolean | undefined;
640
+ TerminationProtected?: boolean | undefined;
641
+ UnhealthyNodeReplacement?: boolean | undefined;
642
+ HadoopVersion?: string | undefined;
641
643
  }
642
644
  export declare const StepExecutionState: {
643
645
  readonly CANCELLED: "CANCELLED";
@@ -653,9 +655,9 @@ export type StepExecutionState =
653
655
  export interface StepExecutionStatusDetail {
654
656
  State: StepExecutionState | undefined;
655
657
  CreationDateTime: Date | undefined;
656
- StartDateTime?: Date;
657
- EndDateTime?: Date;
658
- LastStateChangeReason?: string;
658
+ StartDateTime?: Date | undefined;
659
+ EndDateTime?: Date | undefined;
660
+ LastStateChangeReason?: string | undefined;
659
661
  }
660
662
  export interface StepDetail {
661
663
  StepConfig: StepConfig | undefined;
@@ -664,22 +666,22 @@ export interface StepDetail {
664
666
  export interface JobFlowDetail {
665
667
  JobFlowId: string | undefined;
666
668
  Name: string | undefined;
667
- LogUri?: string;
668
- LogEncryptionKmsKeyId?: string;
669
- AmiVersion?: string;
669
+ LogUri?: string | undefined;
670
+ LogEncryptionKmsKeyId?: string | undefined;
671
+ AmiVersion?: string | undefined;
670
672
  ExecutionStatusDetail: JobFlowExecutionStatusDetail | undefined;
671
673
  Instances: JobFlowInstancesDetail | undefined;
672
- Steps?: StepDetail[];
673
- BootstrapActions?: BootstrapActionDetail[];
674
- SupportedProducts?: string[];
675
- VisibleToAllUsers?: boolean;
676
- JobFlowRole?: string;
677
- ServiceRole?: string;
678
- AutoScalingRole?: string;
679
- ScaleDownBehavior?: ScaleDownBehavior;
674
+ Steps?: StepDetail[] | undefined;
675
+ BootstrapActions?: BootstrapActionDetail[] | undefined;
676
+ SupportedProducts?: string[] | undefined;
677
+ VisibleToAllUsers?: boolean | undefined;
678
+ JobFlowRole?: string | undefined;
679
+ ServiceRole?: string | undefined;
680
+ AutoScalingRole?: string | undefined;
681
+ ScaleDownBehavior?: ScaleDownBehavior | undefined;
680
682
  }
681
683
  export interface DescribeJobFlowsOutput {
682
- JobFlows?: JobFlowDetail[];
684
+ JobFlows?: JobFlowDetail[] | undefined;
683
685
  }
684
686
  export interface DescribeNotebookExecutionInput {
685
687
  NotebookExecutionId: string | undefined;
@@ -691,13 +693,13 @@ export type ExecutionEngineType =
691
693
  (typeof ExecutionEngineType)[keyof typeof ExecutionEngineType];
692
694
  export interface ExecutionEngineConfig {
693
695
  Id: string | undefined;
694
- Type?: ExecutionEngineType;
695
- MasterInstanceSecurityGroupId?: string;
696
- ExecutionRoleArn?: string;
696
+ Type?: ExecutionEngineType | undefined;
697
+ MasterInstanceSecurityGroupId?: string | undefined;
698
+ ExecutionRoleArn?: string | undefined;
697
699
  }
698
700
  export interface NotebookS3LocationForOutput {
699
- Bucket?: string;
700
- Key?: string;
701
+ Bucket?: string | undefined;
702
+ Key?: string | undefined;
701
703
  }
702
704
  export declare const OutputNotebookFormat: {
703
705
  readonly HTML: "HTML";
@@ -705,8 +707,8 @@ export declare const OutputNotebookFormat: {
705
707
  export type OutputNotebookFormat =
706
708
  (typeof OutputNotebookFormat)[keyof typeof OutputNotebookFormat];
707
709
  export interface OutputNotebookS3LocationForOutput {
708
- Bucket?: string;
709
- Key?: string;
710
+ Bucket?: string | undefined;
711
+ Key?: string | undefined;
710
712
  }
711
713
  export declare const NotebookExecutionStatus: {
712
714
  readonly FAILED: "FAILED";
@@ -723,67 +725,67 @@ export declare const NotebookExecutionStatus: {
723
725
  export type NotebookExecutionStatus =
724
726
  (typeof NotebookExecutionStatus)[keyof typeof NotebookExecutionStatus];
725
727
  export interface NotebookExecution {
726
- NotebookExecutionId?: string;
727
- EditorId?: string;
728
- ExecutionEngine?: ExecutionEngineConfig;
729
- NotebookExecutionName?: string;
730
- NotebookParams?: string;
731
- Status?: NotebookExecutionStatus;
732
- StartTime?: Date;
733
- EndTime?: Date;
734
- Arn?: string;
735
- OutputNotebookURI?: string;
736
- LastStateChangeReason?: string;
737
- NotebookInstanceSecurityGroupId?: string;
738
- Tags?: Tag[];
739
- NotebookS3Location?: NotebookS3LocationForOutput;
740
- OutputNotebookS3Location?: OutputNotebookS3LocationForOutput;
741
- OutputNotebookFormat?: OutputNotebookFormat;
742
- EnvironmentVariables?: Record<string, string>;
728
+ NotebookExecutionId?: string | undefined;
729
+ EditorId?: string | undefined;
730
+ ExecutionEngine?: ExecutionEngineConfig | undefined;
731
+ NotebookExecutionName?: string | undefined;
732
+ NotebookParams?: string | undefined;
733
+ Status?: NotebookExecutionStatus | undefined;
734
+ StartTime?: Date | undefined;
735
+ EndTime?: Date | undefined;
736
+ Arn?: string | undefined;
737
+ OutputNotebookURI?: string | undefined;
738
+ LastStateChangeReason?: string | undefined;
739
+ NotebookInstanceSecurityGroupId?: string | undefined;
740
+ Tags?: Tag[] | undefined;
741
+ NotebookS3Location?: NotebookS3LocationForOutput | undefined;
742
+ OutputNotebookS3Location?: OutputNotebookS3LocationForOutput | undefined;
743
+ OutputNotebookFormat?: OutputNotebookFormat | undefined;
744
+ EnvironmentVariables?: Record<string, string> | undefined;
743
745
  }
744
746
  export interface DescribeNotebookExecutionOutput {
745
- NotebookExecution?: NotebookExecution;
747
+ NotebookExecution?: NotebookExecution | undefined;
746
748
  }
747
749
  export interface DescribeReleaseLabelInput {
748
- ReleaseLabel?: string;
749
- NextToken?: string;
750
- MaxResults?: number;
750
+ ReleaseLabel?: string | undefined;
751
+ NextToken?: string | undefined;
752
+ MaxResults?: number | undefined;
751
753
  }
752
754
  export interface SimplifiedApplication {
753
- Name?: string;
754
- Version?: string;
755
+ Name?: string | undefined;
756
+ Version?: string | undefined;
755
757
  }
756
758
  export interface OSRelease {
757
- Label?: string;
759
+ Label?: string | undefined;
758
760
  }
759
761
  export interface DescribeReleaseLabelOutput {
760
- ReleaseLabel?: string;
761
- Applications?: SimplifiedApplication[];
762
- NextToken?: string;
763
- AvailableOSReleases?: OSRelease[];
762
+ ReleaseLabel?: string | undefined;
763
+ Applications?: SimplifiedApplication[] | undefined;
764
+ NextToken?: string | undefined;
765
+ AvailableOSReleases?: OSRelease[] | undefined;
764
766
  }
765
767
  export interface DescribeSecurityConfigurationInput {
766
768
  Name: string | undefined;
767
769
  }
768
770
  export interface DescribeSecurityConfigurationOutput {
769
- Name?: string;
770
- SecurityConfiguration?: string;
771
- CreationDateTime?: Date;
771
+ Name?: string | undefined;
772
+ SecurityConfiguration?: string | undefined;
773
+ CreationDateTime?: Date | undefined;
772
774
  }
773
775
  export interface DescribeStepInput {
774
776
  ClusterId: string | undefined;
775
777
  StepId: string | undefined;
776
778
  }
777
779
  export interface HadoopStepConfig {
778
- Jar?: string;
779
- Properties?: Record<string, string>;
780
- MainClass?: string;
781
- Args?: string[];
780
+ Jar?: string | undefined;
781
+ Properties?: Record<string, string> | undefined;
782
+ MainClass?: string | undefined;
783
+ Args?: string[] | undefined;
782
784
  }
783
785
  export interface FailureDetails {
784
- Reason?: string;
785
- Message?: string;
786
- LogFile?: string;
786
+ Reason?: string | undefined;
787
+ Message?: string | undefined;
788
+ LogFile?: string | undefined;
787
789
  }
788
790
  export declare const StepState: {
789
791
  readonly CANCELLED: "CANCELLED";
@@ -801,131 +803,131 @@ export declare const StepStateChangeReasonCode: {
801
803
  export type StepStateChangeReasonCode =
802
804
  (typeof StepStateChangeReasonCode)[keyof typeof StepStateChangeReasonCode];
803
805
  export interface StepStateChangeReason {
804
- Code?: StepStateChangeReasonCode;
805
- Message?: string;
806
+ Code?: StepStateChangeReasonCode | undefined;
807
+ Message?: string | undefined;
806
808
  }
807
809
  export interface StepTimeline {
808
- CreationDateTime?: Date;
809
- StartDateTime?: Date;
810
- EndDateTime?: Date;
810
+ CreationDateTime?: Date | undefined;
811
+ StartDateTime?: Date | undefined;
812
+ EndDateTime?: Date | undefined;
811
813
  }
812
814
  export interface StepStatus {
813
- State?: StepState;
814
- StateChangeReason?: StepStateChangeReason;
815
- FailureDetails?: FailureDetails;
816
- Timeline?: StepTimeline;
815
+ State?: StepState | undefined;
816
+ StateChangeReason?: StepStateChangeReason | undefined;
817
+ FailureDetails?: FailureDetails | undefined;
818
+ Timeline?: StepTimeline | undefined;
817
819
  }
818
820
  export interface Step {
819
- Id?: string;
820
- Name?: string;
821
- Config?: HadoopStepConfig;
822
- ActionOnFailure?: ActionOnFailure;
823
- Status?: StepStatus;
824
- ExecutionRoleArn?: string;
821
+ Id?: string | undefined;
822
+ Name?: string | undefined;
823
+ Config?: HadoopStepConfig | undefined;
824
+ ActionOnFailure?: ActionOnFailure | undefined;
825
+ Status?: StepStatus | undefined;
826
+ ExecutionRoleArn?: string | undefined;
825
827
  }
826
828
  export interface DescribeStepOutput {
827
- Step?: Step;
829
+ Step?: Step | undefined;
828
830
  }
829
831
  export interface DescribeStudioInput {
830
832
  StudioId: string | undefined;
831
833
  }
832
834
  export interface Studio {
833
- StudioId?: string;
834
- StudioArn?: string;
835
- Name?: string;
836
- Description?: string;
837
- AuthMode?: AuthMode;
838
- VpcId?: string;
839
- SubnetIds?: string[];
840
- ServiceRole?: string;
841
- UserRole?: string;
842
- WorkspaceSecurityGroupId?: string;
843
- EngineSecurityGroupId?: string;
844
- Url?: string;
845
- CreationTime?: Date;
846
- DefaultS3Location?: string;
847
- IdpAuthUrl?: string;
848
- IdpRelayStateParameterName?: string;
849
- Tags?: Tag[];
850
- IdcInstanceArn?: string;
851
- TrustedIdentityPropagationEnabled?: boolean;
852
- IdcUserAssignment?: IdcUserAssignment;
853
- EncryptionKeyArn?: string;
835
+ StudioId?: string | undefined;
836
+ StudioArn?: string | undefined;
837
+ Name?: string | undefined;
838
+ Description?: string | undefined;
839
+ AuthMode?: AuthMode | undefined;
840
+ VpcId?: string | undefined;
841
+ SubnetIds?: string[] | undefined;
842
+ ServiceRole?: string | undefined;
843
+ UserRole?: string | undefined;
844
+ WorkspaceSecurityGroupId?: string | undefined;
845
+ EngineSecurityGroupId?: string | undefined;
846
+ Url?: string | undefined;
847
+ CreationTime?: Date | undefined;
848
+ DefaultS3Location?: string | undefined;
849
+ IdpAuthUrl?: string | undefined;
850
+ IdpRelayStateParameterName?: string | undefined;
851
+ Tags?: Tag[] | undefined;
852
+ IdcInstanceArn?: string | undefined;
853
+ TrustedIdentityPropagationEnabled?: boolean | undefined;
854
+ IdcUserAssignment?: IdcUserAssignment | undefined;
855
+ EncryptionKeyArn?: string | undefined;
854
856
  }
855
857
  export interface DescribeStudioOutput {
856
- Studio?: Studio;
858
+ Studio?: Studio | undefined;
857
859
  }
858
860
  export interface EbsBlockDevice {
859
- VolumeSpecification?: VolumeSpecification;
860
- Device?: string;
861
+ VolumeSpecification?: VolumeSpecification | undefined;
862
+ Device?: string | undefined;
861
863
  }
862
864
  export interface EbsVolume {
863
- Device?: string;
864
- VolumeId?: string;
865
+ Device?: string | undefined;
866
+ VolumeId?: string | undefined;
865
867
  }
866
868
  export interface GetAutoTerminationPolicyInput {
867
869
  ClusterId: string | undefined;
868
870
  }
869
871
  export interface GetAutoTerminationPolicyOutput {
870
- AutoTerminationPolicy?: AutoTerminationPolicy;
872
+ AutoTerminationPolicy?: AutoTerminationPolicy | undefined;
871
873
  }
872
874
  export interface GetBlockPublicAccessConfigurationInput {}
873
875
  export interface GetClusterSessionCredentialsInput {
874
876
  ClusterId: string | undefined;
875
- ExecutionRoleArn?: string;
877
+ ExecutionRoleArn?: string | undefined;
876
878
  }
877
879
  export interface GetClusterSessionCredentialsOutput {
878
- Credentials?: Credentials;
879
- ExpiresAt?: Date;
880
+ Credentials?: Credentials | undefined;
881
+ ExpiresAt?: Date | undefined;
880
882
  }
881
883
  export interface GetManagedScalingPolicyInput {
882
884
  ClusterId: string | undefined;
883
885
  }
884
886
  export interface ManagedScalingPolicy {
885
- ComputeLimits?: ComputeLimits;
887
+ ComputeLimits?: ComputeLimits | undefined;
886
888
  }
887
889
  export interface GetManagedScalingPolicyOutput {
888
- ManagedScalingPolicy?: ManagedScalingPolicy;
890
+ ManagedScalingPolicy?: ManagedScalingPolicy | undefined;
889
891
  }
890
892
  export interface GetStudioSessionMappingInput {
891
893
  StudioId: string | undefined;
892
- IdentityId?: string;
893
- IdentityName?: string;
894
+ IdentityId?: string | undefined;
895
+ IdentityName?: string | undefined;
894
896
  IdentityType: IdentityType | undefined;
895
897
  }
896
898
  export interface SessionMappingDetail {
897
- StudioId?: string;
898
- IdentityId?: string;
899
- IdentityName?: string;
900
- IdentityType?: IdentityType;
901
- SessionPolicyArn?: string;
902
- CreationTime?: Date;
903
- LastModifiedTime?: Date;
899
+ StudioId?: string | undefined;
900
+ IdentityId?: string | undefined;
901
+ IdentityName?: string | undefined;
902
+ IdentityType?: IdentityType | undefined;
903
+ SessionPolicyArn?: string | undefined;
904
+ CreationTime?: Date | undefined;
905
+ LastModifiedTime?: Date | undefined;
904
906
  }
905
907
  export interface GetStudioSessionMappingOutput {
906
- SessionMapping?: SessionMappingDetail;
908
+ SessionMapping?: SessionMappingDetail | undefined;
907
909
  }
908
910
  export interface ListBootstrapActionsInput {
909
911
  ClusterId: string | undefined;
910
- Marker?: string;
912
+ Marker?: string | undefined;
911
913
  }
912
914
  export interface ListBootstrapActionsOutput {
913
- BootstrapActions?: Command[];
914
- Marker?: string;
915
+ BootstrapActions?: Command[] | undefined;
916
+ Marker?: string | undefined;
915
917
  }
916
918
  export interface ListClustersInput {
917
- CreatedAfter?: Date;
918
- CreatedBefore?: Date;
919
- ClusterStates?: ClusterState[];
920
- Marker?: string;
919
+ CreatedAfter?: Date | undefined;
920
+ CreatedBefore?: Date | undefined;
921
+ ClusterStates?: ClusterState[] | undefined;
922
+ Marker?: string | undefined;
921
923
  }
922
924
  export interface ListClustersOutput {
923
- Clusters?: ClusterSummary[];
924
- Marker?: string;
925
+ Clusters?: ClusterSummary[] | undefined;
926
+ Marker?: string | undefined;
925
927
  }
926
928
  export interface ListInstanceFleetsInput {
927
929
  ClusterId: string | undefined;
928
- Marker?: string;
930
+ Marker?: string | undefined;
929
931
  }
930
932
  export declare const InstanceFleetState: {
931
933
  readonly BOOTSTRAPPING: "BOOTSTRAPPING";
@@ -947,22 +949,22 @@ export declare const InstanceFleetStateChangeReasonCode: {
947
949
  export type InstanceFleetStateChangeReasonCode =
948
950
  (typeof InstanceFleetStateChangeReasonCode)[keyof typeof InstanceFleetStateChangeReasonCode];
949
951
  export interface InstanceFleetStateChangeReason {
950
- Code?: InstanceFleetStateChangeReasonCode;
951
- Message?: string;
952
+ Code?: InstanceFleetStateChangeReasonCode | undefined;
953
+ Message?: string | undefined;
952
954
  }
953
955
  export interface InstanceFleetTimeline {
954
- CreationDateTime?: Date;
955
- ReadyDateTime?: Date;
956
- EndDateTime?: Date;
956
+ CreationDateTime?: Date | undefined;
957
+ ReadyDateTime?: Date | undefined;
958
+ EndDateTime?: Date | undefined;
957
959
  }
958
960
  export interface InstanceFleetStatus {
959
- State?: InstanceFleetState;
960
- StateChangeReason?: InstanceFleetStateChangeReason;
961
- Timeline?: InstanceFleetTimeline;
961
+ State?: InstanceFleetState | undefined;
962
+ StateChangeReason?: InstanceFleetStateChangeReason | undefined;
963
+ Timeline?: InstanceFleetTimeline | undefined;
962
964
  }
963
965
  export interface ListInstanceGroupsInput {
964
966
  ClusterId: string | undefined;
965
- Marker?: string;
967
+ Marker?: string | undefined;
966
968
  }
967
969
  export declare const InstanceGroupType: {
968
970
  readonly CORE: "CORE";
@@ -972,13 +974,13 @@ export declare const InstanceGroupType: {
972
974
  export type InstanceGroupType =
973
975
  (typeof InstanceGroupType)[keyof typeof InstanceGroupType];
974
976
  export interface InstanceResizePolicy {
975
- InstancesToTerminate?: string[];
976
- InstancesToProtect?: string[];
977
- InstanceTerminationTimeout?: number;
977
+ InstancesToTerminate?: string[] | undefined;
978
+ InstancesToProtect?: string[] | undefined;
979
+ InstanceTerminationTimeout?: number | undefined;
978
980
  }
979
981
  export interface ShrinkPolicy {
980
- DecommissionTimeout?: number;
981
- InstanceResizePolicy?: InstanceResizePolicy;
982
+ DecommissionTimeout?: number | undefined;
983
+ InstanceResizePolicy?: InstanceResizePolicy | undefined;
982
984
  }
983
985
  export declare const InstanceGroupStateChangeReasonCode: {
984
986
  readonly CLUSTER_TERMINATED: "CLUSTER_TERMINATED";
@@ -989,18 +991,18 @@ export declare const InstanceGroupStateChangeReasonCode: {
989
991
  export type InstanceGroupStateChangeReasonCode =
990
992
  (typeof InstanceGroupStateChangeReasonCode)[keyof typeof InstanceGroupStateChangeReasonCode];
991
993
  export interface InstanceGroupStateChangeReason {
992
- Code?: InstanceGroupStateChangeReasonCode;
993
- Message?: string;
994
+ Code?: InstanceGroupStateChangeReasonCode | undefined;
995
+ Message?: string | undefined;
994
996
  }
995
997
  export interface InstanceGroupTimeline {
996
- CreationDateTime?: Date;
997
- ReadyDateTime?: Date;
998
- EndDateTime?: Date;
998
+ CreationDateTime?: Date | undefined;
999
+ ReadyDateTime?: Date | undefined;
1000
+ EndDateTime?: Date | undefined;
999
1001
  }
1000
1002
  export interface InstanceGroupStatus {
1001
- State?: InstanceGroupState;
1002
- StateChangeReason?: InstanceGroupStateChangeReason;
1003
- Timeline?: InstanceGroupTimeline;
1003
+ State?: InstanceGroupState | undefined;
1004
+ StateChangeReason?: InstanceGroupStateChangeReason | undefined;
1005
+ Timeline?: InstanceGroupTimeline | undefined;
1004
1006
  }
1005
1007
  export declare const InstanceState: {
1006
1008
  readonly AWAITING_FULFILLMENT: "AWAITING_FULFILLMENT";
@@ -1012,12 +1014,12 @@ export declare const InstanceState: {
1012
1014
  export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
1013
1015
  export interface ListInstancesInput {
1014
1016
  ClusterId: string | undefined;
1015
- InstanceGroupId?: string;
1016
- InstanceGroupTypes?: InstanceGroupType[];
1017
- InstanceFleetId?: string;
1018
- InstanceFleetType?: InstanceFleetType;
1019
- InstanceStates?: InstanceState[];
1020
- Marker?: string;
1017
+ InstanceGroupId?: string | undefined;
1018
+ InstanceGroupTypes?: InstanceGroupType[] | undefined;
1019
+ InstanceFleetId?: string | undefined;
1020
+ InstanceFleetType?: InstanceFleetType | undefined;
1021
+ InstanceStates?: InstanceState[] | undefined;
1022
+ Marker?: string | undefined;
1021
1023
  }
1022
1024
  export declare const InstanceStateChangeReasonCode: {
1023
1025
  readonly BOOTSTRAP_FAILURE: "BOOTSTRAP_FAILURE";
@@ -1029,160 +1031,160 @@ export declare const InstanceStateChangeReasonCode: {
1029
1031
  export type InstanceStateChangeReasonCode =
1030
1032
  (typeof InstanceStateChangeReasonCode)[keyof typeof InstanceStateChangeReasonCode];
1031
1033
  export interface InstanceStateChangeReason {
1032
- Code?: InstanceStateChangeReasonCode;
1033
- Message?: string;
1034
+ Code?: InstanceStateChangeReasonCode | undefined;
1035
+ Message?: string | undefined;
1034
1036
  }
1035
1037
  export interface InstanceTimeline {
1036
- CreationDateTime?: Date;
1037
- ReadyDateTime?: Date;
1038
- EndDateTime?: Date;
1038
+ CreationDateTime?: Date | undefined;
1039
+ ReadyDateTime?: Date | undefined;
1040
+ EndDateTime?: Date | undefined;
1039
1041
  }
1040
1042
  export interface InstanceStatus {
1041
- State?: InstanceState;
1042
- StateChangeReason?: InstanceStateChangeReason;
1043
- Timeline?: InstanceTimeline;
1043
+ State?: InstanceState | undefined;
1044
+ StateChangeReason?: InstanceStateChangeReason | undefined;
1045
+ Timeline?: InstanceTimeline | undefined;
1044
1046
  }
1045
1047
  export interface Instance {
1046
- Id?: string;
1047
- Ec2InstanceId?: string;
1048
- PublicDnsName?: string;
1049
- PublicIpAddress?: string;
1050
- PrivateDnsName?: string;
1051
- PrivateIpAddress?: string;
1052
- Status?: InstanceStatus;
1053
- InstanceGroupId?: string;
1054
- InstanceFleetId?: string;
1055
- Market?: MarketType;
1056
- InstanceType?: string;
1057
- EbsVolumes?: EbsVolume[];
1048
+ Id?: string | undefined;
1049
+ Ec2InstanceId?: string | undefined;
1050
+ PublicDnsName?: string | undefined;
1051
+ PublicIpAddress?: string | undefined;
1052
+ PrivateDnsName?: string | undefined;
1053
+ PrivateIpAddress?: string | undefined;
1054
+ Status?: InstanceStatus | undefined;
1055
+ InstanceGroupId?: string | undefined;
1056
+ InstanceFleetId?: string | undefined;
1057
+ Market?: MarketType | undefined;
1058
+ InstanceType?: string | undefined;
1059
+ EbsVolumes?: EbsVolume[] | undefined;
1058
1060
  }
1059
1061
  export interface ListInstancesOutput {
1060
- Instances?: Instance[];
1061
- Marker?: string;
1062
+ Instances?: Instance[] | undefined;
1063
+ Marker?: string | undefined;
1062
1064
  }
1063
1065
  export interface ListNotebookExecutionsInput {
1064
- EditorId?: string;
1065
- Status?: NotebookExecutionStatus;
1066
- From?: Date;
1067
- To?: Date;
1068
- Marker?: string;
1069
- ExecutionEngineId?: string;
1066
+ EditorId?: string | undefined;
1067
+ Status?: NotebookExecutionStatus | undefined;
1068
+ From?: Date | undefined;
1069
+ To?: Date | undefined;
1070
+ Marker?: string | undefined;
1071
+ ExecutionEngineId?: string | undefined;
1070
1072
  }
1071
1073
  export interface NotebookExecutionSummary {
1072
- NotebookExecutionId?: string;
1073
- EditorId?: string;
1074
- NotebookExecutionName?: string;
1075
- Status?: NotebookExecutionStatus;
1076
- StartTime?: Date;
1077
- EndTime?: Date;
1078
- NotebookS3Location?: NotebookS3LocationForOutput;
1079
- ExecutionEngineId?: string;
1074
+ NotebookExecutionId?: string | undefined;
1075
+ EditorId?: string | undefined;
1076
+ NotebookExecutionName?: string | undefined;
1077
+ Status?: NotebookExecutionStatus | undefined;
1078
+ StartTime?: Date | undefined;
1079
+ EndTime?: Date | undefined;
1080
+ NotebookS3Location?: NotebookS3LocationForOutput | undefined;
1081
+ ExecutionEngineId?: string | undefined;
1080
1082
  }
1081
1083
  export interface ListNotebookExecutionsOutput {
1082
- NotebookExecutions?: NotebookExecutionSummary[];
1083
- Marker?: string;
1084
+ NotebookExecutions?: NotebookExecutionSummary[] | undefined;
1085
+ Marker?: string | undefined;
1084
1086
  }
1085
1087
  export interface ReleaseLabelFilter {
1086
- Prefix?: string;
1087
- Application?: string;
1088
+ Prefix?: string | undefined;
1089
+ Application?: string | undefined;
1088
1090
  }
1089
1091
  export interface ListReleaseLabelsInput {
1090
- Filters?: ReleaseLabelFilter;
1091
- NextToken?: string;
1092
- MaxResults?: number;
1092
+ Filters?: ReleaseLabelFilter | undefined;
1093
+ NextToken?: string | undefined;
1094
+ MaxResults?: number | undefined;
1093
1095
  }
1094
1096
  export interface ListReleaseLabelsOutput {
1095
- ReleaseLabels?: string[];
1096
- NextToken?: string;
1097
+ ReleaseLabels?: string[] | undefined;
1098
+ NextToken?: string | undefined;
1097
1099
  }
1098
1100
  export interface ListSecurityConfigurationsInput {
1099
- Marker?: string;
1101
+ Marker?: string | undefined;
1100
1102
  }
1101
1103
  export interface SecurityConfigurationSummary {
1102
- Name?: string;
1103
- CreationDateTime?: Date;
1104
+ Name?: string | undefined;
1105
+ CreationDateTime?: Date | undefined;
1104
1106
  }
1105
1107
  export interface ListSecurityConfigurationsOutput {
1106
- SecurityConfigurations?: SecurityConfigurationSummary[];
1107
- Marker?: string;
1108
+ SecurityConfigurations?: SecurityConfigurationSummary[] | undefined;
1109
+ Marker?: string | undefined;
1108
1110
  }
1109
1111
  export interface ListStepsInput {
1110
1112
  ClusterId: string | undefined;
1111
- StepStates?: StepState[];
1112
- StepIds?: string[];
1113
- Marker?: string;
1113
+ StepStates?: StepState[] | undefined;
1114
+ StepIds?: string[] | undefined;
1115
+ Marker?: string | undefined;
1114
1116
  }
1115
1117
  export interface StepSummary {
1116
- Id?: string;
1117
- Name?: string;
1118
- Config?: HadoopStepConfig;
1119
- ActionOnFailure?: ActionOnFailure;
1120
- Status?: StepStatus;
1118
+ Id?: string | undefined;
1119
+ Name?: string | undefined;
1120
+ Config?: HadoopStepConfig | undefined;
1121
+ ActionOnFailure?: ActionOnFailure | undefined;
1122
+ Status?: StepStatus | undefined;
1121
1123
  }
1122
1124
  export interface ListStepsOutput {
1123
- Steps?: StepSummary[];
1124
- Marker?: string;
1125
+ Steps?: StepSummary[] | undefined;
1126
+ Marker?: string | undefined;
1125
1127
  }
1126
1128
  export interface ListStudiosInput {
1127
- Marker?: string;
1129
+ Marker?: string | undefined;
1128
1130
  }
1129
1131
  export interface StudioSummary {
1130
- StudioId?: string;
1131
- Name?: string;
1132
- VpcId?: string;
1133
- Description?: string;
1134
- Url?: string;
1135
- AuthMode?: AuthMode;
1136
- CreationTime?: Date;
1132
+ StudioId?: string | undefined;
1133
+ Name?: string | undefined;
1134
+ VpcId?: string | undefined;
1135
+ Description?: string | undefined;
1136
+ Url?: string | undefined;
1137
+ AuthMode?: AuthMode | undefined;
1138
+ CreationTime?: Date | undefined;
1137
1139
  }
1138
1140
  export interface ListStudiosOutput {
1139
- Studios?: StudioSummary[];
1140
- Marker?: string;
1141
+ Studios?: StudioSummary[] | undefined;
1142
+ Marker?: string | undefined;
1141
1143
  }
1142
1144
  export interface ListStudioSessionMappingsInput {
1143
- StudioId?: string;
1144
- IdentityType?: IdentityType;
1145
- Marker?: string;
1145
+ StudioId?: string | undefined;
1146
+ IdentityType?: IdentityType | undefined;
1147
+ Marker?: string | undefined;
1146
1148
  }
1147
1149
  export interface SessionMappingSummary {
1148
- StudioId?: string;
1149
- IdentityId?: string;
1150
- IdentityName?: string;
1151
- IdentityType?: IdentityType;
1152
- SessionPolicyArn?: string;
1153
- CreationTime?: Date;
1150
+ StudioId?: string | undefined;
1151
+ IdentityId?: string | undefined;
1152
+ IdentityName?: string | undefined;
1153
+ IdentityType?: IdentityType | undefined;
1154
+ SessionPolicyArn?: string | undefined;
1155
+ CreationTime?: Date | undefined;
1154
1156
  }
1155
1157
  export interface ListStudioSessionMappingsOutput {
1156
- SessionMappings?: SessionMappingSummary[];
1157
- Marker?: string;
1158
+ SessionMappings?: SessionMappingSummary[] | undefined;
1159
+ Marker?: string | undefined;
1158
1160
  }
1159
1161
  export interface ListSupportedInstanceTypesInput {
1160
1162
  ReleaseLabel: string | undefined;
1161
- Marker?: string;
1163
+ Marker?: string | undefined;
1162
1164
  }
1163
1165
  export interface SupportedInstanceType {
1164
- Type?: string;
1165
- MemoryGB?: number;
1166
- StorageGB?: number;
1167
- VCPU?: number;
1168
- Is64BitsOnly?: boolean;
1169
- InstanceFamilyId?: string;
1170
- EbsOptimizedAvailable?: boolean;
1171
- EbsOptimizedByDefault?: boolean;
1172
- NumberOfDisks?: number;
1173
- EbsStorageOnly?: boolean;
1174
- Architecture?: string;
1166
+ Type?: string | undefined;
1167
+ MemoryGB?: number | undefined;
1168
+ StorageGB?: number | undefined;
1169
+ VCPU?: number | undefined;
1170
+ Is64BitsOnly?: boolean | undefined;
1171
+ InstanceFamilyId?: string | undefined;
1172
+ EbsOptimizedAvailable?: boolean | undefined;
1173
+ EbsOptimizedByDefault?: boolean | undefined;
1174
+ NumberOfDisks?: number | undefined;
1175
+ EbsStorageOnly?: boolean | undefined;
1176
+ Architecture?: string | undefined;
1175
1177
  }
1176
1178
  export interface ListSupportedInstanceTypesOutput {
1177
- SupportedInstanceTypes?: SupportedInstanceType[];
1178
- Marker?: string;
1179
+ SupportedInstanceTypes?: SupportedInstanceType[] | undefined;
1180
+ Marker?: string | undefined;
1179
1181
  }
1180
1182
  export interface ModifyClusterInput {
1181
1183
  ClusterId: string | undefined;
1182
- StepConcurrencyLevel?: number;
1184
+ StepConcurrencyLevel?: number | undefined;
1183
1185
  }
1184
1186
  export interface ModifyClusterOutput {
1185
- StepConcurrencyLevel?: number;
1187
+ StepConcurrencyLevel?: number | undefined;
1186
1188
  }
1187
1189
  export declare const ReconfigurationType: {
1188
1190
  readonly MERGE: "MERGE";
@@ -1196,14 +1198,14 @@ export interface PutAutoScalingPolicyInput {
1196
1198
  AutoScalingPolicy: AutoScalingPolicy | undefined;
1197
1199
  }
1198
1200
  export interface PutAutoScalingPolicyOutput {
1199
- ClusterId?: string;
1200
- InstanceGroupId?: string;
1201
- AutoScalingPolicy?: AutoScalingPolicyDescription;
1202
- ClusterArn?: string;
1201
+ ClusterId?: string | undefined;
1202
+ InstanceGroupId?: string | undefined;
1203
+ AutoScalingPolicy?: AutoScalingPolicyDescription | undefined;
1204
+ ClusterArn?: string | undefined;
1203
1205
  }
1204
1206
  export interface PutAutoTerminationPolicyInput {
1205
1207
  ClusterId: string | undefined;
1206
- AutoTerminationPolicy?: AutoTerminationPolicy;
1208
+ AutoTerminationPolicy?: AutoTerminationPolicy | undefined;
1207
1209
  }
1208
1210
  export interface PutAutoTerminationPolicyOutput {}
1209
1211
  export interface PutBlockPublicAccessConfigurationOutput {}
@@ -1231,12 +1233,12 @@ export interface RemoveTagsInput {
1231
1233
  }
1232
1234
  export interface RemoveTagsOutput {}
1233
1235
  export interface SupportedProductConfig {
1234
- Name?: string;
1235
- Args?: string[];
1236
+ Name?: string | undefined;
1237
+ Args?: string[] | undefined;
1236
1238
  }
1237
1239
  export interface RunJobFlowOutput {
1238
- JobFlowId?: string;
1239
- ClusterArn?: string;
1240
+ JobFlowId?: string | undefined;
1241
+ ClusterArn?: string | undefined;
1240
1242
  }
1241
1243
  export interface SetKeepJobFlowAliveWhenNoStepsInput {
1242
1244
  JobFlowIds: string[] | undefined;
@@ -1255,29 +1257,29 @@ export interface SetVisibleToAllUsersInput {
1255
1257
  VisibleToAllUsers: boolean | undefined;
1256
1258
  }
1257
1259
  export interface NotebookS3LocationFromInput {
1258
- Bucket?: string;
1259
- Key?: string;
1260
+ Bucket?: string | undefined;
1261
+ Key?: string | undefined;
1260
1262
  }
1261
1263
  export interface OutputNotebookS3LocationFromInput {
1262
- Bucket?: string;
1263
- Key?: string;
1264
+ Bucket?: string | undefined;
1265
+ Key?: string | undefined;
1264
1266
  }
1265
1267
  export interface StartNotebookExecutionInput {
1266
- EditorId?: string;
1267
- RelativePath?: string;
1268
- NotebookExecutionName?: string;
1269
- NotebookParams?: string;
1268
+ EditorId?: string | undefined;
1269
+ RelativePath?: string | undefined;
1270
+ NotebookExecutionName?: string | undefined;
1271
+ NotebookParams?: string | undefined;
1270
1272
  ExecutionEngine: ExecutionEngineConfig | undefined;
1271
1273
  ServiceRole: string | undefined;
1272
- NotebookInstanceSecurityGroupId?: string;
1273
- Tags?: Tag[];
1274
- NotebookS3Location?: NotebookS3LocationFromInput;
1275
- OutputNotebookS3Location?: OutputNotebookS3LocationFromInput;
1276
- OutputNotebookFormat?: OutputNotebookFormat;
1277
- EnvironmentVariables?: Record<string, string>;
1274
+ NotebookInstanceSecurityGroupId?: string | undefined;
1275
+ Tags?: Tag[] | undefined;
1276
+ NotebookS3Location?: NotebookS3LocationFromInput | undefined;
1277
+ OutputNotebookS3Location?: OutputNotebookS3LocationFromInput | undefined;
1278
+ OutputNotebookFormat?: OutputNotebookFormat | undefined;
1279
+ EnvironmentVariables?: Record<string, string> | undefined;
1278
1280
  }
1279
1281
  export interface StartNotebookExecutionOutput {
1280
- NotebookExecutionId?: string;
1282
+ NotebookExecutionId?: string | undefined;
1281
1283
  }
1282
1284
  export interface StopNotebookExecutionInput {
1283
1285
  NotebookExecutionId: string | undefined;
@@ -1287,110 +1289,110 @@ export interface TerminateJobFlowsInput {
1287
1289
  }
1288
1290
  export interface UpdateStudioInput {
1289
1291
  StudioId: string | undefined;
1290
- Name?: string;
1291
- Description?: string;
1292
- SubnetIds?: string[];
1293
- DefaultS3Location?: string;
1294
- EncryptionKeyArn?: string;
1292
+ Name?: string | undefined;
1293
+ Description?: string | undefined;
1294
+ SubnetIds?: string[] | undefined;
1295
+ DefaultS3Location?: string | undefined;
1296
+ EncryptionKeyArn?: string | undefined;
1295
1297
  }
1296
1298
  export interface UpdateStudioSessionMappingInput {
1297
1299
  StudioId: string | undefined;
1298
- IdentityId?: string;
1299
- IdentityName?: string;
1300
+ IdentityId?: string | undefined;
1301
+ IdentityName?: string | undefined;
1300
1302
  IdentityType: IdentityType | undefined;
1301
1303
  SessionPolicyArn: string | undefined;
1302
1304
  }
1303
1305
  export interface Configuration {
1304
- Classification?: string;
1305
- Configurations?: Configuration[];
1306
- Properties?: Record<string, string>;
1306
+ Classification?: string | undefined;
1307
+ Configurations?: Configuration[] | undefined;
1308
+ Properties?: Record<string, string> | undefined;
1307
1309
  }
1308
1310
  export interface BlockPublicAccessConfiguration {
1309
1311
  BlockPublicSecurityGroupRules: boolean | undefined;
1310
- PermittedPublicSecurityGroupRuleRanges?: PortRange[];
1311
- Classification?: string;
1312
- Configurations?: Configuration[];
1313
- Properties?: Record<string, string>;
1312
+ PermittedPublicSecurityGroupRuleRanges?: PortRange[] | undefined;
1313
+ Classification?: string | undefined;
1314
+ Configurations?: Configuration[] | undefined;
1315
+ Properties?: Record<string, string> | undefined;
1314
1316
  }
1315
1317
  export interface Cluster {
1316
- Id?: string;
1317
- Name?: string;
1318
- Status?: ClusterStatus;
1319
- Ec2InstanceAttributes?: Ec2InstanceAttributes;
1320
- InstanceCollectionType?: InstanceCollectionType;
1321
- LogUri?: string;
1322
- LogEncryptionKmsKeyId?: string;
1323
- RequestedAmiVersion?: string;
1324
- RunningAmiVersion?: string;
1325
- ReleaseLabel?: string;
1326
- AutoTerminate?: boolean;
1327
- TerminationProtected?: boolean;
1328
- UnhealthyNodeReplacement?: boolean;
1329
- VisibleToAllUsers?: boolean;
1330
- Applications?: Application[];
1331
- Tags?: Tag[];
1332
- ServiceRole?: string;
1333
- NormalizedInstanceHours?: number;
1334
- MasterPublicDnsName?: string;
1335
- Configurations?: Configuration[];
1336
- SecurityConfiguration?: string;
1337
- AutoScalingRole?: string;
1338
- ScaleDownBehavior?: ScaleDownBehavior;
1339
- CustomAmiId?: string;
1340
- EbsRootVolumeSize?: number;
1341
- RepoUpgradeOnBoot?: RepoUpgradeOnBoot;
1342
- KerberosAttributes?: KerberosAttributes;
1343
- ClusterArn?: string;
1344
- OutpostArn?: string;
1345
- StepConcurrencyLevel?: number;
1346
- PlacementGroups?: PlacementGroupConfig[];
1347
- OSReleaseLabel?: string;
1348
- EbsRootVolumeIops?: number;
1349
- EbsRootVolumeThroughput?: number;
1318
+ Id?: string | undefined;
1319
+ Name?: string | undefined;
1320
+ Status?: ClusterStatus | undefined;
1321
+ Ec2InstanceAttributes?: Ec2InstanceAttributes | undefined;
1322
+ InstanceCollectionType?: InstanceCollectionType | undefined;
1323
+ LogUri?: string | undefined;
1324
+ LogEncryptionKmsKeyId?: string | undefined;
1325
+ RequestedAmiVersion?: string | undefined;
1326
+ RunningAmiVersion?: string | undefined;
1327
+ ReleaseLabel?: string | undefined;
1328
+ AutoTerminate?: boolean | undefined;
1329
+ TerminationProtected?: boolean | undefined;
1330
+ UnhealthyNodeReplacement?: boolean | undefined;
1331
+ VisibleToAllUsers?: boolean | undefined;
1332
+ Applications?: Application[] | undefined;
1333
+ Tags?: Tag[] | undefined;
1334
+ ServiceRole?: string | undefined;
1335
+ NormalizedInstanceHours?: number | undefined;
1336
+ MasterPublicDnsName?: string | undefined;
1337
+ Configurations?: Configuration[] | undefined;
1338
+ SecurityConfiguration?: string | undefined;
1339
+ AutoScalingRole?: string | undefined;
1340
+ ScaleDownBehavior?: ScaleDownBehavior | undefined;
1341
+ CustomAmiId?: string | undefined;
1342
+ EbsRootVolumeSize?: number | undefined;
1343
+ RepoUpgradeOnBoot?: RepoUpgradeOnBoot | undefined;
1344
+ KerberosAttributes?: KerberosAttributes | undefined;
1345
+ ClusterArn?: string | undefined;
1346
+ OutpostArn?: string | undefined;
1347
+ StepConcurrencyLevel?: number | undefined;
1348
+ PlacementGroups?: PlacementGroupConfig[] | undefined;
1349
+ OSReleaseLabel?: string | undefined;
1350
+ EbsRootVolumeIops?: number | undefined;
1351
+ EbsRootVolumeThroughput?: number | undefined;
1350
1352
  }
1351
1353
  export interface InstanceGroupConfig {
1352
- Name?: string;
1353
- Market?: MarketType;
1354
+ Name?: string | undefined;
1355
+ Market?: MarketType | undefined;
1354
1356
  InstanceRole: InstanceRoleType | undefined;
1355
- BidPrice?: string;
1357
+ BidPrice?: string | undefined;
1356
1358
  InstanceType: string | undefined;
1357
1359
  InstanceCount: number | undefined;
1358
- Configurations?: Configuration[];
1359
- EbsConfiguration?: EbsConfiguration;
1360
- AutoScalingPolicy?: AutoScalingPolicy;
1361
- CustomAmiId?: string;
1360
+ Configurations?: Configuration[] | undefined;
1361
+ EbsConfiguration?: EbsConfiguration | undefined;
1362
+ AutoScalingPolicy?: AutoScalingPolicy | undefined;
1363
+ CustomAmiId?: string | undefined;
1362
1364
  }
1363
1365
  export interface InstanceGroupModifyConfig {
1364
1366
  InstanceGroupId: string | undefined;
1365
- InstanceCount?: number;
1366
- EC2InstanceIdsToTerminate?: string[];
1367
- ShrinkPolicy?: ShrinkPolicy;
1368
- ReconfigurationType?: ReconfigurationType;
1369
- Configurations?: Configuration[];
1367
+ InstanceCount?: number | undefined;
1368
+ EC2InstanceIdsToTerminate?: string[] | undefined;
1369
+ ShrinkPolicy?: ShrinkPolicy | undefined;
1370
+ ReconfigurationType?: ReconfigurationType | undefined;
1371
+ Configurations?: Configuration[] | undefined;
1370
1372
  }
1371
1373
  export interface InstanceTypeConfig {
1372
1374
  InstanceType: string | undefined;
1373
- WeightedCapacity?: number;
1374
- BidPrice?: string;
1375
- BidPriceAsPercentageOfOnDemandPrice?: number;
1376
- EbsConfiguration?: EbsConfiguration;
1377
- Configurations?: Configuration[];
1378
- CustomAmiId?: string;
1379
- Priority?: number;
1375
+ WeightedCapacity?: number | undefined;
1376
+ BidPrice?: string | undefined;
1377
+ BidPriceAsPercentageOfOnDemandPrice?: number | undefined;
1378
+ EbsConfiguration?: EbsConfiguration | undefined;
1379
+ Configurations?: Configuration[] | undefined;
1380
+ CustomAmiId?: string | undefined;
1381
+ Priority?: number | undefined;
1380
1382
  }
1381
1383
  export interface InstanceTypeSpecification {
1382
- InstanceType?: string;
1383
- WeightedCapacity?: number;
1384
- BidPrice?: string;
1385
- BidPriceAsPercentageOfOnDemandPrice?: number;
1386
- Configurations?: Configuration[];
1387
- EbsBlockDevices?: EbsBlockDevice[];
1388
- EbsOptimized?: boolean;
1389
- CustomAmiId?: string;
1390
- Priority?: number;
1384
+ InstanceType?: string | undefined;
1385
+ WeightedCapacity?: number | undefined;
1386
+ BidPrice?: string | undefined;
1387
+ BidPriceAsPercentageOfOnDemandPrice?: number | undefined;
1388
+ Configurations?: Configuration[] | undefined;
1389
+ EbsBlockDevices?: EbsBlockDevice[] | undefined;
1390
+ EbsOptimized?: boolean | undefined;
1391
+ CustomAmiId?: string | undefined;
1392
+ Priority?: number | undefined;
1391
1393
  }
1392
1394
  export interface DescribeClusterOutput {
1393
- Cluster?: Cluster;
1395
+ Cluster?: Cluster | undefined;
1394
1396
  }
1395
1397
  export interface GetBlockPublicAccessConfigurationOutput {
1396
1398
  BlockPublicAccessConfiguration: BlockPublicAccessConfiguration | undefined;
@@ -1406,129 +1408,129 @@ export interface AddInstanceGroupsInput {
1406
1408
  JobFlowId: string | undefined;
1407
1409
  }
1408
1410
  export interface InstanceFleet {
1409
- Id?: string;
1410
- Name?: string;
1411
- Status?: InstanceFleetStatus;
1412
- InstanceFleetType?: InstanceFleetType;
1413
- TargetOnDemandCapacity?: number;
1414
- TargetSpotCapacity?: number;
1415
- ProvisionedOnDemandCapacity?: number;
1416
- ProvisionedSpotCapacity?: number;
1417
- InstanceTypeSpecifications?: InstanceTypeSpecification[];
1418
- LaunchSpecifications?: InstanceFleetProvisioningSpecifications;
1419
- ResizeSpecifications?: InstanceFleetResizingSpecifications;
1420
- Context?: string;
1411
+ Id?: string | undefined;
1412
+ Name?: string | undefined;
1413
+ Status?: InstanceFleetStatus | undefined;
1414
+ InstanceFleetType?: InstanceFleetType | undefined;
1415
+ TargetOnDemandCapacity?: number | undefined;
1416
+ TargetSpotCapacity?: number | undefined;
1417
+ ProvisionedOnDemandCapacity?: number | undefined;
1418
+ ProvisionedSpotCapacity?: number | undefined;
1419
+ InstanceTypeSpecifications?: InstanceTypeSpecification[] | undefined;
1420
+ LaunchSpecifications?: InstanceFleetProvisioningSpecifications | undefined;
1421
+ ResizeSpecifications?: InstanceFleetResizingSpecifications | undefined;
1422
+ Context?: string | undefined;
1421
1423
  }
1422
1424
  export interface InstanceFleetConfig {
1423
- Name?: string;
1425
+ Name?: string | undefined;
1424
1426
  InstanceFleetType: InstanceFleetType | undefined;
1425
- TargetOnDemandCapacity?: number;
1426
- TargetSpotCapacity?: number;
1427
- InstanceTypeConfigs?: InstanceTypeConfig[];
1428
- LaunchSpecifications?: InstanceFleetProvisioningSpecifications;
1429
- ResizeSpecifications?: InstanceFleetResizingSpecifications;
1430
- Context?: string;
1427
+ TargetOnDemandCapacity?: number | undefined;
1428
+ TargetSpotCapacity?: number | undefined;
1429
+ InstanceTypeConfigs?: InstanceTypeConfig[] | undefined;
1430
+ LaunchSpecifications?: InstanceFleetProvisioningSpecifications | undefined;
1431
+ ResizeSpecifications?: InstanceFleetResizingSpecifications | undefined;
1432
+ Context?: string | undefined;
1431
1433
  }
1432
1434
  export interface InstanceFleetModifyConfig {
1433
1435
  InstanceFleetId: string | undefined;
1434
- TargetOnDemandCapacity?: number;
1435
- TargetSpotCapacity?: number;
1436
- ResizeSpecifications?: InstanceFleetResizingSpecifications;
1437
- InstanceTypeConfigs?: InstanceTypeConfig[];
1438
- Context?: string;
1436
+ TargetOnDemandCapacity?: number | undefined;
1437
+ TargetSpotCapacity?: number | undefined;
1438
+ ResizeSpecifications?: InstanceFleetResizingSpecifications | undefined;
1439
+ InstanceTypeConfigs?: InstanceTypeConfig[] | undefined;
1440
+ Context?: string | undefined;
1439
1441
  }
1440
1442
  export interface ModifyInstanceGroupsInput {
1441
- ClusterId?: string;
1442
- InstanceGroups?: InstanceGroupModifyConfig[];
1443
+ ClusterId?: string | undefined;
1444
+ InstanceGroups?: InstanceGroupModifyConfig[] | undefined;
1443
1445
  }
1444
1446
  export interface AddInstanceFleetInput {
1445
1447
  ClusterId: string | undefined;
1446
1448
  InstanceFleet: InstanceFleetConfig | undefined;
1447
1449
  }
1448
1450
  export interface InstanceGroup {
1449
- Id?: string;
1450
- Name?: string;
1451
- Market?: MarketType;
1452
- InstanceGroupType?: InstanceGroupType;
1453
- BidPrice?: string;
1454
- InstanceType?: string;
1455
- RequestedInstanceCount?: number;
1456
- RunningInstanceCount?: number;
1457
- Status?: InstanceGroupStatus;
1458
- Configurations?: Configuration[];
1459
- ConfigurationsVersion?: number;
1460
- LastSuccessfullyAppliedConfigurations?: Configuration[];
1461
- LastSuccessfullyAppliedConfigurationsVersion?: number;
1462
- EbsBlockDevices?: EbsBlockDevice[];
1463
- EbsOptimized?: boolean;
1464
- ShrinkPolicy?: ShrinkPolicy;
1465
- AutoScalingPolicy?: AutoScalingPolicyDescription;
1466
- CustomAmiId?: string;
1451
+ Id?: string | undefined;
1452
+ Name?: string | undefined;
1453
+ Market?: MarketType | undefined;
1454
+ InstanceGroupType?: InstanceGroupType | undefined;
1455
+ BidPrice?: string | undefined;
1456
+ InstanceType?: string | undefined;
1457
+ RequestedInstanceCount?: number | undefined;
1458
+ RunningInstanceCount?: number | undefined;
1459
+ Status?: InstanceGroupStatus | undefined;
1460
+ Configurations?: Configuration[] | undefined;
1461
+ ConfigurationsVersion?: number | undefined;
1462
+ LastSuccessfullyAppliedConfigurations?: Configuration[] | undefined;
1463
+ LastSuccessfullyAppliedConfigurationsVersion?: number | undefined;
1464
+ EbsBlockDevices?: EbsBlockDevice[] | undefined;
1465
+ EbsOptimized?: boolean | undefined;
1466
+ ShrinkPolicy?: ShrinkPolicy | undefined;
1467
+ AutoScalingPolicy?: AutoScalingPolicyDescription | undefined;
1468
+ CustomAmiId?: string | undefined;
1467
1469
  }
1468
1470
  export interface ModifyInstanceFleetInput {
1469
1471
  ClusterId: string | undefined;
1470
1472
  InstanceFleet: InstanceFleetModifyConfig | undefined;
1471
1473
  }
1472
1474
  export interface ListInstanceFleetsOutput {
1473
- InstanceFleets?: InstanceFleet[];
1474
- Marker?: string;
1475
+ InstanceFleets?: InstanceFleet[] | undefined;
1476
+ Marker?: string | undefined;
1475
1477
  }
1476
1478
  export interface ListInstanceGroupsOutput {
1477
- InstanceGroups?: InstanceGroup[];
1478
- Marker?: string;
1479
+ InstanceGroups?: InstanceGroup[] | undefined;
1480
+ Marker?: string | undefined;
1479
1481
  }
1480
1482
  export interface JobFlowInstancesConfig {
1481
- MasterInstanceType?: string;
1482
- SlaveInstanceType?: string;
1483
- InstanceCount?: number;
1484
- InstanceGroups?: InstanceGroupConfig[];
1485
- InstanceFleets?: InstanceFleetConfig[];
1486
- Ec2KeyName?: string;
1487
- Placement?: PlacementType;
1488
- KeepJobFlowAliveWhenNoSteps?: boolean;
1489
- TerminationProtected?: boolean;
1490
- UnhealthyNodeReplacement?: boolean;
1491
- HadoopVersion?: string;
1492
- Ec2SubnetId?: string;
1493
- Ec2SubnetIds?: string[];
1494
- EmrManagedMasterSecurityGroup?: string;
1495
- EmrManagedSlaveSecurityGroup?: string;
1496
- ServiceAccessSecurityGroup?: string;
1497
- AdditionalMasterSecurityGroups?: string[];
1498
- AdditionalSlaveSecurityGroups?: string[];
1483
+ MasterInstanceType?: string | undefined;
1484
+ SlaveInstanceType?: string | undefined;
1485
+ InstanceCount?: number | undefined;
1486
+ InstanceGroups?: InstanceGroupConfig[] | undefined;
1487
+ InstanceFleets?: InstanceFleetConfig[] | undefined;
1488
+ Ec2KeyName?: string | undefined;
1489
+ Placement?: PlacementType | undefined;
1490
+ KeepJobFlowAliveWhenNoSteps?: boolean | undefined;
1491
+ TerminationProtected?: boolean | undefined;
1492
+ UnhealthyNodeReplacement?: boolean | undefined;
1493
+ HadoopVersion?: string | undefined;
1494
+ Ec2SubnetId?: string | undefined;
1495
+ Ec2SubnetIds?: string[] | undefined;
1496
+ EmrManagedMasterSecurityGroup?: string | undefined;
1497
+ EmrManagedSlaveSecurityGroup?: string | undefined;
1498
+ ServiceAccessSecurityGroup?: string | undefined;
1499
+ AdditionalMasterSecurityGroups?: string[] | undefined;
1500
+ AdditionalSlaveSecurityGroups?: string[] | undefined;
1499
1501
  }
1500
1502
  export interface RunJobFlowInput {
1501
1503
  Name: string | undefined;
1502
- LogUri?: string;
1503
- LogEncryptionKmsKeyId?: string;
1504
- AdditionalInfo?: string;
1505
- AmiVersion?: string;
1506
- ReleaseLabel?: string;
1504
+ LogUri?: string | undefined;
1505
+ LogEncryptionKmsKeyId?: string | undefined;
1506
+ AdditionalInfo?: string | undefined;
1507
+ AmiVersion?: string | undefined;
1508
+ ReleaseLabel?: string | undefined;
1507
1509
  Instances: JobFlowInstancesConfig | undefined;
1508
- Steps?: StepConfig[];
1509
- BootstrapActions?: BootstrapActionConfig[];
1510
- SupportedProducts?: string[];
1511
- NewSupportedProducts?: SupportedProductConfig[];
1512
- Applications?: Application[];
1513
- Configurations?: Configuration[];
1514
- VisibleToAllUsers?: boolean;
1515
- JobFlowRole?: string;
1516
- ServiceRole?: string;
1517
- Tags?: Tag[];
1518
- SecurityConfiguration?: string;
1519
- AutoScalingRole?: string;
1520
- ScaleDownBehavior?: ScaleDownBehavior;
1521
- CustomAmiId?: string;
1522
- EbsRootVolumeSize?: number;
1523
- RepoUpgradeOnBoot?: RepoUpgradeOnBoot;
1524
- KerberosAttributes?: KerberosAttributes;
1525
- StepConcurrencyLevel?: number;
1526
- ManagedScalingPolicy?: ManagedScalingPolicy;
1527
- PlacementGroupConfigs?: PlacementGroupConfig[];
1528
- AutoTerminationPolicy?: AutoTerminationPolicy;
1529
- OSReleaseLabel?: string;
1530
- EbsRootVolumeIops?: number;
1531
- EbsRootVolumeThroughput?: number;
1510
+ Steps?: StepConfig[] | undefined;
1511
+ BootstrapActions?: BootstrapActionConfig[] | undefined;
1512
+ SupportedProducts?: string[] | undefined;
1513
+ NewSupportedProducts?: SupportedProductConfig[] | undefined;
1514
+ Applications?: Application[] | undefined;
1515
+ Configurations?: Configuration[] | undefined;
1516
+ VisibleToAllUsers?: boolean | undefined;
1517
+ JobFlowRole?: string | undefined;
1518
+ ServiceRole?: string | undefined;
1519
+ Tags?: Tag[] | undefined;
1520
+ SecurityConfiguration?: string | undefined;
1521
+ AutoScalingRole?: string | undefined;
1522
+ ScaleDownBehavior?: ScaleDownBehavior | undefined;
1523
+ CustomAmiId?: string | undefined;
1524
+ EbsRootVolumeSize?: number | undefined;
1525
+ RepoUpgradeOnBoot?: RepoUpgradeOnBoot | undefined;
1526
+ KerberosAttributes?: KerberosAttributes | undefined;
1527
+ StepConcurrencyLevel?: number | undefined;
1528
+ ManagedScalingPolicy?: ManagedScalingPolicy | undefined;
1529
+ PlacementGroupConfigs?: PlacementGroupConfig[] | undefined;
1530
+ AutoTerminationPolicy?: AutoTerminationPolicy | undefined;
1531
+ OSReleaseLabel?: string | undefined;
1532
+ EbsRootVolumeIops?: number | undefined;
1533
+ EbsRootVolumeThroughput?: number | undefined;
1532
1534
  }
1533
1535
  export declare const UsernamePasswordFilterSensitiveLog: (
1534
1536
  obj: UsernamePassword