@aws-sdk/client-emr 3.288.0 → 3.290.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AddInstanceFleetCommand.d.ts +8 -0
- package/dist-types/commands/AddInstanceGroupsCommand.d.ts +5 -0
- package/dist-types/commands/AddJobFlowStepsCommand.d.ts +5 -0
- package/dist-types/commands/AddTagsCommand.d.ts +8 -0
- package/dist-types/commands/CancelStepsCommand.d.ts +8 -0
- package/dist-types/commands/CreateSecurityConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/CreateStudioCommand.d.ts +8 -0
- package/dist-types/commands/CreateStudioSessionMappingCommand.d.ts +8 -0
- package/dist-types/commands/DeleteSecurityConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/DeleteStudioCommand.d.ts +8 -0
- package/dist-types/commands/DeleteStudioSessionMappingCommand.d.ts +8 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +8 -0
- package/dist-types/commands/DescribeJobFlowsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeNotebookExecutionCommand.d.ts +8 -0
- package/dist-types/commands/DescribeReleaseLabelCommand.d.ts +8 -0
- package/dist-types/commands/DescribeSecurityConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/DescribeStepCommand.d.ts +8 -0
- package/dist-types/commands/DescribeStudioCommand.d.ts +8 -0
- package/dist-types/commands/GetAutoTerminationPolicyCommand.d.ts +1 -0
- package/dist-types/commands/GetBlockPublicAccessConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/GetClusterSessionCredentialsCommand.d.ts +8 -0
- package/dist-types/commands/GetManagedScalingPolicyCommand.d.ts +1 -0
- package/dist-types/commands/GetStudioSessionMappingCommand.d.ts +8 -0
- package/dist-types/commands/ListBootstrapActionsCommand.d.ts +8 -0
- package/dist-types/commands/ListClustersCommand.d.ts +8 -0
- package/dist-types/commands/ListInstanceFleetsCommand.d.ts +8 -0
- package/dist-types/commands/ListInstanceGroupsCommand.d.ts +8 -0
- package/dist-types/commands/ListInstancesCommand.d.ts +8 -0
- package/dist-types/commands/ListNotebookExecutionsCommand.d.ts +8 -0
- package/dist-types/commands/ListReleaseLabelsCommand.d.ts +8 -0
- package/dist-types/commands/ListSecurityConfigurationsCommand.d.ts +8 -0
- package/dist-types/commands/ListStepsCommand.d.ts +8 -0
- package/dist-types/commands/ListStudioSessionMappingsCommand.d.ts +8 -0
- package/dist-types/commands/ListStudiosCommand.d.ts +8 -0
- package/dist-types/commands/ModifyClusterCommand.d.ts +8 -0
- package/dist-types/commands/ModifyInstanceFleetCommand.d.ts +8 -0
- package/dist-types/commands/ModifyInstanceGroupsCommand.d.ts +5 -0
- package/dist-types/commands/PutAutoScalingPolicyCommand.d.ts +1 -0
- package/dist-types/commands/PutAutoTerminationPolicyCommand.d.ts +1 -0
- package/dist-types/commands/PutBlockPublicAccessConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/PutManagedScalingPolicyCommand.d.ts +1 -0
- package/dist-types/commands/RemoveAutoScalingPolicyCommand.d.ts +1 -0
- package/dist-types/commands/RemoveAutoTerminationPolicyCommand.d.ts +1 -0
- package/dist-types/commands/RemoveManagedScalingPolicyCommand.d.ts +1 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +8 -0
- package/dist-types/commands/RunJobFlowCommand.d.ts +5 -0
- package/dist-types/commands/SetTerminationProtectionCommand.d.ts +5 -0
- package/dist-types/commands/SetVisibleToAllUsersCommand.d.ts +5 -0
- package/dist-types/commands/StartNotebookExecutionCommand.d.ts +8 -0
- package/dist-types/commands/StopNotebookExecutionCommand.d.ts +8 -0
- package/dist-types/commands/TerminateJobFlowsCommand.d.ts +5 -0
- package/dist-types/commands/UpdateStudioCommand.d.ts +8 -0
- package/dist-types/commands/UpdateStudioSessionMappingCommand.d.ts +8 -0
- package/package.json +30 -30
|
@@ -33,6 +33,14 @@ export interface AddInstanceFleetCommandOutput extends AddInstanceFleetOutput, _
|
|
|
33
33
|
* @see {@link AddInstanceFleetCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
38
|
+
* service.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
36
44
|
*/
|
|
37
45
|
export declare class AddInstanceFleetCommand extends $Command<AddInstanceFleetCommandInput, AddInstanceFleetCommandOutput, EMRClientResolvedConfig> {
|
|
38
46
|
readonly input: AddInstanceFleetCommandInput;
|
|
@@ -29,6 +29,11 @@ export interface AddInstanceGroupsCommandOutput extends AddInstanceGroupsOutput,
|
|
|
29
29
|
* @see {@link AddInstanceGroupsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerError} (server fault)
|
|
33
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
34
|
+
* not completed.</p>
|
|
35
|
+
*
|
|
36
|
+
*
|
|
32
37
|
*/
|
|
33
38
|
export declare class AddInstanceGroupsCommand extends $Command<AddInstanceGroupsCommandInput, AddInstanceGroupsCommandOutput, EMRClientResolvedConfig> {
|
|
34
39
|
readonly input: AddInstanceGroupsCommandInput;
|
|
@@ -47,6 +47,11 @@ export interface AddJobFlowStepsCommandOutput extends AddJobFlowStepsOutput, __M
|
|
|
47
47
|
* @see {@link AddJobFlowStepsCommandOutput} for command's `response` shape.
|
|
48
48
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
49
49
|
*
|
|
50
|
+
* @throws {@link InternalServerError} (server fault)
|
|
51
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
52
|
+
* not completed.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
50
55
|
*/
|
|
51
56
|
export declare class AddJobFlowStepsCommand extends $Command<AddJobFlowStepsCommandInput, AddJobFlowStepsCommandOutput, EMRClientResolvedConfig> {
|
|
52
57
|
readonly input: AddJobFlowStepsCommandInput;
|
|
@@ -33,6 +33,14 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
33
33
|
* @see {@link AddTagsCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
38
|
+
* service.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
36
44
|
*/
|
|
37
45
|
export declare class AddTagsCommand extends $Command<AddTagsCommandInput, AddTagsCommandOutput, EMRClientResolvedConfig> {
|
|
38
46
|
readonly input: AddTagsCommandInput;
|
|
@@ -33,6 +33,14 @@ export interface CancelStepsCommandOutput extends CancelStepsOutput, __MetadataB
|
|
|
33
33
|
* @see {@link CancelStepsCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServerError} (server fault)
|
|
37
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
38
|
+
* not completed.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
36
44
|
*/
|
|
37
45
|
export declare class CancelStepsCommand extends $Command<CancelStepsCommandInput, CancelStepsCommandOutput, EMRClientResolvedConfig> {
|
|
38
46
|
readonly input: CancelStepsCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface CreateSecurityConfigurationCommandOutput extends CreateSecurity
|
|
|
30
30
|
* @see {@link CreateSecurityConfigurationCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
35
|
+
* service.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class CreateSecurityConfigurationCommand extends $Command<CreateSecurityConfigurationCommandInput, CreateSecurityConfigurationCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: CreateSecurityConfigurationCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface CreateStudioCommandOutput extends CreateStudioOutput, __Metadat
|
|
|
29
29
|
* @see {@link CreateStudioCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
34
|
+
* service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class CreateStudioCommand extends $Command<CreateStudioCommandInput, CreateStudioCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: CreateStudioCommandInput;
|
|
@@ -33,6 +33,14 @@ export interface CreateStudioSessionMappingCommandOutput extends __MetadataBeare
|
|
|
33
33
|
* @see {@link CreateStudioSessionMappingCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServerError} (server fault)
|
|
37
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
38
|
+
* not completed.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
36
44
|
*/
|
|
37
45
|
export declare class CreateStudioSessionMappingCommand extends $Command<CreateStudioSessionMappingCommandInput, CreateStudioSessionMappingCommandOutput, EMRClientResolvedConfig> {
|
|
38
46
|
readonly input: CreateStudioSessionMappingCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface DeleteSecurityConfigurationCommandOutput extends DeleteSecurity
|
|
|
29
29
|
* @see {@link DeleteSecurityConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
34
|
+
* service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class DeleteSecurityConfigurationCommand extends $Command<DeleteSecurityConfigurationCommandInput, DeleteSecurityConfigurationCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: DeleteSecurityConfigurationCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface DeleteStudioCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteStudioCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
34
|
+
* service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class DeleteStudioCommand extends $Command<DeleteStudioCommandInput, DeleteStudioCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: DeleteStudioCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface DeleteStudioSessionMappingCommandOutput extends __MetadataBeare
|
|
|
29
29
|
* @see {@link DeleteStudioSessionMappingCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerError} (server fault)
|
|
33
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
34
|
+
* not completed.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class DeleteStudioSessionMappingCommand extends $Command<DeleteStudioSessionMappingCommandInput, DeleteStudioSessionMappingCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: DeleteStudioSessionMappingCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface DescribeClusterCommandOutput extends DescribeClusterOutput, __M
|
|
|
30
30
|
* @see {@link DescribeClusterCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
35
|
+
* service.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class DescribeClusterCommand extends $Command<DescribeClusterCommandInput, DescribeClusterCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: DescribeClusterCommandInput;
|
|
@@ -51,6 +51,11 @@ export interface DescribeJobFlowsCommandOutput extends DescribeJobFlowsOutput, _
|
|
|
51
51
|
* @see {@link DescribeJobFlowsCommandOutput} for command's `response` shape.
|
|
52
52
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
53
53
|
*
|
|
54
|
+
* @throws {@link InternalServerError} (server fault)
|
|
55
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
56
|
+
* not completed.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
54
59
|
*/
|
|
55
60
|
export declare class DescribeJobFlowsCommand extends $Command<DescribeJobFlowsCommandInput, DescribeJobFlowsCommandOutput, EMRClientResolvedConfig> {
|
|
56
61
|
readonly input: DescribeJobFlowsCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface DescribeNotebookExecutionCommandOutput extends DescribeNotebook
|
|
|
29
29
|
* @see {@link DescribeNotebookExecutionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerError} (server fault)
|
|
33
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
34
|
+
* not completed.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class DescribeNotebookExecutionCommand extends $Command<DescribeNotebookExecutionCommandInput, DescribeNotebookExecutionCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: DescribeNotebookExecutionCommandInput;
|
|
@@ -31,6 +31,14 @@ export interface DescribeReleaseLabelCommandOutput extends DescribeReleaseLabelO
|
|
|
31
31
|
* @see {@link DescribeReleaseLabelCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
36
|
+
* service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
34
42
|
*/
|
|
35
43
|
export declare class DescribeReleaseLabelCommand extends $Command<DescribeReleaseLabelCommandInput, DescribeReleaseLabelCommandOutput, EMRClientResolvedConfig> {
|
|
36
44
|
readonly input: DescribeReleaseLabelCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface DescribeSecurityConfigurationCommandOutput extends DescribeSecu
|
|
|
30
30
|
* @see {@link DescribeSecurityConfigurationCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
35
|
+
* service.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class DescribeSecurityConfigurationCommand extends $Command<DescribeSecurityConfigurationCommandInput, DescribeSecurityConfigurationCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: DescribeSecurityConfigurationCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface DescribeStepCommandOutput extends DescribeStepOutput, __Metadat
|
|
|
29
29
|
* @see {@link DescribeStepCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
34
|
+
* service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class DescribeStepCommand extends $Command<DescribeStepCommandInput, DescribeStepCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: DescribeStepCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface DescribeStudioCommandOutput extends DescribeStudioOutput, __Met
|
|
|
30
30
|
* @see {@link DescribeStudioCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
35
|
+
* service.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class DescribeStudioCommand extends $Command<DescribeStudioCommandInput, DescribeStudioCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: DescribeStudioCommandInput;
|
|
@@ -29,6 +29,7 @@ export interface GetAutoTerminationPolicyCommandOutput extends GetAutoTerminatio
|
|
|
29
29
|
* @see {@link GetAutoTerminationPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
*
|
|
32
33
|
*/
|
|
33
34
|
export declare class GetAutoTerminationPolicyCommand extends $Command<GetAutoTerminationPolicyCommandInput, GetAutoTerminationPolicyCommandOutput, EMRClientResolvedConfig> {
|
|
34
35
|
readonly input: GetAutoTerminationPolicyCommandInput;
|
|
@@ -31,6 +31,14 @@ export interface GetBlockPublicAccessConfigurationCommandOutput extends GetBlock
|
|
|
31
31
|
* @see {@link GetBlockPublicAccessConfigurationCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
36
|
+
* service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
34
42
|
*/
|
|
35
43
|
export declare class GetBlockPublicAccessConfigurationCommand extends $Command<GetBlockPublicAccessConfigurationCommandInput, GetBlockPublicAccessConfigurationCommandOutput, EMRClientResolvedConfig> {
|
|
36
44
|
readonly input: GetBlockPublicAccessConfigurationCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface GetClusterSessionCredentialsCommandOutput extends GetClusterSes
|
|
|
30
30
|
* @see {@link GetClusterSessionCredentialsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerError} (server fault)
|
|
34
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
35
|
+
* not completed.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class GetClusterSessionCredentialsCommand extends $Command<GetClusterSessionCredentialsCommandInput, GetClusterSessionCredentialsCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: GetClusterSessionCredentialsCommandInput;
|
|
@@ -29,6 +29,7 @@ export interface GetManagedScalingPolicyCommandOutput extends GetManagedScalingP
|
|
|
29
29
|
* @see {@link GetManagedScalingPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
*
|
|
32
33
|
*/
|
|
33
34
|
export declare class GetManagedScalingPolicyCommand extends $Command<GetManagedScalingPolicyCommandInput, GetManagedScalingPolicyCommandOutput, EMRClientResolvedConfig> {
|
|
34
35
|
readonly input: GetManagedScalingPolicyCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface GetStudioSessionMappingCommandOutput extends GetStudioSessionMa
|
|
|
30
30
|
* @see {@link GetStudioSessionMappingCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerError} (server fault)
|
|
34
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
35
|
+
* not completed.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class GetStudioSessionMappingCommand extends $Command<GetStudioSessionMappingCommandInput, GetStudioSessionMappingCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: GetStudioSessionMappingCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface ListBootstrapActionsCommandOutput extends ListBootstrapActionsO
|
|
|
29
29
|
* @see {@link ListBootstrapActionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
34
|
+
* service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class ListBootstrapActionsCommand extends $Command<ListBootstrapActionsCommandInput, ListBootstrapActionsCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: ListBootstrapActionsCommandInput;
|
|
@@ -33,6 +33,14 @@ export interface ListClustersCommandOutput extends ListClustersOutput, __Metadat
|
|
|
33
33
|
* @see {@link ListClustersCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
38
|
+
* service.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
36
44
|
*/
|
|
37
45
|
export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, EMRClientResolvedConfig> {
|
|
38
46
|
readonly input: ListClustersCommandInput;
|
|
@@ -33,6 +33,14 @@ export interface ListInstanceFleetsCommandOutput extends ListInstanceFleetsOutpu
|
|
|
33
33
|
* @see {@link ListInstanceFleetsCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
38
|
+
* service.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
36
44
|
*/
|
|
37
45
|
export declare class ListInstanceFleetsCommand extends $Command<ListInstanceFleetsCommandInput, ListInstanceFleetsCommandOutput, EMRClientResolvedConfig> {
|
|
38
46
|
readonly input: ListInstanceFleetsCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface ListInstanceGroupsCommandOutput extends ListInstanceGroupsOutpu
|
|
|
29
29
|
* @see {@link ListInstanceGroupsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
34
|
+
* service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class ListInstanceGroupsCommand extends $Command<ListInstanceGroupsCommandInput, ListInstanceGroupsCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: ListInstanceGroupsCommandInput;
|
|
@@ -31,6 +31,14 @@ export interface ListInstancesCommandOutput extends ListInstancesOutput, __Metad
|
|
|
31
31
|
* @see {@link ListInstancesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
36
|
+
* service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
34
42
|
*/
|
|
35
43
|
export declare class ListInstancesCommand extends $Command<ListInstancesCommandInput, ListInstancesCommandOutput, EMRClientResolvedConfig> {
|
|
36
44
|
readonly input: ListInstancesCommandInput;
|
|
@@ -32,6 +32,14 @@ export interface ListNotebookExecutionsCommandOutput extends ListNotebookExecuti
|
|
|
32
32
|
* @see {@link ListNotebookExecutionsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalServerError} (server fault)
|
|
36
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
37
|
+
* not completed.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
40
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
35
43
|
*/
|
|
36
44
|
export declare class ListNotebookExecutionsCommand extends $Command<ListNotebookExecutionsCommandInput, ListNotebookExecutionsCommandOutput, EMRClientResolvedConfig> {
|
|
37
45
|
readonly input: ListNotebookExecutionsCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface ListReleaseLabelsCommandOutput extends ListReleaseLabelsOutput,
|
|
|
29
29
|
* @see {@link ListReleaseLabelsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
34
|
+
* service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class ListReleaseLabelsCommand extends $Command<ListReleaseLabelsCommandInput, ListReleaseLabelsCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: ListReleaseLabelsCommandInput;
|
|
@@ -32,6 +32,14 @@ export interface ListSecurityConfigurationsCommandOutput extends ListSecurityCon
|
|
|
32
32
|
* @see {@link ListSecurityConfigurationsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
37
|
+
* service.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
40
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
35
43
|
*/
|
|
36
44
|
export declare class ListSecurityConfigurationsCommand extends $Command<ListSecurityConfigurationsCommandInput, ListSecurityConfigurationsCommandOutput, EMRClientResolvedConfig> {
|
|
37
45
|
readonly input: ListSecurityConfigurationsCommandInput;
|
|
@@ -34,6 +34,14 @@ export interface ListStepsCommandOutput extends ListStepsOutput, __MetadataBeare
|
|
|
34
34
|
* @see {@link ListStepsCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
39
|
+
* service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
42
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
37
45
|
*/
|
|
38
46
|
export declare class ListStepsCommand extends $Command<ListStepsCommandInput, ListStepsCommandOutput, EMRClientResolvedConfig> {
|
|
39
47
|
readonly input: ListStepsCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface ListStudioSessionMappingsCommandOutput extends ListStudioSessio
|
|
|
30
30
|
* @see {@link ListStudioSessionMappingsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerError} (server fault)
|
|
34
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
35
|
+
* not completed.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class ListStudioSessionMappingsCommand extends $Command<ListStudioSessionMappingsCommandInput, ListStudioSessionMappingsCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: ListStudioSessionMappingsCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface ListStudiosCommandOutput extends ListStudiosOutput, __MetadataB
|
|
|
30
30
|
* @see {@link ListStudiosCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
35
|
+
* service.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class ListStudiosCommand extends $Command<ListStudiosCommandInput, ListStudiosCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: ListStudiosCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface ModifyClusterCommandOutput extends ModifyClusterOutput, __Metad
|
|
|
30
30
|
* @see {@link ModifyClusterCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerError} (server fault)
|
|
34
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
35
|
+
* not completed.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class ModifyClusterCommand extends $Command<ModifyClusterCommandInput, ModifyClusterCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: ModifyClusterCommandInput;
|
|
@@ -35,6 +35,14 @@ export interface ModifyInstanceFleetCommandOutput extends __MetadataBearer {
|
|
|
35
35
|
* @see {@link ModifyInstanceFleetCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
43
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
38
46
|
*/
|
|
39
47
|
export declare class ModifyInstanceFleetCommand extends $Command<ModifyInstanceFleetCommandInput, ModifyInstanceFleetCommandOutput, EMRClientResolvedConfig> {
|
|
40
48
|
readonly input: ModifyInstanceFleetCommandInput;
|
|
@@ -31,6 +31,11 @@ export interface ModifyInstanceGroupsCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link ModifyInstanceGroupsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerError} (server fault)
|
|
35
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
36
|
+
* not completed.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
34
39
|
*/
|
|
35
40
|
export declare class ModifyInstanceGroupsCommand extends $Command<ModifyInstanceGroupsCommandInput, ModifyInstanceGroupsCommandOutput, EMRClientResolvedConfig> {
|
|
36
41
|
readonly input: ModifyInstanceGroupsCommandInput;
|
|
@@ -32,6 +32,7 @@ export interface PutAutoScalingPolicyCommandOutput extends PutAutoScalingPolicyO
|
|
|
32
32
|
* @see {@link PutAutoScalingPolicyCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
*
|
|
35
36
|
*/
|
|
36
37
|
export declare class PutAutoScalingPolicyCommand extends $Command<PutAutoScalingPolicyCommandInput, PutAutoScalingPolicyCommandOutput, EMRClientResolvedConfig> {
|
|
37
38
|
readonly input: PutAutoScalingPolicyCommandInput;
|
|
@@ -37,6 +37,7 @@ export interface PutAutoTerminationPolicyCommandOutput extends PutAutoTerminatio
|
|
|
37
37
|
* @see {@link PutAutoTerminationPolicyCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
*
|
|
40
41
|
*/
|
|
41
42
|
export declare class PutAutoTerminationPolicyCommand extends $Command<PutAutoTerminationPolicyCommandInput, PutAutoTerminationPolicyCommandOutput, EMRClientResolvedConfig> {
|
|
42
43
|
readonly input: PutAutoTerminationPolicyCommandInput;
|
|
@@ -32,6 +32,14 @@ export interface PutBlockPublicAccessConfigurationCommandOutput extends PutBlock
|
|
|
32
32
|
* @see {@link PutBlockPublicAccessConfigurationCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
37
|
+
* service.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
40
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
35
43
|
*/
|
|
36
44
|
export declare class PutBlockPublicAccessConfigurationCommand extends $Command<PutBlockPublicAccessConfigurationCommandInput, PutBlockPublicAccessConfigurationCommandOutput, EMRClientResolvedConfig> {
|
|
37
45
|
readonly input: PutBlockPublicAccessConfigurationCommandInput;
|
|
@@ -32,6 +32,7 @@ export interface PutManagedScalingPolicyCommandOutput extends PutManagedScalingP
|
|
|
32
32
|
* @see {@link PutManagedScalingPolicyCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
*
|
|
35
36
|
*/
|
|
36
37
|
export declare class PutManagedScalingPolicyCommand extends $Command<PutManagedScalingPolicyCommandInput, PutManagedScalingPolicyCommandOutput, EMRClientResolvedConfig> {
|
|
37
38
|
readonly input: PutManagedScalingPolicyCommandInput;
|
|
@@ -30,6 +30,7 @@ export interface RemoveAutoScalingPolicyCommandOutput extends RemoveAutoScalingP
|
|
|
30
30
|
* @see {@link RemoveAutoScalingPolicyCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
*
|
|
33
34
|
*/
|
|
34
35
|
export declare class RemoveAutoScalingPolicyCommand extends $Command<RemoveAutoScalingPolicyCommandInput, RemoveAutoScalingPolicyCommandOutput, EMRClientResolvedConfig> {
|
|
35
36
|
readonly input: RemoveAutoScalingPolicyCommandInput;
|
|
@@ -29,6 +29,7 @@ export interface RemoveAutoTerminationPolicyCommandOutput extends RemoveAutoTerm
|
|
|
29
29
|
* @see {@link RemoveAutoTerminationPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
*
|
|
32
33
|
*/
|
|
33
34
|
export declare class RemoveAutoTerminationPolicyCommand extends $Command<RemoveAutoTerminationPolicyCommandInput, RemoveAutoTerminationPolicyCommandOutput, EMRClientResolvedConfig> {
|
|
34
35
|
readonly input: RemoveAutoTerminationPolicyCommandInput;
|
|
@@ -29,6 +29,7 @@ export interface RemoveManagedScalingPolicyCommandOutput extends RemoveManagedSc
|
|
|
29
29
|
* @see {@link RemoveManagedScalingPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
*
|
|
32
33
|
*/
|
|
33
34
|
export declare class RemoveManagedScalingPolicyCommand extends $Command<RemoveManagedScalingPolicyCommandInput, RemoveManagedScalingPolicyCommandOutput, EMRClientResolvedConfig> {
|
|
34
35
|
readonly input: RemoveManagedScalingPolicyCommandInput;
|
|
@@ -33,6 +33,14 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
33
33
|
* @see {@link RemoveTagsCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
38
|
+
* service.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
36
44
|
*/
|
|
37
45
|
export declare class RemoveTagsCommand extends $Command<RemoveTagsCommandInput, RemoveTagsCommandOutput, EMRClientResolvedConfig> {
|
|
38
46
|
readonly input: RemoveTagsCommandInput;
|
|
@@ -50,6 +50,11 @@ export interface RunJobFlowCommandOutput extends RunJobFlowOutput, __MetadataBea
|
|
|
50
50
|
* @see {@link RunJobFlowCommandOutput} for command's `response` shape.
|
|
51
51
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
52
52
|
*
|
|
53
|
+
* @throws {@link InternalServerError} (server fault)
|
|
54
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
55
|
+
* not completed.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
53
58
|
*/
|
|
54
59
|
export declare class RunJobFlowCommand extends $Command<RunJobFlowCommandInput, RunJobFlowCommandOutput, EMRClientResolvedConfig> {
|
|
55
60
|
readonly input: RunJobFlowCommandInput;
|
|
@@ -43,6 +43,11 @@ export interface SetTerminationProtectionCommandOutput extends __MetadataBearer
|
|
|
43
43
|
* @see {@link SetTerminationProtectionCommandOutput} for command's `response` shape.
|
|
44
44
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
45
45
|
*
|
|
46
|
+
* @throws {@link InternalServerError} (server fault)
|
|
47
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
48
|
+
* not completed.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
46
51
|
*/
|
|
47
52
|
export declare class SetTerminationProtectionCommand extends $Command<SetTerminationProtectionCommandInput, SetTerminationProtectionCommandOutput, EMRClientResolvedConfig> {
|
|
48
53
|
readonly input: SetTerminationProtectionCommandInput;
|
|
@@ -42,6 +42,11 @@ export interface SetVisibleToAllUsersCommandOutput extends __MetadataBearer {
|
|
|
42
42
|
* @see {@link SetVisibleToAllUsersCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link InternalServerError} (server fault)
|
|
46
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
47
|
+
* not completed.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
45
50
|
*/
|
|
46
51
|
export declare class SetVisibleToAllUsersCommand extends $Command<SetVisibleToAllUsersCommandInput, SetVisibleToAllUsersCommandOutput, EMRClientResolvedConfig> {
|
|
47
52
|
readonly input: SetVisibleToAllUsersCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface StartNotebookExecutionCommandOutput extends StartNotebookExecut
|
|
|
29
29
|
* @see {@link StartNotebookExecutionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
34
|
+
* service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class StartNotebookExecutionCommand extends $Command<StartNotebookExecutionCommandInput, StartNotebookExecutionCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: StartNotebookExecutionCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface StopNotebookExecutionCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link StopNotebookExecutionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerError} (server fault)
|
|
33
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
34
|
+
* not completed.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class StopNotebookExecutionCommand extends $Command<StopNotebookExecutionCommandInput, StopNotebookExecutionCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: StopNotebookExecutionCommandInput;
|
|
@@ -36,6 +36,11 @@ export interface TerminateJobFlowsCommandOutput extends __MetadataBearer {
|
|
|
36
36
|
* @see {@link TerminateJobFlowsCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
41
|
+
* not completed.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
39
44
|
*/
|
|
40
45
|
export declare class TerminateJobFlowsCommand extends $Command<TerminateJobFlowsCommandInput, TerminateJobFlowsCommandOutput, EMRClientResolvedConfig> {
|
|
41
46
|
readonly input: TerminateJobFlowsCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface UpdateStudioCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link UpdateStudioCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>This exception occurs when there is an internal failure in the Amazon EMR
|
|
35
|
+
* service.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class UpdateStudioCommand extends $Command<UpdateStudioCommandInput, UpdateStudioCommandOutput, EMRClientResolvedConfig> {
|
|
35
43
|
readonly input: UpdateStudioCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface UpdateStudioSessionMappingCommandOutput extends __MetadataBeare
|
|
|
29
29
|
* @see {@link UpdateStudioSessionMappingCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EMRClientResolvedConfig | config} for EMRClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerError} (server fault)
|
|
33
|
+
* <p>Indicates that an error occurred while processing the request and that the request was
|
|
34
|
+
* not completed.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception occurs when there is something wrong with user input.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class UpdateStudioSessionMappingCommand extends $Command<UpdateStudioSessionMappingCommandInput, UpdateStudioSessionMappingCommandOutput, EMRClientResolvedConfig> {
|
|
34
42
|
readonly input: UpdateStudioSessionMappingCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,39 +20,39 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
55
|
+
"@aws-sdk/util-waiter": "3.290.0",
|
|
56
56
|
"tslib": "^2.3.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|