@aws-sdk/client-emr 3.808.0 → 3.812.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 (29) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +189 -0
  3. package/dist-es/EMR.js +8 -0
  4. package/dist-es/commands/CreatePersistentAppUICommand.js +22 -0
  5. package/dist-es/commands/DescribePersistentAppUICommand.js +22 -0
  6. package/dist-es/commands/GetOnClusterAppUIPresignedURLCommand.js +22 -0
  7. package/dist-es/commands/GetPersistentAppUIPresignedURLCommand.js +22 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +18 -0
  10. package/dist-es/protocols/Aws_json1_1.js +93 -0
  11. package/dist-types/EMR.d.ts +28 -0
  12. package/dist-types/EMRClient.d.ts +6 -2
  13. package/dist-types/commands/CreatePersistentAppUICommand.d.ts +91 -0
  14. package/dist-types/commands/DescribePersistentAppUICommand.d.ts +95 -0
  15. package/dist-types/commands/GetOnClusterAppUIPresignedURLCommand.d.ts +84 -0
  16. package/dist-types/commands/GetPersistentAppUIPresignedURLCommand.d.ts +84 -0
  17. package/dist-types/commands/index.d.ts +4 -0
  18. package/dist-types/models/models_0.d.ts +258 -0
  19. package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
  20. package/dist-types/ts3.4/EMR.d.ts +68 -0
  21. package/dist-types/ts3.4/EMRClient.d.ts +24 -0
  22. package/dist-types/ts3.4/commands/CreatePersistentAppUICommand.d.ts +51 -0
  23. package/dist-types/ts3.4/commands/DescribePersistentAppUICommand.d.ts +51 -0
  24. package/dist-types/ts3.4/commands/GetOnClusterAppUIPresignedURLCommand.d.ts +51 -0
  25. package/dist-types/ts3.4/commands/GetPersistentAppUIPresignedURLCommand.d.ts +51 -0
  26. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  27. package/dist-types/ts3.4/models/models_0.d.ts +75 -0
  28. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
  29. package/package.json +12 -12
@@ -1759,6 +1759,76 @@ export interface ComputeLimits {
1759
1759
  */
1760
1760
  MaximumCoreCapacityUnits?: number | undefined;
1761
1761
  }
1762
+ /**
1763
+ * <p>The EMR container configuration.</p>
1764
+ * @public
1765
+ */
1766
+ export interface EMRContainersConfig {
1767
+ /**
1768
+ * <p>The Job run ID for the container configuration.</p>
1769
+ * @public
1770
+ */
1771
+ JobRunId?: string | undefined;
1772
+ }
1773
+ /**
1774
+ * @public
1775
+ * @enum
1776
+ */
1777
+ export declare const ProfilerType: {
1778
+ readonly SHS: "SHS";
1779
+ readonly TEZUI: "TEZUI";
1780
+ readonly YTS: "YTS";
1781
+ };
1782
+ /**
1783
+ * @public
1784
+ */
1785
+ export type ProfilerType = (typeof ProfilerType)[keyof typeof ProfilerType];
1786
+ /**
1787
+ * @public
1788
+ */
1789
+ export interface CreatePersistentAppUIInput {
1790
+ /**
1791
+ * <p>The unique Amazon Resource Name (ARN) of the target resource.</p>
1792
+ * @public
1793
+ */
1794
+ TargetResourceArn: string | undefined;
1795
+ /**
1796
+ * <p>The EMR containers configuration.</p>
1797
+ * @public
1798
+ */
1799
+ EMRContainersConfig?: EMRContainersConfig | undefined;
1800
+ /**
1801
+ * <p>Tags for the persistent application user interface.</p>
1802
+ * @public
1803
+ */
1804
+ Tags?: Tag[] | undefined;
1805
+ /**
1806
+ * <p>The cross reference for the persistent application user interface.</p>
1807
+ * @public
1808
+ */
1809
+ XReferer?: string | undefined;
1810
+ /**
1811
+ * <p>The profiler type for the persistent application user interface. Valid values are SHS, TEZUI, or YTS.</p>
1812
+ * @public
1813
+ */
1814
+ ProfilerType?: ProfilerType | undefined;
1815
+ }
1816
+ /**
1817
+ * @public
1818
+ */
1819
+ export interface CreatePersistentAppUIOutput {
1820
+ /**
1821
+ * <p>The persistent application user interface identifier.</p>
1822
+ * @public
1823
+ */
1824
+ PersistentAppUIId?: string | undefined;
1825
+ /**
1826
+ * <p>Represents if the EMR on EC2 cluster that the persisent application user interface is created for is a runtime role
1827
+ * enabled cluster or not.</p>
1828
+ * @public
1829
+ */
1830
+ RuntimeRoleEnabledCluster?: boolean | undefined;
1831
+ }
1762
1832
  /**
1763
1833
  * @public
1764
1834
  */
