@aws-sdk/client-customer-profiles
Advanced tools
Comparing version 3.699.0 to 3.703.0
@@ -7,2 +7,3 @@ export * from "./AddProfileKeyCommand"; | ||
export * from "./CreateEventStreamCommand"; | ||
export * from "./CreateEventTriggerCommand"; | ||
export * from "./CreateIntegrationWorkflowCommand"; | ||
@@ -16,2 +17,3 @@ export * from "./CreateProfileCommand"; | ||
export * from "./DeleteEventStreamCommand"; | ||
export * from "./DeleteEventTriggerCommand"; | ||
export * from "./DeleteIntegrationCommand"; | ||
@@ -30,2 +32,3 @@ export * from "./DeleteProfileCommand"; | ||
export * from "./GetEventStreamCommand"; | ||
export * from "./GetEventTriggerCommand"; | ||
export * from "./GetIdentityResolutionJobCommand"; | ||
@@ -48,2 +51,3 @@ export * from "./GetIntegrationCommand"; | ||
export * from "./ListEventStreamsCommand"; | ||
export * from "./ListEventTriggersCommand"; | ||
export * from "./ListIdentityResolutionJobsCommand"; | ||
@@ -69,2 +73,3 @@ export * from "./ListIntegrationsCommand"; | ||
export * from "./UpdateDomainCommand"; | ||
export * from "./UpdateEventTriggerCommand"; | ||
export * from "./UpdateProfileCommand"; |
@@ -8,2 +8,3 @@ import { createAggregatedClient } from "@smithy/smithy-client"; | ||
import { CreateEventStreamCommand, } from "./commands/CreateEventStreamCommand"; | ||
import { CreateEventTriggerCommand, } from "./commands/CreateEventTriggerCommand"; | ||
import { CreateIntegrationWorkflowCommand, } from "./commands/CreateIntegrationWorkflowCommand"; | ||
@@ -17,2 +18,3 @@ import { CreateProfileCommand, } from "./commands/CreateProfileCommand"; | ||
import { DeleteEventStreamCommand, } from "./commands/DeleteEventStreamCommand"; | ||
import { DeleteEventTriggerCommand, } from "./commands/DeleteEventTriggerCommand"; | ||
import { DeleteIntegrationCommand, } from "./commands/DeleteIntegrationCommand"; | ||
@@ -31,2 +33,3 @@ import { DeleteProfileCommand, } from "./commands/DeleteProfileCommand"; | ||
import { GetEventStreamCommand, } from "./commands/GetEventStreamCommand"; | ||
import { GetEventTriggerCommand, } from "./commands/GetEventTriggerCommand"; | ||
import { GetIdentityResolutionJobCommand, } from "./commands/GetIdentityResolutionJobCommand"; | ||
@@ -49,2 +52,3 @@ import { GetIntegrationCommand, } from "./commands/GetIntegrationCommand"; | ||
import { ListEventStreamsCommand, } from "./commands/ListEventStreamsCommand"; | ||
import { ListEventTriggersCommand, } from "./commands/ListEventTriggersCommand"; | ||
import { ListIdentityResolutionJobsCommand, } from "./commands/ListIdentityResolutionJobsCommand"; | ||
@@ -70,2 +74,3 @@ import { ListIntegrationsCommand, } from "./commands/ListIntegrationsCommand"; | ||
import { UpdateDomainCommand, } from "./commands/UpdateDomainCommand"; | ||
import { UpdateEventTriggerCommand, } from "./commands/UpdateEventTriggerCommand"; | ||
import { UpdateProfileCommand, } from "./commands/UpdateProfileCommand"; | ||
@@ -80,2 +85,3 @@ import { CustomerProfilesClient } from "./CustomerProfilesClient"; | ||
CreateEventStreamCommand, | ||
CreateEventTriggerCommand, | ||
CreateIntegrationWorkflowCommand, | ||
@@ -89,2 +95,3 @@ CreateProfileCommand, | ||
DeleteEventStreamCommand, | ||
DeleteEventTriggerCommand, | ||
DeleteIntegrationCommand, | ||
@@ -103,2 +110,3 @@ DeleteProfileCommand, | ||
GetEventStreamCommand, | ||
GetEventTriggerCommand, | ||
GetIdentityResolutionJobCommand, | ||
@@ -121,2 +129,3 @@ GetIntegrationCommand, | ||
ListEventStreamsCommand, | ||
ListEventTriggersCommand, | ||
ListIdentityResolutionJobsCommand, | ||
@@ -142,2 +151,3 @@ ListIntegrationsCommand, | ||
UpdateDomainCommand, | ||
UpdateEventTriggerCommand, | ||
UpdateProfileCommand, | ||
@@ -144,0 +154,0 @@ }; |
@@ -282,2 +282,19 @@ import { SENSITIVE_STRING } from "@smithy/smithy-client"; | ||
}; | ||
export const ComparisonOperator = { | ||
AFTER: "AFTER", | ||
BEFORE: "BEFORE", | ||
BEGINS_WITH: "BEGINS_WITH", | ||
BETWEEN: "BETWEEN", | ||
CONTAINS: "CONTAINS", | ||
ENDS_WITH: "ENDS_WITH", | ||
EQUAL: "EQUAL", | ||
EXCLUSIVE: "EXCLUSIVE", | ||
GREATER_THAN: "GREATER_THAN", | ||
GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL", | ||
INCLUSIVE: "INCLUSIVE", | ||
LESS_THAN: "LESS_THAN", | ||
LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL", | ||
NOT_BETWEEN: "NOT_BETWEEN", | ||
ON: "ON", | ||
}; | ||
export const Unit = { | ||
@@ -326,2 +343,13 @@ DAYS: "DAYS", | ||
}; | ||
export const EventTriggerLogicalOperator = { | ||
ALL: "ALL", | ||
ANY: "ANY", | ||
NONE: "NONE", | ||
}; | ||
export const PeriodUnit = { | ||
DAYS: "DAYS", | ||
HOURS: "HOURS", | ||
MONTHS: "MONTHS", | ||
WEEKS: "WEEKS", | ||
}; | ||
export const WorkflowType = { | ||
@@ -493,2 +521,12 @@ APPFLOW_INTEGRATION: "APPFLOW_INTEGRATION", | ||
}); | ||
export const CreateEventTriggerRequestFilterSensitiveLog = (obj) => ({ | ||
...obj, | ||
...(obj.Description && { Description: SENSITIVE_STRING }), | ||
...(obj.EventTriggerConditions && { EventTriggerConditions: SENSITIVE_STRING }), | ||
}); | ||
export const CreateEventTriggerResponseFilterSensitiveLog = (obj) => ({ | ||
...obj, | ||
...(obj.Description && { Description: SENSITIVE_STRING }), | ||
...(obj.EventTriggerConditions && { EventTriggerConditions: SENSITIVE_STRING }), | ||
}); | ||
export const IntegrationConfigFilterSensitiveLog = (obj) => ({ | ||
@@ -588,2 +626,7 @@ ...obj, | ||
}); | ||
export const GetEventTriggerResponseFilterSensitiveLog = (obj) => ({ | ||
...obj, | ||
...(obj.Description && { Description: SENSITIVE_STRING }), | ||
...(obj.EventTriggerConditions && { EventTriggerConditions: SENSITIVE_STRING }), | ||
}); | ||
export const GetProfileObjectTypeResponseFilterSensitiveLog = (obj) => ({ | ||
@@ -617,2 +660,6 @@ ...obj, | ||
}); | ||
export const ListEventTriggersResponseFilterSensitiveLog = (obj) => ({ | ||
...obj, | ||
...(obj.Items && { Items: SENSITIVE_STRING }), | ||
}); | ||
export const ListProfileObjectsItemFilterSensitiveLog = (obj) => ({ | ||
@@ -674,2 +721,12 @@ ...obj, | ||
}); | ||
export const UpdateEventTriggerRequestFilterSensitiveLog = (obj) => ({ | ||
...obj, | ||
...(obj.Description && { Description: SENSITIVE_STRING }), | ||
...(obj.EventTriggerConditions && { EventTriggerConditions: SENSITIVE_STRING }), | ||
}); | ||
export const UpdateEventTriggerResponseFilterSensitiveLog = (obj) => ({ | ||
...obj, | ||
...(obj.Description && { Description: SENSITIVE_STRING }), | ||
...(obj.EventTriggerConditions && { EventTriggerConditions: SENSITIVE_STRING }), | ||
}); | ||
export const UpdateAddressFilterSensitiveLog = (obj) => ({ | ||
@@ -676,0 +733,0 @@ ...obj, |
export * from "./GetSimilarProfilesPaginator"; | ||
export * from "./Interfaces"; | ||
export * from "./ListEventStreamsPaginator"; | ||
export * from "./ListEventTriggersPaginator"; | ||
export * from "./ListObjectTypeAttributesPaginator"; | ||
export * from "./ListRuleBasedMatchesPaginator"; | ||
export * from "./ListSegmentDefinitionsPaginator"; |
@@ -58,2 +58,5 @@ import { Command as $Command } from "@smithy/smithy-client"; | ||
* // RoleArn: "STRING_VALUE", | ||
* // EventTriggerNames: [ // EventTriggerNames | ||
* // "STRING_VALUE", | ||
* // ], | ||
* // }; | ||
@@ -60,0 +63,0 @@ * |
@@ -7,2 +7,3 @@ export * from "./AddProfileKeyCommand"; | ||
export * from "./CreateEventStreamCommand"; | ||
export * from "./CreateEventTriggerCommand"; | ||
export * from "./CreateIntegrationWorkflowCommand"; | ||
@@ -16,2 +17,3 @@ export * from "./CreateProfileCommand"; | ||
export * from "./DeleteEventStreamCommand"; | ||
export * from "./DeleteEventTriggerCommand"; | ||
export * from "./DeleteIntegrationCommand"; | ||
@@ -30,2 +32,3 @@ export * from "./DeleteProfileCommand"; | ||
export * from "./GetEventStreamCommand"; | ||
export * from "./GetEventTriggerCommand"; | ||
export * from "./GetIdentityResolutionJobCommand"; | ||
@@ -48,2 +51,3 @@ export * from "./GetIntegrationCommand"; | ||
export * from "./ListEventStreamsCommand"; | ||
export * from "./ListEventTriggersCommand"; | ||
export * from "./ListIdentityResolutionJobsCommand"; | ||
@@ -69,2 +73,3 @@ export * from "./ListIntegrationsCommand"; | ||
export * from "./UpdateDomainCommand"; | ||
export * from "./UpdateEventTriggerCommand"; | ||
export * from "./UpdateProfileCommand"; |
@@ -62,2 +62,5 @@ import { Command as $Command } from "@smithy/smithy-client"; | ||
* // RoleArn: "STRING_VALUE", | ||
* // EventTriggerNames: [ // EventTriggerNames | ||
* // "STRING_VALUE", | ||
* // ], | ||
* // }, | ||
@@ -64,0 +67,0 @@ * // ], |
@@ -62,2 +62,5 @@ import { Command as $Command } from "@smithy/smithy-client"; | ||
* // RoleArn: "STRING_VALUE", | ||
* // EventTriggerNames: [ // EventTriggerNames | ||
* // "STRING_VALUE", | ||
* // ], | ||
* // }, | ||
@@ -64,0 +67,0 @@ * // ], |
@@ -118,2 +118,5 @@ import { Command as $Command } from "@smithy/smithy-client"; | ||
* RoleArn: "STRING_VALUE", | ||
* EventTriggerNames: [ // EventTriggerNames | ||
* "STRING_VALUE", | ||
* ], | ||
* }; | ||
@@ -137,2 +140,5 @@ * const command = new PutIntegrationCommand(input); | ||
* // RoleArn: "STRING_VALUE", | ||
* // EventTriggerNames: [ // EventTriggerNames | ||
* // "STRING_VALUE", | ||
* // ], | ||
* // }; | ||
@@ -139,0 +145,0 @@ * |
@@ -8,2 +8,3 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; | ||
import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from "./commands/CreateEventStreamCommand"; | ||
import { CreateEventTriggerCommandInput, CreateEventTriggerCommandOutput } from "./commands/CreateEventTriggerCommand"; | ||
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "./commands/CreateIntegrationWorkflowCommand"; | ||
@@ -17,2 +18,3 @@ import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand"; | ||
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "./commands/DeleteEventStreamCommand"; | ||
import { DeleteEventTriggerCommandInput, DeleteEventTriggerCommandOutput } from "./commands/DeleteEventTriggerCommand"; | ||
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand"; | ||
@@ -31,2 +33,3 @@ import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "./commands/DeleteProfileCommand"; | ||
import { GetEventStreamCommandInput, GetEventStreamCommandOutput } from "./commands/GetEventStreamCommand"; | ||
import { GetEventTriggerCommandInput, GetEventTriggerCommandOutput } from "./commands/GetEventTriggerCommand"; | ||
import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "./commands/GetIdentityResolutionJobCommand"; | ||
@@ -49,2 +52,3 @@ import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "./commands/GetIntegrationCommand"; | ||
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "./commands/ListEventStreamsCommand"; | ||
import { ListEventTriggersCommandInput, ListEventTriggersCommandOutput } from "./commands/ListEventTriggersCommand"; | ||
import { ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsCommandOutput } from "./commands/ListIdentityResolutionJobsCommand"; | ||
@@ -70,2 +74,3 @@ import { ListIntegrationsCommandInput, ListIntegrationsCommandOutput } from "./commands/ListIntegrationsCommand"; | ||
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand"; | ||
import { UpdateEventTriggerCommandInput, UpdateEventTriggerCommandOutput } from "./commands/UpdateEventTriggerCommand"; | ||
import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand"; | ||
@@ -111,2 +116,8 @@ import { CustomerProfilesClient } from "./CustomerProfilesClient"; | ||
/** | ||
* @see {@link CreateEventTriggerCommand} | ||
*/ | ||
createEventTrigger(args: CreateEventTriggerCommandInput, options?: __HttpHandlerOptions): Promise<CreateEventTriggerCommandOutput>; | ||
createEventTrigger(args: CreateEventTriggerCommandInput, cb: (err: any, data?: CreateEventTriggerCommandOutput) => void): void; | ||
createEventTrigger(args: CreateEventTriggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEventTriggerCommandOutput) => void): void; | ||
/** | ||
* @see {@link CreateIntegrationWorkflowCommand} | ||
@@ -160,2 +171,8 @@ */ | ||
/** | ||
* @see {@link DeleteEventTriggerCommand} | ||
*/ | ||
deleteEventTrigger(args: DeleteEventTriggerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEventTriggerCommandOutput>; | ||
deleteEventTrigger(args: DeleteEventTriggerCommandInput, cb: (err: any, data?: DeleteEventTriggerCommandOutput) => void): void; | ||
deleteEventTrigger(args: DeleteEventTriggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventTriggerCommandOutput) => void): void; | ||
/** | ||
* @see {@link DeleteIntegrationCommand} | ||
@@ -239,2 +256,8 @@ */ | ||
/** | ||
* @see {@link GetEventTriggerCommand} | ||
*/ | ||
getEventTrigger(args: GetEventTriggerCommandInput, options?: __HttpHandlerOptions): Promise<GetEventTriggerCommandOutput>; | ||
getEventTrigger(args: GetEventTriggerCommandInput, cb: (err: any, data?: GetEventTriggerCommandOutput) => void): void; | ||
getEventTrigger(args: GetEventTriggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventTriggerCommandOutput) => void): void; | ||
/** | ||
* @see {@link GetIdentityResolutionJobCommand} | ||
@@ -343,2 +366,8 @@ */ | ||
/** | ||
* @see {@link ListEventTriggersCommand} | ||
*/ | ||
listEventTriggers(args: ListEventTriggersCommandInput, options?: __HttpHandlerOptions): Promise<ListEventTriggersCommandOutput>; | ||
listEventTriggers(args: ListEventTriggersCommandInput, cb: (err: any, data?: ListEventTriggersCommandOutput) => void): void; | ||
listEventTriggers(args: ListEventTriggersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventTriggersCommandOutput) => void): void; | ||
/** | ||
* @see {@link ListIdentityResolutionJobsCommand} | ||
@@ -465,2 +494,8 @@ */ | ||
/** | ||
* @see {@link UpdateEventTriggerCommand} | ||
*/ | ||
updateEventTrigger(args: UpdateEventTriggerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventTriggerCommandOutput>; | ||
updateEventTrigger(args: UpdateEventTriggerCommandInput, cb: (err: any, data?: UpdateEventTriggerCommandOutput) => void): void; | ||
updateEventTrigger(args: UpdateEventTriggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventTriggerCommandOutput) => void): void; | ||
/** | ||
* @see {@link UpdateProfileCommand} | ||
@@ -467,0 +502,0 @@ */ |
@@ -16,2 +16,3 @@ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header"; | ||
import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from "./commands/CreateEventStreamCommand"; | ||
import { CreateEventTriggerCommandInput, CreateEventTriggerCommandOutput } from "./commands/CreateEventTriggerCommand"; | ||
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "./commands/CreateIntegrationWorkflowCommand"; | ||
@@ -25,2 +26,3 @@ import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand"; | ||
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "./commands/DeleteEventStreamCommand"; | ||
import { DeleteEventTriggerCommandInput, DeleteEventTriggerCommandOutput } from "./commands/DeleteEventTriggerCommand"; | ||
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand"; | ||
@@ -39,2 +41,3 @@ import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "./commands/DeleteProfileCommand"; | ||
import { GetEventStreamCommandInput, GetEventStreamCommandOutput } from "./commands/GetEventStreamCommand"; | ||
import { GetEventTriggerCommandInput, GetEventTriggerCommandOutput } from "./commands/GetEventTriggerCommand"; | ||
import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "./commands/GetIdentityResolutionJobCommand"; | ||
@@ -57,2 +60,3 @@ import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "./commands/GetIntegrationCommand"; | ||
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "./commands/ListEventStreamsCommand"; | ||
import { ListEventTriggersCommandInput, ListEventTriggersCommandOutput } from "./commands/ListEventTriggersCommand"; | ||
import { ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsCommandOutput } from "./commands/ListIdentityResolutionJobsCommand"; | ||
@@ -78,2 +82,3 @@ import { ListIntegrationsCommandInput, ListIntegrationsCommandOutput } from "./commands/ListIntegrationsCommand"; | ||
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand"; | ||
import { UpdateEventTriggerCommandInput, UpdateEventTriggerCommandOutput } from "./commands/UpdateEventTriggerCommand"; | ||
import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand"; | ||
@@ -86,7 +91,7 @@ import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters"; | ||
*/ | ||
export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateEventStreamCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteEventStreamCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetEventStreamCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateProfileCommandInput; | ||
export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateEventStreamCommandInput | CreateEventTriggerCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteEventStreamCommandInput | DeleteEventTriggerCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetEventStreamCommandInput | GetEventTriggerCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListEventTriggersCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateEventTriggerCommandInput | UpdateProfileCommandInput; | ||
/** | ||
* @public | ||
*/ | ||
export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateEventStreamCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteEventStreamCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetEventStreamCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateProfileCommandOutput; | ||
export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateEventStreamCommandOutput | CreateEventTriggerCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteEventStreamCommandOutput | DeleteEventTriggerCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetEventStreamCommandOutput | GetEventTriggerCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListEventTriggersCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateEventTriggerCommandOutput | UpdateProfileCommandOutput; | ||
/** | ||
@@ -93,0 +98,0 @@ * @public |
export * from "./GetSimilarProfilesPaginator"; | ||
export * from "./Interfaces"; | ||
export * from "./ListEventStreamsPaginator"; | ||
export * from "./ListEventTriggersPaginator"; | ||
export * from "./ListObjectTypeAttributesPaginator"; | ||
export * from "./ListRuleBasedMatchesPaginator"; | ||
export * from "./ListSegmentDefinitionsPaginator"; |
@@ -9,2 +9,3 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; | ||
import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from "../commands/CreateEventStreamCommand"; | ||
import { CreateEventTriggerCommandInput, CreateEventTriggerCommandOutput } from "../commands/CreateEventTriggerCommand"; | ||
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "../commands/CreateIntegrationWorkflowCommand"; | ||
@@ -18,2 +19,3 @@ import { CreateProfileCommandInput, CreateProfileCommandOutput } from "../commands/CreateProfileCommand"; | ||
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "../commands/DeleteEventStreamCommand"; | ||
import { DeleteEventTriggerCommandInput, DeleteEventTriggerCommandOutput } from "../commands/DeleteEventTriggerCommand"; | ||
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "../commands/DeleteIntegrationCommand"; | ||
@@ -32,2 +34,3 @@ import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "../commands/DeleteProfileCommand"; | ||
import { GetEventStreamCommandInput, GetEventStreamCommandOutput } from "../commands/GetEventStreamCommand"; | ||
import { GetEventTriggerCommandInput, GetEventTriggerCommandOutput } from "../commands/GetEventTriggerCommand"; | ||
import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "../commands/GetIdentityResolutionJobCommand"; | ||
@@ -50,2 +53,3 @@ import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "../commands/GetIntegrationCommand"; | ||
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "../commands/ListEventStreamsCommand"; | ||
import { ListEventTriggersCommandInput, ListEventTriggersCommandOutput } from "../commands/ListEventTriggersCommand"; | ||
import { ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsCommandOutput } from "../commands/ListIdentityResolutionJobsCommand"; | ||
@@ -71,2 +75,3 @@ import { ListIntegrationsCommandInput, ListIntegrationsCommandOutput } from "../commands/ListIntegrationsCommand"; | ||
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "../commands/UpdateDomainCommand"; | ||
import { UpdateEventTriggerCommandInput, UpdateEventTriggerCommandOutput } from "../commands/UpdateEventTriggerCommand"; | ||
import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "../commands/UpdateProfileCommand"; | ||
@@ -98,2 +103,6 @@ /** | ||
/** | ||
* serializeAws_restJson1CreateEventTriggerCommand | ||
*/ | ||
export declare const se_CreateEventTriggerCommand: (input: CreateEventTriggerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; | ||
/** | ||
* serializeAws_restJson1CreateIntegrationWorkflowCommand | ||
@@ -131,2 +140,6 @@ */ | ||
/** | ||
* serializeAws_restJson1DeleteEventTriggerCommand | ||
*/ | ||
export declare const se_DeleteEventTriggerCommand: (input: DeleteEventTriggerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; | ||
/** | ||
* serializeAws_restJson1DeleteIntegrationCommand | ||
@@ -184,2 +197,6 @@ */ | ||
/** | ||
* serializeAws_restJson1GetEventTriggerCommand | ||
*/ | ||
export declare const se_GetEventTriggerCommand: (input: GetEventTriggerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; | ||
/** | ||
* serializeAws_restJson1GetIdentityResolutionJobCommand | ||
@@ -253,2 +270,6 @@ */ | ||
/** | ||
* serializeAws_restJson1ListEventTriggersCommand | ||
*/ | ||
export declare const se_ListEventTriggersCommand: (input: ListEventTriggersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; | ||
/** | ||
* serializeAws_restJson1ListIdentityResolutionJobsCommand | ||
@@ -334,2 +355,6 @@ */ | ||
/** | ||
* serializeAws_restJson1UpdateEventTriggerCommand | ||
*/ | ||
export declare const se_UpdateEventTriggerCommand: (input: UpdateEventTriggerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; | ||
/** | ||
* serializeAws_restJson1UpdateProfileCommand | ||
@@ -363,2 +388,6 @@ */ | ||
/** | ||
* deserializeAws_restJson1CreateEventTriggerCommand | ||
*/ | ||
export declare const de_CreateEventTriggerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEventTriggerCommandOutput>; | ||
/** | ||
* deserializeAws_restJson1CreateIntegrationWorkflowCommand | ||
@@ -396,2 +425,6 @@ */ | ||
/** | ||
* deserializeAws_restJson1DeleteEventTriggerCommand | ||
*/ | ||
export declare const de_DeleteEventTriggerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEventTriggerCommandOutput>; | ||
/** | ||
* deserializeAws_restJson1DeleteIntegrationCommand | ||
@@ -449,2 +482,6 @@ */ | ||
/** | ||
* deserializeAws_restJson1GetEventTriggerCommand | ||
*/ | ||
export declare const de_GetEventTriggerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventTriggerCommandOutput>; | ||
/** | ||
* deserializeAws_restJson1GetIdentityResolutionJobCommand | ||
@@ -518,2 +555,6 @@ */ | ||
/** | ||
* deserializeAws_restJson1ListEventTriggersCommand | ||
*/ | ||
export declare const de_ListEventTriggersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventTriggersCommandOutput>; | ||
/** | ||
* deserializeAws_restJson1ListIdentityResolutionJobsCommand | ||
@@ -599,4 +640,8 @@ */ | ||
/** | ||
* deserializeAws_restJson1UpdateEventTriggerCommand | ||
*/ | ||
export declare const de_UpdateEventTriggerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEventTriggerCommandOutput>; | ||
/** | ||
* deserializeAws_restJson1UpdateProfileCommand | ||
*/ | ||
export declare const de_UpdateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProfileCommandOutput>; |
@@ -7,2 +7,3 @@ export * from "./AddProfileKeyCommand"; | ||
export * from "./CreateEventStreamCommand"; | ||
export * from "./CreateEventTriggerCommand"; | ||
export * from "./CreateIntegrationWorkflowCommand"; | ||
@@ -16,2 +17,3 @@ export * from "./CreateProfileCommand"; | ||
export * from "./DeleteEventStreamCommand"; | ||
export * from "./DeleteEventTriggerCommand"; | ||
export * from "./DeleteIntegrationCommand"; | ||
@@ -30,2 +32,3 @@ export * from "./DeleteProfileCommand"; | ||
export * from "./GetEventStreamCommand"; | ||
export * from "./GetEventTriggerCommand"; | ||
export * from "./GetIdentityResolutionJobCommand"; | ||
@@ -48,2 +51,3 @@ export * from "./GetIntegrationCommand"; | ||
export * from "./ListEventStreamsCommand"; | ||
export * from "./ListEventTriggersCommand"; | ||
export * from "./ListIdentityResolutionJobsCommand"; | ||
@@ -69,2 +73,3 @@ export * from "./ListIntegrationsCommand"; | ||
export * from "./UpdateDomainCommand"; | ||
export * from "./UpdateEventTriggerCommand"; | ||
export * from "./UpdateProfileCommand"; |
@@ -27,2 +27,6 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; | ||
import { | ||
CreateEventTriggerCommandInput, | ||
CreateEventTriggerCommandOutput, | ||
} from "./commands/CreateEventTriggerCommand"; | ||
import { | ||
CreateIntegrationWorkflowCommandInput, | ||
@@ -60,2 +64,6 @@ CreateIntegrationWorkflowCommandOutput, | ||
import { | ||
DeleteEventTriggerCommandInput, | ||
DeleteEventTriggerCommandOutput, | ||
} from "./commands/DeleteEventTriggerCommand"; | ||
import { | ||
DeleteIntegrationCommandInput, | ||
@@ -113,2 +121,6 @@ DeleteIntegrationCommandOutput, | ||
import { | ||
GetEventTriggerCommandInput, | ||
GetEventTriggerCommandOutput, | ||
} from "./commands/GetEventTriggerCommand"; | ||
import { | ||
GetIdentityResolutionJobCommandInput, | ||
@@ -182,2 +194,6 @@ GetIdentityResolutionJobCommandOutput, | ||
import { | ||
ListEventTriggersCommandInput, | ||
ListEventTriggersCommandOutput, | ||
} from "./commands/ListEventTriggersCommand"; | ||
import { | ||
ListIdentityResolutionJobsCommandInput, | ||
@@ -263,2 +279,6 @@ ListIdentityResolutionJobsCommandOutput, | ||
import { | ||
UpdateEventTriggerCommandInput, | ||
UpdateEventTriggerCommandOutput, | ||
} from "./commands/UpdateEventTriggerCommand"; | ||
import { | ||
UpdateProfileCommandInput, | ||
@@ -359,2 +379,15 @@ UpdateProfileCommandOutput, | ||
): void; | ||
createEventTrigger( | ||
args: CreateEventTriggerCommandInput, | ||
options?: __HttpHandlerOptions | ||
): Promise<CreateEventTriggerCommandOutput>; | ||
createEventTrigger( | ||
args: CreateEventTriggerCommandInput, | ||
cb: (err: any, data?: CreateEventTriggerCommandOutput) => void | ||
): void; | ||
createEventTrigger( | ||
args: CreateEventTriggerCommandInput, | ||
options: __HttpHandlerOptions, | ||
cb: (err: any, data?: CreateEventTriggerCommandOutput) => void | ||
): void; | ||
createIntegrationWorkflow( | ||
@@ -470,2 +503,15 @@ args: CreateIntegrationWorkflowCommandInput, | ||
): void; | ||
deleteEventTrigger( | ||
args: DeleteEventTriggerCommandInput, | ||
options?: __HttpHandlerOptions | ||
): Promise<DeleteEventTriggerCommandOutput>; | ||
deleteEventTrigger( | ||
args: DeleteEventTriggerCommandInput, | ||
cb: (err: any, data?: DeleteEventTriggerCommandOutput) => void | ||
): void; | ||
deleteEventTrigger( | ||
args: DeleteEventTriggerCommandInput, | ||
options: __HttpHandlerOptions, | ||
cb: (err: any, data?: DeleteEventTriggerCommandOutput) => void | ||
): void; | ||
deleteIntegration( | ||
@@ -640,2 +686,15 @@ args: DeleteIntegrationCommandInput, | ||
): void; | ||
getEventTrigger( | ||
args: GetEventTriggerCommandInput, | ||
options?: __HttpHandlerOptions | ||
): Promise<GetEventTriggerCommandOutput>; | ||
getEventTrigger( | ||
args: GetEventTriggerCommandInput, | ||
cb: (err: any, data?: GetEventTriggerCommandOutput) => void | ||
): void; | ||
getEventTrigger( | ||
args: GetEventTriggerCommandInput, | ||
options: __HttpHandlerOptions, | ||
cb: (err: any, data?: GetEventTriggerCommandOutput) => void | ||
): void; | ||
getIdentityResolutionJob( | ||
@@ -875,2 +934,15 @@ args: GetIdentityResolutionJobCommandInput, | ||
): void; | ||
listEventTriggers( | ||
args: ListEventTriggersCommandInput, | ||
options?: __HttpHandlerOptions | ||
): Promise<ListEventTriggersCommandOutput>; | ||
listEventTriggers( | ||
args: ListEventTriggersCommandInput, | ||
cb: (err: any, data?: ListEventTriggersCommandOutput) => void | ||
): void; | ||
listEventTriggers( | ||
args: ListEventTriggersCommandInput, | ||
options: __HttpHandlerOptions, | ||
cb: (err: any, data?: ListEventTriggersCommandOutput) => void | ||
): void; | ||
listIdentityResolutionJobs( | ||
@@ -1143,2 +1215,15 @@ args: ListIdentityResolutionJobsCommandInput, | ||
): void; | ||
updateEventTrigger( | ||
args: UpdateEventTriggerCommandInput, | ||
options?: __HttpHandlerOptions | ||
): Promise<UpdateEventTriggerCommandOutput>; | ||
updateEventTrigger( | ||
args: UpdateEventTriggerCommandInput, | ||
cb: (err: any, data?: UpdateEventTriggerCommandOutput) => void | ||
): void; | ||
updateEventTrigger( | ||
args: UpdateEventTriggerCommandInput, | ||
options: __HttpHandlerOptions, | ||
cb: (err: any, data?: UpdateEventTriggerCommandOutput) => void | ||
): void; | ||
updateProfile( | ||
@@ -1145,0 +1230,0 @@ args: UpdateProfileCommandInput, |
@@ -73,2 +73,6 @@ import { | ||
import { | ||
CreateEventTriggerCommandInput, | ||
CreateEventTriggerCommandOutput, | ||
} from "./commands/CreateEventTriggerCommand"; | ||
import { | ||
CreateIntegrationWorkflowCommandInput, | ||
@@ -106,2 +110,6 @@ CreateIntegrationWorkflowCommandOutput, | ||
import { | ||
DeleteEventTriggerCommandInput, | ||
DeleteEventTriggerCommandOutput, | ||
} from "./commands/DeleteEventTriggerCommand"; | ||
import { | ||
DeleteIntegrationCommandInput, | ||
@@ -159,2 +167,6 @@ DeleteIntegrationCommandOutput, | ||
import { | ||
GetEventTriggerCommandInput, | ||
GetEventTriggerCommandOutput, | ||
} from "./commands/GetEventTriggerCommand"; | ||
import { | ||
GetIdentityResolutionJobCommandInput, | ||
@@ -228,2 +240,6 @@ GetIdentityResolutionJobCommandOutput, | ||
import { | ||
ListEventTriggersCommandInput, | ||
ListEventTriggersCommandOutput, | ||
} from "./commands/ListEventTriggersCommand"; | ||
import { | ||
ListIdentityResolutionJobsCommandInput, | ||
@@ -309,2 +325,6 @@ ListIdentityResolutionJobsCommandOutput, | ||
import { | ||
UpdateEventTriggerCommandInput, | ||
UpdateEventTriggerCommandOutput, | ||
} from "./commands/UpdateEventTriggerCommand"; | ||
import { | ||
UpdateProfileCommandInput, | ||
@@ -327,2 +347,3 @@ UpdateProfileCommandOutput, | ||
| CreateEventStreamCommandInput | ||
| CreateEventTriggerCommandInput | ||
| CreateIntegrationWorkflowCommandInput | ||
@@ -336,2 +357,3 @@ | CreateProfileCommandInput | ||
| DeleteEventStreamCommandInput | ||
| DeleteEventTriggerCommandInput | ||
| DeleteIntegrationCommandInput | ||
@@ -350,2 +372,3 @@ | DeleteProfileCommandInput | ||
| GetEventStreamCommandInput | ||
| GetEventTriggerCommandInput | ||
| GetIdentityResolutionJobCommandInput | ||
@@ -368,2 +391,3 @@ | GetIntegrationCommandInput | ||
| ListEventStreamsCommandInput | ||
| ListEventTriggersCommandInput | ||
| ListIdentityResolutionJobsCommandInput | ||
@@ -389,2 +413,3 @@ | ListIntegrationsCommandInput | ||
| UpdateDomainCommandInput | ||
| UpdateEventTriggerCommandInput | ||
| UpdateProfileCommandInput; | ||
@@ -398,2 +423,3 @@ export type ServiceOutputTypes = | ||
| CreateEventStreamCommandOutput | ||
| CreateEventTriggerCommandOutput | ||
| CreateIntegrationWorkflowCommandOutput | ||
@@ -407,2 +433,3 @@ | CreateProfileCommandOutput | ||
| DeleteEventStreamCommandOutput | ||
| DeleteEventTriggerCommandOutput | ||
| DeleteIntegrationCommandOutput | ||
@@ -421,2 +448,3 @@ | DeleteProfileCommandOutput | ||
| GetEventStreamCommandOutput | ||
| GetEventTriggerCommandOutput | ||
| GetIdentityResolutionJobCommandOutput | ||
@@ -439,2 +467,3 @@ | GetIntegrationCommandOutput | ||
| ListEventStreamsCommandOutput | ||
| ListEventTriggersCommandOutput | ||
| ListIdentityResolutionJobsCommandOutput | ||
@@ -460,2 +489,3 @@ | ListIntegrationsCommandOutput | ||
| UpdateDomainCommandOutput | ||
| UpdateEventTriggerCommandOutput | ||
| UpdateProfileCommandOutput; | ||
@@ -462,0 +492,0 @@ export interface ClientDefaults |
export * from "./GetSimilarProfilesPaginator"; | ||
export * from "./Interfaces"; | ||
export * from "./ListEventStreamsPaginator"; | ||
export * from "./ListEventTriggersPaginator"; | ||
export * from "./ListObjectTypeAttributesPaginator"; | ||
export * from "./ListRuleBasedMatchesPaginator"; | ||
export * from "./ListSegmentDefinitionsPaginator"; |
@@ -31,2 +31,6 @@ import { | ||
import { | ||
CreateEventTriggerCommandInput, | ||
CreateEventTriggerCommandOutput, | ||
} from "../commands/CreateEventTriggerCommand"; | ||
import { | ||
CreateIntegrationWorkflowCommandInput, | ||
@@ -64,2 +68,6 @@ CreateIntegrationWorkflowCommandOutput, | ||
import { | ||
DeleteEventTriggerCommandInput, | ||
DeleteEventTriggerCommandOutput, | ||
} from "../commands/DeleteEventTriggerCommand"; | ||
import { | ||
DeleteIntegrationCommandInput, | ||
@@ -117,2 +125,6 @@ DeleteIntegrationCommandOutput, | ||
import { | ||
GetEventTriggerCommandInput, | ||
GetEventTriggerCommandOutput, | ||
} from "../commands/GetEventTriggerCommand"; | ||
import { | ||
GetIdentityResolutionJobCommandInput, | ||
@@ -186,2 +198,6 @@ GetIdentityResolutionJobCommandOutput, | ||
import { | ||
ListEventTriggersCommandInput, | ||
ListEventTriggersCommandOutput, | ||
} from "../commands/ListEventTriggersCommand"; | ||
import { | ||
ListIdentityResolutionJobsCommandInput, | ||
@@ -267,2 +283,6 @@ ListIdentityResolutionJobsCommandOutput, | ||
import { | ||
UpdateEventTriggerCommandInput, | ||
UpdateEventTriggerCommandOutput, | ||
} from "../commands/UpdateEventTriggerCommand"; | ||
import { | ||
UpdateProfileCommandInput, | ||
@@ -295,2 +315,6 @@ UpdateProfileCommandOutput, | ||
) => Promise<__HttpRequest>; | ||
export declare const se_CreateEventTriggerCommand: ( | ||
input: CreateEventTriggerCommandInput, | ||
context: __SerdeContext | ||
) => Promise<__HttpRequest>; | ||
export declare const se_CreateIntegrationWorkflowCommand: ( | ||
@@ -328,2 +352,6 @@ input: CreateIntegrationWorkflowCommandInput, | ||
) => Promise<__HttpRequest>; | ||
export declare const se_DeleteEventTriggerCommand: ( | ||
input: DeleteEventTriggerCommandInput, | ||
context: __SerdeContext | ||
) => Promise<__HttpRequest>; | ||
export declare const se_DeleteIntegrationCommand: ( | ||
@@ -381,2 +409,6 @@ input: DeleteIntegrationCommandInput, | ||
) => Promise<__HttpRequest>; | ||
export declare const se_GetEventTriggerCommand: ( | ||
input: GetEventTriggerCommandInput, | ||
context: __SerdeContext | ||
) => Promise<__HttpRequest>; | ||
export declare const se_GetIdentityResolutionJobCommand: ( | ||
@@ -450,2 +482,6 @@ input: GetIdentityResolutionJobCommandInput, | ||
) => Promise<__HttpRequest>; | ||
export declare const se_ListEventTriggersCommand: ( | ||
input: ListEventTriggersCommandInput, | ||
context: __SerdeContext | ||
) => Promise<__HttpRequest>; | ||
export declare const se_ListIdentityResolutionJobsCommand: ( | ||
@@ -531,2 +567,6 @@ input: ListIdentityResolutionJobsCommandInput, | ||
) => Promise<__HttpRequest>; | ||
export declare const se_UpdateEventTriggerCommand: ( | ||
input: UpdateEventTriggerCommandInput, | ||
context: __SerdeContext | ||
) => Promise<__HttpRequest>; | ||
export declare const se_UpdateProfileCommand: ( | ||
@@ -560,2 +600,6 @@ input: UpdateProfileCommandInput, | ||
) => Promise<CreateEventStreamCommandOutput>; | ||
export declare const de_CreateEventTriggerCommand: ( | ||
output: __HttpResponse, | ||
context: __SerdeContext | ||
) => Promise<CreateEventTriggerCommandOutput>; | ||
export declare const de_CreateIntegrationWorkflowCommand: ( | ||
@@ -593,2 +637,6 @@ output: __HttpResponse, | ||
) => Promise<DeleteEventStreamCommandOutput>; | ||
export declare const de_DeleteEventTriggerCommand: ( | ||
output: __HttpResponse, | ||
context: __SerdeContext | ||
) => Promise<DeleteEventTriggerCommandOutput>; | ||
export declare const de_DeleteIntegrationCommand: ( | ||
@@ -646,2 +694,6 @@ output: __HttpResponse, | ||
) => Promise<GetEventStreamCommandOutput>; | ||
export declare const de_GetEventTriggerCommand: ( | ||
output: __HttpResponse, | ||
context: __SerdeContext | ||
) => Promise<GetEventTriggerCommandOutput>; | ||
export declare const de_GetIdentityResolutionJobCommand: ( | ||
@@ -715,2 +767,6 @@ output: __HttpResponse, | ||
) => Promise<ListEventStreamsCommandOutput>; | ||
export declare const de_ListEventTriggersCommand: ( | ||
output: __HttpResponse, | ||
context: __SerdeContext | ||
) => Promise<ListEventTriggersCommandOutput>; | ||
export declare const de_ListIdentityResolutionJobsCommand: ( | ||
@@ -796,2 +852,6 @@ output: __HttpResponse, | ||
) => Promise<UpdateDomainCommandOutput>; | ||
export declare const de_UpdateEventTriggerCommand: ( | ||
output: __HttpResponse, | ||
context: __SerdeContext | ||
) => Promise<UpdateEventTriggerCommandOutput>; | ||
export declare const de_UpdateProfileCommand: ( | ||
@@ -798,0 +858,0 @@ output: __HttpResponse, |
{ | ||
"name": "@aws-sdk/client-customer-profiles", | ||
"description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native", | ||
"version": "3.699.0", | ||
"version": "3.703.0", | ||
"scripts": { | ||
@@ -6,0 +6,0 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", |
@@ -275,2 +275,10 @@ <!-- generated file, do not edit directly --> | ||
<summary> | ||
CreateEventTrigger | ||
</summary> | ||
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/customer-profiles/command/CreateEventTriggerCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/CreateEventTriggerCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/CreateEventTriggerCommandOutput/) | ||
</details> | ||
<details> | ||
<summary> | ||
CreateIntegrationWorkflow | ||
@@ -340,2 +348,10 @@ </summary> | ||
<summary> | ||
DeleteEventTrigger | ||
</summary> | ||
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/customer-profiles/command/DeleteEventTriggerCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/DeleteEventTriggerCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/DeleteEventTriggerCommandOutput/) | ||
</details> | ||
<details> | ||
<summary> | ||
DeleteIntegration | ||
@@ -445,2 +461,10 @@ </summary> | ||
<summary> | ||
GetEventTrigger | ||
</summary> | ||
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/customer-profiles/command/GetEventTriggerCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/GetEventTriggerCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/GetEventTriggerCommandOutput/) | ||
</details> | ||
<details> | ||
<summary> | ||
GetIdentityResolutionJob | ||
@@ -582,2 +606,10 @@ </summary> | ||
<summary> | ||
ListEventTriggers | ||
</summary> | ||
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/customer-profiles/command/ListEventTriggersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/ListEventTriggersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/ListEventTriggersCommandOutput/) | ||
</details> | ||
<details> | ||
<summary> | ||
ListIdentityResolutionJobs | ||
@@ -743,2 +775,10 @@ </summary> | ||
<summary> | ||
UpdateEventTrigger | ||
</summary> | ||
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/customer-profiles/command/UpdateEventTriggerCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/UpdateEventTriggerCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-customer-profiles/Interface/UpdateEventTriggerCommandOutput/) | ||
</details> | ||
<details> | ||
<summary> | ||
UpdateProfile | ||
@@ -745,0 +785,0 @@ </summary> |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1618974
302
38268
785