@aws-sdk/client-customer-profiles 3.699.0 → 3.703.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -0
- package/dist-cjs/index.js +357 -0
- package/dist-es/CustomerProfiles.js +10 -0
- package/dist-es/commands/CreateEventTriggerCommand.js +23 -0
- package/dist-es/commands/DeleteEventTriggerCommand.js +22 -0
- package/dist-es/commands/GetEventTriggerCommand.js +23 -0
- package/dist-es/commands/ListEventTriggersCommand.js +23 -0
- package/dist-es/commands/UpdateEventTriggerCommand.js +23 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +57 -0
- package/dist-es/pagination/ListEventTriggersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +189 -0
- package/dist-types/CustomerProfiles.d.ts +35 -0
- package/dist-types/CustomerProfilesClient.d.ts +7 -2
- package/dist-types/commands/CreateEventTriggerCommand.d.ts +164 -0
- package/dist-types/commands/DeleteEventTriggerCommand.d.ts +90 -0
- package/dist-types/commands/GetEventTriggerCommand.d.ts +125 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +3 -0
- package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +3 -0
- package/dist-types/commands/ListEventTriggersCommand.d.ts +100 -0
- package/dist-types/commands/ListIntegrationsCommand.d.ts +3 -0
- package/dist-types/commands/PutIntegrationCommand.d.ts +6 -0
- package/dist-types/commands/UpdateEventTriggerCommand.d.ts +158 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +585 -19
- package/dist-types/pagination/ListEventTriggersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +85 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateEventTriggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteEventTriggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetEventTriggerCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListEventTriggersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +158 -0
- package/dist-types/ts3.4/pagination/ListEventTriggersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateEventTriggerRequest,
|
|
10
|
+
UpdateEventTriggerResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateEventTriggerCommandInput
|
|
15
|
+
extends UpdateEventTriggerRequest {}
|
|
16
|
+
export interface UpdateEventTriggerCommandOutput
|
|
17
|
+
extends UpdateEventTriggerResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateEventTriggerCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateEventTriggerCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateEventTriggerCommandInput,
|
|
24
|
+
UpdateEventTriggerCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateEventTriggerCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateEventTriggerCommandInput,
|
|
33
|
+
UpdateEventTriggerCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateEventTriggerCommand extends UpdateEventTriggerCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateEventTriggerRequest;
|
|
44
|
+
output: UpdateEventTriggerResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateEventTriggerCommandInput;
|
|
48
|
+
output: UpdateEventTriggerCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -4,6 +4,7 @@ export * from "./BatchGetProfileCommand";
|
|
|
4
4
|
export * from "./CreateCalculatedAttributeDefinitionCommand";
|
|
5
5
|
export * from "./CreateDomainCommand";
|
|
6
6
|
export * from "./CreateEventStreamCommand";
|
|
7
|
+
export * from "./CreateEventTriggerCommand";
|
|
7
8
|
export * from "./CreateIntegrationWorkflowCommand";
|
|
8
9
|
export * from "./CreateProfileCommand";
|
|
9
10
|
export * from "./CreateSegmentDefinitionCommand";
|
|
@@ -12,6 +13,7 @@ export * from "./CreateSegmentSnapshotCommand";
|
|
|
12
13
|
export * from "./DeleteCalculatedAttributeDefinitionCommand";
|
|
13
14
|
export * from "./DeleteDomainCommand";
|
|
14
15
|
export * from "./DeleteEventStreamCommand";
|
|
16
|
+
export * from "./DeleteEventTriggerCommand";
|
|
15
17
|
export * from "./DeleteIntegrationCommand";
|
|
16
18
|
export * from "./DeleteProfileCommand";
|
|
17
19
|
export * from "./DeleteProfileKeyCommand";
|
|
@@ -25,6 +27,7 @@ export * from "./GetCalculatedAttributeDefinitionCommand";
|
|
|
25
27
|
export * from "./GetCalculatedAttributeForProfileCommand";
|
|
26
28
|
export * from "./GetDomainCommand";
|
|
27
29
|
export * from "./GetEventStreamCommand";
|
|
30
|
+
export * from "./GetEventTriggerCommand";
|
|
28
31
|
export * from "./GetIdentityResolutionJobCommand";
|
|
29
32
|
export * from "./GetIntegrationCommand";
|
|
30
33
|
export * from "./GetMatchesCommand";
|
|
@@ -42,6 +45,7 @@ export * from "./ListCalculatedAttributeDefinitionsCommand";
|
|
|
42
45
|
export * from "./ListCalculatedAttributesForProfileCommand";
|
|
43
46
|
export * from "./ListDomainsCommand";
|
|
44
47
|
export * from "./ListEventStreamsCommand";
|
|
48
|
+
export * from "./ListEventTriggersCommand";
|
|
45
49
|
export * from "./ListIdentityResolutionJobsCommand";
|
|
46
50
|
export * from "./ListIntegrationsCommand";
|
|
47
51
|
export * from "./ListObjectTypeAttributesCommand";
|
|
@@ -62,4 +66,5 @@ export * from "./TagResourceCommand";
|
|
|
62
66
|
export * from "./UntagResourceCommand";
|
|
63
67
|
export * from "./UpdateCalculatedAttributeDefinitionCommand";
|
|
64
68
|
export * from "./UpdateDomainCommand";
|
|
69
|
+
export * from "./UpdateEventTriggerCommand";
|
|
65
70
|
export * from "./UpdateProfileCommand";
|
|
@@ -554,6 +554,25 @@ export interface ListCalculatedAttributeForProfileItem {
|
|
|
554
554
|
IsDataPartial?: string | undefined;
|
|
555
555
|
Value?: string | undefined;
|
|
556
556
|
}
|
|
557
|
+
export declare const ComparisonOperator: {
|
|
558
|
+
readonly AFTER: "AFTER";
|
|
559
|
+
readonly BEFORE: "BEFORE";
|
|
560
|
+
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
561
|
+
readonly BETWEEN: "BETWEEN";
|
|
562
|
+
readonly CONTAINS: "CONTAINS";
|
|
563
|
+
readonly ENDS_WITH: "ENDS_WITH";
|
|
564
|
+
readonly EQUAL: "EQUAL";
|
|
565
|
+
readonly EXCLUSIVE: "EXCLUSIVE";
|
|
566
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
567
|
+
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
568
|
+
readonly INCLUSIVE: "INCLUSIVE";
|
|
569
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
570
|
+
readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
|
|
571
|
+
readonly NOT_BETWEEN: "NOT_BETWEEN";
|
|
572
|
+
readonly ON: "ON";
|
|
573
|
+
};
|
|
574
|
+
export type ComparisonOperator =
|
|
575
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
557
576
|
export declare const Unit: {
|
|
558
577
|
readonly DAYS: "DAYS";
|
|
559
578
|
};
|
|
@@ -728,6 +747,64 @@ export interface CreateEventStreamResponse {
|
|
|
728
747
|
EventStreamArn: string | undefined;
|
|
729
748
|
Tags?: Record<string, string> | undefined;
|
|
730
749
|
}
|
|
750
|
+
export interface ObjectAttribute {
|
|
751
|
+
Source?: string | undefined;
|
|
752
|
+
FieldName?: string | undefined;
|
|
753
|
+
ComparisonOperator: ComparisonOperator | undefined;
|
|
754
|
+
Values: string[] | undefined;
|
|
755
|
+
}
|
|
756
|
+
export interface EventTriggerDimension {
|
|
757
|
+
ObjectAttributes: ObjectAttribute[] | undefined;
|
|
758
|
+
}
|
|
759
|
+
export declare const EventTriggerLogicalOperator: {
|
|
760
|
+
readonly ALL: "ALL";
|
|
761
|
+
readonly ANY: "ANY";
|
|
762
|
+
readonly NONE: "NONE";
|
|
763
|
+
};
|
|
764
|
+
export type EventTriggerLogicalOperator =
|
|
765
|
+
(typeof EventTriggerLogicalOperator)[keyof typeof EventTriggerLogicalOperator];
|
|
766
|
+
export interface EventTriggerCondition {
|
|
767
|
+
EventTriggerDimensions: EventTriggerDimension[] | undefined;
|
|
768
|
+
LogicalOperator: EventTriggerLogicalOperator | undefined;
|
|
769
|
+
}
|
|
770
|
+
export declare const PeriodUnit: {
|
|
771
|
+
readonly DAYS: "DAYS";
|
|
772
|
+
readonly HOURS: "HOURS";
|
|
773
|
+
readonly MONTHS: "MONTHS";
|
|
774
|
+
readonly WEEKS: "WEEKS";
|
|
775
|
+
};
|
|
776
|
+
export type PeriodUnit = (typeof PeriodUnit)[keyof typeof PeriodUnit];
|
|
777
|
+
export interface Period {
|
|
778
|
+
Unit: PeriodUnit | undefined;
|
|
779
|
+
Value: number | undefined;
|
|
780
|
+
MaxInvocationsPerProfile?: number | undefined;
|
|
781
|
+
Unlimited?: boolean | undefined;
|
|
782
|
+
}
|
|
783
|
+
export interface EventTriggerLimits {
|
|
784
|
+
EventExpiration?: number | undefined;
|
|
785
|
+
Periods?: Period[] | undefined;
|
|
786
|
+
}
|
|
787
|
+
export interface CreateEventTriggerRequest {
|
|
788
|
+
DomainName: string | undefined;
|
|
789
|
+
EventTriggerName: string | undefined;
|
|
790
|
+
ObjectTypeName: string | undefined;
|
|
791
|
+
Description?: string | undefined;
|
|
792
|
+
EventTriggerConditions: EventTriggerCondition[] | undefined;
|
|
793
|
+
SegmentFilter?: string | undefined;
|
|
794
|
+
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
795
|
+
Tags?: Record<string, string> | undefined;
|
|
796
|
+
}
|
|
797
|
+
export interface CreateEventTriggerResponse {
|
|
798
|
+
EventTriggerName?: string | undefined;
|
|
799
|
+
ObjectTypeName?: string | undefined;
|
|
800
|
+
Description?: string | undefined;
|
|
801
|
+
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
802
|
+
SegmentFilter?: string | undefined;
|
|
803
|
+
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
804
|
+
CreatedAt?: Date | undefined;
|
|
805
|
+
LastUpdatedAt?: Date | undefined;
|
|
806
|
+
Tags?: Record<string, string> | undefined;
|
|
807
|
+
}
|
|
731
808
|
export interface IntegrationConfig {
|
|
732
809
|
AppflowIntegration?: AppflowIntegration | undefined;
|
|
733
810
|
}
|
|
@@ -927,6 +1004,13 @@ export interface DeleteEventStreamRequest {
|
|
|
927
1004
|
EventStreamName: string | undefined;
|
|
928
1005
|
}
|
|
929
1006
|
export interface DeleteEventStreamResponse {}
|
|
1007
|
+
export interface DeleteEventTriggerRequest {
|
|
1008
|
+
DomainName: string | undefined;
|
|
1009
|
+
EventTriggerName: string | undefined;
|
|
1010
|
+
}
|
|
1011
|
+
export interface DeleteEventTriggerResponse {
|
|
1012
|
+
Message: string | undefined;
|
|
1013
|
+
}
|
|
930
1014
|
export interface DeleteIntegrationRequest {
|
|
931
1015
|
DomainName: string | undefined;
|
|
932
1016
|
Uri: string | undefined;
|
|
@@ -1112,6 +1196,21 @@ export interface GetEventStreamResponse {
|
|
|
1112
1196
|
DestinationDetails: EventStreamDestinationDetails | undefined;
|
|
1113
1197
|
Tags?: Record<string, string> | undefined;
|
|
1114
1198
|
}
|
|
1199
|
+
export interface GetEventTriggerRequest {
|
|
1200
|
+
DomainName: string | undefined;
|
|
1201
|
+
EventTriggerName: string | undefined;
|
|
1202
|
+
}
|
|
1203
|
+
export interface GetEventTriggerResponse {
|
|
1204
|
+
EventTriggerName?: string | undefined;
|
|
1205
|
+
ObjectTypeName?: string | undefined;
|
|
1206
|
+
Description?: string | undefined;
|
|
1207
|
+
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
1208
|
+
SegmentFilter?: string | undefined;
|
|
1209
|
+
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
1210
|
+
CreatedAt?: Date | undefined;
|
|
1211
|
+
LastUpdatedAt?: Date | undefined;
|
|
1212
|
+
Tags?: Record<string, string> | undefined;
|
|
1213
|
+
}
|
|
1115
1214
|
export interface GetIdentityResolutionJobRequest {
|
|
1116
1215
|
DomainName: string | undefined;
|
|
1117
1216
|
JobId: string | undefined;
|
|
@@ -1167,6 +1266,7 @@ export interface GetIntegrationResponse {
|
|
|
1167
1266
|
WorkflowId?: string | undefined;
|
|
1168
1267
|
IsUnstructured?: boolean | undefined;
|
|
1169
1268
|
RoleArn?: string | undefined;
|
|
1269
|
+
EventTriggerNames?: string[] | undefined;
|
|
1170
1270
|
}
|
|
1171
1271
|
export interface GetMatchesRequest {
|
|
1172
1272
|
NextToken?: string | undefined;
|
|
@@ -1367,6 +1467,7 @@ export interface ListIntegrationItem {
|
|
|
1367
1467
|
WorkflowId?: string | undefined;
|
|
1368
1468
|
IsUnstructured?: boolean | undefined;
|
|
1369
1469
|
RoleArn?: string | undefined;
|
|
1470
|
+
EventTriggerNames?: string[] | undefined;
|
|
1370
1471
|
}
|
|
1371
1472
|
export interface ListAccountIntegrationsResponse {
|
|
1372
1473
|
Items?: ListIntegrationItem[] | undefined;
|
|
@@ -1428,6 +1529,23 @@ export interface ListEventStreamsResponse {
|
|
|
1428
1529
|
Items?: EventStreamSummary[] | undefined;
|
|
1429
1530
|
NextToken?: string | undefined;
|
|
1430
1531
|
}
|
|
1532
|
+
export interface ListEventTriggersRequest {
|
|
1533
|
+
DomainName: string | undefined;
|
|
1534
|
+
NextToken?: string | undefined;
|
|
1535
|
+
MaxResults?: number | undefined;
|
|
1536
|
+
}
|
|
1537
|
+
export interface EventTriggerSummaryItem {
|
|
1538
|
+
ObjectTypeName?: string | undefined;
|
|
1539
|
+
EventTriggerName?: string | undefined;
|
|
1540
|
+
Description?: string | undefined;
|
|
1541
|
+
CreatedAt?: Date | undefined;
|
|
1542
|
+
LastUpdatedAt?: Date | undefined;
|
|
1543
|
+
Tags?: Record<string, string> | undefined;
|
|
1544
|
+
}
|
|
1545
|
+
export interface ListEventTriggersResponse {
|
|
1546
|
+
Items?: EventTriggerSummaryItem[] | undefined;
|
|
1547
|
+
NextToken?: string | undefined;
|
|
1548
|
+
}
|
|
1431
1549
|
export interface ListIdentityResolutionJobsRequest {
|
|
1432
1550
|
DomainName: string | undefined;
|
|
1433
1551
|
NextToken?: string | undefined;
|
|
@@ -1626,6 +1744,7 @@ export interface PutIntegrationRequest {
|
|
|
1626
1744
|
FlowDefinition?: FlowDefinition | undefined;
|
|
1627
1745
|
ObjectTypeNames?: Record<string, string> | undefined;
|
|
1628
1746
|
RoleArn?: string | undefined;
|
|
1747
|
+
EventTriggerNames?: string[] | undefined;
|
|
1629
1748
|
}
|
|
1630
1749
|
export interface PutIntegrationResponse {
|
|
1631
1750
|
DomainName: string | undefined;
|
|
@@ -1638,6 +1757,7 @@ export interface PutIntegrationResponse {
|
|
|
1638
1757
|
WorkflowId?: string | undefined;
|
|
1639
1758
|
IsUnstructured?: boolean | undefined;
|
|
1640
1759
|
RoleArn?: string | undefined;
|
|
1760
|
+
EventTriggerNames?: string[] | undefined;
|
|
1641
1761
|
}
|
|
1642
1762
|
export interface PutProfileObjectRequest {
|
|
1643
1763
|
ObjectTypeName: string | undefined;
|
|
@@ -1744,6 +1864,26 @@ export interface UpdateDomainResponse {
|
|
|
1744
1864
|
LastUpdatedAt: Date | undefined;
|
|
1745
1865
|
Tags?: Record<string, string> | undefined;
|
|
1746
1866
|
}
|
|
1867
|
+
export interface UpdateEventTriggerRequest {
|
|
1868
|
+
DomainName: string | undefined;
|
|
1869
|
+
EventTriggerName: string | undefined;
|
|
1870
|
+
ObjectTypeName?: string | undefined;
|
|
1871
|
+
Description?: string | undefined;
|
|
1872
|
+
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
1873
|
+
SegmentFilter?: string | undefined;
|
|
1874
|
+
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
1875
|
+
}
|
|
1876
|
+
export interface UpdateEventTriggerResponse {
|
|
1877
|
+
EventTriggerName?: string | undefined;
|
|
1878
|
+
ObjectTypeName?: string | undefined;
|
|
1879
|
+
Description?: string | undefined;
|
|
1880
|
+
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
1881
|
+
SegmentFilter?: string | undefined;
|
|
1882
|
+
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
1883
|
+
CreatedAt?: Date | undefined;
|
|
1884
|
+
LastUpdatedAt?: Date | undefined;
|
|
1885
|
+
Tags?: Record<string, string> | undefined;
|
|
1886
|
+
}
|
|
1747
1887
|
export interface UpdateAddress {
|
|
1748
1888
|
Address1?: string | undefined;
|
|
1749
1889
|
Address2?: string | undefined;
|
|
@@ -1822,6 +1962,12 @@ export declare const CreateCalculatedAttributeDefinitionRequestFilterSensitiveLo
|
|
|
1822
1962
|
export declare const CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
|
|
1823
1963
|
obj: CreateCalculatedAttributeDefinitionResponse
|
|
1824
1964
|
) => any;
|
|
1965
|
+
export declare const CreateEventTriggerRequestFilterSensitiveLog: (
|
|
1966
|
+
obj: CreateEventTriggerRequest
|
|
1967
|
+
) => any;
|
|
1968
|
+
export declare const CreateEventTriggerResponseFilterSensitiveLog: (
|
|
1969
|
+
obj: CreateEventTriggerResponse
|
|
1970
|
+
) => any;
|
|
1825
1971
|
export declare const IntegrationConfigFilterSensitiveLog: (
|
|
1826
1972
|
obj: IntegrationConfig
|
|
1827
1973
|
) => any;
|
|
@@ -1861,6 +2007,9 @@ export declare const DetectProfileObjectTypeResponseFilterSensitiveLog: (
|
|
|
1861
2007
|
export declare const GetCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
|
|
1862
2008
|
obj: GetCalculatedAttributeDefinitionResponse
|
|
1863
2009
|
) => any;
|
|
2010
|
+
export declare const GetEventTriggerResponseFilterSensitiveLog: (
|
|
2011
|
+
obj: GetEventTriggerResponse
|
|
2012
|
+
) => any;
|
|
1864
2013
|
export declare const GetProfileObjectTypeResponseFilterSensitiveLog: (
|
|
1865
2014
|
obj: GetProfileObjectTypeResponse
|
|
1866
2015
|
) => any;
|
|
@@ -1879,6 +2028,9 @@ export declare const GetSegmentMembershipResponseFilterSensitiveLog: (
|
|
|
1879
2028
|
export declare const ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog: (
|
|
1880
2029
|
obj: ListCalculatedAttributeDefinitionsResponse
|
|
1881
2030
|
) => any;
|
|
2031
|
+
export declare const ListEventTriggersResponseFilterSensitiveLog: (
|
|
2032
|
+
obj: ListEventTriggersResponse
|
|
2033
|
+
) => any;
|
|
1882
2034
|
export declare const ListProfileObjectsItemFilterSensitiveLog: (
|
|
1883
2035
|
obj: ListProfileObjectsItem
|
|
1884
2036
|
) => any;
|
|
@@ -1915,6 +2067,12 @@ export declare const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLo
|
|
|
1915
2067
|
export declare const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
|
|
1916
2068
|
obj: UpdateCalculatedAttributeDefinitionResponse
|
|
1917
2069
|
) => any;
|
|
2070
|
+
export declare const UpdateEventTriggerRequestFilterSensitiveLog: (
|
|
2071
|
+
obj: UpdateEventTriggerRequest
|
|
2072
|
+
) => any;
|
|
2073
|
+
export declare const UpdateEventTriggerResponseFilterSensitiveLog: (
|
|
2074
|
+
obj: UpdateEventTriggerResponse
|
|
2075
|
+
) => any;
|
|
1918
2076
|
export declare const UpdateAddressFilterSensitiveLog: (
|
|
1919
2077
|
obj: UpdateAddress
|
|
1920
2078
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEventTriggersCommandInput,
|
|
4
|
+
ListEventTriggersCommandOutput,
|
|
5
|
+
} from "../commands/ListEventTriggersCommand";
|
|
6
|
+
import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEventTriggers: (
|
|
8
|
+
config: CustomerProfilesPaginationConfiguration,
|
|
9
|
+
input: ListEventTriggersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEventTriggersCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./GetSimilarProfilesPaginator";
|
|
2
2
|
export * from "./Interfaces";
|
|
3
3
|
export * from "./ListEventStreamsPaginator";
|
|
4
|
+
export * from "./ListEventTriggersPaginator";
|
|
4
5
|
export * from "./ListObjectTypeAttributesPaginator";
|
|
5
6
|
export * from "./ListRuleBasedMatchesPaginator";
|
|
6
7
|
export * from "./ListSegmentDefinitionsPaginator";
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
CreateEventStreamCommandInput,
|
|
28
28
|
CreateEventStreamCommandOutput,
|
|
29
29
|
} from "../commands/CreateEventStreamCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateEventTriggerCommandInput,
|
|
32
|
+
CreateEventTriggerCommandOutput,
|
|
33
|
+
} from "../commands/CreateEventTriggerCommand";
|
|
30
34
|
import {
|
|
31
35
|
CreateIntegrationWorkflowCommandInput,
|
|
32
36
|
CreateIntegrationWorkflowCommandOutput,
|
|
@@ -59,6 +63,10 @@ import {
|
|
|
59
63
|
DeleteEventStreamCommandInput,
|
|
60
64
|
DeleteEventStreamCommandOutput,
|
|
61
65
|
} from "../commands/DeleteEventStreamCommand";
|
|
66
|
+
import {
|
|
67
|
+
DeleteEventTriggerCommandInput,
|
|
68
|
+
DeleteEventTriggerCommandOutput,
|
|
69
|
+
} from "../commands/DeleteEventTriggerCommand";
|
|
62
70
|
import {
|
|
63
71
|
DeleteIntegrationCommandInput,
|
|
64
72
|
DeleteIntegrationCommandOutput,
|
|
@@ -111,6 +119,10 @@ import {
|
|
|
111
119
|
GetEventStreamCommandInput,
|
|
112
120
|
GetEventStreamCommandOutput,
|
|
113
121
|
} from "../commands/GetEventStreamCommand";
|
|
122
|
+
import {
|
|
123
|
+
GetEventTriggerCommandInput,
|
|
124
|
+
GetEventTriggerCommandOutput,
|
|
125
|
+
} from "../commands/GetEventTriggerCommand";
|
|
114
126
|
import {
|
|
115
127
|
GetIdentityResolutionJobCommandInput,
|
|
116
128
|
GetIdentityResolutionJobCommandOutput,
|
|
@@ -179,6 +191,10 @@ import {
|
|
|
179
191
|
ListEventStreamsCommandInput,
|
|
180
192
|
ListEventStreamsCommandOutput,
|
|
181
193
|
} from "../commands/ListEventStreamsCommand";
|
|
194
|
+
import {
|
|
195
|
+
ListEventTriggersCommandInput,
|
|
196
|
+
ListEventTriggersCommandOutput,
|
|
197
|
+
} from "../commands/ListEventTriggersCommand";
|
|
182
198
|
import {
|
|
183
199
|
ListIdentityResolutionJobsCommandInput,
|
|
184
200
|
ListIdentityResolutionJobsCommandOutput,
|
|
@@ -259,6 +275,10 @@ import {
|
|
|
259
275
|
UpdateDomainCommandInput,
|
|
260
276
|
UpdateDomainCommandOutput,
|
|
261
277
|
} from "../commands/UpdateDomainCommand";
|
|
278
|
+
import {
|
|
279
|
+
UpdateEventTriggerCommandInput,
|
|
280
|
+
UpdateEventTriggerCommandOutput,
|
|
281
|
+
} from "../commands/UpdateEventTriggerCommand";
|
|
262
282
|
import {
|
|
263
283
|
UpdateProfileCommandInput,
|
|
264
284
|
UpdateProfileCommandOutput,
|
|
@@ -287,6 +307,10 @@ export declare const se_CreateEventStreamCommand: (
|
|
|
287
307
|
input: CreateEventStreamCommandInput,
|
|
288
308
|
context: __SerdeContext
|
|
289
309
|
) => Promise<__HttpRequest>;
|
|
310
|
+
export declare const se_CreateEventTriggerCommand: (
|
|
311
|
+
input: CreateEventTriggerCommandInput,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<__HttpRequest>;
|
|
290
314
|
export declare const se_CreateIntegrationWorkflowCommand: (
|
|
291
315
|
input: CreateIntegrationWorkflowCommandInput,
|
|
292
316
|
context: __SerdeContext
|
|
@@ -319,6 +343,10 @@ export declare const se_DeleteEventStreamCommand: (
|
|
|
319
343
|
input: DeleteEventStreamCommandInput,
|
|
320
344
|
context: __SerdeContext
|
|
321
345
|
) => Promise<__HttpRequest>;
|
|
346
|
+
export declare const se_DeleteEventTriggerCommand: (
|
|
347
|
+
input: DeleteEventTriggerCommandInput,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<__HttpRequest>;
|
|
322
350
|
export declare const se_DeleteIntegrationCommand: (
|
|
323
351
|
input: DeleteIntegrationCommandInput,
|
|
324
352
|
context: __SerdeContext
|
|
@@ -371,6 +399,10 @@ export declare const se_GetEventStreamCommand: (
|
|
|
371
399
|
input: GetEventStreamCommandInput,
|
|
372
400
|
context: __SerdeContext
|
|
373
401
|
) => Promise<__HttpRequest>;
|
|
402
|
+
export declare const se_GetEventTriggerCommand: (
|
|
403
|
+
input: GetEventTriggerCommandInput,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<__HttpRequest>;
|
|
374
406
|
export declare const se_GetIdentityResolutionJobCommand: (
|
|
375
407
|
input: GetIdentityResolutionJobCommandInput,
|
|
376
408
|
context: __SerdeContext
|
|
@@ -439,6 +471,10 @@ export declare const se_ListEventStreamsCommand: (
|
|
|
439
471
|
input: ListEventStreamsCommandInput,
|
|
440
472
|
context: __SerdeContext
|
|
441
473
|
) => Promise<__HttpRequest>;
|
|
474
|
+
export declare const se_ListEventTriggersCommand: (
|
|
475
|
+
input: ListEventTriggersCommandInput,
|
|
476
|
+
context: __SerdeContext
|
|
477
|
+
) => Promise<__HttpRequest>;
|
|
442
478
|
export declare const se_ListIdentityResolutionJobsCommand: (
|
|
443
479
|
input: ListIdentityResolutionJobsCommandInput,
|
|
444
480
|
context: __SerdeContext
|
|
@@ -519,6 +555,10 @@ export declare const se_UpdateDomainCommand: (
|
|
|
519
555
|
input: UpdateDomainCommandInput,
|
|
520
556
|
context: __SerdeContext
|
|
521
557
|
) => Promise<__HttpRequest>;
|
|
558
|
+
export declare const se_UpdateEventTriggerCommand: (
|
|
559
|
+
input: UpdateEventTriggerCommandInput,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<__HttpRequest>;
|
|
522
562
|
export declare const se_UpdateProfileCommand: (
|
|
523
563
|
input: UpdateProfileCommandInput,
|
|
524
564
|
context: __SerdeContext
|
|
@@ -547,6 +587,10 @@ export declare const de_CreateEventStreamCommand: (
|
|
|
547
587
|
output: __HttpResponse,
|
|
548
588
|
context: __SerdeContext
|
|
549
589
|
) => Promise<CreateEventStreamCommandOutput>;
|
|
590
|
+
export declare const de_CreateEventTriggerCommand: (
|
|
591
|
+
output: __HttpResponse,
|
|
592
|
+
context: __SerdeContext
|
|
593
|
+
) => Promise<CreateEventTriggerCommandOutput>;
|
|
550
594
|
export declare const de_CreateIntegrationWorkflowCommand: (
|
|
551
595
|
output: __HttpResponse,
|
|
552
596
|
context: __SerdeContext
|
|
@@ -579,6 +623,10 @@ export declare const de_DeleteEventStreamCommand: (
|
|
|
579
623
|
output: __HttpResponse,
|
|
580
624
|
context: __SerdeContext
|
|
581
625
|
) => Promise<DeleteEventStreamCommandOutput>;
|
|
626
|
+
export declare const de_DeleteEventTriggerCommand: (
|
|
627
|
+
output: __HttpResponse,
|
|
628
|
+
context: __SerdeContext
|
|
629
|
+
) => Promise<DeleteEventTriggerCommandOutput>;
|
|
582
630
|
export declare const de_DeleteIntegrationCommand: (
|
|
583
631
|
output: __HttpResponse,
|
|
584
632
|
context: __SerdeContext
|
|
@@ -631,6 +679,10 @@ export declare const de_GetEventStreamCommand: (
|
|
|
631
679
|
output: __HttpResponse,
|
|
632
680
|
context: __SerdeContext
|
|
633
681
|
) => Promise<GetEventStreamCommandOutput>;
|
|
682
|
+
export declare const de_GetEventTriggerCommand: (
|
|
683
|
+
output: __HttpResponse,
|
|
684
|
+
context: __SerdeContext
|
|
685
|
+
) => Promise<GetEventTriggerCommandOutput>;
|
|
634
686
|
export declare const de_GetIdentityResolutionJobCommand: (
|
|
635
687
|
output: __HttpResponse,
|
|
636
688
|
context: __SerdeContext
|
|
@@ -699,6 +751,10 @@ export declare const de_ListEventStreamsCommand: (
|
|
|
699
751
|
output: __HttpResponse,
|
|
700
752
|
context: __SerdeContext
|
|
701
753
|
) => Promise<ListEventStreamsCommandOutput>;
|
|
754
|
+
export declare const de_ListEventTriggersCommand: (
|
|
755
|
+
output: __HttpResponse,
|
|
756
|
+
context: __SerdeContext
|
|
757
|
+
) => Promise<ListEventTriggersCommandOutput>;
|
|
702
758
|
export declare const de_ListIdentityResolutionJobsCommand: (
|
|
703
759
|
output: __HttpResponse,
|
|
704
760
|
context: __SerdeContext
|
|
@@ -779,6 +835,10 @@ export declare const de_UpdateDomainCommand: (
|
|
|
779
835
|
output: __HttpResponse,
|
|
780
836
|
context: __SerdeContext
|
|
781
837
|
) => Promise<UpdateDomainCommandOutput>;
|
|
838
|
+
export declare const de_UpdateEventTriggerCommand: (
|
|
839
|
+
output: __HttpResponse,
|
|
840
|
+
context: __SerdeContext
|
|
841
|
+
) => Promise<UpdateEventTriggerCommandOutput>;
|
|
782
842
|
export declare const de_UpdateProfileCommand: (
|
|
783
843
|
output: __HttpResponse,
|
|
784
844
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-customer-profiles",
|
|
3
3
|
"description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.703.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-customer-profiles",
|