@aws-sdk/client-emr-serverless 3.131.0 → 3.137.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/CancelJobRunCommand.js +2 -2
  3. package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteApplicationCommand.js +2 -2
  5. package/dist-cjs/commands/GetApplicationCommand.js +2 -2
  6. package/dist-cjs/commands/GetJobRunCommand.js +2 -2
  7. package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
  8. package/dist-cjs/commands/ListJobRunsCommand.js +2 -2
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  10. package/dist-cjs/commands/StartApplicationCommand.js +2 -2
  11. package/dist-cjs/commands/StartJobRunCommand.js +2 -2
  12. package/dist-cjs/commands/StopApplicationCommand.js +2 -2
  13. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  14. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  15. package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
  16. package/dist-cjs/models/models_0.js +217 -308
  17. package/dist-es/commands/CancelJobRunCommand.js +3 -3
  18. package/dist-es/commands/CreateApplicationCommand.js +3 -3
  19. package/dist-es/commands/DeleteApplicationCommand.js +3 -3
  20. package/dist-es/commands/GetApplicationCommand.js +3 -3
  21. package/dist-es/commands/GetJobRunCommand.js +3 -3
  22. package/dist-es/commands/ListApplicationsCommand.js +3 -3
  23. package/dist-es/commands/ListJobRunsCommand.js +3 -3
  24. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  25. package/dist-es/commands/StartApplicationCommand.js +3 -3
  26. package/dist-es/commands/StartJobRunCommand.js +3 -3
  27. package/dist-es/commands/StopApplicationCommand.js +3 -3
  28. package/dist-es/commands/TagResourceCommand.js +3 -3
  29. package/dist-es/commands/UntagResourceCommand.js +3 -3
  30. package/dist-es/commands/UpdateApplicationCommand.js +3 -3
  31. package/dist-es/models/models_0.js +63 -201
  32. package/dist-types/models/models_0.d.ts +188 -280
  33. package/dist-types/ts3.4/models/models_0.d.ts +94 -186
  34. package/package.json +6 -6
@@ -9,12 +9,6 @@ export interface AutoStartConfig {
9
9
  */
10
10
  enabled?: boolean;
11
11
  }
12
- export declare namespace AutoStartConfig {
13
- /**
14
- * @internal
15
- */
16
- const filterSensitiveLog: (obj: AutoStartConfig) => any;
17
- }
18
12
  /**
19
13
  * <p>The configuration for an application to automatically stop after a certain amount of time being idle.</p>
20
14
  */
@@ -28,12 +22,6 @@ export interface AutoStopConfig {
28
22
  */
29
23
  idleTimeoutMinutes?: number;
30
24
  }
31
- export declare namespace AutoStopConfig {
32
- /**
33
- * @internal
34
- */
35
- const filterSensitiveLog: (obj: AutoStopConfig) => any;
36
- }
37
25
  /**
38
26
  * <p>The cumulative configuration requirements for every worker instance of the worker
39
27
  * type.</p>
@@ -52,12 +40,6 @@ export interface WorkerResourceConfig {
52
40
  */
53
41
  disk?: string;
54
42
  }
55
- export declare namespace WorkerResourceConfig {
56
- /**
57
- * @internal
58
- */
59
- const filterSensitiveLog: (obj: WorkerResourceConfig) => any;
60
- }
61
43
  /**
62
44
  * <p>The initial capacity configuration per worker.</p>
63
45
  */
@@ -71,12 +53,6 @@ export interface InitialCapacityConfig {
71
53
  */
72
54
  workerConfiguration?: WorkerResourceConfig;
73
55
  }
74
- export declare namespace InitialCapacityConfig {
75
- /**
76
- * @internal
77
- */
78
- const filterSensitiveLog: (obj: InitialCapacityConfig) => any;
79
- }
80
56
  /**
81
57
  * <p>The maximum allowed cumulative resources for an application. No new resources will be
82
58
  * created once the limit is hit.</p>
@@ -95,12 +71,6 @@ export interface MaximumAllowedResources {
95
71
  */
96
72
  disk?: string;
97
73
  }
