Update Project
cloudwatchevidently_update_project | R Documentation |
Updates the description of an existing project¶
Description¶
Updates the description of an existing project.
To create a new project, use create_project
.
Don't use this operation to update the data storage options of a
project. Instead, use update_project_data_delivery
.
Don't use this operation to update the tags of a project. Instead, use
tag_resource
.
Usage¶
cloudwatchevidently_update_project(appConfigResource, description,
project)
Arguments¶
appConfigResource |
Use this parameter if the project will use client-side evaluation
powered by AppConfig. Client-side evaluation allows your application to
assign variations to user sessions locally instead of by calling the
This parameter is a structure that contains information about the AppConfig application that will be used for client-side evaluation. |
description |
An optional description of the project. |
project |
[required] The name or ARN of the project to update. |
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"
)
)
)
Request syntax¶
svc$update_project(
appConfigResource = list(
applicationId = "string",
environmentId = "string"
),
description = "string",
project = "string"
)