List Shared Endpoints
s3outposts_list_shared_endpoints | R Documentation |
Lists all endpoints associated with an Outpost that has been shared by Amazon Web Services Resource Access Manager (RAM)¶
Description¶
Lists all endpoints associated with an Outpost that has been shared by Amazon Web Services Resource Access Manager (RAM).
Related actions include:
-
create_endpoint
-
delete_endpoint
Usage¶
s3outposts_list_shared_endpoints(NextToken, MaxResults, OutpostId)
Arguments¶
NextToken |
If a previous response from this operation included a
|
MaxResults |
The maximum number of endpoints that will be returned in the response. |
OutpostId |
[required] The ID of the Amazon Web Services Outpost. |
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_shared_endpoints(
NextToken = "string",
MaxResults = 123,
OutpostId = "string"
)