98
- export declare namespace MaximumAllowedResources {
99
- /**
100
- * @internal
101
- */
102
- const filterSensitiveLog: (obj: MaximumAllowedResources) => any;
103
- }
104
74
  /**
105
75
  * <p>The network configuration for customer VPC connectivity.</p>
106
76
  */
@@ -114,12 +84,6 @@ export interface NetworkConfiguration {
114
84
  */
115
85
  securityGroupIds?: string[];
116
86
  }
117
- export declare namespace NetworkConfiguration {
118
- /**
119
- * @internal
120
- */
121
- const filterSensitiveLog: (obj: NetworkConfiguration) => any;
122
- }
123
87
  export declare enum ApplicationState {
124
88
  CREATED = "CREATED",
125
89
  CREATING = "CREATING",
@@ -196,12 +160,6 @@ export interface Application {
196
160
  */
197
161
  networkConfiguration?: NetworkConfiguration;
198
162
  }
199
- export declare namespace Application {
200
- /**
201
- * @internal
202
- */
203
- const filterSensitiveLog: (obj: Application) => any;
204
- }
205
163
  /**
206
164
  * <p>The summary of attributes associated with an application.</p>
207
165
  */
@@ -243,12 +201,6 @@ export interface ApplicationSummary {
243
201
  */
244
202
  updatedAt: Date | undefined;
245
203
  }
246
- export declare namespace ApplicationSummary {
247
- /**
248
- * @internal
249
- */
250
- const filterSensitiveLog: (obj: ApplicationSummary) => any;
251
- }
252
204
  /**
253
205
  * <p>The request could not be processed because of conflict in the current state of the
254
206
  * resource.</p>
@@ -306,12 +258,6 @@ export interface CreateApplicationRequest {
306
258
  */
307
259
  networkConfiguration?: NetworkConfiguration;
308
260
  }
309
- export declare namespace CreateApplicationRequest {
310
- /**
311
- * @internal
312
- */
313
- const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
314
- }
315
261
  export interface CreateApplicationResponse {
316
262
  /**
317
263
  * <p>The output contains the application ID.</p>
@@ -326,12 +272,6 @@ export interface CreateApplicationResponse {
326
272
  */
327
273
  arn: string | undefined;
328
274
  }
329
- export declare namespace CreateApplicationResponse {
330
- /**
331
- * @internal
332
- */
333
- const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
334
- }
335
275
  /**
336
276
  * <p>Request processing failed because of an error or failure with the service.</p>
337
277
  */
@@ -360,20 +300,8 @@ export interface DeleteApplicationRequest {
360
300
  */
361
301
  applicationId: string | undefined;
362
302
  }
363
- export declare namespace DeleteApplicationRequest {
364
- /**
365
- * @internal
366
- */
367
- const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
368
- }
369
303
  export interface DeleteApplicationResponse {
370
304
  }
371
- export declare namespace DeleteApplicationResponse {
372
- /**
373
- * @internal
374
- */
375
- const filterSensitiveLog: (obj: DeleteApplicationResponse) => any;
376
- }
377
305
  /**
378
306
  * <p>The specified resource was not found.</p>
379
307
  */
@@ -391,24 +319,12 @@ export interface GetApplicationRequest {
391
319
  */
392
320
  applicationId: string | undefined;
393
321
  }
394
- export declare namespace GetApplicationRequest {
395
- /**
396
- * @internal
397
- */
398
- const filterSensitiveLog: (obj: GetApplicationRequest) => any;
399
- }
400
322
  export interface GetApplicationResponse {
401
323
  /**
402
324
  * <p>The output displays information about the specified application.</p>
403
325
  */
404
326
  application: Application | undefined;
405
327
  }
406
- export declare namespace GetApplicationResponse {
407
- /**
408
- * @internal
409
- */
410
- const filterSensitiveLog: (obj: GetApplicationResponse) => any;
411
- }
412
328
  export interface ListApplicationsRequest {
413
329
  /**
414
330
  * <p>The token for the next set of application results.</p>
@@ -423,12 +339,6 @@ export interface ListApplicationsRequest {
423
339
  */
424
340
  states?: (ApplicationState | string)[];
425
341
  }
