@aws-sdk/client-emr 3.321.1 → 3.326.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 (54) hide show
  1. package/dist-types/commands/AddInstanceFleetCommand.d.ts +8 -0
  2. package/dist-types/commands/AddInstanceGroupsCommand.d.ts +10 -0
  3. package/dist-types/commands/AddJobFlowStepsCommand.d.ts +8 -0
  4. package/dist-types/commands/AddTagsCommand.d.ts +4 -0
  5. package/dist-types/commands/CancelStepsCommand.d.ts +12 -0
  6. package/dist-types/commands/CreateSecurityConfigurationCommand.d.ts +7 -0
  7. package/dist-types/commands/CreateStudioCommand.d.ts +7 -0
  8. package/dist-types/commands/CreateStudioSessionMappingCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteSecurityConfigurationCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteStudioCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteStudioSessionMappingCommand.d.ts +4 -0
  12. package/dist-types/commands/DescribeClusterCommand.d.ts +123 -0
  13. package/dist-types/commands/DescribeJobFlowsCommand.d.ts +109 -0
  14. package/dist-types/commands/DescribeNotebookExecutionCommand.d.ts +29 -0
  15. package/dist-types/commands/DescribeReleaseLabelCommand.d.ts +18 -0
  16. package/dist-types/commands/DescribeSecurityConfigurationCommand.d.ts +8 -0
  17. package/dist-types/commands/DescribeStepCommand.d.ts +38 -0
  18. package/dist-types/commands/DescribeStudioCommand.d.ts +31 -0
  19. package/dist-types/commands/GetAutoTerminationPolicyCommand.d.ts +8 -0
  20. package/dist-types/commands/GetBlockPublicAccessConfigurationCommand.d.ts +37 -0
  21. package/dist-types/commands/GetClusterSessionCredentialsCommand.d.ts +12 -0
  22. package/dist-types/commands/GetManagedScalingPolicyCommand.d.ts +14 -0
  23. package/dist-types/commands/GetStudioSessionMappingCommand.d.ts +14 -0
  24. package/dist-types/commands/ListBootstrapActionsCommand.d.ts +15 -0
  25. package/dist-types/commands/ListClustersCommand.d.ts +38 -0
  26. package/dist-types/commands/ListInstanceFleetsCommand.d.ts +91 -0
  27. package/dist-types/commands/ListInstanceGroupsCommand.d.ts +120 -0
  28. package/dist-types/commands/ListInstancesCommand.d.ts +38 -0
  29. package/dist-types/commands/ListNotebookExecutionsCommand.d.ts +16 -0
  30. package/dist-types/commands/ListReleaseLabelsCommand.d.ts +9 -0
  31. package/dist-types/commands/ListSecurityConfigurationsCommand.d.ts +12 -0
  32. package/dist-types/commands/ListStepsCommand.d.ts +40 -0
  33. package/dist-types/commands/ListStudioSessionMappingsCommand.d.ts +16 -0
  34. package/dist-types/commands/ListStudiosCommand.d.ts +17 -0
  35. package/dist-types/commands/ModifyClusterCommand.d.ts +6 -0
  36. package/dist-types/commands/ModifyInstanceFleetCommand.d.ts +4 -0
  37. package/dist-types/commands/ModifyInstanceGroupsCommand.d.ts +4 -0
  38. package/dist-types/commands/PutAutoScalingPolicyCommand.d.ts +53 -0
  39. package/dist-types/commands/PutAutoTerminationPolicyCommand.d.ts +4 -0
  40. package/dist-types/commands/PutBlockPublicAccessConfigurationCommand.d.ts +4 -0
  41. package/dist-types/commands/PutManagedScalingPolicyCommand.d.ts +4 -0
  42. package/dist-types/commands/RemoveAutoScalingPolicyCommand.d.ts +4 -0
  43. package/dist-types/commands/RemoveAutoTerminationPolicyCommand.d.ts +4 -0
  44. package/dist-types/commands/RemoveManagedScalingPolicyCommand.d.ts +4 -0
  45. package/dist-types/commands/RemoveTagsCommand.d.ts +4 -0
  46. package/dist-types/commands/RunJobFlowCommand.d.ts +7 -0
  47. package/dist-types/commands/SetTerminationProtectionCommand.d.ts +4 -0
  48. package/dist-types/commands/SetVisibleToAllUsersCommand.d.ts +4 -0
  49. package/dist-types/commands/StartNotebookExecutionCommand.d.ts +6 -0
  50. package/dist-types/commands/StopNotebookExecutionCommand.d.ts +4 -0
  51. package/dist-types/commands/TerminateJobFlowsCommand.d.ts +4 -0
  52. package/dist-types/commands/UpdateStudioCommand.d.ts +4 -0
  53. package/dist-types/commands/UpdateStudioSessionMappingCommand.d.ts +4 -0
  54. package/package.json +16 -16
@@ -32,6 +32,35 @@ export interface DescribeStudioCommandOutput extends DescribeStudioOutput, __Met
32
32
  * };
33
33
  * const command = new DescribeStudioCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeStudioOutput
