We are excited to announce our new API Documentation.
Protected
Provides the details of a security configuration by returning the configuration JSON.
Use a bare-bones client and the command you need to make an API call.
import { EMRClient, DescribeSecurityConfigurationCommand } from "@aws-sdk/client-emr"; // ES Modules import// const { EMRClient, DescribeSecurityConfigurationCommand } = require("@aws-sdk/client-emr"); // CommonJS importconst client = new EMRClient(config);const input = { // DescribeSecurityConfigurationInput Name: "STRING_VALUE", // required};const command = new DescribeSecurityConfigurationCommand(input);const response = await client.send(command);// { // DescribeSecurityConfigurationOutput// Name: "STRING_VALUE",// SecurityConfiguration: "STRING_VALUE",// CreationDateTime: new Date("TIMESTAMP"),// };
DescribeSecurityConfigurationCommandInput
DescribeSecurityConfigurationCommandOutput
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 the details of a security configuration by returning the configuration JSON.
Example
Use a bare-bones client and the command you need to make an API call.
Param
DescribeSecurityConfigurationCommandInput
Returns
DescribeSecurityConfigurationCommandOutput
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.