Stops access logging on the specified container. When you stop access logging on a container, MediaStore stops sending access logs to Amazon CloudWatch Logs. These access logs are not saved and are not retrievable.
example
Use a bare-bones client and the command you need to make an API call.
Stops access logging on the specified container. When you stop access logging on a container, MediaStore stops sending access logs to Amazon CloudWatch Logs. These access logs are not saved and are not retrievable.
Use a bare-bones client and the command you need to make an API call.
import { MediaStoreClient, StopAccessLoggingCommand } from "@aws-sdk/client-mediastore"; // ES Modules import // const { MediaStoreClient, StopAccessLoggingCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import const client = new MediaStoreClient(config); const command = new StopAccessLoggingCommand(input); const response = await client.send(command);
StopAccessLoggingCommandInput for command's
input
shape.StopAccessLoggingCommandOutput for command's
response
shape.config for MediaStoreClient's
config
shape.