426
- export declare namespace ListApplicationsRequest {
427
- /**
428
- * @internal
429
- */
430
- const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
431
- }
432
342
  export interface ListApplicationsResponse {
433
343
  /**
434
344
  * <p>The output lists the specified applications.</p>
@@ -440,12 +350,6 @@ export interface ListApplicationsResponse {
440
350
  */
441
351
  nextToken?: string;
442
352
  }
443
- export declare namespace ListApplicationsResponse {
444
- /**
445
- * @internal
446
- */
447
- const filterSensitiveLog: (obj: ListApplicationsResponse) => any;
448
- }
449
353
  /**
450
354
  * <p>The maximum number of resources per account has been reached.</p>
451
355
  */
@@ -463,40 +367,16 @@ export interface StartApplicationRequest {
463
367
  */
464
368
  applicationId: string | undefined;
465
369
  }
466
- export declare namespace StartApplicationRequest {
467
- /**
468
- * @internal
469
- */
470
- const filterSensitiveLog: (obj: StartApplicationRequest) => any;
471
- }
472
370
  export interface StartApplicationResponse {
473
371
  }
474
- export declare namespace StartApplicationResponse {
475
- /**
476
- * @internal
477
- */
478
- const filterSensitiveLog: (obj: StartApplicationResponse) => any;
479
- }
480
372
  export interface StopApplicationRequest {
481
373
  /**
482
374
  * <p>The ID of the application to stop.</p>
483
375
  */
484
376
  applicationId: string | undefined;
485
377
  }
486
- export declare namespace StopApplicationRequest {
487
- /**
488
- * @internal
489
- */
490
- const filterSensitiveLog: (obj: StopApplicationRequest) => any;
491
- }
492
378
  export interface StopApplicationResponse {
493
379
  }
494
- export declare namespace StopApplicationResponse {
495
- /**
496
- * @internal
497
- */
498
- const filterSensitiveLog: (obj: StopApplicationResponse) => any;
499
- }
500
380
  export interface UpdateApplicationRequest {
501
381
  /**
502
382
  * <p>The ID of the application to update.</p>
@@ -530,24 +410,12 @@ export interface UpdateApplicationRequest {
530
410
  */
531
411
  networkConfiguration?: NetworkConfiguration;
532
412
  }
533
- export declare namespace UpdateApplicationRequest {
534
- /**
535
- * @internal
536
- */
537
- const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
538
- }
539
413
  export interface UpdateApplicationResponse {
540
414
  /**
541
415
  * <p>Information about the updated application.</p>
542
416
  */
543
417
  application: Application | undefined;
544
418
  }
545
- export declare namespace UpdateApplicationResponse {
546
- /**
547
- * @internal
548
- */
549
- const filterSensitiveLog: (obj: UpdateApplicationResponse) => any;
550
- }
551
419
  export interface CancelJobRunRequest {
552
420
  /**
553
421
  * <p>The ID of the application on which the job run will be canceled.</p>
@@ -558,12 +426,6 @@ export interface CancelJobRunRequest {
558
426
  */
559
427
  jobRunId: string | undefined;
560
428
  }
561
- export declare namespace CancelJobRunRequest {
562
- /**
563
- * @internal
564
- */
565
- const filterSensitiveLog: (obj: CancelJobRunRequest) => any;
566
- }
567
429
  export interface CancelJobRunResponse {
568
430
  /**
569
431
  * <p>The output contains the application ID on which the job run is cancelled.</p>
@@ -574,12 +436,6 @@ export interface CancelJobRunResponse {
574
436
  */
575
437
  jobRunId: string | undefined;
576
438
  }
577
- export declare namespace CancelJobRunResponse {
578
- /**
579
- * @internal
580
- */
581
- const filterSensitiveLog: (obj: CancelJobRunResponse) => any;
582
- }
583
439
  export interface GetJobRunRequest {
584
440
  /**
585
441
  * <p>The ID of the application on which the job run is submitted.</p>
@@ -590,12 +446,6 @@ export interface GetJobRunRequest {
590
446
  */
591
447
  jobRunId: string | undefined;
592
448
  }
