@aws-sdk/client-customer-profiles 3.1029.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 (59) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +92 -4
  3. package/dist-cjs/schemas/schemas_0.js +148 -31
  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 +28 -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 +139 -23
  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/CreateSegmentDefinitionCommand.d.ts +10 -0
  20. package/dist-types/commands/DeleteRecommenderSchemaCommand.d.ts +88 -0
  21. package/dist-types/commands/GetRecommenderCommand.d.ts +11 -0
  22. package/dist-types/commands/GetRecommenderFilterCommand.d.ts +1 -0
  23. package/dist-types/commands/GetRecommenderSchemaCommand.d.ts +101 -0
  24. package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +10 -0
  25. package/dist-types/commands/ListRecommenderFiltersCommand.d.ts +1 -0
  26. package/dist-types/commands/ListRecommenderSchemasCommand.d.ts +107 -0
  27. package/dist-types/commands/ListRecommendersCommand.d.ts +11 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  29. package/dist-types/commands/ListUploadJobsCommand.d.ts +1 -1
  30. package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
  31. package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
  32. package/dist-types/commands/PutDomainObjectTypeCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateRecommenderCommand.d.ts +5 -0
  34. package/dist-types/commands/index.d.ts +4 -0
  35. package/dist-types/models/enums.d.ts +68 -12
  36. package/dist-types/models/models_0.d.ts +286 -414
  37. package/dist-types/models/models_1.d.ts +414 -2
  38. package/dist-types/pagination/ListRecommenderSchemasPaginator.d.ts +7 -0
  39. package/dist-types/pagination/index.d.ts +1 -0
  40. package/dist-types/schemas/schemas_0.d.ts +16 -0
  41. package/dist-types/ts3.4/CustomerProfiles.d.ts +75 -0
  42. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +24 -0
  43. package/dist-types/ts3.4/commands/CreateRecommenderSchemaCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/DeleteRecommenderSchemaCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/GetRecommenderSchemaCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/ListRecommenderSchemasCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
  48. package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/PutDomainObjectTypeCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  53. package/dist-types/ts3.4/models/enums.d.ts +37 -5
  54. package/dist-types/ts3.4/models/models_0.d.ts +71 -93
  55. package/dist-types/ts3.4/models/models_1.d.ts +98 -0
  56. package/dist-types/ts3.4/pagination/ListRecommenderSchemasPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
  59. package/package.json +33 -33
