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¶
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"
)