Skip to content

Get Resource Gateway

vpclattice_get_resource_gateway R Documentation

Retrieves information about the specified resource gateway

Description

Retrieves information about the specified resource gateway.

Usage

vpclattice_get_resource_gateway(resourceGatewayIdentifier)

Arguments

resourceGatewayIdentifier

[required] The ID of the resource gateway.

Value

A list with the following syntax:

list(
  name = "string",
  id = "string",
  arn = "string",
  status = "ACTIVE"|"CREATE_IN_PROGRESS"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED",
  vpcId = "string",
  subnetIds = list(
    "string"
  ),
  serviceManaged = TRUE|FALSE,
  managedBy = "string",
  securityGroupIds = list(
    "string"
  ),
  ipAddressType = "IPV4"|"IPV6"|"DUALSTACK",
  ipv4AddressesPerEni = 123,
  resourceConfigDnsResolution = "IN_VPC"|"PUBLIC",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_resource_gateway(
  resourceGatewayIdentifier = "string"
)