Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class ListIntegrationsCommandProtected

Lists all of the integrations in your domain.

Example

Use a bare-bones client and the command you need to make an API call.

import { CustomerProfilesClient, ListIntegrationsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
// const { CustomerProfilesClient, ListIntegrationsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
const client = new CustomerProfilesClient(config);
const input = { // ListIntegrationsRequest
DomainName: "STRING_VALUE", // required
NextToken: "STRING_VALUE",
MaxResults: Number("int"),
IncludeHidden: true || false,
};
const command = new ListIntegrationsCommand(input);
const response = await client.send(command);
// { // ListIntegrationsResponse
// Items: [ // IntegrationList
// { // ListIntegrationItem
// DomainName: "STRING_VALUE", // required
// Uri: "STRING_VALUE", // required
// ObjectTypeName: "STRING_VALUE",
// CreatedAt: new Date("TIMESTAMP"), // required
// LastUpdatedAt: new Date("TIMESTAMP"), // required
// Tags: { // TagMap
// "<keys>": "STRING_VALUE",
// },
// ObjectTypeNames: { // ObjectTypeNames
// "<keys>": "STRING_VALUE",
// },
// WorkflowId: "STRING_VALUE",
// IsUnstructured: true || false,
// },
// ],
// NextToken: "STRING_VALUE",
// };

Param

ListIntegrationsCommandInput

Returns

ListIntegrationsCommandOutput

See

Throws

AccessDeniedException (client fault)

You do not have sufficient access to perform this action.

Throws

BadRequestException (client fault)

The input you provided is invalid.

Throws

InternalServerException (server fault)

An internal service error occurred.

Throws

ResourceNotFoundException (client fault)

The requested resource does not exist, or access was denied.

Throws

ThrottlingException (client fault)

You exceeded the maximum number of requests.

Throws

CustomerProfilesServiceException

Base exception class for all service exceptions from CustomerProfiles service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods