Skip to content

List Access Log Subscriptions

vpclattice_list_access_log_subscriptions R Documentation

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

Description

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

Usage

vpclattice_list_access_log_subscriptions(resourceIdentifier, maxResults,
  nextToken)

Arguments

resourceIdentifier

[required] The ID or ARN of the service network or service.

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",
      resourceId = "string",
      resourceArn = "string",
      destinationArn = "string",
      serviceNetworkLogType = "SERVICE"|"RESOURCE",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

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