36
+ * // Studio: { // Studio
37
+ * // StudioId: "STRING_VALUE",
38
+ * // StudioArn: "STRING_VALUE",
39
+ * // Name: "STRING_VALUE",
40
+ * // Description: "STRING_VALUE",
41
+ * // AuthMode: "SSO" || "IAM",
42
+ * // VpcId: "STRING_VALUE",
43
+ * // SubnetIds: [ // SubnetIdList
44
+ * // "STRING_VALUE",
45
+ * // ],
46
+ * // ServiceRole: "STRING_VALUE",
47
+ * // UserRole: "STRING_VALUE",
48
+ * // WorkspaceSecurityGroupId: "STRING_VALUE",
49
+ * // EngineSecurityGroupId: "STRING_VALUE",
50
+ * // Url: "STRING_VALUE",
51
+ * // CreationTime: new Date("TIMESTAMP"),
52
+ * // DefaultS3Location: "STRING_VALUE",
53
+ * // IdpAuthUrl: "STRING_VALUE",
54
+ * // IdpRelayStateParameterName: "STRING_VALUE",
55
+ * // Tags: [ // TagList
56
+ * // { // Tag
57
+ * // Key: "STRING_VALUE",
58
+ * // Value: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // },
62
+ * // };
63
+ *
35
64
  * ```
36
65
  *
37
66
  * @param DescribeStudioCommandInput - {@link DescribeStudioCommandInput}
@@ -47,6 +76,8 @@ export interface DescribeStudioCommandOutput extends DescribeStudioOutput, __Met
47
76
  * @throws {@link InvalidRequestException} (client fault)
48
77
  * <p>This exception occurs when there is something wrong with user input.</p>
49
78
  *
79
+ * @throws {@link EMRServiceException}
80
+ * <p>Base exception class for all service exceptions from EMR service.</p>
50
81
  *
51
82
  */
52
83
  export declare class DescribeStudioCommand extends $Command<DescribeStudioCommandInput, DescribeStudioCommandOutput, EMRClientResolvedConfig> {
@@ -31,6 +31,12 @@ export interface GetAutoTerminationPolicyCommandOutput extends GetAutoTerminatio
31
31
  * };
32
32
  * const command = new GetAutoTerminationPolicyCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetAutoTerminationPolicyOutput
35
+ * // AutoTerminationPolicy: { // AutoTerminationPolicy
36
+ * // IdleTimeout: Number("long"),
37
+ * // },
38
+ * // };
39
+ *
34
40
  * ```
35
41
  *
36
42
  * @param GetAutoTerminationPolicyCommandInput - {@link GetAutoTerminationPolicyCommandInput}
@@ -39,6 +45,8 @@ export interface GetAutoTerminationPolicyCommandOutput extends GetAutoTerminatio
39
45
  * @see {@link GetAutoTerminationPolicyCommandOutput} for command's `response` shape.
40
46
  * @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
41
47
  *
48
+ * @throws {@link EMRServiceException}
49
+ * <p>Base exception class for all service exceptions from EMR service.</p>
42
50
  *
43
51
  */
