We are excited to announce our new API Documentation.
Protected
Lists all of the integrations in your domain.
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 importconst 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",// };
ListIntegrationsCommandInput
ListIntegrationsCommandOutput
input
response
config
AccessDeniedException (client fault)
You do not have sufficient access to perform this action.
BadRequestException (client fault)
The input you provided is invalid.
InternalServerException (server fault)
An internal service error occurred.
ResourceNotFoundException (client fault)
The requested resource does not exist, or access was denied.
ThrottlingException (client fault)
You exceeded the maximum number of requests.
CustomerProfilesServiceException
Base exception class for all service exceptions from CustomerProfiles service.
Readonly
Static
Lists all of the integrations in your domain.
Example
Use a bare-bones client and the command you need to make an API call.
Param
ListIntegrationsCommandInput
Returns
ListIntegrationsCommandOutput
See
input
shape.response
shape.config
shape.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.