Start Launch
cloudwatchevidently_start_launch | R Documentation |
Starts an existing launch¶
Description¶
Starts an existing launch. To create a launch, use create_launch
.
Usage¶
Arguments¶
launch
[required] The name of the launch to start.
project
[required] The name or ARN of the project that contains the launch to start.
Value¶
A list with the following syntax:
list(
launch = 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"
)
)