Class: AWS.Outposts
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.Outposts
- Identifier:
- outposts
- API Version:
- 2019-12-03
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
AWS Outposts is a fully managed service that extends AWS infrastructure, APIs, and tools to customer premises. By providing local access to AWS managed infrastructure, AWS Outposts enables customers to build and run applications on premises using the same programming interfaces as in AWS Regions, while using local compute and storage resources for lower latency and local data processing needs.
Sending a Request Using Outposts
var outposts = new AWS.Outposts();
outposts.createOrder(params, function (err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Locking the API Version
In order to ensure that the Outposts object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var outposts = new AWS.Outposts({apiVersion: '2019-12-03'});
You can also set the API version globally in AWS.config.apiVersions
using
the outposts service identifier:
AWS.config.apiVersions = {
outposts: '2019-12-03',
// other service API versions
};
var outposts = new AWS.Outposts();
Constructor Summary collapse
-
new AWS.Outposts(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary collapse
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary collapse
-
createOrder(params = {}, callback) ⇒ AWS.Request
Creates an order for an Outpost.
.
-
createOutpost(params = {}, callback) ⇒ AWS.Request
Creates an Outpost.
You can specify
.AvailabilityZone
orAvailabilityZoneId
. -
deleteOutpost(params = {}, callback) ⇒ AWS.Request
Deletes the Outpost.
.
-
deleteSite(params = {}, callback) ⇒ AWS.Request
Deletes the site.
.
-
getOutpost(params = {}, callback) ⇒ AWS.Request
Gets information about the specified Outpost.
.
-
getOutpostInstanceTypes(params = {}, callback) ⇒ AWS.Request
Lists the instance types for the specified Outpost.
.
-
listOutposts(params = {}, callback) ⇒ AWS.Request
Create a list of the Outposts for your AWS account.
-
listSites(params = {}, callback) ⇒ AWS.Request
Lists the sites for the specified AWS account.
.
-
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Lists the tags for the specified resource.
.
-
tagResource(params = {}, callback) ⇒ AWS.Request
Adds tags to the specified resource.
.
-
untagResource(params = {}, callback) ⇒ AWS.Request
Removes tags from the specified resource.
.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.Outposts(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
Property Details
Method Details
createOutpost(params = {}, callback) ⇒ AWS.Request
Creates an Outpost.
You can specify AvailabilityZone
or AvailabilityZoneId
.
getOutpostInstanceTypes(params = {}, callback) ⇒ AWS.Request
Lists the instance types for the specified Outpost.
listOutposts(params = {}, callback) ⇒ AWS.Request
Create a list of the Outposts for your AWS account. Add filters to your request to return a more specific list of results. Use filters to match an Outpost lifecycle status, Availibility Zone (us-east-1a
), and AZ ID (use1-az1
).
If you specify multiple filters, the filters are joined with an AND
, and the request returns only results that match all of the specified filters.