593
- export declare namespace GetJobRunRequest {
594
- /**
595
- * @internal
596
- */
597
- const filterSensitiveLog: (obj: GetJobRunRequest) => any;
598
- }
599
449
  /**
600
450
  * <p>The managed log persistence configuration for a job run.</p>
601
451
  */
@@ -609,12 +459,6 @@ export interface ManagedPersistenceMonitoringConfiguration {
609
459
  */
610
460
  encryptionKeyArn?: string;
611
461
  }
612
- export declare namespace ManagedPersistenceMonitoringConfiguration {
613
- /**
614
- * @internal
615
- */
616
- const filterSensitiveLog: (obj: ManagedPersistenceMonitoringConfiguration) => any;
617
- }
618
462
  /**
619
463
  * <p>The Amazon S3 configuration for monitoring log publishing. You can configure your jobs
620
464
  * to send log information to Amazon S3.</p>
@@ -629,12 +473,6 @@ export interface S3MonitoringConfiguration {
629
473
  */
630
474
  encryptionKeyArn?: string;
631
475
  }
632
- export declare namespace S3MonitoringConfiguration {
633
- /**
634
- * @internal
635
- */
636
- const filterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
637
- }
638
476
  /**
639
477
  * <p>The configuration setting for monitoring.</p>
640
478
  */
@@ -648,12 +486,6 @@ export interface MonitoringConfiguration {
648
486
  */
649
487
  managedPersistenceMonitoringConfiguration?: ManagedPersistenceMonitoringConfiguration;
650
488
  }
651
- export declare namespace MonitoringConfiguration {
652
- /**
653
- * @internal
654
- */
655
- const filterSensitiveLog: (obj: MonitoringConfiguration) => any;
656
- }
657
489
  /**
658
490
  * <p>The configurations for the Hive job driver.</p>
659
491
  */
@@ -671,12 +503,6 @@ export interface Hive {
671
503
  */
672
504
  parameters?: string;
673
505
  }
674
- export declare namespace Hive {
675
- /**
676
- * @internal
677
- */
678
- const filterSensitiveLog: (obj: Hive) => any;
679
- }
680
506
  /**
681
507
  * <p>The configurations for the Spark submit job driver.</p>
682
508
  */
@@ -694,12 +520,6 @@ export interface SparkSubmit {
694
520
  */
695
521
  sparkSubmitParameters?: string;
696
522
  }
697
- export declare namespace SparkSubmit {
698
- /**
699
- * @internal
700
- */
701
- const filterSensitiveLog: (obj: SparkSubmit) => any;
702
- }
703
523
  /**
704
524
  * <p>The driver that the job runs on.</p>
705
525
  */
@@ -732,10 +552,6 @@ export declare namespace JobDriver {
732
552
  _: (name: string, value: any) => T;
733
553
  }
734
554
  const visit: <T>(value: JobDriver, visitor: Visitor<T>) => T;
735
- /**
736
- * @internal
737
- */
738
- const filterSensitiveLog: (obj: JobDriver) => any;
739
555
  }
