Update Project Data Delivery
cloudwatchevidently_update_project_data_delivery | R Documentation |
Updates the data storage options for this project¶
Description¶
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.
Usage¶
Arguments¶
cloudWatchLogs
A structure containing the CloudWatch Logs log group where you want to store evaluation events.
project
[required] The name or ARN of the project that you want to modify the data storage options for.
s3Destination
A structure containing the S3 bucket name and bucket prefix where you want to store evaluation events.
Value¶
A list with the following syntax:
list(
project = list(
activeExperimentCount = 123,
activeLaunchCount = 123,
appConfigResource = list(
applicationId = "string",
configurationProfileId = "string",
environmentId = "string"
),
arn = "string",
createdTime = as.POSIXct(
"2015-01-01"
),
dataDelivery = list(
cloudWatchLogs = list(
logGroup = "string"
),
s3Destination = list(
bucket = "string",
prefix = "string"
)
),
description = "string",
experimentCount = 123,
featureCount = 123,
lastUpdatedTime = as.POSIXct(
"2015-01-01"
),
launchCount = 123,
name = "string",
status = "AVAILABLE"|"UPDATING",
tags = list(
"string"
)
)
)