List Service Network Service Associations
| vpclattice_list_service_network_service_associations | R Documentation |
Lists the associations between the service network and the service¶
Description¶
Lists the associations between the service network and the service. You can filter the list either by service or service network. You must provide either the service network identifier or the service identifier.
Every association in Amazon VPC Lattice is given a unique Amazon Resource Name (ARN), such as when a service network is associated with a VPC or when a service is associated with a service network. If the association is for a resource that is shared with another account, the association includes the local account ID as the prefix in the ARN for each account the resource is shared with.
Usage¶
vpclattice_list_service_network_service_associations(maxResults,
nextToken, serviceIdentifier, serviceNetworkIdentifier)
Arguments¶
maxResultsThe maximum number of results to return.
nextTokenA pagination token for the next page of results.
serviceIdentifierThe ID or Amazon Resource Name (ARN) of the service.
serviceNetworkIdentifierThe ID or Amazon Resource Name (ARN) 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",
customDomainName = "string",
dnsEntry = list(
domainName = "string",
hostedZoneId = "string"
),
id = "string",
serviceArn = "string",
serviceId = "string",
serviceName = "string",
serviceNetworkArn = "string",
serviceNetworkId = "string",
serviceNetworkName = "string",
status = "CREATE_IN_PROGRESS"|"ACTIVE"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED"
)
),
nextToken = "string"
)