740
556
  export declare enum JobRunState {
741
557
  CANCELLED = "CANCELLED",
@@ -765,12 +581,6 @@ export interface TotalResourceUtilization {
765
581
  */
766
582
  storageGBHour?: number;
767
583
  }
768
- export declare namespace TotalResourceUtilization {
769
- /**
770
- * @internal
771
- */
772
- const filterSensitiveLog: (obj: TotalResourceUtilization) => any;
773
- }
774
584
  export interface ListJobRunsRequest {
775
585
  /**
776
586
  * <p>The ID of the application for which to list the job run.</p>
@@ -797,12 +607,6 @@ export interface ListJobRunsRequest {
797
607
  */
798
608
  states?: (JobRunState | string)[];
799
609
  }
800
- export declare namespace ListJobRunsRequest {
801
- /**
802
- * @internal
803
- */
804
- const filterSensitiveLog: (obj: ListJobRunsRequest) => any;
805
- }
806
610
  /**
807
611
  * <p>The summary of attributes associated with a job run.</p>
808
612
  */
@@ -856,12 +660,6 @@ export interface JobRunSummary {
856
660
  */
857
661
  type?: string;
858
662
  }
859
- export declare namespace JobRunSummary {
860
- /**
861
- * @internal
862
- */
863
- const filterSensitiveLog: (obj: JobRunSummary) => any;
864
- }
865
663
  export interface ListJobRunsResponse {
866
664
  /**
867
665
  * <p>The output lists information about the specified job runs.</p>
@@ -873,12 +671,6 @@ export interface ListJobRunsResponse {
873
671
  */
874
672
  nextToken?: string;
875
673
  }
876
- export declare namespace ListJobRunsResponse {
877
- /**
878
- * @internal
879
- */
880
- const filterSensitiveLog: (obj: ListJobRunsResponse) => any;
881
- }
882
674
  export interface StartJobRunResponse {
883
675
  /**
884
676
  * <p>This output displays the application ID on which the job run was submitted.</p>
@@ -893,36 +685,18 @@ export interface StartJobRunResponse {
893
685
  */
894
686
  arn: string | undefined;
895
687
  }
896
- export declare namespace StartJobRunResponse {
897
- /**
898
- * @internal
899
- */
900
- const filterSensitiveLog: (obj: StartJobRunResponse) => any;
901
- }
902
688
  export interface ListTagsForResourceRequest {
903
689
  /**
904
690
  * <p>The Amazon Resource Name (ARN) that identifies the resource to list the tags for. Currently, the supported resources are Amazon EMR Serverless applications and job runs.</p>
905
691
  */
906
692
  resourceArn: string | undefined;
907
693
  }
908
- export declare namespace ListTagsForResourceRequest {
909
- /**
910
- * @internal
911
- */
912
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
913
- }
914
694
  export interface ListTagsForResourceResponse {
915
695
  /**
916
696
  * <p>The tags for the resource.</p>
917
697
  */
918
698
  tags?: Record<string, string>;
919
699
  }
920
- export declare namespace ListTagsForResourceResponse {
921
- /**
922
- * @internal
923
- */
924
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
925
- }
926
700
  export interface TagResourceRequest {
927
701
  /**
928
702
  * <p>The Amazon Resource Name (ARN) that identifies the resource to list the tags for. Currently, the supported resources are Amazon EMR Serverless applications and job runs.</p>
@@ -933,20 +707,8 @@ export interface TagResourceRequest {
933
707
  */
934
708
  tags: Record<string, string> | undefined;
935
709
  }
936
- export declare namespace TagResourceRequest {
937
- /**
938
- * @internal
939
- */
940
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
941
- }
942
710
  export interface TagResourceResponse {
943
711
  }
944
- export declare namespace TagResourceResponse {
945
- /**
946
- * @internal
947
- */
948
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
949
- }
950
712
  export interface UntagResourceRequest {
951
713
  /**
952
714
  * <p>The Amazon Resource Name (ARN) that identifies the resource to list the tags for. Currently, the supported resources are Amazon EMR Serverless applications and job runs.</p>
@@ -957,20 +719,8 @@ export interface UntagResourceRequest {
957
719
  */
958
720
  tagKeys: string[] | undefined;
959
721
  }
960
- export declare namespace UntagResourceRequest {
961
- /**
962
- * @internal
963
- */
964
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
965
- }
966
722
  export interface UntagResourceResponse {
967
723
  }
968
- export declare namespace UntagResourceResponse {
969
- /**
970
- * @internal
971
- */
972
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
973
- }
974
724
  /**
975
725
  * <p>A configuration specification to be used when provisioning an application. A
976
726
  * configuration consists of a classification, properties, and optional nested configurations.
@@ -991,12 +741,6 @@ export interface Configuration {
991
741
  */
992
742
  configurations?: Configuration[];
993
743
  }
994
- export declare namespace Configuration {
995
- /**
996
- * @internal
997
- */
998
- const filterSensitiveLog: (obj: Configuration) => any;
999
- }
1000
744
  /**
1001
745
  * <p>A configuration specification to be used to override existing configurations.</p>
1002
746
  */
@@ -1010,12 +754,6 @@ export interface ConfigurationOverrides {
1010
754
  */
1011
755
  monitoringConfiguration?: MonitoringConfiguration;
1012
756
  }
