S3Outposts
This page documents function available when using the S3Outposts
module, created with @service S3Outposts
.
Index
Documentation
Main.S3Outposts.create_endpoint
— Methodcreate_endpoint(outpost_id, security_group_id, subnet_id)
create_endpoint(outpost_id, security_group_id, subnet_id, params::Dict{String,<:Any})
Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in 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). For more information, see Accessing S3 on Outposts using VPC only access points. This action creates an endpoint and associates it with the specified Outposts. It can take up to 5 minutes for this action to complete. Related actions include: DeleteEndpoint ListEndpoints
Arguments
outpost_id
: The ID of the AWS Outposts.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. The endpoint subnet must belong to the Outpost that has the Amazon S3 on Outposts provisioned.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"AccessType"
: The type of access for the on-premise network connectivity for the Outpost endpoint. To access the endpoint from an on-premises network, you must specify the access type and provide the customer owned IPv4 pool."CustomerOwnedIpv4Pool"
: The ID of the customer-owned IPv4 pool for the endpoint. IP addresses will be allocated from this pool for the endpoint.
Main.S3Outposts.delete_endpoint
— Methoddelete_endpoint(endpoint_id, outpost_id)
delete_endpoint(endpoint_id, outpost_id, params::Dict{String,<:Any})
Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in 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). For more information, see Accessing S3 on Outposts using VPC only access points. This action deletes an endpoint. It can take up to 5 minutes for this action to complete. Related actions include: CreateEndpoint ListEndpoints
Arguments
endpoint_id
: The ID of the endpoint.outpost_id
: The ID of the AWS Outposts.
Main.S3Outposts.list_endpoints
— Methodlist_endpoints()
list_endpoints(params::Dict{String,<:Any})
Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in 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). For more information, see Accessing S3 on Outposts using VPC only access points. This action lists endpoints associated with the Outposts. 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.