@@ -2861,6 +2931,87 @@ export interface DescribeNotebookExecutionOutput {
2861
2931
  */
2862
2932
  NotebookExecution?: NotebookExecution | undefined;
2863
2933
  }
2934
+ /**
2935
+ * @public
2936
+ */
2937
+ export interface DescribePersistentAppUIInput {
2938
+ /**
2939
+ * <p>The identifier for the persistent application user interface.</p>
2940
+ * @public
2941
+ */
2942
+ PersistentAppUIId: string | undefined;
2943
+ }
2944
+ /**
2945
+ * @public
2946
+ * @enum
2947
+ */
2948
+ export declare const PersistentAppUIType: {
2949
+ readonly SHS: "SHS";
2950
+ readonly TEZ: "TEZ";
2951
+ readonly YTS: "YTS";
2952
+ };
2953
+ /**
2954
+ * @public
2955
+ */
2956
+ export type PersistentAppUIType = (typeof PersistentAppUIType)[keyof typeof PersistentAppUIType];
2957
+ /**
2958
+ * <p>Holds persistent application user interface information. Applications installed on the Amazon EMR cluster publish user interfaces as
2959
+ * web sites to monitor cluster activity.</p>
2960
+ * @public
2961
+ */
2962
+ export interface PersistentAppUI {
2963
+ /**
2964
+ * <p>The identifier for the persistent application user interface object.</p>
2965
+ * @public
2966
+ */
2967
+ PersistentAppUIId?: string | undefined;
2968
+ /**
2969
+ * <p>The type list for the persistent application user interface object. Valid values
2970
+ * include SHS, YTS, or TEZ.</p>
2971
+ * @public
2972
+ */
2973
+ PersistentAppUITypeList?: PersistentAppUIType[] | undefined;
2974
+ /**
2975
+ * <p>The status for the persistent application user interface object.</p>
2976
+ * @public
2977
+ */
2978
+ PersistentAppUIStatus?: string | undefined;
2979
+ /**
2980
+ * <p>The author ID for the persistent application user interface object.</p>
2981
+ * @public
2982
+ */
2983
+ AuthorId?: string | undefined;
2984
+ /**
2985
+ * <p>The creation date and time for the persistent application user interface object.</p>
2986
+ * @public
2987
+ */
2988
+ CreationTime?: Date | undefined;
2989
+ /**
2990
+ * <p>The date and time the persistent application user interface object was last changed.</p>
2991
+ * @public
2992
+ */
2993
+ LastModifiedTime?: Date | undefined;
2994
+ /**
2995
+ * <p>The reason the persistent application user interface object was last changed.</p>
2996
+ * @public
2997
+ */
2998
+ LastStateChangeReason?: string | undefined;
2999
+ /**
3000
+ * <p>A collection of tags for the persistent application user interface object.</p>
3001
+ * @public
3002
+ */
3003
+ Tags?: Tag[] | undefined;
3004
+ }
3005
+ /**
3006
+ * @public
3007
+ */
3008
+ export interface DescribePersistentAppUIOutput {
3009
+ /**
3010
+ * <p>The persistent application user interface.</p>
3011
+ * @public
3012
+ */
3013
+ PersistentAppUI?: PersistentAppUI | undefined;
3014
+ }
2864
3015
  /**
2865
3016
  * @public
2866
3017
  */
@@ -3508,6 +3659,113 @@ export interface GetManagedScalingPolicyOutput {
3508
3659
  */
3509
3660
  ManagedScalingPolicy?: ManagedScalingPolicy | undefined;
3510
3661
  }