@@ -19,6 +19,7 @@ import type { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCo
19
19
  import type { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
20
20
  import type { CreateRecommenderCommandInput, CreateRecommenderCommandOutput } from "./commands/CreateRecommenderCommand";
21
21
  import type { CreateRecommenderFilterCommandInput, CreateRecommenderFilterCommandOutput } from "./commands/CreateRecommenderFilterCommand";
22
+ import type { CreateRecommenderSchemaCommandInput, CreateRecommenderSchemaCommandOutput } from "./commands/CreateRecommenderSchemaCommand";
22
23
  import type { CreateSegmentDefinitionCommandInput, CreateSegmentDefinitionCommandOutput } from "./commands/CreateSegmentDefinitionCommand";
23
24
  import type { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput } from "./commands/CreateSegmentEstimateCommand";
24
25
  import type { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "./commands/CreateSegmentSnapshotCommand";
@@ -36,6 +37,7 @@ import type { DeleteProfileObjectCommandInput, DeleteProfileObjectCommandOutput
36
37
  import type { DeleteProfileObjectTypeCommandInput, DeleteProfileObjectTypeCommandOutput } from "./commands/DeleteProfileObjectTypeCommand";
37
38
  import type { DeleteRecommenderCommandInput, DeleteRecommenderCommandOutput } from "./commands/DeleteRecommenderCommand";
38
39
  import type { DeleteRecommenderFilterCommandInput, DeleteRecommenderFilterCommandOutput } from "./commands/DeleteRecommenderFilterCommand";
40
+ import type { DeleteRecommenderSchemaCommandInput, DeleteRecommenderSchemaCommandOutput } from "./commands/DeleteRecommenderSchemaCommand";
39
41
  import type { DeleteSegmentDefinitionCommandInput, DeleteSegmentDefinitionCommandOutput } from "./commands/DeleteSegmentDefinitionCommand";
40
42
  import type { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "./commands/DeleteWorkflowCommand";
41
43
  import type { DetectProfileObjectTypeCommandInput, DetectProfileObjectTypeCommandOutput } from "./commands/DetectProfileObjectTypeCommand";
@@ -57,6 +59,7 @@ import type { GetProfileObjectTypeTemplateCommandInput, GetProfileObjectTypeTemp
57
59
  import type { GetProfileRecommendationsCommandInput, GetProfileRecommendationsCommandOutput } from "./commands/GetProfileRecommendationsCommand";
58
60
  import type { GetRecommenderCommandInput, GetRecommenderCommandOutput } from "./commands/GetRecommenderCommand";
59
61
  import type { GetRecommenderFilterCommandInput, GetRecommenderFilterCommandOutput } from "./commands/GetRecommenderFilterCommand";
62
+ import type { GetRecommenderSchemaCommandInput, GetRecommenderSchemaCommandOutput } from "./commands/GetRecommenderSchemaCommand";
60
63
  import type { GetSegmentDefinitionCommandInput, GetSegmentDefinitionCommandOutput } from "./commands/GetSegmentDefinitionCommand";
61
64
  import type { GetSegmentEstimateCommandInput, GetSegmentEstimateCommandOutput } from "./commands/GetSegmentEstimateCommand";
62
65
  import type { GetSegmentMembershipCommandInput, GetSegmentMembershipCommandOutput } from "./commands/GetSegmentMembershipCommand";
@@ -85,6 +88,7 @@ import type { ListProfileObjectTypesCommandInput, ListProfileObjectTypesCommandO
85
88
  import type { ListProfileObjectTypeTemplatesCommandInput, ListProfileObjectTypeTemplatesCommandOutput } from "./commands/ListProfileObjectTypeTemplatesCommand";
86
89
  import type { ListRecommenderFiltersCommandInput, ListRecommenderFiltersCommandOutput } from "./commands/ListRecommenderFiltersCommand";
87
90
  import type { ListRecommenderRecipesCommandInput, ListRecommenderRecipesCommandOutput } from "./commands/ListRecommenderRecipesCommand";
91
+ import type { ListRecommenderSchemasCommandInput, ListRecommenderSchemasCommandOutput } from "./commands/ListRecommenderSchemasCommand";
88
92
  import type { ListRecommendersCommandInput, ListRecommendersCommandOutput } from "./commands/ListRecommendersCommand";
89
93
  import type { ListRuleBasedMatchesCommandInput, ListRuleBasedMatchesCommandOutput } from "./commands/ListRuleBasedMatchesCommand";
90
94
  import type { ListSegmentDefinitionsCommandInput, ListSegmentDefinitionsCommandOutput } from "./commands/ListSegmentDefinitionsCommand";
@@ -115,11 +119,11 @@ export { __Client };
115
119
  /**
116
120
  * @public
117
121
  */
118
- export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateDomainLayoutCommandInput | CreateEventStreamCommandInput | CreateEventTriggerCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateRecommenderCommandInput | CreateRecommenderFilterCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | CreateUploadJobCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteDomainLayoutCommandInput | DeleteDomainObjectTypeCommandInput | DeleteEventStreamCommandInput | DeleteEventTriggerCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteRecommenderCommandInput | DeleteRecommenderFilterCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetDomainLayoutCommandInput | GetDomainObjectTypeCommandInput | GetEventStreamCommandInput | GetEventTriggerCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetObjectTypeAttributeStatisticsCommandInput | GetProfileHistoryRecordCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetProfileRecommendationsCommandInput | GetRecommenderCommandInput | GetRecommenderFilterCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetUploadJobCommandInput | GetUploadJobPathCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainLayoutsCommandInput | ListDomainObjectTypesCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListEventTriggersCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributeValuesCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileHistoryRecordsCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRecommenderFiltersCommandInput | ListRecommenderRecipesCommandInput | ListRecommendersCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListUploadJobsCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutDomainObjectTypeCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | StartRecommenderCommandInput | StartUploadJobCommandInput | StopRecommenderCommandInput | StopUploadJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateDomainLayoutCommandInput | UpdateEventTriggerCommandInput | UpdateProfileCommandInput | UpdateRecommenderCommandInput;
122
+ export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateDomainLayoutCommandInput | CreateEventStreamCommandInput | CreateEventTriggerCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateRecommenderCommandInput | CreateRecommenderFilterCommandInput | CreateRecommenderSchemaCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | CreateUploadJobCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteDomainLayoutCommandInput | DeleteDomainObjectTypeCommandInput | DeleteEventStreamCommandInput | DeleteEventTriggerCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteRecommenderCommandInput | DeleteRecommenderFilterCommandInput | DeleteRecommenderSchemaCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetDomainLayoutCommandInput | GetDomainObjectTypeCommandInput | GetEventStreamCommandInput | GetEventTriggerCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetObjectTypeAttributeStatisticsCommandInput | GetProfileHistoryRecordCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetProfileRecommendationsCommandInput | GetRecommenderCommandInput | GetRecommenderFilterCommandInput | GetRecommenderSchemaCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetUploadJobCommandInput | GetUploadJobPathCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainLayoutsCommandInput | ListDomainObjectTypesCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListEventTriggersCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributeValuesCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileHistoryRecordsCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRecommenderFiltersCommandInput | ListRecommenderRecipesCommandInput | ListRecommenderSchemasCommandInput | ListRecommendersCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListUploadJobsCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutDomainObjectTypeCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | StartRecommenderCommandInput | StartUploadJobCommandInput | StopRecommenderCommandInput | StopUploadJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateDomainLayoutCommandInput | UpdateEventTriggerCommandInput | UpdateProfileCommandInput | UpdateRecommenderCommandInput;
119
123
  /**
120
124
  * @public
121
125
  */
122
- export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateDomainLayoutCommandOutput | CreateEventStreamCommandOutput | CreateEventTriggerCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateRecommenderCommandOutput | CreateRecommenderFilterCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | CreateUploadJobCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteDomainLayoutCommandOutput | DeleteDomainObjectTypeCommandOutput | DeleteEventStreamCommandOutput | DeleteEventTriggerCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteRecommenderCommandOutput | DeleteRecommenderFilterCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetDomainLayoutCommandOutput | GetDomainObjectTypeCommandOutput | GetEventStreamCommandOutput | GetEventTriggerCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetObjectTypeAttributeStatisticsCommandOutput | GetProfileHistoryRecordCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetProfileRecommendationsCommandOutput | GetRecommenderCommandOutput | GetRecommenderFilterCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetUploadJobCommandOutput | GetUploadJobPathCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainLayoutsCommandOutput | ListDomainObjectTypesCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListEventTriggersCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributeValuesCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileHistoryRecordsCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRecommenderFiltersCommandOutput | ListRecommenderRecipesCommandOutput | ListRecommendersCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListUploadJobsCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutDomainObjectTypeCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | StartRecommenderCommandOutput | StartUploadJobCommandOutput | StopRecommenderCommandOutput | StopUploadJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateDomainLayoutCommandOutput | UpdateEventTriggerCommandOutput | UpdateProfileCommandOutput | UpdateRecommenderCommandOutput;
126
+ export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateDomainLayoutCommandOutput | CreateEventStreamCommandOutput | CreateEventTriggerCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateRecommenderCommandOutput | CreateRecommenderFilterCommandOutput | CreateRecommenderSchemaCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | CreateUploadJobCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteDomainLayoutCommandOutput | DeleteDomainObjectTypeCommandOutput | DeleteEventStreamCommandOutput | DeleteEventTriggerCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteRecommenderCommandOutput | DeleteRecommenderFilterCommandOutput | DeleteRecommenderSchemaCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetDomainLayoutCommandOutput | GetDomainObjectTypeCommandOutput | GetEventStreamCommandOutput | GetEventTriggerCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetObjectTypeAttributeStatisticsCommandOutput | GetProfileHistoryRecordCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetProfileRecommendationsCommandOutput | GetRecommenderCommandOutput | GetRecommenderFilterCommandOutput | GetRecommenderSchemaCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetUploadJobCommandOutput | GetUploadJobPathCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainLayoutsCommandOutput | ListDomainObjectTypesCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListEventTriggersCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributeValuesCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileHistoryRecordsCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRecommenderFiltersCommandOutput | ListRecommenderRecipesCommandOutput | ListRecommenderSchemasCommandOutput | ListRecommendersCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListUploadJobsCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutDomainObjectTypeCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | StartRecommenderCommandOutput | StartUploadJobCommandOutput | StopRecommenderCommandOutput | StopUploadJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateDomainLayoutCommandOutput | UpdateEventTriggerCommandOutput | UpdateProfileCommandOutput | UpdateRecommenderCommandOutput;
123
127
  /**
124
128
  * @public
125
129
  */
@@ -54,8 +54,14 @@ declare const CreateRecommenderCommand_base: {
54
54
  * InferenceConfig: { // InferenceConfig
55
55
  * MinProvisionedTPS: Number("int"),
56
56
  * },
57
+ * IncludedColumns: { // IncludedColumns
58
+ * "<keys>": [ // ColumnNamesList
59
+ * "STRING_VALUE",
60
+ * ],
61
+ * },
57
62
  * },
58
63
  * Description: "STRING_VALUE",
64
+ * RecommenderSchemaName: "STRING_VALUE",
59
65
  * Tags: { // TagMap
60
66
  * "<keys>": "STRING_VALUE",
61
67
  * },
@@ -40,6 +40,7 @@ declare const CreateRecommenderFilterCommand_base: {
40
40
  * DomainName: "STRING_VALUE", // required
41
41
  * RecommenderFilterName: "STRING_VALUE", // required
42
42
  * RecommenderFilterExpression: "STRING_VALUE", // required
43
+ * RecommenderSchemaName: "STRING_VALUE",
43
44
  * Description: "STRING_VALUE",
44
45
  * Tags: { // TagMap
45
46
  * "<keys>": "STRING_VALUE",
@@ -0,0 +1,117 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
4
+ import type { CreateRecommenderSchemaRequest, CreateRecommenderSchemaResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateRecommenderSchemaCommand}.
14
+ */
15
+ export interface CreateRecommenderSchemaCommandInput extends CreateRecommenderSchemaRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateRecommenderSchemaCommand}.
21
+ */
22
+ export interface CreateRecommenderSchemaCommandOutput extends CreateRecommenderSchemaResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateRecommenderSchemaCommand_base: {
25
+ new (input: CreateRecommenderSchemaCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRecommenderSchemaCommandInput, CreateRecommenderSchemaCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateRecommenderSchemaCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRecommenderSchemaCommandInput, CreateRecommenderSchemaCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a recommender schema. A recommender schema defines the set of data columns available for training recommenders and filters under a domain.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CustomerProfilesClient, CreateRecommenderSchemaCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
35
+ * // const { CustomerProfilesClient, CreateRecommenderSchemaCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
36
+ * // import type { CustomerProfilesClientConfig } from "@aws-sdk/client-customer-profiles";
37
+ * const config = {}; // type is CustomerProfilesClientConfig
38
+ * const client = new CustomerProfilesClient(config);
39
+ * const input = { // CreateRecommenderSchemaRequest
40
+ * DomainName: "STRING_VALUE", // required
41
+ * RecommenderSchemaName: "STRING_VALUE", // required
42
+ * Fields: { // RecommenderSchemaFields // required
43
+ * "<keys>": [ // RecommenderSchemaFieldList
44
+ * { // RecommenderSchemaField
45
+ * TargetFieldName: "STRING_VALUE", // required
46
+ * ContentType: "STRING" || "NUMBER",
47
+ * FeatureType: "TEXTUAL" || "CATEGORICAL",
48
+ * },
49
+ * ],
50
+ * },
51
+ * Tags: { // TagMap
52
+ * "<keys>": "STRING_VALUE",
53
+ * },
54
+ * };
55
+ * const command = new CreateRecommenderSchemaCommand(input);
56
+ * const response = await client.send(command);
57
+ * // { // CreateRecommenderSchemaResponse
58
+ * // RecommenderSchemaArn: "STRING_VALUE", // required
59
+ * // RecommenderSchemaName: "STRING_VALUE", // required
60
+ * // Fields: { // RecommenderSchemaFields // required
61
+ * // "<keys>": [ // RecommenderSchemaFieldList
62
+ * // { // RecommenderSchemaField
63
+ * // TargetFieldName: "STRING_VALUE", // required
64
+ * // ContentType: "STRING" || "NUMBER",
65
+ * // FeatureType: "TEXTUAL" || "CATEGORICAL",
66
+ * // },
67
+ * // ],
68
+ * // },
69
+ * // CreatedAt: new Date("TIMESTAMP"), // required
70
+ * // Status: "ACTIVE" || "DELETING", // required
71
+ * // Tags: { // TagMap
72
+ * // "<keys>": "STRING_VALUE",
73
+ * // },
74
+ * // };
75
+ *
76
+ * ```
77
+ *
78
+ * @param CreateRecommenderSchemaCommandInput - {@link CreateRecommenderSchemaCommandInput}
79
+ * @returns {@link CreateRecommenderSchemaCommandOutput}
80
+ * @see {@link CreateRecommenderSchemaCommandInput} for command's `input` shape.
81
+ * @see {@link CreateRecommenderSchemaCommandOutput} for command's `response` shape.
82
+ * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
83
+ *
84
+ * @throws {@link AccessDeniedException} (client fault)
85
+ * <p>You do not have sufficient access to perform this action.</p>
86
+ *
87
+ * @throws {@link BadRequestException} (client fault)
88
+ * <p>The input you provided is invalid.</p>
89
+ *
90
+ * @throws {@link InternalServerException} (server fault)
91
+ * <p>An internal service error occurred.</p>
92
+ *
93
+ * @throws {@link ResourceNotFoundException} (client fault)
94
+ * <p>The requested resource does not exist, or access was denied.</p>
95
+ *
96
+ * @throws {@link ThrottlingException} (client fault)
97
+ * <p>You exceeded the maximum number of requests.</p>
98
+ *
99
+ * @throws {@link CustomerProfilesServiceException}
100
+ * <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
101
+ *
102
+ *
103
+ * @public
104
+ */
105
+ export declare class CreateRecommenderSchemaCommand extends CreateRecommenderSchemaCommand_base {
106
+ /** @internal type navigation helper, not in runtime. */
107
+ protected static __types: {
108
+ api: {
109
+ input: CreateRecommenderSchemaRequest;
110
+ output: CreateRecommenderSchemaResponse;
111
+ };
112
+ sdk: {
113
+ input: CreateRecommenderSchemaCommandInput;
114
+ output: CreateRecommenderSchemaCommandOutput;
115
+ };
116
+ };
117
+ }
@@ -170,6 +170,16 @@ declare const CreateSegmentDefinitionCommand_base: {
170
170
  * Include: "ALL" || "ANY" || "NONE",
171
171
  * },
172
172
  * SegmentSqlQuery: "STRING_VALUE",
173
+ * SegmentSort: { // SegmentSort
174
+ * Attributes: [ // SortAttributeList // required
175
+ * { // SortAttribute
176
+ * Name: "STRING_VALUE", // required
177
+ * DataType: "STRING" || "NUMBER" || "DATE",
178
+ * Order: "ASC" || "DESC", // required
179
+ * Type: "PROFILE" || "CALCULATED",
180
+ * },
181
+ * ],
182
+ * },
173
183
  * Tags: { // TagMap
174
184
  * "<keys>": "STRING_VALUE",
175
185
  * },
@@ -0,0 +1,88 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
4
+ import type { DeleteRecommenderSchemaRequest, DeleteRecommenderSchemaResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteRecommenderSchemaCommand}.
14
+ */
15
+ export interface DeleteRecommenderSchemaCommandInput extends DeleteRecommenderSchemaRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteRecommenderSchemaCommand}.
21
+ */
22
+ export interface DeleteRecommenderSchemaCommandOutput extends DeleteRecommenderSchemaResponse, __MetadataBearer {
23
+ }
24
+ declare const DeleteRecommenderSchemaCommand_base: {
25
+ new (input: DeleteRecommenderSchemaCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRecommenderSchemaCommandInput, DeleteRecommenderSchemaCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteRecommenderSchemaCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRecommenderSchemaCommandInput, DeleteRecommenderSchemaCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes a recommender schema from a domain.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CustomerProfilesClient, DeleteRecommenderSchemaCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
35
+ * // const { CustomerProfilesClient, DeleteRecommenderSchemaCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
36
+ * // import type { CustomerProfilesClientConfig } from "@aws-sdk/client-customer-profiles";
37
+ * const config = {}; // type is CustomerProfilesClientConfig
38
+ * const client = new CustomerProfilesClient(config);
39
+ * const input = { // DeleteRecommenderSchemaRequest
40
+ * DomainName: "STRING_VALUE", // required
41
+ * RecommenderSchemaName: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new DeleteRecommenderSchemaCommand(input);
44
+ * const response = await client.send(command);
45
+ * // {};
46
+ *
47
+ * ```
48
+ *
49
+ * @param DeleteRecommenderSchemaCommandInput - {@link DeleteRecommenderSchemaCommandInput}
50
+ * @returns {@link DeleteRecommenderSchemaCommandOutput}
51
+ * @see {@link DeleteRecommenderSchemaCommandInput} for command's `input` shape.
52
+ * @see {@link DeleteRecommenderSchemaCommandOutput} for command's `response` shape.
53
+ * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
54
+ *
55
+ * @throws {@link AccessDeniedException} (client fault)
56
+ * <p>You do not have sufficient access to perform this action.</p>
57
+ *
58
+ * @throws {@link BadRequestException} (client fault)
59
+ * <p>The input you provided is invalid.</p>
60
+ *
61
+ * @throws {@link InternalServerException} (server fault)
62
+ * <p>An internal service error occurred.</p>
63
+ *
64
+ * @throws {@link ResourceNotFoundException} (client fault)
65
+ * <p>The requested resource does not exist, or access was denied.</p>
66
+ *
67
+ * @throws {@link ThrottlingException} (client fault)
68
+ * <p>You exceeded the maximum number of requests.</p>
69
+ *
70
+ * @throws {@link CustomerProfilesServiceException}
71
+ * <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
72
+ *
73
+ *
74
+ * @public
75
+ */
76
+ export declare class DeleteRecommenderSchemaCommand extends DeleteRecommenderSchemaCommand_base {
77
+ /** @internal type navigation helper, not in runtime. */
78
+ protected static __types: {
79
+ api: {
80
+ input: DeleteRecommenderSchemaRequest;
81
+ output: {};
82
+ };
83
+ sdk: {
84
+ input: DeleteRecommenderSchemaCommandInput;
85
+ output: DeleteRecommenderSchemaCommandOutput;
86
+ };
87
+ };
88
+ }
@@ -46,6 +46,7 @@ declare const GetRecommenderCommand_base: {
46
46
  * // { // GetRecommenderResponse
47
47
  * // RecommenderName: "STRING_VALUE", // required
48
48
  * // RecommenderRecipeName: "recommended-for-you" || "similar-items" || "frequently-paired-items" || "popular-items" || "trending-now" || "personalized-ranking", // required
49
+ * // RecommenderSchemaName: "STRING_VALUE",
49
50
  * // RecommenderConfig: { // RecommenderConfig
50
51
  * // EventsConfig: { // EventsConfig
51
52
  * // EventParametersList: [ // EventParametersList // required
@@ -60,6 +61,11 @@ declare const GetRecommenderCommand_base: {
60
61
  * // InferenceConfig: { // InferenceConfig
61
62
  * // MinProvisionedTPS: Number("int"),
62
63
  * // },
64
+ * // IncludedColumns: { // IncludedColumns
65
+ * // "<keys>": [ // ColumnNamesList
66
+ * // "STRING_VALUE",
67
+ * // ],
68
+ * // },
63
69
  * // },
64
70
  * // Description: "STRING_VALUE",
65
71
  * // Status: "PENDING" || "IN_PROGRESS" || "ACTIVE" || "FAILED" || "STOPPING" || "INACTIVE" || "STARTING" || "DELETING",
@@ -81,6 +87,11 @@ declare const GetRecommenderCommand_base: {
81
87
  * // InferenceConfig: {
82
88
  * // MinProvisionedTPS: Number("int"),
83
89
  * // },
90
+ * // IncludedColumns: {
91
+ * // "<keys>": [
92
+ * // "STRING_VALUE",
93
+ * // ],
94
+ * // },
84
95
  * // },
85
96
  * // Status: "PENDING" || "IN_PROGRESS" || "ACTIVE" || "FAILED" || "STOPPING" || "INACTIVE" || "STARTING" || "DELETING",
86
97
  * // CreatedAt: new Date("TIMESTAMP"),
@@ -45,6 +45,7 @@ declare const GetRecommenderFilterCommand_base: {
45
45
  * // { // GetRecommenderFilterResponse
46
46
  * // RecommenderFilterName: "STRING_VALUE", // required
47
47
  * // RecommenderFilterExpression: "STRING_VALUE", // required
48
+ * // RecommenderSchemaName: "STRING_VALUE",
48
49
  * // CreatedAt: new Date("TIMESTAMP"), // required
49
50
  * // Status: "ACTIVE" || "PENDING" || "IN_PROGRESS" || "FAILED" || "DELETING", // required
50
51
  * // Description: "STRING_VALUE",
@@ -0,0 +1,101 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
4
+ import type { GetRecommenderSchemaRequest, GetRecommenderSchemaResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetRecommenderSchemaCommand}.
14
+ */
15
+ export interface GetRecommenderSchemaCommandInput extends GetRecommenderSchemaRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetRecommenderSchemaCommand}.
21
+ */
22
+ export interface GetRecommenderSchemaCommandOutput extends GetRecommenderSchemaResponse, __MetadataBearer {
23
+ }
24
+ declare const GetRecommenderSchemaCommand_base: {
25
+ new (input: GetRecommenderSchemaCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecommenderSchemaCommandInput, GetRecommenderSchemaCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetRecommenderSchemaCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecommenderSchemaCommandInput, GetRecommenderSchemaCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves information about a specific recommender schema in a domain.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CustomerProfilesClient, GetRecommenderSchemaCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
35
+ * // const { CustomerProfilesClient, GetRecommenderSchemaCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
36
+ * // import type { CustomerProfilesClientConfig } from "@aws-sdk/client-customer-profiles";
37
+ * const config = {}; // type is CustomerProfilesClientConfig
38
+ * const client = new CustomerProfilesClient(config);
39
+ * const input = { // GetRecommenderSchemaRequest
40
+ * DomainName: "STRING_VALUE", // required
41
+ * RecommenderSchemaName: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new GetRecommenderSchemaCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // GetRecommenderSchemaResponse
46
+ * // RecommenderSchemaName: "STRING_VALUE", // required
47
+ * // Fields: { // RecommenderSchemaFields // required
48
+ * // "<keys>": [ // RecommenderSchemaFieldList
49
+ * // { // RecommenderSchemaField
50
+ * // TargetFieldName: "STRING_VALUE", // required
51
+ * // ContentType: "STRING" || "NUMBER",
52
+ * // FeatureType: "TEXTUAL" || "CATEGORICAL",
53
+ * // },
54
+ * // ],
55
+ * // },
56
+ * // CreatedAt: new Date("TIMESTAMP"), // required
57
+ * // Status: "ACTIVE" || "DELETING", // required
58
+ * // };
59
+ *
60
+ * ```
61
+ *
62
+ * @param GetRecommenderSchemaCommandInput - {@link GetRecommenderSchemaCommandInput}
63
+ * @returns {@link GetRecommenderSchemaCommandOutput}
64
+ * @see {@link GetRecommenderSchemaCommandInput} for command's `input` shape.
65
+ * @see {@link GetRecommenderSchemaCommandOutput} for command's `response` shape.
66
+ * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
67
+ *
68
+ * @throws {@link AccessDeniedException} (client fault)
69
+ * <p>You do not have sufficient access to perform this action.</p>
70
+ *
71
+ * @throws {@link BadRequestException} (client fault)
72
+ * <p>The input you provided is invalid.</p>
73
+ *
74
+ * @throws {@link InternalServerException} (server fault)
75
+ * <p>An internal service error occurred.</p>
76
+ *
77
+ * @throws {@link ResourceNotFoundException} (client fault)
78
+ * <p>The requested resource does not exist, or access was denied.</p>
79
+ *
80
+ * @throws {@link ThrottlingException} (client fault)
81
+ * <p>You exceeded the maximum number of requests.</p>
82
+ *
83
+ * @throws {@link CustomerProfilesServiceException}
84
+ * <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
85
+ *
86
+ *
87
+ * @public
88
+ */
89
+ export declare class GetRecommenderSchemaCommand extends GetRecommenderSchemaCommand_base {
90
+ /** @internal type navigation helper, not in runtime. */
91
+ protected static __types: {
92
+ api: {
93
+ input: GetRecommenderSchemaRequest;
94
+ output: GetRecommenderSchemaResponse;
95
+ };
96
+ sdk: {
97
+ input: GetRecommenderSchemaCommandInput;
98
+ output: GetRecommenderSchemaCommandOutput;
99
+ };
100
+ };
101
+ }
@@ -174,6 +174,16 @@ declare const GetSegmentDefinitionCommand_base: {
174
174
  * // ],
175
175
  * // Include: "ALL" || "ANY" || "NONE",
176
176
  * // },
177
+ * // SegmentSort: { // SegmentSort
178
+ * // Attributes: [ // SortAttributeList // required
179
+ * // { // SortAttribute
180
+ * // Name: "STRING_VALUE", // required
181
+ * // DataType: "STRING" || "NUMBER" || "DATE",
182
+ * // Order: "ASC" || "DESC", // required
183
+ * // Type: "PROFILE" || "CALCULATED",
184
+ * // },
185
+ * // ],
186
+ * // },
177
187
  * // SegmentDefinitionArn: "STRING_VALUE", // required
178
188
  * // CreatedAt: new Date("TIMESTAMP"),
179
189
  * // Tags: { // TagMap
@@ -48,6 +48,7 @@ declare const ListRecommenderFiltersCommand_base: {
48
48
  * // RecommenderFilters: [ // RecommenderFilterSummaryList
49
49
  * // { // RecommenderFilterSummary
50
50
  * // RecommenderFilterName: "STRING_VALUE",
51
+ * // RecommenderSchemaName: "STRING_VALUE",
51
52
  * // RecommenderFilterExpression: "STRING_VALUE",
52
53
  * // CreatedAt: new Date("TIMESTAMP"),
53
54
  * // Description: "STRING_VALUE",
@@ -0,0 +1,107 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
4
+ import type { ListRecommenderSchemasRequest, ListRecommenderSchemasResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListRecommenderSchemasCommand}.
14
+ */
15
+ export interface ListRecommenderSchemasCommandInput extends ListRecommenderSchemasRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListRecommenderSchemasCommand}.
21
+ */
22
+ export interface ListRecommenderSchemasCommandOutput extends ListRecommenderSchemasResponse, __MetadataBearer {
23
+ }
24
+ declare const ListRecommenderSchemasCommand_base: {
25
+ new (input: ListRecommenderSchemasCommandInput): import("@smithy/smithy-client").CommandImpl<ListRecommenderSchemasCommandInput, ListRecommenderSchemasCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListRecommenderSchemasCommandInput): import("@smithy/smithy-client").CommandImpl<ListRecommenderSchemasCommandInput, ListRecommenderSchemasCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of recommender schemas in the specified domain.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CustomerProfilesClient, ListRecommenderSchemasCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
35
+ * // const { CustomerProfilesClient, ListRecommenderSchemasCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
36
+ * // import type { CustomerProfilesClientConfig } from "@aws-sdk/client-customer-profiles";
37
+ * const config = {}; // type is CustomerProfilesClientConfig
38
+ * const client = new CustomerProfilesClient(config);
39
+ * const input = { // ListRecommenderSchemasRequest
40
+ * DomainName: "STRING_VALUE", // required
41
+ * MaxResults: Number("int"),
42
+ * NextToken: "STRING_VALUE",
43
+ * };
44
+ * const command = new ListRecommenderSchemasCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // ListRecommenderSchemasResponse
47
+ * // NextToken: "STRING_VALUE",
48
+ * // RecommenderSchemas: [ // RecommenderSchemaSummaryList
49
+ * // { // RecommenderSchemaSummary
50
+ * // RecommenderSchemaName: "STRING_VALUE", // required
51
+ * // Fields: { // RecommenderSchemaFields // required
52
+ * // "<keys>": [ // RecommenderSchemaFieldList
53
+ * // { // RecommenderSchemaField
54
+ * // TargetFieldName: "STRING_VALUE", // required
55
+ * // ContentType: "STRING" || "NUMBER",
56
+ * // FeatureType: "TEXTUAL" || "CATEGORICAL",
57
+ * // },
58
+ * // ],
59
+ * // },
60
+ * // CreatedAt: new Date("TIMESTAMP"), // required
61
+ * // Status: "ACTIVE" || "DELETING", // required
62
+ * // },
63
+ * // ],
64
+ * // };
65
+ *
66
+ * ```
67
+ *
68
+ * @param ListRecommenderSchemasCommandInput - {@link ListRecommenderSchemasCommandInput}
69
+ * @returns {@link ListRecommenderSchemasCommandOutput}
70
+ * @see {@link ListRecommenderSchemasCommandInput} for command's `input` shape.
71
+ * @see {@link ListRecommenderSchemasCommandOutput} for command's `response` shape.
72
+ * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
73
+ *
74
+ * @throws {@link AccessDeniedException} (client fault)
75
+ * <p>You do not have sufficient access to perform this action.</p>
76
+ *
77
+ * @throws {@link BadRequestException} (client fault)
78
+ * <p>The input you provided is invalid.</p>
79
+ *
80
+ * @throws {@link InternalServerException} (server fault)
81
+ * <p>An internal service error occurred.</p>
82
+ *
83
+ * @throws {@link ResourceNotFoundException} (client fault)
84
+ * <p>The requested resource does not exist, or access was denied.</p>
85
+ *
86
+ * @throws {@link ThrottlingException} (client fault)
87
+ * <p>You exceeded the maximum number of requests.</p>
88
+ *
89
+ * @throws {@link CustomerProfilesServiceException}
90
+ * <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
91
+ *
92
+ *
93
+ * @public
94
+ */
95
+ export declare class ListRecommenderSchemasCommand extends ListRecommenderSchemasCommand_base {
96
+ /** @internal type navigation helper, not in runtime. */
97
+ protected static __types: {
98
+ api: {
99
+ input: ListRecommenderSchemasRequest;
100
+ output: ListRecommenderSchemasResponse;
101
+ };
102
+ sdk: {
103
+ input: ListRecommenderSchemasCommandInput;
104
+ output: ListRecommenderSchemasCommandOutput;
105
+ };
106
+ };
107
+ }
@@ -49,6 +49,7 @@ declare const ListRecommendersCommand_base: {
49
49
  * // { // RecommenderSummary
50
50
  * // RecommenderName: "STRING_VALUE",
51
51
  * // RecipeName: "recommended-for-you" || "similar-items" || "frequently-paired-items" || "popular-items" || "trending-now" || "personalized-ranking",
52
+ * // RecommenderSchemaName: "STRING_VALUE",
52
53
  * // RecommenderConfig: { // RecommenderConfig
53
54
  * // EventsConfig: { // EventsConfig
54
55
  * // EventParametersList: [ // EventParametersList // required
@@ -63,6 +64,11 @@ declare const ListRecommendersCommand_base: {
63
64
  * // InferenceConfig: { // InferenceConfig
64
65
  * // MinProvisionedTPS: Number("int"),
65
66
  * // },
67
+ * // IncludedColumns: { // IncludedColumns
68
+ * // "<keys>": [ // ColumnNamesList
69
+ * // "STRING_VALUE",
70
+ * // ],
71
+ * // },
66
72
  * // },
67
73
  * // CreatedAt: new Date("TIMESTAMP"),
68
74
  * // Description: "STRING_VALUE",
@@ -87,6 +93,11 @@ declare const ListRecommendersCommand_base: {
87
93
  * // InferenceConfig: {
88
94
  * // MinProvisionedTPS: Number("int"),
89
95
  * // },
96
+ * // IncludedColumns: {
97
+ * // "<keys>": [
98
+ * // "STRING_VALUE",
99
+ * // ],
100
+ * // },
90
101
  * // },
91
102
  * // Status: "PENDING" || "IN_PROGRESS" || "ACTIVE" || "FAILED" || "STOPPING" || "INACTIVE" || "STARTING" || "DELETING",
92
103
  * // CreatedAt: new Date("TIMESTAMP"),
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
4
- import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
+ import type { ListTagsForResourceRequest } from "../models/models_0";
5
+ import type { ListTagsForResourceResponse } from "../models/models_1";
5
6
  /**
6
7
  * @public
7
8
  */