S3Outposts

This page documents function available when using the S3Outposts module, created with @service S3Outposts.

Index

Documentation

Main.S3Outposts.create_endpointMethod
create_endpoint(outpost_id, security_group_id, subnet_id)
create_endpoint(outpost_id, security_group_id, subnet_id, params::Dict{String,<:Any})

S3 on Outposts access points simplify managing data access at scale for shared datasets in Amazon S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). This action creates an endpoint and associates it with the specified Outpost. Related actions include: DeleteEndpoint ListEndpoints

Arguments

  • outpost_id: The ID of the AWS Outpost.
  • security_group_id: The ID of the security group to use with the endpoint.
  • subnet_id: The ID of the subnet in the selected VPC.
source
Main.S3Outposts.delete_endpointMethod
delete_endpoint(endpoint_id, outpost_id)
delete_endpoint(endpoint_id, outpost_id, params::Dict{String,<:Any})

S3 on Outposts access points simplify managing data access at scale for shared datasets in Amazon S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). This action deletes an endpoint. Related actions include: CreateEndpoint ListEndpoints

Arguments

  • endpoint_id: The ID of the end point.
  • outpost_id: The ID of the AWS Outpost.
source
Main.S3Outposts.list_endpointsMethod
list_endpoints()
list_endpoints(params::Dict{String,<:Any})

S3 on Outposts access points simplify managing data access at scale for shared datasets in Amazon S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). This action lists endpoints associated with the Outpost. Related actions include: CreateEndpoint DeleteEndpoint

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The max number of endpoints that can be returned on the request.
  • "nextToken": The next endpoint requested in the list.
source