Skip to content

Get Service Network Service Association

vpclattice_get_service_network_service_association R Documentation

Retrieves information about the specified association between a service network and a service

Description

Retrieves information about the specified association between a service network and a service.

Usage

vpclattice_get_service_network_service_association(
  serviceNetworkServiceAssociationIdentifier)

Arguments

serviceNetworkServiceAssociationIdentifier

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

Value

A list with the following syntax:

list(
  arn = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  customDomainName = "string",
  dnsEntry = list(
    domainName = "string",
    hostedZoneId = "string"
  ),
  failureCode = "string",
  failureMessage = "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"
)

Request syntax

svc$get_service_network_service_association(
  serviceNetworkServiceAssociationIdentifier = "string"
)