List Segment References
cloudwatchevidently_list_segment_references | R Documentation |
Use this operation to find which experiments or launches are using a specified segment¶
Description¶
Use this operation to find which experiments or launches are using a specified segment.
Usage¶
cloudwatchevidently_list_segment_references(maxResults, nextToken,
segment, type)
Arguments¶
maxResults |
The maximum number of results to include in the response. If you omit this, the default of 50 is used. |
nextToken |
The token to use when requesting the next set of results. You
received this token from a previous |
segment |
[required] The ARN of the segment that you want to view information for. |
type |
[required] Specifies whether to return information about launches or experiments that use this segment. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
referencedBy = list(
list(
arn = "string",
endTime = "string",
lastUpdatedOn = "string",
name = "string",
startTime = "string",
status = "string",
type = "string"
)
)
)
Request syntax¶
svc$list_segment_references(
maxResults = 123,
nextToken = "string",
segment = "string",
type = "EXPERIMENT"|"LAUNCH"
)