1013
- export declare namespace ConfigurationOverrides {
1014
- /**
1015
- * @internal
1016
- */
1017
- const filterSensitiveLog: (obj: ConfigurationOverrides) => any;
1018
- }
1019
757
  /**
1020
758
  * <p>Information about a job run. A job run is a unit of work, such as a Spark JAR, Hive
1021
759
  * query, or SparkSQL query, that you submit to an EMR Serverless application.</p>
@@ -1091,12 +829,6 @@ export interface JobRun {
1091
829
  */
1092
830
  totalExecutionDurationSeconds?: number;
1093
831
  }
1094
- export declare namespace JobRun {
1095
- /**
1096
- * @internal
1097
- */
1098
- const filterSensitiveLog: (obj: JobRun) => any;
1099
- }
1100
832
  export interface StartJobRunRequest {
1101
833
  /**
1102
834
  * <p>The ID of the application on which to run the job.</p>
@@ -1132,21 +864,197 @@ export interface StartJobRunRequest {
1132
864
  */
1133
865
  name?: string;
1134
866
  }
1135
- export declare namespace StartJobRunRequest {
1136
- /**
1137
- * @internal
1138
- */
1139
- const filterSensitiveLog: (obj: StartJobRunRequest) => any;
1140
- }
1141
867
  export interface GetJobRunResponse {
1142
868
  /**
1143
869
  * <p>The output displays information about the job run.</p>
1144
870
  */
1145
871
  jobRun: JobRun | undefined;
1146
872
  }
