Skip to content

List Endpoints

s3outposts_list_endpoints R Documentation

Lists endpoints associated with the specified Outpost

Description

Lists endpoints associated with the specified Outpost.

Related actions include:

  • create_endpoint

  • delete_endpoint

Usage

s3outposts_list_endpoints(NextToken, MaxResults)

Arguments

NextToken

If a previous response from this operation included a NextToken value, provide that value here to retrieve the next page of results.

MaxResults

The maximum number of endpoints that will be returned in the response.

Value

A list with the following syntax:

list(
  Endpoints = list(
    list(
      EndpointArn = "string",
      OutpostsId = "string",
      CidrBlock = "string",
      Status = "Pending"|"Available"|"Deleting"|"Create_Failed"|"Delete_Failed",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      NetworkInterfaces = list(
        list(
          NetworkInterfaceId = "string"
        )
      ),
      VpcId = "string",
      SubnetId = "string",
      SecurityGroupId = "string",
      AccessType = "Private"|"CustomerOwnedIp",
      CustomerOwnedIpv4Pool = "string",
      FailedReason = list(
        ErrorCode = "string",
        Message = "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_endpoints(
  NextToken = "string",
  MaxResults = 123
)