@aws-sdk/client-customer-profiles 3.1030.0 → 3.1031.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.
Files changed (55) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +76 -4
  3. package/dist-cjs/schemas/schemas_0.js +122 -24
  4. package/dist-es/CustomerProfiles.js +10 -0
  5. package/dist-es/commands/CreateRecommenderSchemaCommand.js +16 -0
  6. package/dist-es/commands/DeleteRecommenderSchemaCommand.js +16 -0
  7. package/dist-es/commands/GetRecommenderSchemaCommand.js +16 -0
  8. package/dist-es/commands/ListRecommenderSchemasCommand.js +16 -0
  9. package/dist-es/commands/index.js +4 -0
  10. package/dist-es/models/enums.js +15 -4
  11. package/dist-es/pagination/ListRecommenderSchemasPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +113 -16
  14. package/dist-types/CustomerProfiles.d.ts +35 -0
  15. package/dist-types/CustomerProfilesClient.d.ts +6 -2
  16. package/dist-types/commands/CreateRecommenderCommand.d.ts +6 -0
  17. package/dist-types/commands/CreateRecommenderFilterCommand.d.ts +1 -0
  18. package/dist-types/commands/CreateRecommenderSchemaCommand.d.ts +117 -0
  19. package/dist-types/commands/DeleteRecommenderSchemaCommand.d.ts +88 -0
  20. package/dist-types/commands/GetRecommenderCommand.d.ts +11 -0
  21. package/dist-types/commands/GetRecommenderFilterCommand.d.ts +1 -0
  22. package/dist-types/commands/GetRecommenderSchemaCommand.d.ts +101 -0
  23. package/dist-types/commands/ListRecommenderFiltersCommand.d.ts +1 -0
  24. package/dist-types/commands/ListRecommenderSchemasCommand.d.ts +107 -0
  25. package/dist-types/commands/ListRecommendersCommand.d.ts +11 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  27. package/dist-types/commands/ListUploadJobsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
  29. package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateRecommenderCommand.d.ts +5 -0
  31. package/dist-types/commands/index.d.ts +4 -0
  32. package/dist-types/models/enums.d.ts +31 -12
  33. package/dist-types/models/models_0.d.ts +238 -338
  34. package/dist-types/models/models_1.d.ts +338 -1
  35. package/dist-types/pagination/ListRecommenderSchemasPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +1 -0
  37. package/dist-types/schemas/schemas_0.d.ts +14 -0
  38. package/dist-types/ts3.4/CustomerProfiles.d.ts +75 -0
  39. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +24 -0
  40. package/dist-types/ts3.4/commands/CreateRecommenderSchemaCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/DeleteRecommenderSchemaCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/GetRecommenderSchemaCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/ListRecommenderSchemasCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
  45. package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  49. package/dist-types/ts3.4/models/enums.d.ts +18 -5
  50. package/dist-types/ts3.4/models/models_0.d.ts +57 -76
  51. package/dist-types/ts3.4/models/models_1.d.ts +80 -0
  52. package/dist-types/ts3.4/pagination/ListRecommenderSchemasPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
  55. package/package.json +33 -33
@@ -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
+ CreateRecommenderSchemaRequest,
10
+ CreateRecommenderSchemaResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateRecommenderSchemaCommandInput
15
+ extends CreateRecommenderSchemaRequest {}
16
+ export interface CreateRecommenderSchemaCommandOutput
17
+ extends CreateRecommenderSchemaResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateRecommenderSchemaCommand_base: {
20
+ new (
21
+ input: CreateRecommenderSchemaCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateRecommenderSchemaCommandInput,
24
+ CreateRecommenderSchemaCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateRecommenderSchemaCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateRecommenderSchemaCommandInput,
33
+ CreateRecommenderSchemaCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateRecommenderSchemaCommand extends CreateRecommenderSchemaCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateRecommenderSchemaRequest;
44
+ output: CreateRecommenderSchemaResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateRecommenderSchemaCommandInput;
48
+ output: CreateRecommenderSchemaCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ DeleteRecommenderSchemaRequest,
10
+ DeleteRecommenderSchemaResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteRecommenderSchemaCommandInput
15
+ extends DeleteRecommenderSchemaRequest {}
16
+ export interface DeleteRecommenderSchemaCommandOutput
17
+ extends DeleteRecommenderSchemaResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteRecommenderSchemaCommand_base: {
20
+ new (
21
+ input: DeleteRecommenderSchemaCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteRecommenderSchemaCommandInput,
24
+ DeleteRecommenderSchemaCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteRecommenderSchemaCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteRecommenderSchemaCommandInput,
33
+ DeleteRecommenderSchemaCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteRecommenderSchemaCommand extends DeleteRecommenderSchemaCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteRecommenderSchemaRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteRecommenderSchemaCommandInput;
48
+ output: DeleteRecommenderSchemaCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ GetRecommenderSchemaRequest,
10
+ GetRecommenderSchemaResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetRecommenderSchemaCommandInput
15
+ extends GetRecommenderSchemaRequest {}
16
+ export interface GetRecommenderSchemaCommandOutput
17
+ extends GetRecommenderSchemaResponse,
18
+ __MetadataBearer {}
19
+ declare const GetRecommenderSchemaCommand_base: {
20
+ new (
21
+ input: GetRecommenderSchemaCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetRecommenderSchemaCommandInput,
24
+ GetRecommenderSchemaCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetRecommenderSchemaCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetRecommenderSchemaCommandInput,
33
+ GetRecommenderSchemaCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetRecommenderSchemaCommand extends GetRecommenderSchemaCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetRecommenderSchemaRequest;
44
+ output: GetRecommenderSchemaResponse;
45
+ };
46
+ sdk: {
47
+ input: GetRecommenderSchemaCommandInput;
48
+ output: GetRecommenderSchemaCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ ListRecommenderSchemasRequest,
10
+ ListRecommenderSchemasResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListRecommenderSchemasCommandInput
15
+ extends ListRecommenderSchemasRequest {}
16
+ export interface ListRecommenderSchemasCommandOutput
17
+ extends ListRecommenderSchemasResponse,
18
+ __MetadataBearer {}
19
+ declare const ListRecommenderSchemasCommand_base: {
20
+ new (
21
+ input: ListRecommenderSchemasCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListRecommenderSchemasCommandInput,
24
+ ListRecommenderSchemasCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListRecommenderSchemasCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListRecommenderSchemasCommandInput,
33
+ ListRecommenderSchemasCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListRecommenderSchemasCommand extends ListRecommenderSchemasCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListRecommenderSchemasRequest;
44
+ output: ListRecommenderSchemasResponse;
45
+ };
46
+ sdk: {
47
+ input: ListRecommenderSchemasCommandInput;
48
+ output: ListRecommenderSchemasCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../CustomerProfilesClient";
8
- import {
9
- ListTagsForResourceRequest,
10
- ListTagsForResourceResponse,
11
- } from "../models/models_0";
8
+ import { ListTagsForResourceRequest } from "../models/models_0";
9
+ import { ListTagsForResourceResponse } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ListTagsForResourceCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ListUploadJobsRequest,
10
10
  ListUploadJobsResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ListUploadJobsCommandInput extends ListUploadJobsRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ListWorkflowsRequest,
10
10
  ListWorkflowsResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ListWorkflowsCommandInput extends ListWorkflowsRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  MergeProfilesRequest,
10
10
  MergeProfilesResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface MergeProfilesCommandInput extends MergeProfilesRequest {}
@@ -10,6 +10,7 @@ export * from "./CreateIntegrationWorkflowCommand";
10
10
  export * from "./CreateProfileCommand";
11
11
  export * from "./CreateRecommenderCommand";
12
12
  export * from "./CreateRecommenderFilterCommand";
13
+ export * from "./CreateRecommenderSchemaCommand";
13
14
  export * from "./CreateSegmentDefinitionCommand";
14
15
  export * from "./CreateSegmentEstimateCommand";
15
16
  export * from "./CreateSegmentSnapshotCommand";
@@ -27,6 +28,7 @@ export * from "./DeleteProfileObjectCommand";
27
28
  export * from "./DeleteProfileObjectTypeCommand";
28
29
  export * from "./DeleteRecommenderCommand";
29
30
  export * from "./DeleteRecommenderFilterCommand";
31
+ export * from "./DeleteRecommenderSchemaCommand";
30
32
  export * from "./DeleteSegmentDefinitionCommand";
31
33
  export * from "./DeleteWorkflowCommand";
32
34
  export * from "./DetectProfileObjectTypeCommand";
@@ -48,6 +50,7 @@ export * from "./GetProfileObjectTypeTemplateCommand";
48
50
  export * from "./GetProfileRecommendationsCommand";
49
51
  export * from "./GetRecommenderCommand";
50
52
  export * from "./GetRecommenderFilterCommand";
53
+ export * from "./GetRecommenderSchemaCommand";
51
54
  export * from "./GetSegmentDefinitionCommand";
52
55
  export * from "./GetSegmentEstimateCommand";
53
56
  export * from "./GetSegmentMembershipCommand";
@@ -76,6 +79,7 @@ export * from "./ListProfileObjectTypesCommand";
76
79
  export * from "./ListProfileObjectsCommand";
77
80
  export * from "./ListRecommenderFiltersCommand";
78
81
  export * from "./ListRecommenderRecipesCommand";
82
+ export * from "./ListRecommenderSchemasCommand";
79
83
  export * from "./ListRecommendersCommand";
80
84
  export * from "./ListRuleBasedMatchesCommand";
81
85
  export * from "./ListSegmentDefinitionsCommand";
@@ -386,6 +386,17 @@ export declare const RecommenderRecipeName: {
386
386
  };
387
387
  export type RecommenderRecipeName =
388
388
  (typeof RecommenderRecipeName)[keyof typeof RecommenderRecipeName];
389
+ export declare const FeatureType: {
390
+ readonly CATEGORICAL: "CATEGORICAL";
391
+ readonly TEXTUAL: "TEXTUAL";
392
+ };
393
+ export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
394
+ export declare const RecommenderSchemaStatus: {
395
+ readonly ACTIVE: "ACTIVE";
396
+ readonly DELETING: "DELETING";
397
+ };
398
+ export type RecommenderSchemaStatus =
399
+ (typeof RecommenderSchemaStatus)[keyof typeof RecommenderSchemaStatus];
389
400
  export declare const DateDimensionType: {
390
401
  readonly AFTER: "AFTER";
391
402
  readonly BEFORE: "BEFORE";
@@ -466,11 +477,6 @@ export declare const StandardIdentifier: {
466
477
  };
467
478
  export type StandardIdentifier =
468
479
  (typeof StandardIdentifier)[keyof typeof StandardIdentifier];
469
- export declare const FeatureType: {
470
- readonly CATEGORICAL: "CATEGORICAL";
471
- readonly TEXTUAL: "TEXTUAL";
472
- };
473
- export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
474
480
  export declare const EventStreamDestinationStatus: {
475
481
  readonly HEALTHY: "HEALTHY";
476
482
  readonly UNHEALTHY: "UNHEALTHY";
@@ -515,7 +521,14 @@ export declare const TrainingMetricName: {
515
521
  readonly COVERAGE: "coverage";
516
522
  readonly FRESHNESS: "freshness";
517
523
  readonly HIT: "hit";
524
+ readonly MEAN_RECIPROCAL_RANK_AT_25: "mean_reciprocal_rank_at_25";
525
+ readonly NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN_AT_10: "normalized_discounted_cumulative_gain_at_10";
526
+ readonly NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN_AT_25: "normalized_discounted_cumulative_gain_at_25";
527
+ readonly NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN_AT_5: "normalized_discounted_cumulative_gain_at_5";
518
528
  readonly POPULARITY: "popularity";
529
+ readonly PRECISION_AT_10: "precision_at_10";
530
+ readonly PRECISION_AT_25: "precision_at_25";
531
+ readonly PRECISION_AT_5: "precision_at_5";
519
532
  readonly RECALL: "recall";
520
533
  readonly SIMILARITY: "similarity";
521
534
  };
@@ -35,6 +35,7 @@ import {
35
35
  ReadinessStatus,
36
36
  RecommenderFilterStatus,
37
37
  RecommenderRecipeName,
38
+ RecommenderSchemaStatus,
38
39
  RecommenderStatus,
39
40
  RuleBasedMatchingStatus,
40
41
  S3ConnectorOperator,
@@ -634,6 +635,7 @@ export interface RecommenderConfig {
634
635
  EventsConfig?: EventsConfig | undefined;
635
636
  TrainingFrequency?: number | undefined;
636
637
  InferenceConfig?: InferenceConfig | undefined;
638
+ IncludedColumns?: Record<string, string[]> | undefined;
637
639
  }
638
640
  export interface CreateRecommenderRequest {
639
641
  DomainName: string | undefined;
@@ -641,6 +643,7 @@ export interface CreateRecommenderRequest {
641
643
  RecommenderRecipeName: RecommenderRecipeName | undefined;
642
644
  RecommenderConfig?: RecommenderConfig | undefined;
643
645
  Description?: string | undefined;
646
+ RecommenderSchemaName?: string | undefined;
644
647
  Tags?: Record<string, string> | undefined;
645
648
  }
646
649
  export interface CreateRecommenderResponse {
@@ -651,6 +654,7 @@ export interface CreateRecommenderFilterRequest {
651
654
  DomainName: string | undefined;
652
655
  RecommenderFilterName: string | undefined;
653
656
  RecommenderFilterExpression: string | undefined;
657
+ RecommenderSchemaName?: string | undefined;
654
658
  Description?: string | undefined;
655
659
  Tags?: Record<string, string> | undefined;
656
660
  }
@@ -658,6 +662,25 @@ export interface CreateRecommenderFilterResponse {
658
662
  RecommenderFilterArn: string | undefined;
659
663
  Tags?: Record<string, string> | undefined;
660
664
  }
665
+ export interface RecommenderSchemaField {
666
+ TargetFieldName: string | undefined;
667
+ ContentType?: ContentType | undefined;
668
+ FeatureType?: FeatureType | undefined;
669
+ }
670
+ export interface CreateRecommenderSchemaRequest {
671
+ DomainName: string | undefined;
672
+ RecommenderSchemaName: string | undefined;
673
+ Fields: Record<string, RecommenderSchemaField[]> | undefined;
674
+ Tags?: Record<string, string> | undefined;
675
+ }
676
+ export interface CreateRecommenderSchemaResponse {
677
+ RecommenderSchemaArn: string | undefined;
678
+ RecommenderSchemaName: string | undefined;
679
+ Fields: Record<string, RecommenderSchemaField[]> | undefined;
680
+ CreatedAt: Date | undefined;
681
+ Status: RecommenderSchemaStatus | undefined;
682
+ Tags?: Record<string, string> | undefined;
683
+ }
661
684
  export interface ExtraLengthValueProfileDimension {
662
685
  DimensionType: StringDimensionType | undefined;
663
686
  Values: string[] | undefined;
@@ -888,6 +911,11 @@ export interface DeleteRecommenderFilterRequest {
888
911
  export interface DeleteRecommenderFilterResponse {
889
912
  Message: string | undefined;
890
913
  }
914
+ export interface DeleteRecommenderSchemaRequest {
915
+ DomainName: string | undefined;
916
+ RecommenderSchemaName: string | undefined;
917
+ }
918
+ export interface DeleteRecommenderSchemaResponse {}
891
919
  export interface DeleteSegmentDefinitionRequest {
892
920
  DomainName: string | undefined;
893
921
  SegmentDefinitionName: string | undefined;
@@ -1234,6 +1262,7 @@ export interface TrainingMetrics {
1234
1262
  export interface GetRecommenderResponse {
1235
1263
  RecommenderName: string | undefined;
1236
1264
  RecommenderRecipeName: RecommenderRecipeName | undefined;
1265
+ RecommenderSchemaName?: string | undefined;
1237
1266
  RecommenderConfig?: RecommenderConfig | undefined;
1238
1267
  Description?: string | undefined;
1239
1268
  Status?: RecommenderStatus | undefined;
@@ -1251,12 +1280,23 @@ export interface GetRecommenderFilterRequest {
1251
1280
  export interface GetRecommenderFilterResponse {
1252
1281
  RecommenderFilterName: string | undefined;
1253
1282
  RecommenderFilterExpression: string | undefined;
1283
+ RecommenderSchemaName?: string | undefined;
1254
1284
  CreatedAt: Date | undefined;
1255
1285
  Status: RecommenderFilterStatus | undefined;
1256
1286
  Description?: string | undefined;
1257
1287
  FailureReason?: string | undefined;
1258
1288
  Tags: Record<string, string> | undefined;
1259
1289
  }
1290
+ export interface GetRecommenderSchemaRequest {
1291
+ DomainName: string | undefined;
1292
+ RecommenderSchemaName: string | undefined;
1293
+ }
1294
+ export interface GetRecommenderSchemaResponse {
1295
+ RecommenderSchemaName: string | undefined;
1296
+ Fields: Record<string, RecommenderSchemaField[]> | undefined;
1297
+ CreatedAt: Date | undefined;
1298
+ Status: RecommenderSchemaStatus | undefined;
1299
+ }
1260
1300
  export interface GetSegmentDefinitionRequest {
1261
1301
  DomainName: string | undefined;
1262
1302
  SegmentDefinitionName: string | undefined;
@@ -1683,6 +1723,7 @@ export interface ListRecommenderFiltersRequest {
1683
1723
  }
1684
1724
  export interface RecommenderFilterSummary {
1685
1725
  RecommenderFilterName?: string | undefined;
1726
+ RecommenderSchemaName?: string | undefined;
1686
1727
  RecommenderFilterExpression?: string | undefined;
1687
1728
  CreatedAt?: Date | undefined;
1688
1729
  Description?: string | undefined;
@@ -1714,6 +1755,7 @@ export interface ListRecommendersRequest {
1714
1755
  export interface RecommenderSummary {
1715
1756
  RecommenderName?: string | undefined;
1716
1757
  RecipeName?: RecommenderRecipeName | undefined;
1758
+ RecommenderSchemaName?: string | undefined;
1717
1759
  RecommenderConfig?: RecommenderConfig | undefined;
1718
1760
  CreatedAt?: Date | undefined;
1719
1761
  Description?: string | undefined;
@@ -1727,6 +1769,21 @@ export interface ListRecommendersResponse {
1727
1769
  NextToken?: string | undefined;
1728
1770
  Recommenders?: RecommenderSummary[] | undefined;
1729
1771
  }
1772
+ export interface ListRecommenderSchemasRequest {
1773
+ DomainName: string | undefined;
1774
+ MaxResults?: number | undefined;
1775
+ NextToken?: string | undefined;
1776
+ }
1777
+ export interface RecommenderSchemaSummary {
1778
+ RecommenderSchemaName: string | undefined;
1779
+ Fields: Record<string, RecommenderSchemaField[]> | undefined;
1780
+ CreatedAt: Date | undefined;
1781
+ Status: RecommenderSchemaStatus | undefined;
1782
+ }
1783
+ export interface ListRecommenderSchemasResponse {
1784
+ NextToken?: string | undefined;
1785
+ RecommenderSchemas?: RecommenderSchemaSummary[] | undefined;
1786
+ }
1730
1787
  export interface ListRuleBasedMatchesRequest {
1731
1788
  NextToken?: string | undefined;
1732
1789
  MaxResults?: number | undefined;
@@ -1757,79 +1814,3 @@ export interface ListSegmentDefinitionsResponse {
1757
1814
  export interface ListTagsForResourceRequest {
1758
1815
  resourceArn: string | undefined;
1759
1816
  }
1760
- export interface ListTagsForResourceResponse {
1761
- tags?: Record<string, string> | undefined;
1762
- }
1763
- export interface ListUploadJobsRequest {
1764
- DomainName: string | undefined;
1765
- MaxResults?: number | undefined;
1766
- NextToken?: string | undefined;
1767
- }
1768
- export interface UploadJobItem {
1769
- JobId?: string | undefined;
1770
- DisplayName?: string | undefined;
1771
- Status?: UploadJobStatus | undefined;
1772
- StatusReason?: StatusReason | undefined;
1773
- CreatedAt?: Date | undefined;
1774
- CompletedAt?: Date | undefined;
1775
- DataExpiry?: number | undefined;
1776
- }
1777
- export interface ListUploadJobsResponse {
1778
- NextToken?: string | undefined;
1779
- Items?: UploadJobItem[] | undefined;
1780
- }
1781
- export interface ListWorkflowsRequest {
1782
- DomainName: string | undefined;
1783
- WorkflowType?: WorkflowType | undefined;
1784
- Status?: Status | undefined;
1785
- QueryStartDate?: Date | undefined;
1786
- QueryEndDate?: Date | undefined;
1787
- NextToken?: string | undefined;
1788
- MaxResults?: number | undefined;
1789
- }
1790
- export interface ListWorkflowsItem {
1791
- WorkflowType: WorkflowType | undefined;
1792
- WorkflowId: string | undefined;
1793
- Status: Status | undefined;
1794
- StatusDescription: string | undefined;
1795
- CreatedAt: Date | undefined;
1796
- LastUpdatedAt: Date | undefined;
1797
- }
1798
- export interface ListWorkflowsResponse {
1799
- Items?: ListWorkflowsItem[] | undefined;
1800
- NextToken?: string | undefined;
1801
- }
1802
- export interface FieldSourceProfileIds {
1803
- AccountNumber?: string | undefined;
1804
- AdditionalInformation?: string | undefined;
1805
- PartyType?: string | undefined;
1806
- BusinessName?: string | undefined;
1807
- FirstName?: string | undefined;
1808
- MiddleName?: string | undefined;
1809
- LastName?: string | undefined;
1810
- BirthDate?: string | undefined;
1811
- Gender?: string | undefined;
1812
- PhoneNumber?: string | undefined;
1813
- MobilePhoneNumber?: string | undefined;
1814
- HomePhoneNumber?: string | undefined;
1815
- BusinessPhoneNumber?: string | undefined;
1816
- EmailAddress?: string | undefined;
1817
- PersonalEmailAddress?: string | undefined;
1818
- BusinessEmailAddress?: string | undefined;
1819
- Address?: string | undefined;
1820
- ShippingAddress?: string | undefined;
1821
- MailingAddress?: string | undefined;
1822
- BillingAddress?: string | undefined;
1823
- Attributes?: Record<string, string> | undefined;
1824
- ProfileType?: string | undefined;
1825
- EngagementPreferences?: string | undefined;
1826
- }
1827
- export interface MergeProfilesRequest {
1828
- DomainName: string | undefined;
1829
- MainProfileId: string | undefined;
1830
- ProfileIdsToBeMerged: string[] | undefined;
1831
- FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
1832
- }
1833
- export interface MergeProfilesResponse {
1834
- Message?: string | undefined;
1835
- }
@@ -7,6 +7,10 @@ import {
7
7
  ReadinessStatus,
8
8
  Scope,
9
9
  Statistic,
10
+ Status,
11
+ StatusReason,
12
+ UploadJobStatus,
13
+ WorkflowType,
10
14
  } from "./enums";
11
15
  import {
12
16
  AdditionalSearchKey,
@@ -29,6 +33,82 @@ import {
29
33
  RuleBasedMatchingRequest,
30
34
  RuleBasedMatchingResponse,
31
35
  } from "./models_0";
36
+ export interface ListTagsForResourceResponse {
37
+ tags?: Record<string, string> | undefined;
38
+ }
39
+ export interface ListUploadJobsRequest {
40
+ DomainName: string | undefined;
41
+ MaxResults?: number | undefined;
42
+ NextToken?: string | undefined;
43
+ }
44
+ export interface UploadJobItem {
45
+ JobId?: string | undefined;
46
+ DisplayName?: string | undefined;
47
+ Status?: UploadJobStatus | undefined;
48
+ StatusReason?: StatusReason | undefined;
49
+ CreatedAt?: Date | undefined;
50
+ CompletedAt?: Date | undefined;
51
+ DataExpiry?: number | undefined;
52
+ }
53
+ export interface ListUploadJobsResponse {
54
+ NextToken?: string | undefined;
55
+ Items?: UploadJobItem[] | undefined;
56
+ }
57
+ export interface ListWorkflowsRequest {
58
+ DomainName: string | undefined;
59
+ WorkflowType?: WorkflowType | undefined;
60
+ Status?: Status | undefined;
61
+ QueryStartDate?: Date | undefined;
62
+ QueryEndDate?: Date | undefined;
63
+ NextToken?: string | undefined;
64
+ MaxResults?: number | undefined;
65
+ }
66
+ export interface ListWorkflowsItem {
67
+ WorkflowType: WorkflowType | undefined;
68
+ WorkflowId: string | undefined;
69
+ Status: Status | undefined;
70
+ StatusDescription: string | undefined;
71
+ CreatedAt: Date | undefined;
72
+ LastUpdatedAt: Date | undefined;
73
+ }
74
+ export interface ListWorkflowsResponse {
75
+ Items?: ListWorkflowsItem[] | undefined;
76
+ NextToken?: string | undefined;
77
+ }
78
+ export interface FieldSourceProfileIds {
79
+ AccountNumber?: string | undefined;
80
+ AdditionalInformation?: string | undefined;
81
+ PartyType?: string | undefined;
82
+ BusinessName?: string | undefined;
83
+ FirstName?: string | undefined;
84
+ MiddleName?: string | undefined;
85
+ LastName?: string | undefined;
86
+ BirthDate?: string | undefined;
87
+ Gender?: string | undefined;
88
+ PhoneNumber?: string | undefined;
89
+ MobilePhoneNumber?: string | undefined;
90
+ HomePhoneNumber?: string | undefined;
91
+ BusinessPhoneNumber?: string | undefined;
92
+ EmailAddress?: string | undefined;
93
+ PersonalEmailAddress?: string | undefined;
94
+ BusinessEmailAddress?: string | undefined;
95
+ Address?: string | undefined;
96
+ ShippingAddress?: string | undefined;
97
+ MailingAddress?: string | undefined;
98
+ BillingAddress?: string | undefined;
99
+ Attributes?: Record<string, string> | undefined;
100
+ ProfileType?: string | undefined;
101
+ EngagementPreferences?: string | undefined;
102
+ }
103
+ export interface MergeProfilesRequest {
104
+ DomainName: string | undefined;
105
+ MainProfileId: string | undefined;
106
+ ProfileIdsToBeMerged: string[] | undefined;
107
+ FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
108
+ }
109
+ export interface MergeProfilesResponse {
110
+ Message?: string | undefined;
111
+ }
32
112
  export interface PutDomainObjectTypeRequest {
33
113
  DomainName: string | undefined;
34
114
  ObjectTypeName: string | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListRecommenderSchemasCommandInput,
4
+ ListRecommenderSchemasCommandOutput,
5
+ } from "../commands/ListRecommenderSchemasCommand";
6
+ import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListRecommenderSchemas: (
8
+ config: CustomerProfilesPaginationConfiguration,
9
+ input: ListRecommenderSchemasCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListRecommenderSchemasCommandOutput>;
@@ -8,6 +8,7 @@ export * from "./ListObjectTypeAttributesPaginator";
8
8
  export * from "./ListRecommenderFiltersPaginator";
9
9
  export * from "./ListRecommenderRecipesPaginator";
10
10
  export * from "./ListRecommendersPaginator";
11
+ export * from "./ListRecommenderSchemasPaginator";
11
12
  export * from "./ListRuleBasedMatchesPaginator";
12
13
  export * from "./ListSegmentDefinitionsPaginator";
13
14
  export * from "./ListUploadJobsPaginator";