Class: AWS.Repostspace
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.Repostspace
- Identifier:
- repostspace
- API Version:
- 2022-05-13
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
AWS re:Post Private is a private version of AWS re:Post for enterprises with Enterprise Support or Enterprise On-Ramp Support plans. It provides access to knowledge and experts to accelerate cloud adoption and increase developer productivity. With your organization-specific private re:Post, you can build an organization-specific developer community that drives efficiencies at scale and provides access to valuable knowledge resources. Additionally, re:Post Private centralizes trusted AWS technical content and offers private discussion forums to improve how your teams collaborate internally and with AWS to remove technical obstacles, accelerate innovation, and scale more efficiently in the cloud.
Sending a Request Using Repostspace
var repostspace = new AWS.Repostspace();
repostspace.createSpace(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 Repostspace object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var repostspace = new AWS.Repostspace({apiVersion: '2022-05-13'});
You can also set the API version globally in AWS.config.apiVersions
using
the repostspace service identifier:
AWS.config.apiVersions = {
repostspace: '2022-05-13',
// other service API versions
};
var repostspace = new AWS.Repostspace();
Constructor Summary collapse
-
new AWS.Repostspace(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
-
createSpace(params = {}, callback) ⇒ AWS.Request
Creates an AWS re:Post Private private re:Post.
.
-
deleteSpace(params = {}, callback) ⇒ AWS.Request
Deletes an AWS re:Post Private private re:Post.
.
-
deregisterAdmin(params = {}, callback) ⇒ AWS.Request
Removes the user or group from the list of administrators of the private re:Post.
.
-
getSpace(params = {}, callback) ⇒ AWS.Request
Displays information about the AWS re:Post Private private re:Post.
.
-
listSpaces(params = {}, callback) ⇒ AWS.Request
Returns a list of AWS re:Post Private private re:Posts in the account with some information about each private re:Post.
.
-
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Returns the tags that are associated with the AWS re:Post Private resource specified by the resourceArn.
-
registerAdmin(params = {}, callback) ⇒ AWS.Request
Adds a user or group to the list of administrators of the private re:Post.
.
-
sendInvites(params = {}, callback) ⇒ AWS.Request
Sends an invitation email to selected users and groups.
.
-
tagResource(params = {}, callback) ⇒ AWS.Request
Associates tags with an AWS re:Post Private resource.
-
untagResource(params = {}, callback) ⇒ AWS.Request
Removes the association of the tag with the AWS re:Post Private resource.
.
-
updateSpace(params = {}, callback) ⇒ AWS.Request
Modifies an existing AWS re:Post Private private re:Post.
.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.Repostspace(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
Property Details
Method Details
deregisterAdmin(params = {}, callback) ⇒ AWS.Request
Removes the user or group from the list of administrators of the private re:Post.
getSpace(params = {}, callback) ⇒ AWS.Request
Displays information about the AWS re:Post Private private re:Post.
listSpaces(params = {}, callback) ⇒ AWS.Request
Returns a list of AWS re:Post Private private re:Posts in the account with some information about each private re:Post.
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Returns the tags that are associated with the AWS re:Post Private resource specified by the resourceArn. The only resource that can be tagged is a private re:Post.
registerAdmin(params = {}, callback) ⇒ AWS.Request
Adds a user or group to the list of administrators of the private re:Post.
sendInvites(params = {}, callback) ⇒ AWS.Request
Sends an invitation email to selected users and groups.
tagResource(params = {}, callback) ⇒ AWS.Request
Associates tags with an AWS re:Post Private resource. Currently, the only resource that can be tagged is the private re:Post. If you specify a new tag key for the resource, the tag is appended to the list of tags that are associated with the resource. If you specify a tag key that’s already associated with the resource, the new tag value that you specify replaces the previous value for that tag.