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(
serviceNetworkIdentifier, resourceConfigurationIdentifier, maxResults,
nextToken, includeChildren)
Arguments¶
serviceNetworkIdentifier |
The ID of the service network. |
resourceConfigurationIdentifier |
The ID of the resource configuration. |
maxResults |
The maximum page size. |
nextToken |
If there are additional results, a pagination token for the next page of results. |
includeChildren |
Include service network resource associations of the child resource configuration with the grouped resource configuration. The type is boolean and the default value is false. |
Value¶
A list with the following syntax:
list(
items = list(
list(
id = "string",
arn = "string",
status = "CREATE_IN_PROGRESS"|"ACTIVE"|"PARTIAL"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED",
createdBy = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
resourceConfigurationId = "string",
resourceConfigurationArn = "string",
resourceConfigurationName = "string",
serviceNetworkId = "string",
serviceNetworkArn = "string",
serviceNetworkName = "string",
dnsEntry = list(
domainName = "string",
hostedZoneId = "string"
),
privateDnsEntry = list(
domainName = "string",
hostedZoneId = "string"
),
isManagedAssociation = TRUE|FALSE,
failureCode = "string",
privateDnsEnabled = TRUE|FALSE
)
),
nextToken = "string"
)
Request syntax¶
svc$list_service_network_resource_associations(
serviceNetworkIdentifier = "string",
resourceConfigurationIdentifier = "string",
maxResults = 123,
nextToken = "string",
includeChildren = TRUE|FALSE
)