1147
- export declare namespace GetJobRunResponse {
1148
- /**
1149
- * @internal
1150
- */
1151
- const filterSensitiveLog: (obj: GetJobRunResponse) => any;
1152
- }
873
+ /**
874
+ * @internal
875
+ */
876
+ export declare const AutoStartConfigFilterSensitiveLog: (obj: AutoStartConfig) => any;
877
+ /**
878
+ * @internal
879
+ */
880
+ export declare const AutoStopConfigFilterSensitiveLog: (obj: AutoStopConfig) => any;
881
+ /**
882
+ * @internal
883
+ */
884
+ export declare const WorkerResourceConfigFilterSensitiveLog: (obj: WorkerResourceConfig) => any;
885
+ /**
886
+ * @internal
887
+ */
888
+ export declare const InitialCapacityConfigFilterSensitiveLog: (obj: InitialCapacityConfig) => any;
889
+ /**
890
+ * @internal
891
+ */
892
+ export declare const MaximumAllowedResourcesFilterSensitiveLog: (obj: MaximumAllowedResources) => any;
893
+ /**
894
+ * @internal
895
+ */
896
+ export declare const NetworkConfigurationFilterSensitiveLog: (obj: NetworkConfiguration) => any;
897
+ /**
898
+ * @internal
899
+ */
900
+ export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
901
+ /**
902
+ * @internal
903
+ */
904
+ export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
905
+ /**
906
+ * @internal
907
+ */
908
+ export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
909
+ /**
910
+ * @internal
911
+ */
912
+ export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
913
+ /**
914
+ * @internal
915
+ */
916
+ export declare const DeleteApplicationRequestFilterSensitiveLog: (obj: DeleteApplicationRequest) => any;
917
+ /**
918
+ * @internal
919
+ */
920
+ export declare const DeleteApplicationResponseFilterSensitiveLog: (obj: DeleteApplicationResponse) => any;
921
+ /**
922
+ * @internal
923
+ */
924
+ export declare const GetApplicationRequestFilterSensitiveLog: (obj: GetApplicationRequest) => any;
925
+ /**
926
+ * @internal
927
+ */
928
+ export declare const GetApplicationResponseFilterSensitiveLog: (obj: GetApplicationResponse) => any;
929
+ /**
930
+ * @internal
931
+ */
932
+ export declare const ListApplicationsRequestFilterSensitiveLog: (obj: ListApplicationsRequest) => any;
933
+ /**
934
+ * @internal
935
+ */
936
+ export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
937
+ /**
938
+ * @internal
939
+ */
940
+ export declare const StartApplicationRequestFilterSensitiveLog: (obj: StartApplicationRequest) => any;
941
+ /**
942
+ * @internal
943
+ */
944
+ export declare const StartApplicationResponseFilterSensitiveLog: (obj: StartApplicationResponse) => any;
945
+ /**
946
+ * @internal
947
+ */
948
+ export declare const StopApplicationRequestFilterSensitiveLog: (obj: StopApplicationRequest) => any;
949
+ /**
950
+ * @internal
951
+ */
952
+ export declare const StopApplicationResponseFilterSensitiveLog: (obj: StopApplicationResponse) => any;
953
+ /**
954
+ * @internal
955
+ */
956
+ export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
957
+ /**
958
+ * @internal
959
+ */
960
+ export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;
961
+ /**
962
+ * @internal
963
+ */
964
+ export declare const CancelJobRunRequestFilterSensitiveLog: (obj: CancelJobRunRequest) => any;
965
+ /**
966
+ * @internal
967
+ */
968
+ export declare const CancelJobRunResponseFilterSensitiveLog: (obj: CancelJobRunResponse) => any;
969
+ /**
970
+ * @internal
971
+ */
972
+ export declare const GetJobRunRequestFilterSensitiveLog: (obj: GetJobRunRequest) => any;
973
+ /**
974
+ * @internal
975
+ */
976
+ export declare const ManagedPersistenceMonitoringConfigurationFilterSensitiveLog: (obj: ManagedPersistenceMonitoringConfiguration) => any;
977
+ /**
978
+ * @internal
979
+ */
980
+ export declare const S3MonitoringConfigurationFilterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
981
+ /**
982
+ * @internal
983
+ */
984
+ export declare const MonitoringConfigurationFilterSensitiveLog: (obj: MonitoringConfiguration) => any;
985
+ /**
986
+ * @internal
987
+ */
988
+ export declare const HiveFilterSensitiveLog: (obj: Hive) => any;
989
+ /**
990
+ * @internal
991
+ */
992
+ export declare const SparkSubmitFilterSensitiveLog: (obj: SparkSubmit) => any;
993
+ /**
994
+ * @internal
995
+ */
996
+ export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
997
+ /**
998
+ * @internal
999
+ */
1000
+ export declare const TotalResourceUtilizationFilterSensitiveLog: (obj: TotalResourceUtilization) => any;
1001
+ /**
1002
+ * @internal
1003
+ */
1004
+ export declare const ListJobRunsRequestFilterSensitiveLog: (obj: ListJobRunsRequest) => any;
1005
+ /**
1006
+ * @internal
1007
+ */
1008
+ export declare const JobRunSummaryFilterSensitiveLog: (obj: JobRunSummary) => any;
1009
+ /**
1010
+ * @internal
1011
+ */
1012
+ export declare const ListJobRunsResponseFilterSensitiveLog: (obj: ListJobRunsResponse) => any;
1013
+ /**
1014
+ * @internal
1015
+ */
1016
+ export declare const StartJobRunResponseFilterSensitiveLog: (obj: StartJobRunResponse) => any;
1017
+ /**
1018
+ * @internal
1019
+ */
1020
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1021
+ /**
1022
+ * @internal
1023
+ */
1024
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1025
+ /**
1026
+ * @internal
1027
+ */
1028
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1029
+ /**
1030
+ * @internal
1031
+ */
1032
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1033
+ /**
1034
+ * @internal
1035
+ */
1036
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1037
+ /**
1038
+ * @internal
1039
+ */
1040
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1041
+ /**
1042
+ * @internal
1043
+ */
1044
+ export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
1045
+ /**
1046
+ * @internal
1047
+ */
1048
+ export declare const ConfigurationOverridesFilterSensitiveLog: (obj: ConfigurationOverrides) => any;
1049
+ /**
1050
+ * @internal
1051
+ */
1052
+ export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
1053
+ /**
1054
+ * @internal
1055
+ */
1056
+ export declare const StartJobRunRequestFilterSensitiveLog: (obj: StartJobRunRequest) => any;
1057
+ /**
1058
+ * @internal
1059
+ */
1060
+ export declare const GetJobRunResponseFilterSensitiveLog: (obj: GetJobRunResponse) => any;