Skip to content

Get Service Network Vpc Association

vpclattice_get_service_network_vpc_association R Documentation

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

Description

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

Usage

vpclattice_get_service_network_vpc_association(
  serviceNetworkVpcAssociationIdentifier)

Arguments

serviceNetworkVpcAssociationIdentifier

[required] The ID or ARN of the association.

Value

A list with the following syntax:

list(
  id = "string",
  status = "CREATE_IN_PROGRESS"|"ACTIVE"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED"|"UPDATE_FAILED",
  arn = "string",
  createdBy = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  serviceNetworkId = "string",
  serviceNetworkName = "string",
  serviceNetworkArn = "string",
  vpcId = "string",
  securityGroupIds = list(
    "string"
  ),
  privateDnsEnabled = TRUE|FALSE,
  failureMessage = "string",
  failureCode = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  dnsOptions = list(
    privateDnsPreference = "VERIFIED_DOMAINS_ONLY"|"ALL_DOMAINS"|"VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS"|"SPECIFIED_DOMAINS_ONLY",
    privateDnsSpecifiedDomains = list(
      "string"
    )
  )
)

Request syntax

svc$get_service_network_vpc_association(
  serviceNetworkVpcAssociationIdentifier = "string"
)