3662
+ /**
3663
+ * @public
3664
+ * @enum
3665
+ */
3666
+ export declare const OnClusterAppUIType: {
3667
+ readonly ApplicationMaster: "ApplicationMaster";
3668
+ readonly JobHistoryServer: "JobHistoryServer";
3669
+ readonly ResourceManager: "ResourceManager";
3670
+ readonly SparkHistoryServer: "SparkHistoryServer";
3671
+ readonly TezUI: "TezUI";
3672
+ readonly YarnTimelineService: "YarnTimelineService";
3673
+ };
3674
+ /**
3675
+ * @public
3676
+ */
3677
+ export type OnClusterAppUIType = (typeof OnClusterAppUIType)[keyof typeof OnClusterAppUIType];
3678
+ /**
3679
+ * @public
3680
+ */
3681
+ export interface GetOnClusterAppUIPresignedURLInput {
3682
+ /**
3683
+ * <p>The cluster ID associated with the cluster's application user interface presigned URL.</p>
3684
+ * @public
3685
+ */
3686
+ ClusterId: string | undefined;
3687
+ /**
3688
+ * <p>The application UI type associated with the cluster's application user interface presigned URL.</p>
3689
+ * @public
3690
+ */
3691
+ OnClusterAppUIType?: OnClusterAppUIType | undefined;
3692
+ /**
3693
+ * <p>The application ID associated with the cluster's application user interface presigned URL.</p>
3694
+ * @public
3695
+ */
3696
+ ApplicationId?: string | undefined;
3697
+ /**
3698
+ * <p>Determines if the user interface presigned URL is for a dry run.</p>
3699
+ * @public
3700
+ */
3701
+ DryRun?: boolean | undefined;
3702
+ /**
3703
+ * <p>The execution role ARN associated with the cluster's application user interface
3704
+ * presigned URL.</p>
3705
+ * @public
3706
+ */
3707
+ ExecutionRoleArn?: string | undefined;
3708
+ }
3709
+ /**
3710
+ * @public
3711
+ */
3712
+ export interface GetOnClusterAppUIPresignedURLOutput {
3713
+ /**
3714
+ * <p>Used to determine if the presigned URL is ready.</p>
3715
+ * @public
3716
+ */
3717
+ PresignedURLReady?: boolean | undefined;
3718
+ /**
3719
+ * <p>The cluster's generated presigned URL.</p>
3720
+ * @public
3721
+ */
3722
+ PresignedURL?: string | undefined;
3723
+ }
3724
+ /**
3725
+ * @public
3726
+ */
3727
+ export interface GetPersistentAppUIPresignedURLInput {
3728
+ /**
3729
+ * <p>The persistent application user interface ID associated with the presigned URL.</p>
3730
+ * @public
3731
+ */
3732
+ PersistentAppUIId: string | undefined;
3733
+ /**
3734
+ * <p>The persistent application user interface type associated with the presigned URL.</p>
3735
+ * @public
3736
+ */
3737
+ PersistentAppUIType?: PersistentAppUIType | undefined;
3738
+ /**
3739
+ * <p>The application ID associated with the presigned URL.</p>
3740
+ * @public
3741
+ */
3742
+ ApplicationId?: string | undefined;
3743
+ /**
3744
+ * <p>A boolean that represents if the caller is an authentication proxy call.</p>
3745
+ * @public
3746
+ */
3747
+ AuthProxyCall?: boolean | undefined;
3748
+ /**
3749
+ * <p>The execution role ARN associated with the presigned URL.</p>
3750
+ * @public
3751
+ */
3752
+ ExecutionRoleArn?: string | undefined;
3753
+ }
3754
+ /**
3755
+ * @public
3756
+ */
3757
+ export interface GetPersistentAppUIPresignedURLOutput {
3758
+ /**
3759
+ * <p>Used to determine if the presigned URL is ready.</p>
3760
+ * @public
3761
+ */
3762
+ PresignedURLReady?: boolean | undefined;
3763
+ /**
3764
+ * <p>The returned presigned URL.</p>
3765
+ * @public
3766
+ */
3767
+ PresignedURL?: string | undefined;
3768
+ }
3511
3769
  /**
3512
3770
  * @public
3513
3771
  */
@@ -5,6 +5,7 @@ import { AddInstanceGroupsCommandInput, AddInstanceGroupsCommandOutput } from ".
5
5
  import { AddJobFlowStepsCommandInput, AddJobFlowStepsCommandOutput } from "../commands/AddJobFlowStepsCommand";
