2020/09/30 - Amazon S3 on Outposts - 3 new api methods
Changes Amazon S3 on Outposts expands object storage to on-premises AWS Outposts environments, enabling you to store and retrieve objects using S3 APIs and features.
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:
See also: AWS API Documentation
Request Syntax
client.create_endpoint( OutpostId='string', SubnetId='string', SecurityGroupId='string' )
string
[REQUIRED]
The ID of the AWS Outpost.
string
[REQUIRED]
The ID of the subnet in the selected VPC.
string
[REQUIRED]
The ID of the security group to use with the endpoint.
dict
Response Syntax
{ 'EndpointArn': 'string' }
Response Structure
(dict) --
EndpointArn (string) --
The Amazon Resource Name (ARN) of the endpoint.
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:
See also: AWS API Documentation
Request Syntax
client.delete_endpoint( EndpointId='string', OutpostId='string' )
string
[REQUIRED]
The ID of the end point.
string
[REQUIRED]
The ID of the AWS Outpost.
None
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:
See also: AWS API Documentation
Request Syntax
client.list_endpoints( NextToken='string', MaxResults=123 )
string
The next endpoint requested in the list.
integer
The max number of endpoints that can be returned on the request.
dict
Response Syntax
{ 'Endpoints': [ { 'EndpointArn': 'string', 'OutpostsId': 'string', 'CidrBlock': 'string', 'Status': 'PENDING'|'AVAILABLE', 'CreationTime': datetime(2015, 1, 1), 'NetworkInterfaces': [ { 'NetworkInterfaceId': 'string' }, ] }, ], 'NextToken': 'string' }
Response Structure
(dict) --
Endpoints (list) --
Returns an array of endpoints associated with AWS Outpost.
(dict) --
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).
EndpointArn (string) --
The Amazon Resource Name (ARN) of the endpoint.
OutpostsId (string) --
The ID of the AWS Outpost.
CidrBlock (string) --
The VPC CIDR committed by this endpoint.
Status (string) --
The status of the endpoint.
CreationTime (datetime) --
The time the endpoint was created.
NetworkInterfaces (list) --
The network interface of the endpoint.
(dict) --
The container for the network interface.
NetworkInterfaceId (string) --
The ID for the network interface.
NextToken (string) --
The next endpoint returned in the list.