Skip to content

List Access Log Subscriptions

vpclattice_list_access_log_subscriptions R Documentation

Lists all access log subscriptions for the specified service network or service

Description

Lists all access log subscriptions for the specified service network or service.

Usage

vpclattice_list_access_log_subscriptions(maxResults, nextToken,
  resourceIdentifier)

Arguments

maxResults

The maximum number of results to return.

nextToken

A pagination token for the next page of results.

resourceIdentifier

[required] The ID or Amazon Resource Name (ARN) of the service network or service.

Value

A list with the following syntax:

list(
  items = list(
    list(
      arn = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      destinationArn = "string",
      id = "string",
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      resourceArn = "string",
      resourceId = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_access_log_subscriptions(
  maxResults = 123,
  nextToken = "string",
  resourceIdentifier = "string"
)