Updates the data storage options for this project. If you store evaluation events, you an
keep them and analyze them on your own. If you choose not to store evaluation events,
Evidently deletes them after using them to produce metrics and other experiment results that
you can view.
You can't specify both cloudWatchLogs and s3Destination in the same operation.
example
Use a bare-bones client and the command you need to make an API call.
Updates the data storage options for this project. If you store evaluation events, you an keep them and analyze them on your own. If you choose not to store evaluation events, Evidently deletes them after using them to produce metrics and other experiment results that you can view.
You can't specify both
cloudWatchLogs
ands3Destination
in the same operation.Use a bare-bones client and the command you need to make an API call.
import { EvidentlyClient, UpdateProjectDataDeliveryCommand } from "@aws-sdk/client-evidently"; // ES Modules import // const { EvidentlyClient, UpdateProjectDataDeliveryCommand } = require("@aws-sdk/client-evidently"); // CommonJS import const client = new EvidentlyClient(config); const command = new UpdateProjectDataDeliveryCommand(input); const response = await client.send(command);
UpdateProjectDataDeliveryCommandInput for command's
input
shape.UpdateProjectDataDeliveryCommandOutput for command's
response
shape.config for EvidentlyClient's
config
shape.