Skip to content

Get Segment

cloudwatchevidently_get_segment R Documentation

Returns information about the specified segment

Description

Returns information about the specified segment. Specify the segment you want to view by specifying its ARN.

Usage

cloudwatchevidently_get_segment(segment)

Arguments

segment

[required] The ARN of the segment to return information for.

Value

A list with the following syntax:

list(
  segment = list(
    arn = "string",
    createdTime = as.POSIXct(
      "2015-01-01"
    ),
    description = "string",
    experimentCount = 123,
    lastUpdatedTime = as.POSIXct(
      "2015-01-01"
    ),
    launchCount = 123,
    name = "string",
    pattern = "string",
    tags = list(
      "string"
    )
  )
)

Request syntax

svc$get_segment(
  segment = "string"
)