44
52
  export declare class GetAutoTerminationPolicyCommand extends $Command<GetAutoTerminationPolicyCommandInput, GetAutoTerminationPolicyCommandOutput, EMRClientResolvedConfig> {
@@ -31,6 +31,41 @@ export interface GetBlockPublicAccessConfigurationCommandOutput extends GetBlock
31
31
  * const input = {};
32
32
  * const command = new GetBlockPublicAccessConfigurationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetBlockPublicAccessConfigurationOutput
35
+ * // BlockPublicAccessConfiguration: { // BlockPublicAccessConfiguration
36
+ * // BlockPublicSecurityGroupRules: true || false, // required
37
+ * // PermittedPublicSecurityGroupRuleRanges: [ // PortRanges
38
+ * // { // PortRange
39
+ * // MinRange: Number("int"), // required
40
+ * // MaxRange: Number("int"),
41
+ * // },
42
+ * // ],
43
+ * // Classification: "STRING_VALUE",
44
+ * // Configurations: [ // ConfigurationList
45
+ * // { // Configuration
46
+ * // Classification: "STRING_VALUE",
47
+ * // Configurations: [
48
+ * // {
49
+ * // Classification: "STRING_VALUE",
50
+ * // Configurations: "<ConfigurationList>",
51
+ * // Properties: { // StringMap
52
+ * // "<keys>": "STRING_VALUE",
53
+ * // },
54
+ * // },
55
+ * // ],
56
+ * // Properties: {
57
+ * // "<keys>": "STRING_VALUE",
58
+ * // },
59
+ * // },
60
+ * // ],
61
+ * // Properties: "<StringMap>",
62
+ * // },
63
+ * // BlockPublicAccessConfigurationMetadata: { // BlockPublicAccessConfigurationMetadata
64
+ * // CreationDateTime: new Date("TIMESTAMP"), // required
65
+ * // CreatedByArn: "STRING_VALUE", // required
66
+ * // },
67
+ * // };
68
+ *
34
69
  * ```
35
70
  *
36
71
  * @param GetBlockPublicAccessConfigurationCommandInput - {@link GetBlockPublicAccessConfigurationCommandInput}
@@ -46,6 +81,8 @@ export interface GetBlockPublicAccessConfigurationCommandOutput extends GetBlock
46
81
  * @throws {@link InvalidRequestException} (client fault)
47
82
  * <p>This exception occurs when there is something wrong with user input.</p>
48
83
  *
84
+ * @throws {@link EMRServiceException}
85
+ * <p>Base exception class for all service exceptions from EMR service.</p>
49
86
  *
50
87
  */
51
88
  export declare class GetBlockPublicAccessConfigurationCommand extends $Command<GetBlockPublicAccessConfigurationCommandInput, GetBlockPublicAccessConfigurationCommandOutput, EMRClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface GetClusterSessionCredentialsCommandOutput extends GetClusterSes
33
33
  * };
34
34
  * const command = new GetClusterSessionCredentialsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // GetClusterSessionCredentialsOutput
37
+ * // Credentials: { // Credentials Union: only one key present
38
+ * // UsernamePassword: { // UsernamePassword
39
+ * // Username: "STRING_VALUE",
40
+ * // Password: "STRING_VALUE",
41
+ * // },
42
+ * // },
43
+ * // ExpiresAt: new Date("TIMESTAMP"),
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param GetClusterSessionCredentialsCommandInput - {@link GetClusterSessionCredentialsCommandInput}
@@ -48,6 +58,8 @@ export interface GetClusterSessionCredentialsCommandOutput extends GetClusterSes
48
58
  * @throws {@link InvalidRequestException} (client fault)
49
59
  * <p>This exception occurs when there is something wrong with user input.</p>
50
60
  *
61
+ * @throws {@link EMRServiceException}
62
+ * <p>Base exception class for all service exceptions from EMR service.</p>
51
63
  *
52
64
  */
53
65
  export declare class GetClusterSessionCredentialsCommand extends $Command<GetClusterSessionCredentialsCommandInput, GetClusterSessionCredentialsCommandOutput, EMRClientResolvedConfig> {
@@ -31,6 +31,18 @@ export interface GetManagedScalingPolicyCommandOutput extends GetManagedScalingP
31
31
  * };
32
32
  * const command = new GetManagedScalingPolicyCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetManagedScalingPolicyOutput
35
+ * // ManagedScalingPolicy: { // ManagedScalingPolicy
36
+ * // ComputeLimits: { // ComputeLimits
37
+ * // UnitType: "InstanceFleetUnits" || "Instances" || "VCPU", // required
38
+ * // MinimumCapacityUnits: Number("int"), // required
39
+ * // MaximumCapacityUnits: Number("int"), // required
40
+ * // MaximumOnDemandCapacityUnits: Number("int"),
41
+ * // MaximumCoreCapacityUnits: Number("int"),
42
+ * // },
43
+ * // },
44
+ * // };
45
+ *
34
46
  * ```
35
47
  *
36
48
  * @param GetManagedScalingPolicyCommandInput - {@link GetManagedScalingPolicyCommandInput}
@@ -39,6 +51,8 @@ export interface GetManagedScalingPolicyCommandOutput extends GetManagedScalingP
39
51
  * @see {@link GetManagedScalingPolicyCommandOutput} for command's `response` shape.
40
52
  * @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
41
53
  *
54
+ * @throws {@link EMRServiceException}
55
+ * <p>Base exception class for all service exceptions from EMR service.</p>
42
56
  *
43
57
  */
44
58
  export declare class GetManagedScalingPolicyCommand extends $Command<GetManagedScalingPolicyCommandInput, GetManagedScalingPolicyCommandOutput, EMRClientResolvedConfig> {
@@ -35,6 +35,18 @@ export interface GetStudioSessionMappingCommandOutput extends GetStudioSessionMa
35
35
  * };
36
36
  * const command = new GetStudioSessionMappingCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // GetStudioSessionMappingOutput
39
+ * // SessionMapping: { // SessionMappingDetail
40
+ * // StudioId: "STRING_VALUE",
41
+ * // IdentityId: "STRING_VALUE",
42
+ * // IdentityName: "STRING_VALUE",
43
+ * // IdentityType: "USER" || "GROUP",
44
+ * // SessionPolicyArn: "STRING_VALUE",
45
+ * // CreationTime: new Date("TIMESTAMP"),
46
+ * // LastModifiedTime: new Date("TIMESTAMP"),
47
+ * // },
48
+ * // };
49
+ *
38
50
  * ```
39
51
  *
40
52
  * @param GetStudioSessionMappingCommandInput - {@link GetStudioSessionMappingCommandInput}
@@ -50,6 +62,8 @@ export interface GetStudioSessionMappingCommandOutput extends GetStudioSessionMa
50
62
  * @throws {@link InvalidRequestException} (client fault)
51
63
  * <p>This exception occurs when there is something wrong with user input.</p>
52
64
  *
65
+ * @throws {@link EMRServiceException}
66
+ * <p>Base exception class for all service exceptions from EMR service.</p>
53
67
  *
54
68
  */
55
69
  export declare class GetStudioSessionMappingCommand extends $Command<GetStudioSessionMappingCommandInput, GetStudioSessionMappingCommandOutput, EMRClientResolvedConfig> {
@@ -32,6 +32,19 @@ export interface ListBootstrapActionsCommandOutput extends ListBootstrapActionsO
32
32
  * };
33
33
  * const command = new ListBootstrapActionsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListBootstrapActionsOutput
36
+ * // BootstrapActions: [ // CommandList
37
+ * // { // Command
38
+ * // Name: "STRING_VALUE",
39
+ * // ScriptPath: "STRING_VALUE",
40
+ * // Args: [ // StringList
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // },
44
+ * // ],
45
+ * // Marker: "STRING_VALUE",
46
+ * // };
47
+ *
35
48
  * ```
36
49
  *
37
50
  * @param ListBootstrapActionsCommandInput - {@link ListBootstrapActionsCommandInput}
@@ -47,6 +60,8 @@ export interface ListBootstrapActionsCommandOutput extends ListBootstrapActionsO
47
60
  * @throws {@link InvalidRequestException} (client fault)
48
61
  * <p>This exception occurs when there is something wrong with user input.</p>
49
62
  *
63
+ * @throws {@link EMRServiceException}
64
+ * <p>Base exception class for all service exceptions from EMR service.</p>
50
65
  *
51
66
  */
52
67
  export declare class ListBootstrapActionsCommand extends $Command<ListBootstrapActionsCommandInput, ListBootstrapActionsCommandOutput, EMRClientResolvedConfig> {
@@ -40,6 +40,42 @@ export interface ListClustersCommandOutput extends ListClustersOutput, __Metadat
40
40
  * };
41
41
  * const command = new ListClustersCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // ListClustersOutput
44
+ * // Clusters: [ // ClusterSummaryList
45
+ * // { // ClusterSummary
46
+ * // Id: "STRING_VALUE",
47
+ * // Name: "STRING_VALUE",
48
+ * // Status: { // ClusterStatus
49
+ * // State: "STARTING" || "BOOTSTRAPPING" || "RUNNING" || "WAITING" || "TERMINATING" || "TERMINATED" || "TERMINATED_WITH_ERRORS",
50
+ * // StateChangeReason: { // ClusterStateChangeReason
51
+ * // Code: "INTERNAL_ERROR" || "VALIDATION_ERROR" || "INSTANCE_FAILURE" || "INSTANCE_FLEET_TIMEOUT" || "BOOTSTRAP_FAILURE" || "USER_REQUEST" || "STEP_FAILURE" || "ALL_STEPS_COMPLETED",
52
+ * // Message: "STRING_VALUE",
53
+ * // },
54
+ * // Timeline: { // ClusterTimeline
55
+ * // CreationDateTime: new Date("TIMESTAMP"),
56
+ * // ReadyDateTime: new Date("TIMESTAMP"),
57
+ * // EndDateTime: new Date("TIMESTAMP"),
58
+ * // },
59
+ * // ErrorDetails: [ // ErrorDetailList
60
+ * // { // ErrorDetail
61
+ * // ErrorCode: "STRING_VALUE",
62
+ * // ErrorData: [ // ErrorData
63
+ * // { // StringMap
64
+ * // "<keys>": "STRING_VALUE",
65
+ * // },
66
+ * // ],
67
+ * // ErrorMessage: "STRING_VALUE",
68
+ * // },
69
+ * // ],
70
+ * // },
71
+ * // NormalizedInstanceHours: Number("int"),
72
+ * // ClusterArn: "STRING_VALUE",
73
+ * // OutpostArn: "STRING_VALUE",
74
+ * // },
75
+ * // ],
76
+ * // Marker: "STRING_VALUE",
77
+ * // };
78
+ *
43
79
  * ```
44
80
  *
45
81
  * @param ListClustersCommandInput - {@link ListClustersCommandInput}
@@ -55,6 +91,8 @@ export interface ListClustersCommandOutput extends ListClustersOutput, __Metadat
55
91
  * @throws {@link InvalidRequestException} (client fault)
56
92
  * <p>This exception occurs when there is something wrong with user input.</p>
57
93
  *
94
+ * @throws {@link EMRServiceException}
95
+ * <p>Base exception class for all service exceptions from EMR service.</p>
58
96
  *
59
97
  */
60
98
  export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, EMRClientResolvedConfig> {
@@ -36,6 +36,95 @@ export interface ListInstanceFleetsCommandOutput extends ListInstanceFleetsOutpu
36
36
  * };
37
37
  * const command = new ListInstanceFleetsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListInstanceFleetsOutput
40
+ * // InstanceFleets: [ // InstanceFleetList
41
+ * // { // InstanceFleet
42
+ * // Id: "STRING_VALUE",
43
+ * // Name: "STRING_VALUE",
44
+ * // Status: { // InstanceFleetStatus
45
+ * // State: "PROVISIONING" || "BOOTSTRAPPING" || "RUNNING" || "RESIZING" || "SUSPENDED" || "TERMINATING" || "TERMINATED",
46
+ * // StateChangeReason: { // InstanceFleetStateChangeReason
47
+ * // Code: "INTERNAL_ERROR" || "VALIDATION_ERROR" || "INSTANCE_FAILURE" || "CLUSTER_TERMINATED",
48
+ * // Message: "STRING_VALUE",
49
+ * // },
50
+ * // Timeline: { // InstanceFleetTimeline
51
+ * // CreationDateTime: new Date("TIMESTAMP"),
52
+ * // ReadyDateTime: new Date("TIMESTAMP"),
53
+ * // EndDateTime: new Date("TIMESTAMP"),
54
+ * // },
55
+ * // },
56
+ * // InstanceFleetType: "MASTER" || "CORE" || "TASK",
57
+ * // TargetOnDemandCapacity: Number("int"),
58
+ * // TargetSpotCapacity: Number("int"),
59
+ * // ProvisionedOnDemandCapacity: Number("int"),
60
+ * // ProvisionedSpotCapacity: Number("int"),
61
+ * // InstanceTypeSpecifications: [ // InstanceTypeSpecificationList
62
+ * // { // InstanceTypeSpecification
63
+ * // InstanceType: "STRING_VALUE",
64
+ * // WeightedCapacity: Number("int"),
65
+ * // BidPrice: "STRING_VALUE",
66
+ * // BidPriceAsPercentageOfOnDemandPrice: Number("double"),
67
+ * // Configurations: [ // ConfigurationList
68
+ * // { // Configuration
69
+ * // Classification: "STRING_VALUE",
70
+ * // Configurations: [
71
+ * // {
72
+ * // Classification: "STRING_VALUE",
73
+ * // Configurations: "<ConfigurationList>",
74
+ * // Properties: { // StringMap
75
+ * // "<keys>": "STRING_VALUE",
76
+ * // },
77
+ * // },
78
+ * // ],
79
+ * // Properties: {
80
+ * // "<keys>": "STRING_VALUE",
81
+ * // },
82
+ * // },
83
+ * // ],
84
+ * // EbsBlockDevices: [ // EbsBlockDeviceList
85
+ * // { // EbsBlockDevice
86
+ * // VolumeSpecification: { // VolumeSpecification
87
+ * // VolumeType: "STRING_VALUE", // required
88
+ * // Iops: Number("int"),
89
+ * // SizeInGB: Number("int"), // required
90
+ * // Throughput: Number("int"),
91
+ * // },
92
+ * // Device: "STRING_VALUE",
93
+ * // },
94
+ * // ],
95
+ * // EbsOptimized: true || false,
96
+ * // CustomAmiId: "STRING_VALUE",
97
+ * // },
98
+ * // ],
99
+ * // LaunchSpecifications: { // InstanceFleetProvisioningSpecifications
100
+ * // SpotSpecification: { // SpotProvisioningSpecification
101
+ * // TimeoutDurationMinutes: Number("int"), // required
102
+ * // TimeoutAction: "SWITCH_TO_ON_DEMAND" || "TERMINATE_CLUSTER", // required
103
+ * // BlockDurationMinutes: Number("int"),
104
+ * // AllocationStrategy: "capacity-optimized",
105
+ * // },
106
+ * // OnDemandSpecification: { // OnDemandProvisioningSpecification
107
+ * // AllocationStrategy: "lowest-price", // required
108
+ * // CapacityReservationOptions: { // OnDemandCapacityReservationOptions
109
+ * // UsageStrategy: "use-capacity-reservations-first",
110
+ * // CapacityReservationPreference: "open" || "none",
111
+ * // CapacityReservationResourceGroupArn: "STRING_VALUE",
112
+ * // },
113
+ * // },
114
+ * // },
115
+ * // ResizeSpecifications: { // InstanceFleetResizingSpecifications
116
+ * // SpotResizeSpecification: { // SpotResizingSpecification
117
+ * // TimeoutDurationMinutes: Number("int"), // required
118
+ * // },
119
+ * // OnDemandResizeSpecification: { // OnDemandResizingSpecification
120
+ * // TimeoutDurationMinutes: Number("int"), // required
121
+ * // },
122
+ * // },
123
+ * // },
124
+ * // ],
125
+ * // Marker: "STRING_VALUE",
126
+ * // };
127
+ *
39
128
  * ```
40
129
  *
41
130
  * @param ListInstanceFleetsCommandInput - {@link ListInstanceFleetsCommandInput}
@@ -51,6 +140,8 @@ export interface ListInstanceFleetsCommandOutput extends ListInstanceFleetsOutpu
51
140
  * @throws {@link InvalidRequestException} (client fault)
52
141
  * <p>This exception occurs when there is something wrong with user input.</p>
53
142
  *
143
+ * @throws {@link EMRServiceException}
144
+ * <p>Base exception class for all service exceptions from EMR service.</p>
54
145
  *
55
146
  */
56
147
  export declare class ListInstanceFleetsCommand extends $Command<ListInstanceFleetsCommandInput, ListInstanceFleetsCommandOutput, EMRClientResolvedConfig> {
@@ -32,6 +32,124 @@ export interface ListInstanceGroupsCommandOutput extends ListInstanceGroupsOutpu
32
32
  * };
33
33
  * const command = new ListInstanceGroupsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListInstanceGroupsOutput
36
+ * // InstanceGroups: [ // InstanceGroupList
37
+ * // { // InstanceGroup
38
+ * // Id: "STRING_VALUE",
39
+ * // Name: "STRING_VALUE",
40
+ * // Market: "ON_DEMAND" || "SPOT",
41
+ * // InstanceGroupType: "MASTER" || "CORE" || "TASK",
42
+ * // BidPrice: "STRING_VALUE",
43
+ * // InstanceType: "STRING_VALUE",
44
+ * // RequestedInstanceCount: Number("int"),
45
+ * // RunningInstanceCount: Number("int"),
46
+ * // Status: { // InstanceGroupStatus
47
+ * // State: "PROVISIONING" || "BOOTSTRAPPING" || "RUNNING" || "RECONFIGURING" || "RESIZING" || "SUSPENDED" || "TERMINATING" || "TERMINATED" || "ARRESTED" || "SHUTTING_DOWN" || "ENDED",
48
+ * // StateChangeReason: { // InstanceGroupStateChangeReason
49
+ * // Code: "INTERNAL_ERROR" || "VALIDATION_ERROR" || "INSTANCE_FAILURE" || "CLUSTER_TERMINATED",
50
+ * // Message: "STRING_VALUE",
51
+ * // },
52
+ * // Timeline: { // InstanceGroupTimeline
53
+ * // CreationDateTime: new Date("TIMESTAMP"),
54
+ * // ReadyDateTime: new Date("TIMESTAMP"),
55
+ * // EndDateTime: new Date("TIMESTAMP"),
56
+ * // },
57
+ * // },
58
+ * // Configurations: [ // ConfigurationList
59
+ * // { // Configuration
60
+ * // Classification: "STRING_VALUE",
61
+ * // Configurations: [
62
+ * // {
63
+ * // Classification: "STRING_VALUE",
64
+ * // Configurations: "<ConfigurationList>",
65
+ * // Properties: { // StringMap
66
+ * // "<keys>": "STRING_VALUE",
67
+ * // },
68
+ * // },
69
+ * // ],
70
+ * // Properties: {
71
+ * // "<keys>": "STRING_VALUE",
72
+ * // },
73
+ * // },
74
+ * // ],
75
+ * // ConfigurationsVersion: Number("long"),
76
+ * // LastSuccessfullyAppliedConfigurations: "<ConfigurationList>",
77
+ * // LastSuccessfullyAppliedConfigurationsVersion: Number("long"),
78
+ * // EbsBlockDevices: [ // EbsBlockDeviceList
79
+ * // { // EbsBlockDevice
80
+ * // VolumeSpecification: { // VolumeSpecification
81
+ * // VolumeType: "STRING_VALUE", // required
82
+ * // Iops: Number("int"),
83
+ * // SizeInGB: Number("int"), // required
84
+ * // Throughput: Number("int"),
85
+ * // },
86
+ * // Device: "STRING_VALUE",
87
+ * // },
88
+ * // ],
89
+ * // EbsOptimized: true || false,
90
+ * // ShrinkPolicy: { // ShrinkPolicy
91
+ * // DecommissionTimeout: Number("int"),
92
+ * // InstanceResizePolicy: { // InstanceResizePolicy
93
+ * // InstancesToTerminate: [ // EC2InstanceIdsList
94
+ * // "STRING_VALUE",
95
+ * // ],
96
+ * // InstancesToProtect: [
97
+ * // "STRING_VALUE",
98
+ * // ],
99
+ * // InstanceTerminationTimeout: Number("int"),
100
+ * // },
101
+ * // },
102
+ * // AutoScalingPolicy: { // AutoScalingPolicyDescription
103
+ * // Status: { // AutoScalingPolicyStatus
104
+ * // State: "PENDING" || "ATTACHING" || "ATTACHED" || "DETACHING" || "DETACHED" || "FAILED",
105
+ * // StateChangeReason: { // AutoScalingPolicyStateChangeReason
106
+ * // Code: "USER_REQUEST" || "PROVISION_FAILURE" || "CLEANUP_FAILURE",
107
+ * // Message: "STRING_VALUE",
108
+ * // },
109
+ * // },
110
+ * // Constraints: { // ScalingConstraints
111
+ * // MinCapacity: Number("int"), // required
112
+ * // MaxCapacity: Number("int"), // required
113
+ * // },
114
+ * // Rules: [ // ScalingRuleList
115
+ * // { // ScalingRule
116
+ * // Name: "STRING_VALUE", // required
117
+ * // Description: "STRING_VALUE",
118
+ * // Action: { // ScalingAction
119
+ * // Market: "ON_DEMAND" || "SPOT",
120
+ * // SimpleScalingPolicyConfiguration: { // SimpleScalingPolicyConfiguration
121
+ * // AdjustmentType: "CHANGE_IN_CAPACITY" || "PERCENT_CHANGE_IN_CAPACITY" || "EXACT_CAPACITY",
122
+ * // ScalingAdjustment: Number("int"), // required
123
+ * // CoolDown: Number("int"),
124
+ * // },
125
+ * // },
126
+ * // Trigger: { // ScalingTrigger
127
+ * // CloudWatchAlarmDefinition: { // CloudWatchAlarmDefinition
128
+ * // ComparisonOperator: "GREATER_THAN_OR_EQUAL" || "GREATER_THAN" || "LESS_THAN" || "LESS_THAN_OR_EQUAL", // required
129
+ * // EvaluationPeriods: Number("int"),
130
+ * // MetricName: "STRING_VALUE", // required
131
+ * // Namespace: "STRING_VALUE",
132
+ * // Period: Number("int"), // required
133
+ * // Statistic: "SAMPLE_COUNT" || "AVERAGE" || "SUM" || "MINIMUM" || "MAXIMUM",
134
+ * // Threshold: Number("double"), // required
135
+ * // Unit: "NONE" || "SECONDS" || "MICRO_SECONDS" || "MILLI_SECONDS" || "BYTES" || "KILO_BYTES" || "MEGA_BYTES" || "GIGA_BYTES" || "TERA_BYTES" || "BITS" || "KILO_BITS" || "MEGA_BITS" || "GIGA_BITS" || "TERA_BITS" || "PERCENT" || "COUNT" || "BYTES_PER_SECOND" || "KILO_BYTES_PER_SECOND" || "MEGA_BYTES_PER_SECOND" || "GIGA_BYTES_PER_SECOND" || "TERA_BYTES_PER_SECOND" || "BITS_PER_SECOND" || "KILO_BITS_PER_SECOND" || "MEGA_BITS_PER_SECOND" || "GIGA_BITS_PER_SECOND" || "TERA_BITS_PER_SECOND" || "COUNT_PER_SECOND",
136
+ * // Dimensions: [ // MetricDimensionList
137
+ * // { // MetricDimension
138
+ * // Key: "STRING_VALUE",
139
+ * // Value: "STRING_VALUE",
140
+ * // },
141
+ * // ],
142
+ * // },
143
+ * // },
144
+ * // },
145
+ * // ],
146
+ * // },
147
+ * // CustomAmiId: "STRING_VALUE",
148
+ * // },
149
+ * // ],
150
+ * // Marker: "STRING_VALUE",
151
+ * // };
152
+ *
35
153
  * ```
36
154
  *
37
155
  * @param ListInstanceGroupsCommandInput - {@link ListInstanceGroupsCommandInput}
@@ -47,6 +165,8 @@ export interface ListInstanceGroupsCommandOutput extends ListInstanceGroupsOutpu
47
165
  * @throws {@link InvalidRequestException} (client fault)
48
166
  * <p>This exception occurs when there is something wrong with user input.</p>
49
167
  *
168
+ * @throws {@link EMRServiceException}
169
+ * <p>Base exception class for all service exceptions from EMR service.</p>
50
170
  *
51
171
  */
52
172
  export declare class ListInstanceGroupsCommand extends $Command<ListInstanceGroupsCommandInput, ListInstanceGroupsCommandOutput, EMRClientResolvedConfig> {
@@ -43,6 +43,42 @@ export interface ListInstancesCommandOutput extends ListInstancesOutput, __Metad
43
43
  * };
44
44
  * const command = new ListInstancesCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // ListInstancesOutput
47
+ * // Instances: [ // InstanceList
48
+ * // { // Instance
49
+ * // Id: "STRING_VALUE",
50
+ * // Ec2InstanceId: "STRING_VALUE",
51
+ * // PublicDnsName: "STRING_VALUE",
52
+ * // PublicIpAddress: "STRING_VALUE",
53
+ * // PrivateDnsName: "STRING_VALUE",
54
+ * // PrivateIpAddress: "STRING_VALUE",
55
+ * // Status: { // InstanceStatus
56
+ * // State: "AWAITING_FULFILLMENT" || "PROVISIONING" || "BOOTSTRAPPING" || "RUNNING" || "TERMINATED",
57
+ * // StateChangeReason: { // InstanceStateChangeReason
58
+ * // Code: "INTERNAL_ERROR" || "VALIDATION_ERROR" || "INSTANCE_FAILURE" || "BOOTSTRAP_FAILURE" || "CLUSTER_TERMINATED",
59
+ * // Message: "STRING_VALUE",
60
+ * // },
61
+ * // Timeline: { // InstanceTimeline
62
+ * // CreationDateTime: new Date("TIMESTAMP"),
63
+ * // ReadyDateTime: new Date("TIMESTAMP"),
64
+ * // EndDateTime: new Date("TIMESTAMP"),
65
+ * // },
66
+ * // },
67
+ * // InstanceGroupId: "STRING_VALUE",
68
+ * // InstanceFleetId: "STRING_VALUE",
69
+ * // Market: "ON_DEMAND" || "SPOT",
70
+ * // InstanceType: "STRING_VALUE",
71
+ * // EbsVolumes: [ // EbsVolumeList
72
+ * // { // EbsVolume
73
+ * // Device: "STRING_VALUE",
74
+ * // VolumeId: "STRING_VALUE",
75
+ * // },
76
+ * // ],
77
+ * // },
78
+ * // ],
79
+ * // Marker: "STRING_VALUE",
80
+ * // };
81
+ *
46
82
  * ```
47
83
  *
48
84
  * @param ListInstancesCommandInput - {@link ListInstancesCommandInput}
@@ -58,6 +94,8 @@ export interface ListInstancesCommandOutput extends ListInstancesOutput, __Metad
58
94
  * @throws {@link InvalidRequestException} (client fault)
59
95
  * <p>This exception occurs when there is something wrong with user input.</p>
60
96
  *
97
+ * @throws {@link EMRServiceException}
98
+ * <p>Base exception class for all service exceptions from EMR service.</p>
61
99
  *
62
100
  */
63
101
  export declare class ListInstancesCommand extends $Command<ListInstancesCommandInput, ListInstancesCommandOutput, EMRClientResolvedConfig> {
@@ -38,6 +38,20 @@ export interface ListNotebookExecutionsCommandOutput extends ListNotebookExecuti
38
38
  * };
39
39
  * const command = new ListNotebookExecutionsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // ListNotebookExecutionsOutput
42
+ * // NotebookExecutions: [ // NotebookExecutionSummaryList
43
+ * // { // NotebookExecutionSummary
44
+ * // NotebookExecutionId: "STRING_VALUE",
45
+ * // EditorId: "STRING_VALUE",
46
+ * // NotebookExecutionName: "STRING_VALUE",
47
+ * // Status: "START_PENDING" || "STARTING" || "RUNNING" || "FINISHING" || "FINISHED" || "FAILING" || "FAILED" || "STOP_PENDING" || "STOPPING" || "STOPPED",
48
+ * // StartTime: new Date("TIMESTAMP"),
49
+ * // EndTime: new Date("TIMESTAMP"),
50
+ * // },
51
+ * // ],
52
+ * // Marker: "STRING_VALUE",
53
+ * // };
54
+ *
41
55
  * ```
42
56
  *
43
57
  * @param ListNotebookExecutionsCommandInput - {@link ListNotebookExecutionsCommandInput}
@@ -53,6 +67,8 @@ export interface ListNotebookExecutionsCommandOutput extends ListNotebookExecuti
53
67
  * @throws {@link InvalidRequestException} (client fault)
54
68
  * <p>This exception occurs when there is something wrong with user input.</p>
55
69
  *
70
+ * @throws {@link EMRServiceException}
71
+ * <p>Base exception class for all service exceptions from EMR service.</p>
56
72
  *
57
73
  */
58
74
  export declare class ListNotebookExecutionsCommand extends $Command<ListNotebookExecutionsCommandInput, ListNotebookExecutionsCommandOutput, EMRClientResolvedConfig> {
@@ -36,6 +36,13 @@ export interface ListReleaseLabelsCommandOutput extends ListReleaseLabelsOutput,
36
36
  * };
37
37
  * const command = new ListReleaseLabelsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListReleaseLabelsOutput
40
+ * // ReleaseLabels: [ // StringList
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
39
46
  * ```
40
47
  *
41
48
  * @param ListReleaseLabelsCommandInput - {@link ListReleaseLabelsCommandInput}
@@ -51,6 +58,8 @@ export interface ListReleaseLabelsCommandOutput extends ListReleaseLabelsOutput,
51
58
  * @throws {@link InvalidRequestException} (client fault)
52
59
  * <p>This exception occurs when there is something wrong with user input.</p>
53
60
  *
61
+ * @throws {@link EMRServiceException}
62
+ * <p>Base exception class for all service exceptions from EMR service.</p>
54
63
  *
55
64
  */
56
65
  export declare class ListReleaseLabelsCommand extends $Command<ListReleaseLabelsCommandInput, ListReleaseLabelsCommandOutput, EMRClientResolvedConfig> {
@@ -34,6 +34,16 @@ export interface ListSecurityConfigurationsCommandOutput extends ListSecurityCon
34
34
  * };
35
35
  * const command = new ListSecurityConfigurationsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListSecurityConfigurationsOutput
38
+ * // SecurityConfigurations: [ // SecurityConfigurationList
39
+ * // { // SecurityConfigurationSummary
40
+ * // Name: "STRING_VALUE",
41
+ * // CreationDateTime: new Date("TIMESTAMP"),
42
+ * // },
43
+ * // ],
44
+ * // Marker: "STRING_VALUE",
45
+ * // };
46
+ *
37
47
  * ```
38
48
  *
39
49
  * @param ListSecurityConfigurationsCommandInput - {@link ListSecurityConfigurationsCommandInput}
@@ -49,6 +59,8 @@ export interface ListSecurityConfigurationsCommandOutput extends ListSecurityCon
49
59
  * @throws {@link InvalidRequestException} (client fault)
50
60
  * <p>This exception occurs when there is something wrong with user input.</p>
51
61
  *
62
+ * @throws {@link EMRServiceException}
63
+ * <p>Base exception class for all service exceptions from EMR service.</p>
52
64
  *
53
65
  */
54
66
  export declare class ListSecurityConfigurationsCommand extends $Command<ListSecurityConfigurationsCommandInput, ListSecurityConfigurationsCommandOutput, EMRClientResolvedConfig> {