Skip to content

Get Endpoint Access

redshiftserverless_get_endpoint_access R Documentation

Returns information, such as the name, about a VPC endpoint

Description

Returns information, such as the name, about a VPC endpoint.

Usage

redshiftserverless_get_endpoint_access(endpointName)

Arguments

endpointName

[required] The name of the VPC endpoint to return information for.

Value

A list with the following syntax:

list(
  endpoint = list(
    address = "string",
    endpointArn = "string",
    endpointCreateTime = as.POSIXct(
      "2015-01-01"
    ),
    endpointName = "string",
    endpointStatus = "string",
    port = 123,
    subnetIds = list(
      "string"
    ),
    vpcEndpoint = list(
      networkInterfaces = list(
        list(
          availabilityZone = "string",
          ipv6Address = "string",
          networkInterfaceId = "string",
          privateIpAddress = "string",
          subnetId = "string"
        )
      ),
      vpcEndpointId = "string",
      vpcId = "string"
    ),
    vpcSecurityGroups = list(
      list(
        status = "string",
        vpcSecurityGroupId = "string"
      )
    ),
    workgroupName = "string"
  )
)

Request syntax

svc$get_endpoint_access(
  endpointName = "string"
)