List Projects
cloudwatchevidently_list_projects | R Documentation |
Returns configuration details about all the projects in the current Region in your account¶
Description¶
Returns configuration details about all the projects in the current Region in your account.
Usage¶
cloudwatchevidently_list_projects(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of results to include in the response. |
nextToken |
The token to use when requesting the next set of results. You
received this token from a previous |
Value¶
A list with the following syntax:
list(
nextToken = "string",
projects = list(
list(
activeExperimentCount = 123,
activeLaunchCount = 123,
arn = "string",
createdTime = as.POSIXct(
"2015-01-01"
),
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$list_projects(
maxResults = 123,
nextToken = "string"
)