Skip to content

Get Resource Configuration

vpclattice_get_resource_configuration R Documentation

Retrieves information about the specified resource configuration

Description

Retrieves information about the specified resource configuration.

Usage

vpclattice_get_resource_configuration(resourceConfigurationIdentifier)

Arguments

resourceConfigurationIdentifier

[required] The ID of the resource configuration.

Value

A list with the following syntax:

list(
  allowAssociationToShareableServiceNetwork = TRUE|FALSE,
  amazonManaged = TRUE|FALSE,
  arn = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  customDomainName = "string",
  failureReason = "string",
  id = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  name = "string",
  portRanges = list(
    "string"
  ),
  protocol = "TCP",
  resourceConfigurationDefinition = list(
    arnResource = list(
      arn = "string"
    ),
    dnsResource = list(
      domainName = "string",
      ipAddressType = "IPV4"|"IPV6"|"DUALSTACK"
    ),
    ipResource = list(
      ipAddress = "string"
    )
  ),
  resourceConfigurationGroupId = "string",
  resourceGatewayId = "string",
  status = "ACTIVE"|"CREATE_IN_PROGRESS"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED",
  type = "GROUP"|"CHILD"|"SINGLE"|"ARN"
)

Request syntax

svc$get_resource_configuration(
  resourceConfigurationIdentifier = "string"
)