@aws-sdk/client-customer-profiles 3.940.0 → 3.942.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 +120 -0
- package/dist-cjs/index.js +1058 -84
- package/dist-es/CustomerProfiles.js +30 -0
- package/dist-es/commands/CreateRecommenderCommand.js +16 -0
- package/dist-es/commands/DeleteDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/DeleteRecommenderCommand.js +16 -0
- package/dist-es/commands/GetDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/GetObjectTypeAttributeStatisticsCommand.js +16 -0
- package/dist-es/commands/GetProfileRecommendationsCommand.js +16 -0
- package/dist-es/commands/GetRecommenderCommand.js +16 -0
- package/dist-es/commands/ListDomainObjectTypesCommand.js +16 -0
- package/dist-es/commands/ListObjectTypeAttributeValuesCommand.js +16 -0
- package/dist-es/commands/ListRecommenderRecipesCommand.js +16 -0
- package/dist-es/commands/ListRecommendersCommand.js +16 -0
- package/dist-es/commands/PutDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/StartRecommenderCommand.js +16 -0
- package/dist-es/commands/StopRecommenderCommand.js +16 -0
- package/dist-es/commands/UpdateRecommenderCommand.js +16 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/models/enums.js +41 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListDomainObjectTypesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommenderRecipesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommendersPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +792 -84
- package/dist-types/CustomerProfiles.d.ts +106 -0
- package/dist-types/CustomerProfilesClient.d.ts +17 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +10 -0
- package/dist-types/commands/CreateRecommenderCommand.d.ts +109 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/CreateSegmentEstimateCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDomainObjectTypeCommand.d.ts +88 -0
- package/dist-types/commands/DeleteRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/GetDomainCommand.d.ts +7 -0
- package/dist-types/commands/GetDomainObjectTypeCommand.d.ts +105 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +1 -0
- package/dist-types/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +110 -0
- package/dist-types/commands/GetProfileRecommendationsCommand.d.ts +116 -0
- package/dist-types/commands/GetRecommenderCommand.d.ts +136 -0
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/GetSegmentMembershipCommand.d.ts +1 -0
- package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainObjectTypesCommand.d.ts +102 -0
- package/dist-types/commands/ListIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListObjectTypeAttributeValuesCommand.d.ts +99 -0
- package/dist-types/commands/ListRecommenderRecipesCommand.d.ts +93 -0
- package/dist-types/commands/ListRecommendersCommand.d.ts +133 -0
- package/dist-types/commands/ListSegmentDefinitionsCommand.d.ts +1 -0
- package/dist-types/commands/PutDomainObjectTypeCommand.d.ts +118 -0
- package/dist-types/commands/PutIntegrationCommand.d.ts +5 -3
- package/dist-types/commands/StartRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/StopRecommenderCommand.d.ts +89 -0
- package/dist-types/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +11 -1
- package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecommenderCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +97 -0
- package/dist-types/models/models_0.d.ts +1084 -738
- package/dist-types/models/models_1.d.ts +744 -0
- package/dist-types/pagination/ListDomainObjectTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommenderRecipesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +74 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +256 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +92 -2
- package/dist-types/ts3.4/commands/CreateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetProfileRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainObjectTypesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListObjectTypeAttributeValuesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommenderRecipesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendersCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopRecommenderCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +51 -0
- package/dist-types/ts3.4/models/models_0.d.ts +251 -142
- package/dist-types/ts3.4/models/models_1.d.ts +176 -0
- package/dist-types/ts3.4/pagination/ListDomainObjectTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommenderRecipesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +74 -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
|
+
ListDomainObjectTypesRequest,
|
|
10
|
+
ListDomainObjectTypesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDomainObjectTypesCommandInput
|
|
15
|
+
extends ListDomainObjectTypesRequest {}
|
|
16
|
+
export interface ListDomainObjectTypesCommandOutput
|
|
17
|
+
extends ListDomainObjectTypesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDomainObjectTypesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDomainObjectTypesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDomainObjectTypesCommandInput,
|
|
24
|
+
ListDomainObjectTypesCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListDomainObjectTypesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDomainObjectTypesCommandInput,
|
|
33
|
+
ListDomainObjectTypesCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDomainObjectTypesCommand extends ListDomainObjectTypesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDomainObjectTypesRequest;
|
|
44
|
+
output: ListDomainObjectTypesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDomainObjectTypesCommandInput;
|
|
48
|
+
output: ListDomainObjectTypesCommandOutput;
|
|
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
|
+
ListObjectTypeAttributeValuesRequest,
|
|
10
|
+
ListObjectTypeAttributeValuesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListObjectTypeAttributeValuesCommandInput
|
|
15
|
+
extends ListObjectTypeAttributeValuesRequest {}
|
|
16
|
+
export interface ListObjectTypeAttributeValuesCommandOutput
|
|
17
|
+
extends ListObjectTypeAttributeValuesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListObjectTypeAttributeValuesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListObjectTypeAttributeValuesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListObjectTypeAttributeValuesCommandInput,
|
|
24
|
+
ListObjectTypeAttributeValuesCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListObjectTypeAttributeValuesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListObjectTypeAttributeValuesCommandInput,
|
|
33
|
+
ListObjectTypeAttributeValuesCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListObjectTypeAttributeValuesCommand extends ListObjectTypeAttributeValuesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListObjectTypeAttributeValuesRequest;
|
|
44
|
+
output: ListObjectTypeAttributeValuesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListObjectTypeAttributeValuesCommandInput;
|
|
48
|
+
output: ListObjectTypeAttributeValuesCommandOutput;
|
|
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
|
+
ListRecommenderRecipesRequest,
|
|
10
|
+
ListRecommenderRecipesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListRecommenderRecipesCommandInput
|
|
15
|
+
extends ListRecommenderRecipesRequest {}
|
|
16
|
+
export interface ListRecommenderRecipesCommandOutput
|
|
17
|
+
extends ListRecommenderRecipesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListRecommenderRecipesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListRecommenderRecipesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListRecommenderRecipesCommandInput,
|
|
24
|
+
ListRecommenderRecipesCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListRecommenderRecipesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListRecommenderRecipesCommandInput,
|
|
33
|
+
ListRecommenderRecipesCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListRecommenderRecipesCommand extends ListRecommenderRecipesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListRecommenderRecipesRequest;
|
|
44
|
+
output: ListRecommenderRecipesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListRecommenderRecipesCommandInput;
|
|
48
|
+
output: ListRecommenderRecipesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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
|
+
ListRecommendersRequest,
|
|
10
|
+
ListRecommendersResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListRecommendersCommandInput extends ListRecommendersRequest {}
|
|
15
|
+
export interface ListRecommendersCommandOutput
|
|
16
|
+
extends ListRecommendersResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListRecommendersCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListRecommendersCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListRecommendersCommandInput,
|
|
23
|
+
ListRecommendersCommandOutput,
|
|
24
|
+
CustomerProfilesClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: ListRecommendersCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListRecommendersCommandInput,
|
|
32
|
+
ListRecommendersCommandOutput,
|
|
33
|
+
CustomerProfilesClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListRecommendersCommand extends ListRecommendersCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListRecommendersRequest;
|
|
43
|
+
output: ListRecommendersResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListRecommendersCommandInput;
|
|
47
|
+
output: ListRecommendersCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -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
|
+
PutDomainObjectTypeRequest,
|
|
10
|
+
PutDomainObjectTypeResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutDomainObjectTypeCommandInput
|
|
15
|
+
extends PutDomainObjectTypeRequest {}
|
|
16
|
+
export interface PutDomainObjectTypeCommandOutput
|
|
17
|
+
extends PutDomainObjectTypeResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutDomainObjectTypeCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutDomainObjectTypeCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutDomainObjectTypeCommandInput,
|
|
24
|
+
PutDomainObjectTypeCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PutDomainObjectTypeCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutDomainObjectTypeCommandInput,
|
|
33
|
+
PutDomainObjectTypeCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutDomainObjectTypeCommand extends PutDomainObjectTypeCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutDomainObjectTypeRequest;
|
|
44
|
+
output: PutDomainObjectTypeResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutDomainObjectTypeCommandInput;
|
|
48
|
+
output: PutDomainObjectTypeCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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
|
+
StartRecommenderRequest,
|
|
10
|
+
StartRecommenderResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartRecommenderCommandInput extends StartRecommenderRequest {}
|
|
15
|
+
export interface StartRecommenderCommandOutput
|
|
16
|
+
extends StartRecommenderResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StartRecommenderCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StartRecommenderCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StartRecommenderCommandInput,
|
|
23
|
+
StartRecommenderCommandOutput,
|
|
24
|
+
CustomerProfilesClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: StartRecommenderCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartRecommenderCommandInput,
|
|
32
|
+
StartRecommenderCommandOutput,
|
|
33
|
+
CustomerProfilesClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StartRecommenderCommand extends StartRecommenderCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StartRecommenderRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StartRecommenderCommandInput;
|
|
47
|
+
output: StartRecommenderCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
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 { StopRecommenderRequest } from "../models/models_0";
|
|
9
|
+
import { StopRecommenderResponse } from "../models/models_1";
|
|
10
|
+
export { __MetadataBearer };
|
|
11
|
+
export { $Command };
|
|
12
|
+
export interface StopRecommenderCommandInput extends StopRecommenderRequest {}
|
|
13
|
+
export interface StopRecommenderCommandOutput
|
|
14
|
+
extends StopRecommenderResponse,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const StopRecommenderCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: StopRecommenderCommandInput
|
|
19
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
20
|
+
StopRecommenderCommandInput,
|
|
21
|
+
StopRecommenderCommandOutput,
|
|
22
|
+
CustomerProfilesClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
input: StopRecommenderCommandInput
|
|
28
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
29
|
+
StopRecommenderCommandInput,
|
|
30
|
+
StopRecommenderCommandOutput,
|
|
31
|
+
CustomerProfilesClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
|
+
};
|
|
37
|
+
export declare class StopRecommenderCommand extends StopRecommenderCommand_base {
|
|
38
|
+
protected static __types: {
|
|
39
|
+
api: {
|
|
40
|
+
input: StopRecommenderRequest;
|
|
41
|
+
output: {};
|
|
42
|
+
};
|
|
43
|
+
sdk: {
|
|
44
|
+
input: StopRecommenderCommandInput;
|
|
45
|
+
output: StopRecommenderCommandOutput;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
StopUploadJobRequest,
|
|
10
10
|
StopUploadJobResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface StopUploadJobCommandInput extends StopUploadJobRequest {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CustomerProfilesClient";
|
|
8
|
-
import { TagResourceRequest, TagResourceResponse } from "../models/
|
|
8
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UntagResourceRequest,
|
|
10
10
|
UntagResourceResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateCalculatedAttributeDefinitionRequest,
|
|
10
10
|
UpdateCalculatedAttributeDefinitionResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateCalculatedAttributeDefinitionCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CustomerProfilesClient";
|
|
8
|
-
import { UpdateDomainRequest, UpdateDomainResponse } from "../models/
|
|
8
|
+
import { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface UpdateDomainCommandInput extends UpdateDomainRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateProfileRequest,
|
|
10
10
|
UpdateProfileResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateProfileCommandInput extends UpdateProfileRequest {}
|
|
@@ -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
|
+
UpdateRecommenderRequest,
|
|
10
|
+
UpdateRecommenderResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateRecommenderCommandInput
|
|
15
|
+
extends UpdateRecommenderRequest {}
|
|
16
|
+
export interface UpdateRecommenderCommandOutput
|
|
17
|
+
extends UpdateRecommenderResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateRecommenderCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateRecommenderCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateRecommenderCommandInput,
|
|
24
|
+
UpdateRecommenderCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateRecommenderCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateRecommenderCommandInput,
|
|
33
|
+
UpdateRecommenderCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateRecommenderCommand extends UpdateRecommenderCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateRecommenderRequest;
|
|
44
|
+
output: UpdateRecommenderResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateRecommenderCommandInput;
|
|
48
|
+
output: UpdateRecommenderCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,6 +8,7 @@ export * from "./CreateEventStreamCommand";
|
|
|
8
8
|
export * from "./CreateEventTriggerCommand";
|
|
9
9
|
export * from "./CreateIntegrationWorkflowCommand";
|
|
10
10
|
export * from "./CreateProfileCommand";
|
|
11
|
+
export * from "./CreateRecommenderCommand";
|
|
11
12
|
export * from "./CreateSegmentDefinitionCommand";
|
|
12
13
|
export * from "./CreateSegmentEstimateCommand";
|
|
13
14
|
export * from "./CreateSegmentSnapshotCommand";
|
|
@@ -15,6 +16,7 @@ export * from "./CreateUploadJobCommand";
|
|
|
15
16
|
export * from "./DeleteCalculatedAttributeDefinitionCommand";
|
|
16
17
|
export * from "./DeleteDomainCommand";
|
|
17
18
|
export * from "./DeleteDomainLayoutCommand";
|
|
19
|
+
export * from "./DeleteDomainObjectTypeCommand";
|
|
18
20
|
export * from "./DeleteEventStreamCommand";
|
|
19
21
|
export * from "./DeleteEventTriggerCommand";
|
|
20
22
|
export * from "./DeleteIntegrationCommand";
|
|
@@ -22,6 +24,7 @@ export * from "./DeleteProfileCommand";
|
|
|
22
24
|
export * from "./DeleteProfileKeyCommand";
|
|
23
25
|
export * from "./DeleteProfileObjectCommand";
|
|
24
26
|
export * from "./DeleteProfileObjectTypeCommand";
|
|
27
|
+
export * from "./DeleteRecommenderCommand";
|
|
25
28
|
export * from "./DeleteSegmentDefinitionCommand";
|
|
26
29
|
export * from "./DeleteWorkflowCommand";
|
|
27
30
|
export * from "./DetectProfileObjectTypeCommand";
|
|
@@ -30,14 +33,18 @@ export * from "./GetCalculatedAttributeDefinitionCommand";
|
|
|
30
33
|
export * from "./GetCalculatedAttributeForProfileCommand";
|
|
31
34
|
export * from "./GetDomainCommand";
|
|
32
35
|
export * from "./GetDomainLayoutCommand";
|
|
36
|
+
export * from "./GetDomainObjectTypeCommand";
|
|
33
37
|
export * from "./GetEventStreamCommand";
|
|
34
38
|
export * from "./GetEventTriggerCommand";
|
|
35
39
|
export * from "./GetIdentityResolutionJobCommand";
|
|
36
40
|
export * from "./GetIntegrationCommand";
|
|
37
41
|
export * from "./GetMatchesCommand";
|
|
42
|
+
export * from "./GetObjectTypeAttributeStatisticsCommand";
|
|
38
43
|
export * from "./GetProfileHistoryRecordCommand";
|
|
39
44
|
export * from "./GetProfileObjectTypeCommand";
|
|
40
45
|
export * from "./GetProfileObjectTypeTemplateCommand";
|
|
46
|
+
export * from "./GetProfileRecommendationsCommand";
|
|
47
|
+
export * from "./GetRecommenderCommand";
|
|
41
48
|
export * from "./GetSegmentDefinitionCommand";
|
|
42
49
|
export * from "./GetSegmentEstimateCommand";
|
|
43
50
|
export * from "./GetSegmentMembershipCommand";
|
|
@@ -51,28 +58,35 @@ export * from "./ListAccountIntegrationsCommand";
|
|
|
51
58
|
export * from "./ListCalculatedAttributeDefinitionsCommand";
|
|
52
59
|
export * from "./ListCalculatedAttributesForProfileCommand";
|
|
53
60
|
export * from "./ListDomainLayoutsCommand";
|
|
61
|
+
export * from "./ListDomainObjectTypesCommand";
|
|
54
62
|
export * from "./ListDomainsCommand";
|
|
55
63
|
export * from "./ListEventStreamsCommand";
|
|
56
64
|
export * from "./ListEventTriggersCommand";
|
|
57
65
|
export * from "./ListIdentityResolutionJobsCommand";
|
|
58
66
|
export * from "./ListIntegrationsCommand";
|
|
67
|
+
export * from "./ListObjectTypeAttributeValuesCommand";
|
|
59
68
|
export * from "./ListObjectTypeAttributesCommand";
|
|
60
69
|
export * from "./ListProfileAttributeValuesCommand";
|
|
61
70
|
export * from "./ListProfileHistoryRecordsCommand";
|
|
62
71
|
export * from "./ListProfileObjectTypeTemplatesCommand";
|
|
63
72
|
export * from "./ListProfileObjectTypesCommand";
|
|
64
73
|
export * from "./ListProfileObjectsCommand";
|
|
74
|
+
export * from "./ListRecommenderRecipesCommand";
|
|
75
|
+
export * from "./ListRecommendersCommand";
|
|
65
76
|
export * from "./ListRuleBasedMatchesCommand";
|
|
66
77
|
export * from "./ListSegmentDefinitionsCommand";
|
|
67
78
|
export * from "./ListTagsForResourceCommand";
|
|
68
79
|
export * from "./ListUploadJobsCommand";
|
|
69
80
|
export * from "./ListWorkflowsCommand";
|
|
70
81
|
export * from "./MergeProfilesCommand";
|
|
82
|
+
export * from "./PutDomainObjectTypeCommand";
|
|
71
83
|
export * from "./PutIntegrationCommand";
|
|
72
84
|
export * from "./PutProfileObjectCommand";
|
|
73
85
|
export * from "./PutProfileObjectTypeCommand";
|
|
74
86
|
export * from "./SearchProfilesCommand";
|
|
87
|
+
export * from "./StartRecommenderCommand";
|
|
75
88
|
export * from "./StartUploadJobCommand";
|
|
89
|
+
export * from "./StopRecommenderCommand";
|
|
76
90
|
export * from "./StopUploadJobCommand";
|
|
77
91
|
export * from "./TagResourceCommand";
|
|
78
92
|
export * from "./UntagResourceCommand";
|
|
@@ -81,3 +95,4 @@ export * from "./UpdateDomainCommand";
|
|
|
81
95
|
export * from "./UpdateDomainLayoutCommand";
|
|
82
96
|
export * from "./UpdateEventTriggerCommand";
|
|
83
97
|
export * from "./UpdateProfileCommand";
|
|
98
|
+
export * from "./UpdateRecommenderCommand";
|
|
@@ -308,6 +308,11 @@ export declare const Operator: {
|
|
|
308
308
|
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
309
309
|
};
|
|
310
310
|
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
311
|
+
export declare const ContentType: {
|
|
312
|
+
readonly NUMBER: "NUMBER";
|
|
313
|
+
readonly STRING: "STRING";
|
|
314
|
+
};
|
|
315
|
+
export type ContentType = (typeof ContentType)[keyof typeof ContentType];
|
|
311
316
|
export declare const Type: {
|
|
312
317
|
readonly ALL: "ALL";
|
|
313
318
|
readonly ANY: "ANY";
|
|
@@ -371,6 +376,15 @@ export declare const WorkflowType: {
|
|
|
371
376
|
readonly APPFLOW_INTEGRATION: "APPFLOW_INTEGRATION";
|
|
372
377
|
};
|
|
373
378
|
export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
|
|
379
|
+
export declare const RecommenderRecipeName: {
|
|
380
|
+
readonly FREQUENTLY_PAIRED_ITEMS: "frequently-paired-items";
|
|
381
|
+
readonly POPULAR_ITEMS: "popular-items";
|
|
382
|
+
readonly RECOMMENDED_FOR_YOU: "recommended-for-you";
|
|
383
|
+
readonly SIMILAR_ITEMS: "similar-items";
|
|
384
|
+
readonly TRENDING_NOW: "trending-now";
|
|
385
|
+
};
|
|
386
|
+
export type RecommenderRecipeName =
|
|
387
|
+
(typeof RecommenderRecipeName)[keyof typeof RecommenderRecipeName];
|
|
374
388
|
export declare const DateDimensionType: {
|
|
375
389
|
readonly AFTER: "AFTER";
|
|
376
390
|
readonly BEFORE: "BEFORE";
|
|
@@ -430,6 +444,11 @@ export declare const StandardIdentifier: {
|
|
|
430
444
|
};
|
|
431
445
|
export type StandardIdentifier =
|
|
432
446
|
(typeof StandardIdentifier)[keyof typeof StandardIdentifier];
|
|
447
|
+
export declare const FeatureType: {
|
|
448
|
+
readonly CATEGORICAL: "CATEGORICAL";
|
|
449
|
+
readonly TEXTUAL: "TEXTUAL";
|
|
450
|
+
};
|
|
451
|
+
export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
|
|
433
452
|
export declare const EventStreamDestinationStatus: {
|
|
434
453
|
readonly HEALTHY: "HEALTHY";
|
|
435
454
|
readonly UNHEALTHY: "UNHEALTHY";
|
|
@@ -453,6 +472,38 @@ export declare const IdentityResolutionJobStatus: {
|
|
|
453
472
|
};
|
|
454
473
|
export type IdentityResolutionJobStatus =
|
|
455
474
|
(typeof IdentityResolutionJobStatus)[keyof typeof IdentityResolutionJobStatus];
|
|
475
|
+
export declare const Scope: {
|
|
476
|
+
readonly DOMAIN: "DOMAIN";
|
|
477
|
+
readonly PROFILE: "PROFILE";
|
|
478
|
+
};
|
|
479
|
+
export type Scope = (typeof Scope)[keyof typeof Scope];
|
|
480
|
+
export declare const RecommenderStatus: {
|
|
481
|
+
readonly ACTIVE: "ACTIVE";
|
|
482
|
+
readonly DELETING: "DELETING";
|
|
483
|
+
readonly FAILED: "FAILED";
|
|
484
|
+
readonly INACTIVE: "INACTIVE";
|
|
485
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
486
|
+
readonly PENDING: "PENDING";
|
|
487
|
+
readonly STARTING: "STARTING";
|
|
488
|
+
readonly STOPPING: "STOPPING";
|
|
489
|
+
};
|
|
490
|
+
export type RecommenderStatus =
|
|
491
|
+
(typeof RecommenderStatus)[keyof typeof RecommenderStatus];
|
|
492
|
+
export declare const TrainingMetricName: {
|
|
493
|
+
readonly COVERAGE: "coverage";
|
|
494
|
+
readonly FRESHNESS: "freshness";
|
|
495
|
+
readonly HIT: "hit";
|
|
496
|
+
readonly POPULARITY: "popularity";
|
|
497
|
+
readonly RECALL: "recall";
|
|
498
|
+
readonly SIMILARITY: "similarity";
|
|
499
|
+
};
|
|
500
|
+
export type TrainingMetricName =
|
|
501
|
+
(typeof TrainingMetricName)[keyof typeof TrainingMetricName];
|
|
502
|
+
export declare const SegmentType: {
|
|
503
|
+
readonly CLASSIC: "CLASSIC";
|
|
504
|
+
readonly ENHANCED: "ENHANCED";
|
|
505
|
+
};
|
|
506
|
+
export type SegmentType = (typeof SegmentType)[keyof typeof SegmentType];
|
|
456
507
|
export declare const EstimateStatus: {
|
|
457
508
|
readonly FAILED: "FAILED";
|
|
458
509
|
readonly RUNNING: "RUNNING";
|