List Launches
| cloudwatchevidently_list_launches | R Documentation |
Returns configuration details about all the launches in the specified project¶
Description¶
Returns configuration details about all the launches 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_launchesoperation.project[required] The name or ARN of the project to return the launch list from.
statusUse this optional parameter to limit the returned results to only the launches with the status that you specify here.
Value¶
A list with the following syntax:
list(
launches = list(
list(
arn = "string",
createdTime = as.POSIXct(
"2015-01-01"
),
description = "string",
execution = list(
endedTime = as.POSIXct(
"2015-01-01"
),
startedTime = as.POSIXct(
"2015-01-01"
)
),
groups = list(
list(
description = "string",
featureVariations = list(
"string"
),
name = "string"
)
),
lastUpdatedTime = as.POSIXct(
"2015-01-01"
),
metricMonitors = list(
list(
metricDefinition = list(
entityIdKey = "string",
eventPattern = "string",
name = "string",
unitLabel = "string",
valueKey = "string"
)
)
),
name = "string",
project = "string",
randomizationSalt = "string",
scheduledSplitsDefinition = list(
steps = list(
list(
groupWeights = list(
123
),
segmentOverrides = list(
list(
evaluationOrder = 123,
segment = "string",
weights = list(
123
)
)
),
startTime = as.POSIXct(
"2015-01-01"
)
)
)
),
status = "CREATED"|"UPDATING"|"RUNNING"|"COMPLETED"|"CANCELLED",
statusReason = "string",
tags = list(
"string"
),
type = "aws.evidently.splits"
)
),
nextToken = "string"
)