We are excited to announce our new API Documentation.
Protected
Provides information about the bootstrap actions associated with a cluster.
Use a bare-bones client and the command you need to make an API call.
import { EMRClient, ListBootstrapActionsCommand } from "@aws-sdk/client-emr"; // ES Modules import// const { EMRClient, ListBootstrapActionsCommand } = require("@aws-sdk/client-emr"); // CommonJS importconst client = new EMRClient(config);const input = { // ListBootstrapActionsInput ClusterId: "STRING_VALUE", // required Marker: "STRING_VALUE",};const command = new ListBootstrapActionsCommand(input);const response = await client.send(command);// { // ListBootstrapActionsOutput// BootstrapActions: [ // CommandList// { // Command// Name: "STRING_VALUE",// ScriptPath: "STRING_VALUE",// Args: [ // StringList// "STRING_VALUE",// ],// },// ],// Marker: "STRING_VALUE",// };
ListBootstrapActionsCommandInput
ListBootstrapActionsCommandOutput
input
response
config
InternalServerException (server fault)
This exception occurs when there is an internal failure in the Amazon EMR service.
InvalidRequestException (client fault)
This exception occurs when there is something wrong with user input.
EMRServiceException
Base exception class for all service exceptions from EMR service.
Readonly
Static
Provides information about the bootstrap actions associated with a cluster.
Example
Use a bare-bones client and the command you need to make an API call.
Param
ListBootstrapActionsCommandInput
Returns
ListBootstrapActionsCommandOutput
See
input
shape.response
shape.config
shape.Throws
InternalServerException (server fault)
This exception occurs when there is an internal failure in the Amazon EMR service.
Throws
InvalidRequestException (client fault)
This exception occurs when there is something wrong with user input.
Throws
EMRServiceException
Base exception class for all service exceptions from EMR service.