Note: You are viewing the documentation for an older major version of the AWS SDK for JavaScript (v2).
The modular AWS SDK for JavaScript (v3) is now General Available. For more information see the Developer Guide or API Reference.
Class: AWS.AppIntegrations
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.AppIntegrations
- Identifier:
- appintegrations
- API Version:
- 2020-07-29
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.
For information about how you can use external applications with Amazon Connect, see Set up pre-built integrations in the Amazon Connect Administrator Guide.
Sending a Request Using AppIntegrations
var appintegrations = new AWS.AppIntegrations();
appintegrations.createEventIntegration(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 AppIntegrations object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var appintegrations = new AWS.AppIntegrations({apiVersion: '2020-07-29'});
You can also set the API version globally in AWS.config.apiVersions
using
the appintegrations service identifier:
AWS.config.apiVersions = {
appintegrations: '2020-07-29',
// other service API versions
};
var appintegrations = new AWS.AppIntegrations();
Constructor Summary
-
new AWS.AppIntegrations(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary
-
createEventIntegration(params = {}, callback) ⇒ AWS.Request
Creates an EventIntegration, given a specified name, description, and a reference to an Amazon EventBridge bus in your account and a partner event source that pushes events to that bus.
-
deleteEventIntegration(params = {}, callback) ⇒ AWS.Request
Deletes the specified existing event integration.
-
getEventIntegration(params = {}, callback) ⇒ AWS.Request
Return information about the event integration.
-
listEventIntegrationAssociations(params = {}, callback) ⇒ AWS.Request
Returns a paginated list of event integration associations in the account.
-
listEventIntegrations(params = {}, callback) ⇒ AWS.Request
Returns a paginated list of event integrations in the account.
-
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Lists the tags for the specified resource.
-
tagResource(params = {}, callback) ⇒ AWS.Request
Adds the specified tags to the specified resource.
-
untagResource(params = {}, callback) ⇒ AWS.Request
Removes the specified tags from the specified resource.
-
updateEventIntegration(params = {}, callback) ⇒ AWS.Request
Updates the description of an event integration.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
Property Details
Method Details
createEventIntegration(params = {}, callback) ⇒ AWS.Request
Creates an EventIntegration, given a specified name, description, and a reference to an Amazon EventBridge bus in your account and a partner event source that pushes events to that bus. No objects are created in the your account, only metadata that is persisted on the EventIntegration control plane.
deleteEventIntegration(params = {}, callback) ⇒ AWS.Request
Deletes the specified existing event integration. If the event integration is associated with clients, the request is rejected.
getEventIntegration(params = {}, callback) ⇒ AWS.Request
Return information about the event integration.
listEventIntegrationAssociations(params = {}, callback) ⇒ AWS.Request
Returns a paginated list of event integration associations in the account.
listEventIntegrations(params = {}, callback) ⇒ AWS.Request
Returns a paginated list of event integrations in the account.