Skip to content

List Service Network Resource Associations

vpclattice_list_service_network_resource_associations R Documentation

Lists the associations between a service network and a resource configuration

Description

Lists the associations between a service network and a resource configuration.

Usage

vpclattice_list_service_network_resource_associations(maxResults,
  nextToken, resourceConfigurationIdentifier, serviceNetworkIdentifier)

Arguments

maxResults

The maximum page size.

nextToken

If there are additional results, a pagination token for the next page of results.

resourceConfigurationIdentifier

The ID of the resource configurationk.

serviceNetworkIdentifier

The ID of the service network.

Value

A list with the following syntax:

list(
  items = list(
    list(
      arn = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      createdBy = "string",
      dnsEntry = list(
        domainName = "string",
        hostedZoneId = "string"
      ),
      failureCode = "string",
      id = "string",
      isManagedAssociation = TRUE|FALSE,
      privateDnsEntry = list(
        domainName = "string",
        hostedZoneId = "string"
      ),
      resourceConfigurationArn = "string",
      resourceConfigurationId = "string",
      resourceConfigurationName = "string",
      serviceNetworkArn = "string",
      serviceNetworkId = "string",
      serviceNetworkName = "string",
      status = "CREATE_IN_PROGRESS"|"ACTIVE"|"PARTIAL"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_service_network_resource_associations(
  maxResults = 123,
  nextToken = "string",
  resourceConfigurationIdentifier = "string",
  serviceNetworkIdentifier = "string"
)