6
6
  import { AddTagsCommandInput, AddTagsCommandOutput } from "../commands/AddTagsCommand";
7
7
  import { CancelStepsCommandInput, CancelStepsCommandOutput } from "../commands/CancelStepsCommand";
8
+ import { CreatePersistentAppUICommandInput, CreatePersistentAppUICommandOutput } from "../commands/CreatePersistentAppUICommand";
8
9
  import { CreateSecurityConfigurationCommandInput, CreateSecurityConfigurationCommandOutput } from "../commands/CreateSecurityConfigurationCommand";
9
10
  import { CreateStudioCommandInput, CreateStudioCommandOutput } from "../commands/CreateStudioCommand";
10
11
  import { CreateStudioSessionMappingCommandInput, CreateStudioSessionMappingCommandOutput } from "../commands/CreateStudioSessionMappingCommand";
@@ -14,6 +15,7 @@ import { DeleteStudioSessionMappingCommandInput, DeleteStudioSessionMappingComma
14
15
  import { DescribeClusterCommandInput, DescribeClusterCommandOutput } from "../commands/DescribeClusterCommand";
15
16
  import { DescribeJobFlowsCommandInput, DescribeJobFlowsCommandOutput } from "../commands/DescribeJobFlowsCommand";
16
17
  import { DescribeNotebookExecutionCommandInput, DescribeNotebookExecutionCommandOutput } from "../commands/DescribeNotebookExecutionCommand";
18
+ import { DescribePersistentAppUICommandInput, DescribePersistentAppUICommandOutput } from "../commands/DescribePersistentAppUICommand";
17
19
  import { DescribeReleaseLabelCommandInput, DescribeReleaseLabelCommandOutput } from "../commands/DescribeReleaseLabelCommand";
18
20
  import { DescribeSecurityConfigurationCommandInput, DescribeSecurityConfigurationCommandOutput } from "../commands/DescribeSecurityConfigurationCommand";
19
21
  import { DescribeStepCommandInput, DescribeStepCommandOutput } from "../commands/DescribeStepCommand";
@@ -22,6 +24,8 @@ import { GetAutoTerminationPolicyCommandInput, GetAutoTerminationPolicyCommandOu
22
24
  import { GetBlockPublicAccessConfigurationCommandInput, GetBlockPublicAccessConfigurationCommandOutput } from "../commands/GetBlockPublicAccessConfigurationCommand";
23
25
  import { GetClusterSessionCredentialsCommandInput, GetClusterSessionCredentialsCommandOutput } from "../commands/GetClusterSessionCredentialsCommand";
24
26
  import { GetManagedScalingPolicyCommandInput, GetManagedScalingPolicyCommandOutput } from "../commands/GetManagedScalingPolicyCommand";
27
+ import { GetOnClusterAppUIPresignedURLCommandInput, GetOnClusterAppUIPresignedURLCommandOutput } from "../commands/GetOnClusterAppUIPresignedURLCommand";
28
+ import { GetPersistentAppUIPresignedURLCommandInput, GetPersistentAppUIPresignedURLCommandOutput } from "../commands/GetPersistentAppUIPresignedURLCommand";
25
29
  import { GetStudioSessionMappingCommandInput, GetStudioSessionMappingCommandOutput } from "../commands/GetStudioSessionMappingCommand";
26
30
  import { ListBootstrapActionsCommandInput, ListBootstrapActionsCommandOutput } from "../commands/ListBootstrapActionsCommand";
27
31
  import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
@@ -76,6 +80,10 @@ export declare const se_AddTagsCommand: (input: AddTagsCommandInput, context: __
76
80
  * serializeAws_json1_1CancelStepsCommand
77
81
  */
78
82
  export declare const se_CancelStepsCommand: (input: CancelStepsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
+ /**
84
+ * serializeAws_json1_1CreatePersistentAppUICommand
85
+ */
86
+ export declare const se_CreatePersistentAppUICommand: (input: CreatePersistentAppUICommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
87
  /**
80
88
  * serializeAws_json1_1CreateSecurityConfigurationCommand
81
89
  */
@@ -112,6 +120,10 @@ export declare const se_DescribeJobFlowsCommand: (input: DescribeJobFlowsCommand
112
120
  * serializeAws_json1_1DescribeNotebookExecutionCommand
113
121
  */
114
122
  export declare const se_DescribeNotebookExecutionCommand: (input: DescribeNotebookExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
123
+ /**
124
+ * serializeAws_json1_1DescribePersistentAppUICommand
125
+ */
126
+ export declare const se_DescribePersistentAppUICommand: (input: DescribePersistentAppUICommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
127
  /**
116
128
  * serializeAws_json1_1DescribeReleaseLabelCommand
117
129
  */
@@ -144,6 +156,14 @@ export declare const se_GetClusterSessionCredentialsCommand: (input: GetClusterS
144
156
  * serializeAws_json1_1GetManagedScalingPolicyCommand
145
157
  */
146
158
  export declare const se_GetManagedScalingPolicyCommand: (input: GetManagedScalingPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
159
+ /**
160
+ * serializeAws_json1_1GetOnClusterAppUIPresignedURLCommand
161
+ */
162
+ export declare const se_GetOnClusterAppUIPresignedURLCommand: (input: GetOnClusterAppUIPresignedURLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
163
+ /**
164
+ * serializeAws_json1_1GetPersistentAppUIPresignedURLCommand
165
+ */
166
+ export declare const se_GetPersistentAppUIPresignedURLCommand: (input: GetPersistentAppUIPresignedURLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
147
167
  /**
148
168
  * serializeAws_json1_1GetStudioSessionMappingCommand
149
169
  */
@@ -300,6 +320,10 @@ export declare const de_AddTagsCommand: (output: __HttpResponse, context: __Serd
300
320
  * deserializeAws_json1_1CancelStepsCommand
301
321
  */
302
322
  export declare const de_CancelStepsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelStepsCommandOutput>;
323
+ /**
324
+ * deserializeAws_json1_1CreatePersistentAppUICommand
325
+ */
326
+ export declare const de_CreatePersistentAppUICommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePersistentAppUICommandOutput>;
303
327
  /**
304
328
  * deserializeAws_json1_1CreateSecurityConfigurationCommand
305
329
  */
@@ -336,6 +360,10 @@ export declare const de_DescribeJobFlowsCommand: (output: __HttpResponse, contex
336
360
  * deserializeAws_json1_1DescribeNotebookExecutionCommand
337
361
  */
338
362
  export declare const de_DescribeNotebookExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNotebookExecutionCommandOutput>;
363
+ /**
364
+ * deserializeAws_json1_1DescribePersistentAppUICommand
365
+ */
366
+ export declare const de_DescribePersistentAppUICommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePersistentAppUICommandOutput>;
339
367
  /**
340
368
  * deserializeAws_json1_1DescribeReleaseLabelCommand
341
369
  */
@@ -368,6 +396,14 @@ export declare const de_GetClusterSessionCredentialsCommand: (output: __HttpResp
368
396
  * deserializeAws_json1_1GetManagedScalingPolicyCommand
369
397
  */
370
398
  export declare const de_GetManagedScalingPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetManagedScalingPolicyCommandOutput>;
399
+ /**
400
+ * deserializeAws_json1_1GetOnClusterAppUIPresignedURLCommand
401
+ */
402
+ export declare const de_GetOnClusterAppUIPresignedURLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOnClusterAppUIPresignedURLCommandOutput>;
403
+ /**
404
+ * deserializeAws_json1_1GetPersistentAppUIPresignedURLCommand
405
+ */
406
+ export declare const de_GetPersistentAppUIPresignedURLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPersistentAppUIPresignedURLCommandOutput>;
371
407
  /**
372
408
  * deserializeAws_json1_1GetStudioSessionMappingCommand
373
409
  */
@@ -19,6 +19,10 @@ import {
19
19
  CancelStepsCommandInput,
20
20
  CancelStepsCommandOutput,
21
21
  } from "./commands/CancelStepsCommand";
22
+ import {
23
+ CreatePersistentAppUICommandInput,
24
+ CreatePersistentAppUICommandOutput,
25
+ } from "./commands/CreatePersistentAppUICommand";
22
26
  import {
23
27
  CreateSecurityConfigurationCommandInput,
24
28
  CreateSecurityConfigurationCommandOutput,
@@ -55,6 +59,10 @@ import {
55
59
  DescribeNotebookExecutionCommandInput,
56
60
  DescribeNotebookExecutionCommandOutput,
57
61
  } from "./commands/DescribeNotebookExecutionCommand";
62
+ import {
63
+ DescribePersistentAppUICommandInput,
64
+ DescribePersistentAppUICommandOutput,
65
+ } from "./commands/DescribePersistentAppUICommand";
58
66
  import {
59
67
  DescribeReleaseLabelCommandInput,
60
68
  DescribeReleaseLabelCommandOutput,
@@ -87,6 +95,14 @@ import {
87
95
  GetManagedScalingPolicyCommandInput,
88
96
  GetManagedScalingPolicyCommandOutput,
89
97
  } from "./commands/GetManagedScalingPolicyCommand";
98
+ import {
99
+ GetOnClusterAppUIPresignedURLCommandInput,
100
+ GetOnClusterAppUIPresignedURLCommandOutput,
101
+ } from "./commands/GetOnClusterAppUIPresignedURLCommand";
102
+ import {
103
+ GetPersistentAppUIPresignedURLCommandInput,
104
+ GetPersistentAppUIPresignedURLCommandOutput,
105
+ } from "./commands/GetPersistentAppUIPresignedURLCommand";
90
106
  import {
91
107
  GetStudioSessionMappingCommandInput,
92
108
  GetStudioSessionMappingCommandOutput,
@@ -290,6 +306,19 @@ export interface EMR {
290
306
  options: __HttpHandlerOptions,
291
307
  cb: (err: any, data?: CancelStepsCommandOutput) => void
292
308
  ): void;
309
+ createPersistentAppUI(
310
+ args: CreatePersistentAppUICommandInput,
311
+ options?: __HttpHandlerOptions
312
+ ): Promise<CreatePersistentAppUICommandOutput>;
313
+ createPersistentAppUI(
314
+ args: CreatePersistentAppUICommandInput,
315
+ cb: (err: any, data?: CreatePersistentAppUICommandOutput) => void
316
+ ): void;
317
+ createPersistentAppUI(
318
+ args: CreatePersistentAppUICommandInput,
319
+ options: __HttpHandlerOptions,
320
+ cb: (err: any, data?: CreatePersistentAppUICommandOutput) => void
321
+ ): void;
293
322
  createSecurityConfiguration(
294
323
  args: CreateSecurityConfigurationCommandInput,
295
324
  options?: __HttpHandlerOptions
@@ -408,6 +437,19 @@ export interface EMR {
408
437
  options: __HttpHandlerOptions,
409
438
  cb: (err: any, data?: DescribeNotebookExecutionCommandOutput) => void
410
439
  ): void;
440
+ describePersistentAppUI(
441
+ args: DescribePersistentAppUICommandInput,
442
+ options?: __HttpHandlerOptions
443
+ ): Promise<DescribePersistentAppUICommandOutput>;
444
+ describePersistentAppUI(
445
+ args: DescribePersistentAppUICommandInput,
446
+ cb: (err: any, data?: DescribePersistentAppUICommandOutput) => void
447
+ ): void;
448
+ describePersistentAppUI(
449
+ args: DescribePersistentAppUICommandInput,
450
+ options: __HttpHandlerOptions,
451
+ cb: (err: any, data?: DescribePersistentAppUICommandOutput) => void
452
+ ): void;
411
453
  describeReleaseLabel(): Promise<DescribeReleaseLabelCommandOutput>;
412
454
  describeReleaseLabel(
413
455
  args: DescribeReleaseLabelCommandInput,
@@ -520,6 +562,32 @@ export interface EMR {
520
562
  options: __HttpHandlerOptions,
521
563
  cb: (err: any, data?: GetManagedScalingPolicyCommandOutput) => void
522
564
  ): void;
565
+ getOnClusterAppUIPresignedURL(
566
+ args: GetOnClusterAppUIPresignedURLCommandInput,
567
+ options?: __HttpHandlerOptions
568
+ ): Promise<GetOnClusterAppUIPresignedURLCommandOutput>;
569
+ getOnClusterAppUIPresignedURL(
570
+ args: GetOnClusterAppUIPresignedURLCommandInput,
571
+ cb: (err: any, data?: GetOnClusterAppUIPresignedURLCommandOutput) => void
572
+ ): void;
573
+ getOnClusterAppUIPresignedURL(
574
+ args: GetOnClusterAppUIPresignedURLCommandInput,
575
+ options: __HttpHandlerOptions,
576
+ cb: (err: any, data?: GetOnClusterAppUIPresignedURLCommandOutput) => void
577
+ ): void;
578
+ getPersistentAppUIPresignedURL(
579
+ args: GetPersistentAppUIPresignedURLCommandInput,
580
+ options?: __HttpHandlerOptions
581
+ ): Promise<GetPersistentAppUIPresignedURLCommandOutput>;
582
+ getPersistentAppUIPresignedURL(
583
+ args: GetPersistentAppUIPresignedURLCommandInput,
584
+ cb: (err: any, data?: GetPersistentAppUIPresignedURLCommandOutput) => void
585
+ ): void;
586
+ getPersistentAppUIPresignedURL(
587
+ args: GetPersistentAppUIPresignedURLCommandInput,
588
+ options: __HttpHandlerOptions,
589
+ cb: (err: any, data?: GetPersistentAppUIPresignedURLCommandOutput) => void
590
+ ): void;
523
591
  getStudioSessionMapping(
524
592
  args: GetStudioSessionMappingCommandInput,
525
593
  options?: __HttpHandlerOptions
@@ -65,6 +65,10 @@ import {
65
65
  CancelStepsCommandInput,
66
66
  CancelStepsCommandOutput,
67
67
  } from "./commands/CancelStepsCommand";
68
+ import {
69
+ CreatePersistentAppUICommandInput,
70
+ CreatePersistentAppUICommandOutput,
71
+ } from "./commands/CreatePersistentAppUICommand";
68
72
  import {
69
73
  CreateSecurityConfigurationCommandInput,
70
74
  CreateSecurityConfigurationCommandOutput,
@@ -101,6 +105,10 @@ import {
101
105
  DescribeNotebookExecutionCommandInput,
102
106
  DescribeNotebookExecutionCommandOutput,
103
107
  } from "./commands/DescribeNotebookExecutionCommand";
108
+ import {
109
+ DescribePersistentAppUICommandInput,
110
+ DescribePersistentAppUICommandOutput,
111
+ } from "./commands/DescribePersistentAppUICommand";
104
112
  import {
105
113
  DescribeReleaseLabelCommandInput,
106
114
  DescribeReleaseLabelCommandOutput,
@@ -133,6 +141,14 @@ import {
133
141
  GetManagedScalingPolicyCommandInput,
134
142
  GetManagedScalingPolicyCommandOutput,
135
143
  } from "./commands/GetManagedScalingPolicyCommand";
144
+ import {
145
+ GetOnClusterAppUIPresignedURLCommandInput,
146
+ GetOnClusterAppUIPresignedURLCommandOutput,
147
+ } from "./commands/GetOnClusterAppUIPresignedURLCommand";
148
+ import {
149
+ GetPersistentAppUIPresignedURLCommandInput,
150
+ GetPersistentAppUIPresignedURLCommandOutput,
151
+ } from "./commands/GetPersistentAppUIPresignedURLCommand";
136
152
  import {
137
153
  GetStudioSessionMappingCommandInput,
138
154
  GetStudioSessionMappingCommandOutput,
@@ -282,6 +298,7 @@ export type ServiceInputTypes =
282
298
  | AddJobFlowStepsCommandInput
283
299
  | AddTagsCommandInput
284
300
  | CancelStepsCommandInput
301
+ | CreatePersistentAppUICommandInput
285
302
  | CreateSecurityConfigurationCommandInput
286
303
  | CreateStudioCommandInput
287
304
  | CreateStudioSessionMappingCommandInput
@@ -291,6 +308,7 @@ export type ServiceInputTypes =
291
308
  | DescribeClusterCommandInput
292
309
  | DescribeJobFlowsCommandInput
293
310
  | DescribeNotebookExecutionCommandInput
311
+ | DescribePersistentAppUICommandInput
294
312
  | DescribeReleaseLabelCommandInput
295
313
  | DescribeSecurityConfigurationCommandInput
296
314
  | DescribeStepCommandInput
@@ -299,6 +317,8 @@ export type ServiceInputTypes =
299
317
  | GetBlockPublicAccessConfigurationCommandInput
300
318
  | GetClusterSessionCredentialsCommandInput
301
319
  | GetManagedScalingPolicyCommandInput
320
+ | GetOnClusterAppUIPresignedURLCommandInput
321
+ | GetPersistentAppUIPresignedURLCommandInput
302
322
  | GetStudioSessionMappingCommandInput
303
323
  | ListBootstrapActionsCommandInput
304
324
  | ListClustersCommandInput
@@ -339,6 +359,7 @@ export type ServiceOutputTypes =
339
359
  | AddJobFlowStepsCommandOutput
340
360
  | AddTagsCommandOutput
341
361
  | CancelStepsCommandOutput
362
+ | CreatePersistentAppUICommandOutput
342
363
  | CreateSecurityConfigurationCommandOutput
343
364
  | CreateStudioCommandOutput
344
365
  | CreateStudioSessionMappingCommandOutput
@@ -348,6 +369,7 @@ export type ServiceOutputTypes =
348
369
  | DescribeClusterCommandOutput
349
370
  | DescribeJobFlowsCommandOutput
350
371
  | DescribeNotebookExecutionCommandOutput
372
+ | DescribePersistentAppUICommandOutput
351
373
  | DescribeReleaseLabelCommandOutput
352
374
  | DescribeSecurityConfigurationCommandOutput
353
375
  | DescribeStepCommandOutput
@@ -356,6 +378,8 @@ export type ServiceOutputTypes =
356
378
  | GetBlockPublicAccessConfigurationCommandOutput
357
379
  | GetClusterSessionCredentialsCommandOutput
358
380
  | GetManagedScalingPolicyCommandOutput
381
+ | GetOnClusterAppUIPresignedURLCommandOutput
382
+ | GetPersistentAppUIPresignedURLCommandOutput
359
383
  | GetStudioSessionMappingCommandOutput
360
384
  | ListBootstrapActionsCommandOutput
361
385
  | ListClustersCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EMRClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EMRClient";
8
+ import {
9
+ CreatePersistentAppUIInput,
10
+ CreatePersistentAppUIOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreatePersistentAppUICommandInput
15
+ extends CreatePersistentAppUIInput {}
16
+ export interface CreatePersistentAppUICommandOutput
17
+ extends CreatePersistentAppUIOutput,
18
+ __MetadataBearer {}
19
+ declare const CreatePersistentAppUICommand_base: {
20
+ new (
21
+ input: CreatePersistentAppUICommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreatePersistentAppUICommandInput,
24
+ CreatePersistentAppUICommandOutput,
25
+ EMRClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreatePersistentAppUICommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreatePersistentAppUICommandInput,
33
+ CreatePersistentAppUICommandOutput,
34
+ EMRClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreatePersistentAppUICommand extends CreatePersistentAppUICommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreatePersistentAppUIInput;
44
+ output: CreatePersistentAppUIOutput;
45
+ };
46
+ sdk: {
47
+ input: CreatePersistentAppUICommandInput;
48
+ output: CreatePersistentAppUICommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EMRClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EMRClient";
8
+ import {
9
+ DescribePersistentAppUIInput,
10
+ DescribePersistentAppUIOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribePersistentAppUICommandInput
15
+ extends DescribePersistentAppUIInput {}
16
+ export interface DescribePersistentAppUICommandOutput
17
+ extends DescribePersistentAppUIOutput,
18
+ __MetadataBearer {}
19
+ declare const DescribePersistentAppUICommand_base: {
20
+ new (
21
+ input: DescribePersistentAppUICommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribePersistentAppUICommandInput,
24
+ DescribePersistentAppUICommandOutput,
25
+ EMRClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribePersistentAppUICommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribePersistentAppUICommandInput,
33
+ DescribePersistentAppUICommandOutput,
34
+ EMRClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribePersistentAppUICommand extends DescribePersistentAppUICommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribePersistentAppUIInput;
44
+ output: DescribePersistentAppUIOutput;
45
+ };
46
+ sdk: {
47
+ input: DescribePersistentAppUICommandInput;
48
+ output: DescribePersistentAppUICommandOutput;
49
+ };
50
+ };
51
+ }