Skip to content

List Domain Verifications

vpclattice_list_domain_verifications R Documentation

Lists the domain verifications

Description

Lists the domain verifications.

Usage

vpclattice_list_domain_verifications(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(
      id = "string",
      arn = "string",
      domainName = "string",
      status = "VERIFIED"|"PENDING"|"VERIFICATION_TIMED_OUT",
      txtMethodConfig = list(
        value = "string",
        name = "string"
      ),
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      lastVerifiedTime = as.POSIXct(
        "2015-01-01"
      ),
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

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