Skip to content

List Services

vpclattice_list_services R Documentation

Lists the services owned by the caller account or shared with the caller account

Description

Lists the services owned by the caller account or shared with the caller account.

Usage

vpclattice_list_services(maxResults, nextToken)

Arguments

maxResults

The maximum number of results to return.

nextToken

A pagination token for the next page of results.

Value

A list with the following syntax:

list(
  items = list(
    list(
      arn = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      customDomainName = "string",
      dnsEntry = list(
        domainName = "string",
        hostedZoneId = "string"
      ),
      id = "string",
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      name = "string",
      status = "ACTIVE"|"CREATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_services(
  maxResults = 123,
  nextToken = "string"
)