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(
  arn = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  id = "string",
  ipAddressType = "IPV4"|"IPV6"|"DUALSTACK",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  name = "string",
  securityGroupIds = list(
    "string"
  ),
  status = "ACTIVE"|"CREATE_IN_PROGRESS"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED",
  subnetIds = list(
    "string"
  ),
  vpcId = "string"
)
Request syntax¶
svc$get_resource_gateway(
  resourceGatewayIdentifier = "string"
)