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 and Deliver information to agents using Amazon Connect Wisdom in the Amazon Connect Administrator Guide.
Sending a Request Using AppIntegrations
var appintegrations = new AWS.AppIntegrations();
appintegrations.createDataIntegration(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 collapse
-
new AWS.AppIntegrations(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
-
createDataIntegration(params = {}, callback) ⇒ AWS.Request
Creates and persists a DataIntegration resource.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated.- 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.
- deleteDataIntegration(params = {}, callback) ⇒ AWS.Request
Deletes the DataIntegration.
- deleteEventIntegration(params = {}, callback) ⇒ AWS.Request
Deletes the specified existing event integration.
- getDataIntegration(params = {}, callback) ⇒ AWS.Request
Returns information about the DataIntegration.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated.- getEventIntegration(params = {}, callback) ⇒ AWS.Request
Returns information about the event integration.
.
- listDataIntegrationAssociations(params = {}, callback) ⇒ AWS.Request
Returns a paginated list of DataIntegration associations in the account.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated.- listDataIntegrations(params = {}, callback) ⇒ AWS.Request
Returns a paginated list of DataIntegrations in the account.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated.- 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.
.
- updateDataIntegration(params = {}, callback) ⇒ AWS.Request
Updates the description of a DataIntegration.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated.- updateEventIntegration(params = {}, callback) ⇒ AWS.Request
Updates the description of an event integration.
.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.AppIntegrations(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
Property Details
Method Details
createDataIntegration(params = {}, callback) ⇒ AWS.Request
Creates and persists a DataIntegration resource.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using theCreateDataIntegration
API.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.
deleteDataIntegration(params = {}, callback) ⇒ AWS.Request
Deletes the DataIntegration. Only DataIntegrations that don't have any DataIntegrationAssociations can be deleted. Deleting a DataIntegration also deletes the underlying Amazon AppFlow flow and service linked role.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.deleteEventIntegration(params = {}, callback) ⇒ AWS.Request
Deletes the specified existing event integration. If the event integration is associated with clients, the request is rejected.
getDataIntegration(params = {}, callback) ⇒ AWS.Request
Returns information about the DataIntegration.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.getEventIntegration(params = {}, callback) ⇒ AWS.Request
Returns information about the event integration.
listDataIntegrationAssociations(params = {}, callback) ⇒ AWS.Request
Returns a paginated list of DataIntegration associations in the account.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.listDataIntegrations(params = {}, callback) ⇒ AWS.Request
Returns a paginated list of DataIntegrations in the account.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.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.
untagResource(params = {}, callback) ⇒ AWS.Request
Removes the specified tags from the specified resource.
updateDataIntegration(params = {}, callback) ⇒ AWS.Request
Updates the description of a DataIntegration.
Note: You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API. - createEventIntegration(params = {}, callback) ⇒ AWS.Request