Deletes the AccessLogSettings for a Stage. To disable access logging for a Stage, delete its AccessLogSettings.
Use a bare-bones client and the command you need to make an API call.
import { ApiGatewayV2Client, DeleteAccessLogSettingsCommand } from "@aws-sdk/client-apigatewayv2"; // ES Modules import // const { ApiGatewayV2Client, DeleteAccessLogSettingsCommand } = require("@aws-sdk/client-apigatewayv2"); // CommonJS import const client = new ApiGatewayV2Client(config); const command = new DeleteAccessLogSettingsCommand(input); const response = await client.send(command);
DeleteAccessLogSettingsCommandInput for command's input shape.
input
DeleteAccessLogSettingsCommandOutput for command's response shape.
response
config for ApiGatewayV2Client's config shape.
config
Deletes the AccessLogSettings for a Stage. To disable access logging for a Stage, delete its AccessLogSettings.
Use a bare-bones client and the command you need to make an API call.
import { ApiGatewayV2Client, DeleteAccessLogSettingsCommand } from "@aws-sdk/client-apigatewayv2"; // ES Modules import // const { ApiGatewayV2Client, DeleteAccessLogSettingsCommand } = require("@aws-sdk/client-apigatewayv2"); // CommonJS import const client = new ApiGatewayV2Client(config); const command = new DeleteAccessLogSettingsCommand(input); const response = await client.send(command);
DeleteAccessLogSettingsCommandInput for command's
input
shape.DeleteAccessLogSettingsCommandOutput for command's
response
shape.config for ApiGatewayV2Client's
config
shape.