Skip to content

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

cloudwatchevidently_list_features(maxResults, nextToken, project)

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 list_features operation.

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"
)

Request syntax

svc$list_features(
  maxResults = 123,
  nextToken = "string",
  project = "string"
)