List Features
| cloudwatchevidently_list_features | R Documentation |
Returns configuration details about all the features in the specified project¶
Description¶
Returns configuration details about all the features in the specified project.
Usage¶
Arguments¶
maxResultsThe maximum number of results to include in the response.
nextTokenThe token to use when requesting the next set of results. You received this token from a previous
list_featuresoperation.project[required] The name or ARN of the project to return the feature list from.
Value¶
A list with the following syntax:
list(
features = list(
list(
arn = "string",
createdTime = as.POSIXct(
"2015-01-01"
),
defaultVariation = "string",
evaluationRules = list(
list(
name = "string",
type = "string"
)
),
evaluationStrategy = "ALL_RULES"|"DEFAULT_VARIATION",
lastUpdatedTime = as.POSIXct(
"2015-01-01"
),
name = "string",
project = "string",
status = "AVAILABLE"|"UPDATING",
tags = list(
"string"
)
)
),
nextToken = "string"
)