@aws-sdk/client-customer-profiles 3.398.0 → 3.404.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/dist-cjs/commands/CreateCalculatedAttributeDefinitionCommand.js +3 -2
- package/dist-cjs/commands/CreateIntegrationWorkflowCommand.js +2 -1
- package/dist-cjs/commands/CreateProfileCommand.js +2 -1
- package/dist-cjs/commands/GetCalculatedAttributeDefinitionCommand.js +2 -1
- package/dist-cjs/commands/GetProfileObjectTypeCommand.js +2 -1
- package/dist-cjs/commands/GetProfileObjectTypeTemplateCommand.js +2 -1
- package/dist-cjs/commands/ListProfileObjectTypesCommand.js +2 -1
- package/dist-cjs/commands/ListProfileObjectsCommand.js +2 -1
- package/dist-cjs/commands/PutIntegrationCommand.js +2 -1
- package/dist-cjs/commands/PutProfileObjectCommand.js +2 -1
- package/dist-cjs/commands/PutProfileObjectTypeCommand.js +3 -2
- package/dist-cjs/commands/SearchProfilesCommand.js +2 -1
- package/dist-cjs/commands/UpdateCalculatedAttributeDefinitionCommand.js +3 -2
- package/dist-cjs/commands/UpdateProfileCommand.js +2 -1
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +209 -1
- package/dist-es/commands/CreateCalculatedAttributeDefinitionCommand.js +3 -2
- package/dist-es/commands/CreateIntegrationWorkflowCommand.js +2 -1
- package/dist-es/commands/CreateProfileCommand.js +2 -1
- package/dist-es/commands/GetCalculatedAttributeDefinitionCommand.js +2 -1
- package/dist-es/commands/GetProfileObjectTypeCommand.js +2 -1
- package/dist-es/commands/GetProfileObjectTypeTemplateCommand.js +2 -1
- package/dist-es/commands/ListProfileObjectTypesCommand.js +2 -1
- package/dist-es/commands/ListProfileObjectsCommand.js +2 -1
- package/dist-es/commands/PutIntegrationCommand.js +2 -1
- package/dist-es/commands/PutProfileObjectCommand.js +2 -1
- package/dist-es/commands/PutProfileObjectTypeCommand.js +3 -2
- package/dist-es/commands/SearchProfilesCommand.js +2 -1
- package/dist-es/commands/UpdateCalculatedAttributeDefinitionCommand.js +3 -2
- package/dist-es/commands/UpdateProfileCommand.js +2 -1
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +181 -0
- package/dist-types/models/models_0.d.ts +104 -0
- package/dist-types/ts3.4/models/models_0.d.ts +72 -0
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class CreateCalculatedAttributeDefinitionCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -30,8 +31,8 @@ class CreateCalculatedAttributeDefinitionCommand extends smithy_client_1.Command
|
|
|
30
31
|
logger,
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
34
|
-
outputFilterSensitiveLog:
|
|
34
|
+
inputFilterSensitiveLog: models_0_1.CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
35
|
+
outputFilterSensitiveLog: models_0_1.CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
37
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class CreateIntegrationWorkflowCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -30,7 +31,7 @@ class CreateIntegrationWorkflowCommand extends smithy_client_1.Command {
|
|
|
30
31
|
logger,
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
34
|
+
inputFilterSensitiveLog: models_0_1.CreateIntegrationWorkflowRequestFilterSensitiveLog,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class CreateProfileCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -30,7 +31,7 @@ class CreateProfileCommand extends smithy_client_1.Command {
|
|
|
30
31
|
logger,
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
34
|
+
inputFilterSensitiveLog: models_0_1.CreateProfileRequestFilterSensitiveLog,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetCalculatedAttributeDefinitionCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,7 +32,7 @@ class GetCalculatedAttributeDefinitionCommand extends smithy_client_1.Command {
|
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
|
-
outputFilterSensitiveLog:
|
|
35
|
+
outputFilterSensitiveLog: models_0_1.GetCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
37
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetProfileObjectTypeCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,7 +32,7 @@ class GetProfileObjectTypeCommand extends smithy_client_1.Command {
|
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
|
-
outputFilterSensitiveLog:
|
|
35
|
+
outputFilterSensitiveLog: models_0_1.GetProfileObjectTypeResponseFilterSensitiveLog,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
37
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetProfileObjectTypeTemplateCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,7 +32,7 @@ class GetProfileObjectTypeTemplateCommand extends smithy_client_1.Command {
|
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
|
-
outputFilterSensitiveLog:
|
|
35
|
+
outputFilterSensitiveLog: models_0_1.GetProfileObjectTypeTemplateResponseFilterSensitiveLog,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
37
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListProfileObjectTypesCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,7 +32,7 @@ class ListProfileObjectTypesCommand extends smithy_client_1.Command {
|
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
|
-
outputFilterSensitiveLog:
|
|
35
|
+
outputFilterSensitiveLog: models_0_1.ListProfileObjectTypesResponseFilterSensitiveLog,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
37
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class ListProfileObjectsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,7 +32,7 @@ class ListProfileObjectsCommand extends smithy_client_1.Command {
|
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
|
-
outputFilterSensitiveLog:
|
|
35
|
+
outputFilterSensitiveLog: models_0_1.ListProfileObjectsResponseFilterSensitiveLog,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
37
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class PutIntegrationCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -30,7 +31,7 @@ class PutIntegrationCommand extends smithy_client_1.Command {
|
|
|
30
31
|
logger,
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
34
|
+
inputFilterSensitiveLog: models_0_1.PutIntegrationRequestFilterSensitiveLog,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class PutProfileObjectCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -30,7 +31,7 @@ class PutProfileObjectCommand extends smithy_client_1.Command {
|
|
|
30
31
|
logger,
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
34
|
+
inputFilterSensitiveLog: models_0_1.PutProfileObjectRequestFilterSensitiveLog,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class PutProfileObjectTypeCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -30,8 +31,8 @@ class PutProfileObjectTypeCommand extends smithy_client_1.Command {
|
|
|
30
31
|
logger,
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
34
|
-
outputFilterSensitiveLog:
|
|
34
|
+
inputFilterSensitiveLog: models_0_1.PutProfileObjectTypeRequestFilterSensitiveLog,
|
|
35
|
+
outputFilterSensitiveLog: models_0_1.PutProfileObjectTypeResponseFilterSensitiveLog,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
37
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class SearchProfilesCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -31,7 +32,7 @@ class SearchProfilesCommand extends smithy_client_1.Command {
|
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
|
-
outputFilterSensitiveLog:
|
|
35
|
+
outputFilterSensitiveLog: models_0_1.SearchProfilesResponseFilterSensitiveLog,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
37
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class UpdateCalculatedAttributeDefinitionCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -30,8 +31,8 @@ class UpdateCalculatedAttributeDefinitionCommand extends smithy_client_1.Command
|
|
|
30
31
|
logger,
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
34
|
-
outputFilterSensitiveLog:
|
|
34
|
+
inputFilterSensitiveLog: models_0_1.UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
35
|
+
outputFilterSensitiveLog: models_0_1.UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
37
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class UpdateProfileCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -30,7 +31,7 @@ class UpdateProfileCommand extends smithy_client_1.Command {
|
|
|
30
31
|
logger,
|
|
31
32
|
clientName,
|
|
32
33
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
34
|
+
inputFilterSensitiveLog: models_0_1.UpdateProfileRequestFilterSensitiveLog,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
35
36
|
};
|
|
36
37
|
const { requestHandler } = configuration;
|
|
@@ -3,5 +3,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ruleSet = void 0;
|
|
4
4
|
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
5
5
|
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
6
|
-
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, {
|
|
6
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }, { conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ endpoint: { url: "https://profile-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ endpoint: { url: "https://profile-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ endpoint: { url: "https://profile.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { endpoint: { url: "https://profile.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] };
|
|
7
7
|
exports.ruleSet = _data;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LogicalOperator = exports.MatchType = exports.StandardIdentifier = exports.FieldContentType = exports.IdentityResolutionJobStatus = exports.EventStreamState = exports.EventStreamDestinationStatus = exports.PartyType = exports.Gender = exports.WorkflowType = exports.RuleBasedMatchingStatus = exports.JobScheduleDayOfTheWeek = exports.Statistic = exports.Operator = exports.Unit = exports.ConflictResolvingModel = exports.AttributeMatchingModel = exports.Status = exports.TriggerType = exports.DataPullMode = exports.TaskType = exports.OperatorPropertiesKeys = exports.ZendeskConnectorOperator = exports.ServiceNowConnectorOperator = exports.SalesforceConnectorOperator = exports.S3ConnectorOperator = exports.MarketoConnectorOperator = exports.SourceConnectorType = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.BadRequestException = exports.AccessDeniedException = void 0;
|
|
3
|
+
exports.PutIntegrationRequestFilterSensitiveLog = exports.ListProfileObjectTypesResponseFilterSensitiveLog = exports.ListProfileObjectsResponseFilterSensitiveLog = exports.ListProfileObjectsItemFilterSensitiveLog = exports.GetProfileObjectTypeTemplateResponseFilterSensitiveLog = exports.GetProfileObjectTypeResponseFilterSensitiveLog = exports.GetCalculatedAttributeDefinitionResponseFilterSensitiveLog = exports.CreateProfileRequestFilterSensitiveLog = exports.CreateIntegrationWorkflowRequestFilterSensitiveLog = exports.IntegrationConfigFilterSensitiveLog = exports.CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog = exports.CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog = exports.ConditionsFilterSensitiveLog = exports.AttributeDetailsFilterSensitiveLog = exports.AppflowIntegrationFilterSensitiveLog = exports.FlowDefinitionFilterSensitiveLog = exports.AddressFilterSensitiveLog = exports.LogicalOperator = exports.MatchType = exports.StandardIdentifier = exports.FieldContentType = exports.IdentityResolutionJobStatus = exports.EventStreamState = exports.EventStreamDestinationStatus = exports.PartyType = exports.Gender = exports.WorkflowType = exports.RuleBasedMatchingStatus = exports.JobScheduleDayOfTheWeek = exports.Statistic = exports.Operator = exports.Unit = exports.ConflictResolvingModel = exports.AttributeMatchingModel = exports.Status = exports.TriggerType = exports.DataPullMode = exports.TaskType = exports.OperatorPropertiesKeys = exports.ZendeskConnectorOperator = exports.ServiceNowConnectorOperator = exports.SalesforceConnectorOperator = exports.S3ConnectorOperator = exports.MarketoConnectorOperator = exports.SourceConnectorType = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.BadRequestException = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.UpdateProfileRequestFilterSensitiveLog = exports.UpdateAddressFilterSensitiveLog = exports.UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog = exports.UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog = exports.SearchProfilesResponseFilterSensitiveLog = exports.ProfileFilterSensitiveLog = exports.PutProfileObjectTypeResponseFilterSensitiveLog = exports.PutProfileObjectTypeRequestFilterSensitiveLog = exports.PutProfileObjectRequestFilterSensitiveLog = void 0;
|
|
5
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
4
6
|
const CustomerProfilesServiceException_1 = require("./CustomerProfilesServiceException");
|
|
5
7
|
class AccessDeniedException extends CustomerProfilesServiceException_1.CustomerProfilesServiceException {
|
|
6
8
|
constructor(opts) {
|
|
@@ -320,3 +322,209 @@ exports.LogicalOperator = {
|
|
|
320
322
|
AND: "AND",
|
|
321
323
|
OR: "OR",
|
|
322
324
|
};
|
|
325
|
+
const AddressFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
});
|
|
328
|
+
exports.AddressFilterSensitiveLog = AddressFilterSensitiveLog;
|
|
329
|
+
const FlowDefinitionFilterSensitiveLog = (obj) => ({
|
|
330
|
+
...obj,
|
|
331
|
+
});
|
|
332
|
+
exports.FlowDefinitionFilterSensitiveLog = FlowDefinitionFilterSensitiveLog;
|
|
333
|
+
const AppflowIntegrationFilterSensitiveLog = (obj) => ({
|
|
334
|
+
...obj,
|
|
335
|
+
...(obj.FlowDefinition && { FlowDefinition: smithy_client_1.SENSITIVE_STRING }),
|
|
336
|
+
});
|
|
337
|
+
exports.AppflowIntegrationFilterSensitiveLog = AppflowIntegrationFilterSensitiveLog;
|
|
338
|
+
const AttributeDetailsFilterSensitiveLog = (obj) => ({
|
|
339
|
+
...obj,
|
|
340
|
+
});
|
|
341
|
+
exports.AttributeDetailsFilterSensitiveLog = AttributeDetailsFilterSensitiveLog;
|
|
342
|
+
const ConditionsFilterSensitiveLog = (obj) => ({
|
|
343
|
+
...obj,
|
|
344
|
+
});
|
|
345
|
+
exports.ConditionsFilterSensitiveLog = ConditionsFilterSensitiveLog;
|
|
346
|
+
const CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
...(obj.AttributeDetails && { AttributeDetails: smithy_client_1.SENSITIVE_STRING }),
|
|
349
|
+
...(obj.Conditions && { Conditions: smithy_client_1.SENSITIVE_STRING }),
|
|
350
|
+
...(obj.Statistic && { Statistic: smithy_client_1.SENSITIVE_STRING }),
|
|
351
|
+
});
|
|
352
|
+
exports.CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog = CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog;
|
|
353
|
+
const CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog = (obj) => ({
|
|
354
|
+
...obj,
|
|
355
|
+
...(obj.AttributeDetails && { AttributeDetails: smithy_client_1.SENSITIVE_STRING }),
|
|
356
|
+
...(obj.Conditions && { Conditions: smithy_client_1.SENSITIVE_STRING }),
|
|
357
|
+
...(obj.Statistic && { Statistic: smithy_client_1.SENSITIVE_STRING }),
|
|
358
|
+
});
|
|
359
|
+
exports.CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog = CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog;
|
|
360
|
+
const IntegrationConfigFilterSensitiveLog = (obj) => ({
|
|
361
|
+
...obj,
|
|
362
|
+
...(obj.AppflowIntegration && { AppflowIntegration: (0, exports.AppflowIntegrationFilterSensitiveLog)(obj.AppflowIntegration) }),
|
|
363
|
+
});
|
|
364
|
+
exports.IntegrationConfigFilterSensitiveLog = IntegrationConfigFilterSensitiveLog;
|
|
365
|
+
const CreateIntegrationWorkflowRequestFilterSensitiveLog = (obj) => ({
|
|
366
|
+
...obj,
|
|
367
|
+
...(obj.IntegrationConfig && { IntegrationConfig: (0, exports.IntegrationConfigFilterSensitiveLog)(obj.IntegrationConfig) }),
|
|
368
|
+
});
|
|
369
|
+
exports.CreateIntegrationWorkflowRequestFilterSensitiveLog = CreateIntegrationWorkflowRequestFilterSensitiveLog;
|
|
370
|
+
const CreateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
...(obj.AccountNumber && { AccountNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
373
|
+
...(obj.AdditionalInformation && { AdditionalInformation: smithy_client_1.SENSITIVE_STRING }),
|
|
374
|
+
...(obj.PartyType && { PartyType: smithy_client_1.SENSITIVE_STRING }),
|
|
375
|
+
...(obj.BusinessName && { BusinessName: smithy_client_1.SENSITIVE_STRING }),
|
|
376
|
+
...(obj.FirstName && { FirstName: smithy_client_1.SENSITIVE_STRING }),
|
|
377
|
+
...(obj.MiddleName && { MiddleName: smithy_client_1.SENSITIVE_STRING }),
|
|
378
|
+
...(obj.LastName && { LastName: smithy_client_1.SENSITIVE_STRING }),
|
|
379
|
+
...(obj.BirthDate && { BirthDate: smithy_client_1.SENSITIVE_STRING }),
|
|
380
|
+
...(obj.Gender && { Gender: smithy_client_1.SENSITIVE_STRING }),
|
|
381
|
+
...(obj.PhoneNumber && { PhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
382
|
+
...(obj.MobilePhoneNumber && { MobilePhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
383
|
+
...(obj.HomePhoneNumber && { HomePhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
384
|
+
...(obj.BusinessPhoneNumber && { BusinessPhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
385
|
+
...(obj.EmailAddress && { EmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
386
|
+
...(obj.PersonalEmailAddress && { PersonalEmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
387
|
+
...(obj.BusinessEmailAddress && { BusinessEmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
388
|
+
...(obj.Address && { Address: smithy_client_1.SENSITIVE_STRING }),
|
|
389
|
+
...(obj.ShippingAddress && { ShippingAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
390
|
+
...(obj.MailingAddress && { MailingAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
391
|
+
...(obj.BillingAddress && { BillingAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
392
|
+
...(obj.Attributes && { Attributes: smithy_client_1.SENSITIVE_STRING }),
|
|
393
|
+
...(obj.PartyTypeString && { PartyTypeString: smithy_client_1.SENSITIVE_STRING }),
|
|
394
|
+
...(obj.GenderString && { GenderString: smithy_client_1.SENSITIVE_STRING }),
|
|
395
|
+
});
|
|
396
|
+
exports.CreateProfileRequestFilterSensitiveLog = CreateProfileRequestFilterSensitiveLog;
|
|
397
|
+
const GetCalculatedAttributeDefinitionResponseFilterSensitiveLog = (obj) => ({
|
|
398
|
+
...obj,
|
|
399
|
+
...(obj.Statistic && { Statistic: smithy_client_1.SENSITIVE_STRING }),
|
|
400
|
+
...(obj.Conditions && { Conditions: smithy_client_1.SENSITIVE_STRING }),
|
|
401
|
+
...(obj.AttributeDetails && { AttributeDetails: smithy_client_1.SENSITIVE_STRING }),
|
|
402
|
+
});
|
|
403
|
+
exports.GetCalculatedAttributeDefinitionResponseFilterSensitiveLog = GetCalculatedAttributeDefinitionResponseFilterSensitiveLog;
|
|
404
|
+
const GetProfileObjectTypeResponseFilterSensitiveLog = (obj) => ({
|
|
405
|
+
...obj,
|
|
406
|
+
...(obj.Description && { Description: smithy_client_1.SENSITIVE_STRING }),
|
|
407
|
+
...(obj.Fields && { Fields: smithy_client_1.SENSITIVE_STRING }),
|
|
408
|
+
...(obj.Keys && { Keys: smithy_client_1.SENSITIVE_STRING }),
|
|
409
|
+
});
|
|
410
|
+
exports.GetProfileObjectTypeResponseFilterSensitiveLog = GetProfileObjectTypeResponseFilterSensitiveLog;
|
|
411
|
+
const GetProfileObjectTypeTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
412
|
+
...obj,
|
|
413
|
+
...(obj.Fields && { Fields: smithy_client_1.SENSITIVE_STRING }),
|
|
414
|
+
...(obj.Keys && { Keys: smithy_client_1.SENSITIVE_STRING }),
|
|
415
|
+
});
|
|
416
|
+
exports.GetProfileObjectTypeTemplateResponseFilterSensitiveLog = GetProfileObjectTypeTemplateResponseFilterSensitiveLog;
|
|
417
|
+
const ListProfileObjectsItemFilterSensitiveLog = (obj) => ({
|
|
418
|
+
...obj,
|
|
419
|
+
...(obj.Object && { Object: smithy_client_1.SENSITIVE_STRING }),
|
|
420
|
+
});
|
|
421
|
+
exports.ListProfileObjectsItemFilterSensitiveLog = ListProfileObjectsItemFilterSensitiveLog;
|
|
422
|
+
const ListProfileObjectsResponseFilterSensitiveLog = (obj) => ({
|
|
423
|
+
...obj,
|
|
424
|
+
...(obj.Items && { Items: obj.Items.map((item) => (0, exports.ListProfileObjectsItemFilterSensitiveLog)(item)) }),
|
|
425
|
+
});
|
|
426
|
+
exports.ListProfileObjectsResponseFilterSensitiveLog = ListProfileObjectsResponseFilterSensitiveLog;
|
|
427
|
+
const ListProfileObjectTypesResponseFilterSensitiveLog = (obj) => ({
|
|
428
|
+
...obj,
|
|
429
|
+
...(obj.Items && { Items: smithy_client_1.SENSITIVE_STRING }),
|
|
430
|
+
});
|
|
431
|
+
exports.ListProfileObjectTypesResponseFilterSensitiveLog = ListProfileObjectTypesResponseFilterSensitiveLog;
|
|
432
|
+
const PutIntegrationRequestFilterSensitiveLog = (obj) => ({
|
|
433
|
+
...obj,
|
|
434
|
+
...(obj.FlowDefinition && { FlowDefinition: smithy_client_1.SENSITIVE_STRING }),
|
|
435
|
+
});
|
|
436
|
+
exports.PutIntegrationRequestFilterSensitiveLog = PutIntegrationRequestFilterSensitiveLog;
|
|
437
|
+
const PutProfileObjectRequestFilterSensitiveLog = (obj) => ({
|
|
438
|
+
...obj,
|
|
439
|
+
...(obj.Object && { Object: smithy_client_1.SENSITIVE_STRING }),
|
|
440
|
+
});
|
|
441
|
+
exports.PutProfileObjectRequestFilterSensitiveLog = PutProfileObjectRequestFilterSensitiveLog;
|
|
442
|
+
const PutProfileObjectTypeRequestFilterSensitiveLog = (obj) => ({
|
|
443
|
+
...obj,
|
|
444
|
+
...(obj.Description && { Description: smithy_client_1.SENSITIVE_STRING }),
|
|
445
|
+
...(obj.Fields && { Fields: smithy_client_1.SENSITIVE_STRING }),
|
|
446
|
+
...(obj.Keys && { Keys: smithy_client_1.SENSITIVE_STRING }),
|
|
447
|
+
});
|
|
448
|
+
exports.PutProfileObjectTypeRequestFilterSensitiveLog = PutProfileObjectTypeRequestFilterSensitiveLog;
|
|
449
|
+
const PutProfileObjectTypeResponseFilterSensitiveLog = (obj) => ({
|
|
450
|
+
...obj,
|
|
451
|
+
...(obj.Description && { Description: smithy_client_1.SENSITIVE_STRING }),
|
|
452
|
+
...(obj.Fields && { Fields: smithy_client_1.SENSITIVE_STRING }),
|
|
453
|
+
...(obj.Keys && { Keys: smithy_client_1.SENSITIVE_STRING }),
|
|
454
|
+
});
|
|
455
|
+
exports.PutProfileObjectTypeResponseFilterSensitiveLog = PutProfileObjectTypeResponseFilterSensitiveLog;
|
|
456
|
+
const ProfileFilterSensitiveLog = (obj) => ({
|
|
457
|
+
...obj,
|
|
458
|
+
...(obj.AccountNumber && { AccountNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
459
|
+
...(obj.AdditionalInformation && { AdditionalInformation: smithy_client_1.SENSITIVE_STRING }),
|
|
460
|
+
...(obj.PartyType && { PartyType: smithy_client_1.SENSITIVE_STRING }),
|
|
461
|
+
...(obj.BusinessName && { BusinessName: smithy_client_1.SENSITIVE_STRING }),
|
|
462
|
+
...(obj.FirstName && { FirstName: smithy_client_1.SENSITIVE_STRING }),
|
|
463
|
+
...(obj.MiddleName && { MiddleName: smithy_client_1.SENSITIVE_STRING }),
|
|
464
|
+
...(obj.LastName && { LastName: smithy_client_1.SENSITIVE_STRING }),
|
|
465
|
+
...(obj.BirthDate && { BirthDate: smithy_client_1.SENSITIVE_STRING }),
|
|
466
|
+
...(obj.Gender && { Gender: smithy_client_1.SENSITIVE_STRING }),
|
|
467
|
+
...(obj.PhoneNumber && { PhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
468
|
+
...(obj.MobilePhoneNumber && { MobilePhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
469
|
+
...(obj.HomePhoneNumber && { HomePhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
470
|
+
...(obj.BusinessPhoneNumber && { BusinessPhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
471
|
+
...(obj.EmailAddress && { EmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
472
|
+
...(obj.PersonalEmailAddress && { PersonalEmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
473
|
+
...(obj.BusinessEmailAddress && { BusinessEmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
474
|
+
...(obj.Address && { Address: smithy_client_1.SENSITIVE_STRING }),
|
|
475
|
+
...(obj.ShippingAddress && { ShippingAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
476
|
+
...(obj.MailingAddress && { MailingAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
477
|
+
...(obj.BillingAddress && { BillingAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
478
|
+
...(obj.Attributes && { Attributes: smithy_client_1.SENSITIVE_STRING }),
|
|
479
|
+
...(obj.PartyTypeString && { PartyTypeString: smithy_client_1.SENSITIVE_STRING }),
|
|
480
|
+
...(obj.GenderString && { GenderString: smithy_client_1.SENSITIVE_STRING }),
|
|
481
|
+
});
|
|
482
|
+
exports.ProfileFilterSensitiveLog = ProfileFilterSensitiveLog;
|
|
483
|
+
const SearchProfilesResponseFilterSensitiveLog = (obj) => ({
|
|
484
|
+
...obj,
|
|
485
|
+
...(obj.Items && { Items: obj.Items.map((item) => (0, exports.ProfileFilterSensitiveLog)(item)) }),
|
|
486
|
+
});
|
|
487
|
+
exports.SearchProfilesResponseFilterSensitiveLog = SearchProfilesResponseFilterSensitiveLog;
|
|
488
|
+
const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog = (obj) => ({
|
|
489
|
+
...obj,
|
|
490
|
+
...(obj.Conditions && { Conditions: smithy_client_1.SENSITIVE_STRING }),
|
|
491
|
+
});
|
|
492
|
+
exports.UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog = UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog;
|
|
493
|
+
const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog = (obj) => ({
|
|
494
|
+
...obj,
|
|
495
|
+
...(obj.Statistic && { Statistic: smithy_client_1.SENSITIVE_STRING }),
|
|
496
|
+
...(obj.Conditions && { Conditions: smithy_client_1.SENSITIVE_STRING }),
|
|
497
|
+
...(obj.AttributeDetails && { AttributeDetails: smithy_client_1.SENSITIVE_STRING }),
|
|
498
|
+
});
|
|
499
|
+
exports.UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog = UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog;
|
|
500
|
+
const UpdateAddressFilterSensitiveLog = (obj) => ({
|
|
501
|
+
...obj,
|
|
502
|
+
});
|
|
503
|
+
exports.UpdateAddressFilterSensitiveLog = UpdateAddressFilterSensitiveLog;
|
|
504
|
+
const UpdateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
505
|
+
...obj,
|
|
506
|
+
...(obj.AdditionalInformation && { AdditionalInformation: smithy_client_1.SENSITIVE_STRING }),
|
|
507
|
+
...(obj.AccountNumber && { AccountNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
508
|
+
...(obj.PartyType && { PartyType: smithy_client_1.SENSITIVE_STRING }),
|
|
509
|
+
...(obj.BusinessName && { BusinessName: smithy_client_1.SENSITIVE_STRING }),
|
|
510
|
+
...(obj.FirstName && { FirstName: smithy_client_1.SENSITIVE_STRING }),
|
|
511
|
+
...(obj.MiddleName && { MiddleName: smithy_client_1.SENSITIVE_STRING }),
|
|
512
|
+
...(obj.LastName && { LastName: smithy_client_1.SENSITIVE_STRING }),
|
|
513
|
+
...(obj.BirthDate && { BirthDate: smithy_client_1.SENSITIVE_STRING }),
|
|
514
|
+
...(obj.Gender && { Gender: smithy_client_1.SENSITIVE_STRING }),
|
|
515
|
+
...(obj.PhoneNumber && { PhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
516
|
+
...(obj.MobilePhoneNumber && { MobilePhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
517
|
+
...(obj.HomePhoneNumber && { HomePhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
518
|
+
...(obj.BusinessPhoneNumber && { BusinessPhoneNumber: smithy_client_1.SENSITIVE_STRING }),
|
|
519
|
+
...(obj.EmailAddress && { EmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
520
|
+
...(obj.PersonalEmailAddress && { PersonalEmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
521
|
+
...(obj.BusinessEmailAddress && { BusinessEmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
522
|
+
...(obj.Address && { Address: smithy_client_1.SENSITIVE_STRING }),
|
|
523
|
+
...(obj.ShippingAddress && { ShippingAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
524
|
+
...(obj.MailingAddress && { MailingAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
525
|
+
...(obj.BillingAddress && { BillingAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
526
|
+
...(obj.Attributes && { Attributes: smithy_client_1.SENSITIVE_STRING }),
|
|
527
|
+
...(obj.PartyTypeString && { PartyTypeString: smithy_client_1.SENSITIVE_STRING }),
|
|
528
|
+
...(obj.GenderString && { GenderString: smithy_client_1.SENSITIVE_STRING }),
|
|
529
|
+
});
|
|
530
|
+
exports.UpdateProfileRequestFilterSensitiveLog = UpdateProfileRequestFilterSensitiveLog;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog, CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_CreateCalculatedAttributeDefinitionCommand, se_CreateCalculatedAttributeDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class CreateCalculatedAttributeDefinitionCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class CreateCalculatedAttributeDefinitionCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { CreateIntegrationWorkflowRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_CreateIntegrationWorkflowCommand, se_CreateIntegrationWorkflowCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class CreateIntegrationWorkflowCommand extends $Command {
|
|
@@ -27,7 +28,7 @@ export class CreateIntegrationWorkflowCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: CreateIntegrationWorkflowRequestFilterSensitiveLog,
|
|
31
32
|
outputFilterSensitiveLog: (_) => _,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { CreateProfileRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_CreateProfileCommand, se_CreateProfileCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class CreateProfileCommand extends $Command {
|
|
@@ -27,7 +28,7 @@ export class CreateProfileCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: CreateProfileRequestFilterSensitiveLog,
|
|
31
32
|
outputFilterSensitiveLog: (_) => _,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { GetCalculatedAttributeDefinitionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_GetCalculatedAttributeDefinitionCommand, se_GetCalculatedAttributeDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class GetCalculatedAttributeDefinitionCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class GetCalculatedAttributeDefinitionCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: GetCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { GetProfileObjectTypeResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_GetProfileObjectTypeCommand, se_GetProfileObjectTypeCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class GetProfileObjectTypeCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class GetProfileObjectTypeCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: GetProfileObjectTypeResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { GetProfileObjectTypeTemplateResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_GetProfileObjectTypeTemplateCommand, se_GetProfileObjectTypeTemplateCommand, } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class GetProfileObjectTypeTemplateCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class GetProfileObjectTypeTemplateCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: GetProfileObjectTypeTemplateResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { ListProfileObjectTypesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_ListProfileObjectTypesCommand, se_ListProfileObjectTypesCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class ListProfileObjectTypesCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class ListProfileObjectTypesCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: ListProfileObjectTypesResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { ListProfileObjectsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_ListProfileObjectsCommand, se_ListProfileObjectsCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class ListProfileObjectsCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class ListProfileObjectsCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: ListProfileObjectsResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { PutIntegrationRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_PutIntegrationCommand, se_PutIntegrationCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class PutIntegrationCommand extends $Command {
|
|
@@ -27,7 +28,7 @@ export class PutIntegrationCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: PutIntegrationRequestFilterSensitiveLog,
|
|
31
32
|
outputFilterSensitiveLog: (_) => _,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { PutProfileObjectRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_PutProfileObjectCommand, se_PutProfileObjectCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class PutProfileObjectCommand extends $Command {
|
|
@@ -27,7 +28,7 @@ export class PutProfileObjectCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: PutProfileObjectRequestFilterSensitiveLog,
|
|
31
32
|
outputFilterSensitiveLog: (_) => _,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { PutProfileObjectTypeRequestFilterSensitiveLog, PutProfileObjectTypeResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_PutProfileObjectTypeCommand, se_PutProfileObjectTypeCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class PutProfileObjectTypeCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class PutProfileObjectTypeCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: PutProfileObjectTypeRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: PutProfileObjectTypeResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SearchProfilesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_SearchProfilesCommand, se_SearchProfilesCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class SearchProfilesCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class SearchProfilesCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: SearchProfilesResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog, UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateCalculatedAttributeDefinitionCommand, se_UpdateCalculatedAttributeDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateCalculatedAttributeDefinitionCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class UpdateCalculatedAttributeDefinitionCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateProfileRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateProfileCommand, se_UpdateProfileCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateProfileCommand extends $Command {
|
|
@@ -27,7 +28,7 @@ export class UpdateProfileCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: UpdateProfileRequestFilterSensitiveLog,
|
|
31
32
|
outputFilterSensitiveLog: (_) => _,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
2
2
|
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
3
|
-
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, {
|
|
3
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }, { conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ endpoint: { url: "https://profile-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ endpoint: { url: "https://profile-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ endpoint: { url: "https://profile.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { endpoint: { url: "https://profile.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] };
|
|
4
4
|
export const ruleSet = _data;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
1
2
|
import { CustomerProfilesServiceException as __BaseException } from "./CustomerProfilesServiceException";
|
|
2
3
|
export class AccessDeniedException extends __BaseException {
|
|
3
4
|
constructor(opts) {
|
|
@@ -312,3 +313,183 @@ export const LogicalOperator = {
|
|
|
312
313
|
AND: "AND",
|
|
313
314
|
OR: "OR",
|
|
314
315
|
};
|
|
316
|
+
export const AddressFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
});
|
|
319
|
+
export const FlowDefinitionFilterSensitiveLog = (obj) => ({
|
|
320
|
+
...obj,
|
|
321
|
+
});
|
|
322
|
+
export const AppflowIntegrationFilterSensitiveLog = (obj) => ({
|
|
323
|
+
...obj,
|
|
324
|
+
...(obj.FlowDefinition && { FlowDefinition: SENSITIVE_STRING }),
|
|
325
|
+
});
|
|
326
|
+
export const AttributeDetailsFilterSensitiveLog = (obj) => ({
|
|
327
|
+
...obj,
|
|
328
|
+
});
|
|
329
|
+
export const ConditionsFilterSensitiveLog = (obj) => ({
|
|
330
|
+
...obj,
|
|
331
|
+
});
|
|
332
|
+
export const CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog = (obj) => ({
|
|
333
|
+
...obj,
|
|
334
|
+
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
|
|
335
|
+
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
|
|
336
|
+
...(obj.Statistic && { Statistic: SENSITIVE_STRING }),
|
|
337
|
+
});
|
|
338
|
+
export const CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog = (obj) => ({
|
|
339
|
+
...obj,
|
|
340
|
+
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
|
|
341
|
+
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
|
|
342
|
+
...(obj.Statistic && { Statistic: SENSITIVE_STRING }),
|
|
343
|
+
});
|
|
344
|
+
export const IntegrationConfigFilterSensitiveLog = (obj) => ({
|
|
345
|
+
...obj,
|
|
346
|
+
...(obj.AppflowIntegration && { AppflowIntegration: AppflowIntegrationFilterSensitiveLog(obj.AppflowIntegration) }),
|
|
347
|
+
});
|
|
348
|
+
export const CreateIntegrationWorkflowRequestFilterSensitiveLog = (obj) => ({
|
|
349
|
+
...obj,
|
|
350
|
+
...(obj.IntegrationConfig && { IntegrationConfig: IntegrationConfigFilterSensitiveLog(obj.IntegrationConfig) }),
|
|
351
|
+
});
|
|
352
|
+
export const CreateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
...(obj.AccountNumber && { AccountNumber: SENSITIVE_STRING }),
|
|
355
|
+
...(obj.AdditionalInformation && { AdditionalInformation: SENSITIVE_STRING }),
|
|
356
|
+
...(obj.PartyType && { PartyType: SENSITIVE_STRING }),
|
|
357
|
+
...(obj.BusinessName && { BusinessName: SENSITIVE_STRING }),
|
|
358
|
+
...(obj.FirstName && { FirstName: SENSITIVE_STRING }),
|
|
359
|
+
...(obj.MiddleName && { MiddleName: SENSITIVE_STRING }),
|
|
360
|
+
...(obj.LastName && { LastName: SENSITIVE_STRING }),
|
|
361
|
+
...(obj.BirthDate && { BirthDate: SENSITIVE_STRING }),
|
|
362
|
+
...(obj.Gender && { Gender: SENSITIVE_STRING }),
|
|
363
|
+
...(obj.PhoneNumber && { PhoneNumber: SENSITIVE_STRING }),
|
|
364
|
+
...(obj.MobilePhoneNumber && { MobilePhoneNumber: SENSITIVE_STRING }),
|
|
365
|
+
...(obj.HomePhoneNumber && { HomePhoneNumber: SENSITIVE_STRING }),
|
|
366
|
+
...(obj.BusinessPhoneNumber && { BusinessPhoneNumber: SENSITIVE_STRING }),
|
|
367
|
+
...(obj.EmailAddress && { EmailAddress: SENSITIVE_STRING }),
|
|
368
|
+
...(obj.PersonalEmailAddress && { PersonalEmailAddress: SENSITIVE_STRING }),
|
|
369
|
+
...(obj.BusinessEmailAddress && { BusinessEmailAddress: SENSITIVE_STRING }),
|
|
370
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
371
|
+
...(obj.ShippingAddress && { ShippingAddress: SENSITIVE_STRING }),
|
|
372
|
+
...(obj.MailingAddress && { MailingAddress: SENSITIVE_STRING }),
|
|
373
|
+
...(obj.BillingAddress && { BillingAddress: SENSITIVE_STRING }),
|
|
374
|
+
...(obj.Attributes && { Attributes: SENSITIVE_STRING }),
|
|
375
|
+
...(obj.PartyTypeString && { PartyTypeString: SENSITIVE_STRING }),
|
|
376
|
+
...(obj.GenderString && { GenderString: SENSITIVE_STRING }),
|
|
377
|
+
});
|
|
378
|
+
export const GetCalculatedAttributeDefinitionResponseFilterSensitiveLog = (obj) => ({
|
|
379
|
+
...obj,
|
|
380
|
+
...(obj.Statistic && { Statistic: SENSITIVE_STRING }),
|
|
381
|
+
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
|
|
382
|
+
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
|
|
383
|
+
});
|
|
384
|
+
export const GetProfileObjectTypeResponseFilterSensitiveLog = (obj) => ({
|
|
385
|
+
...obj,
|
|
386
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
387
|
+
...(obj.Fields && { Fields: SENSITIVE_STRING }),
|
|
388
|
+
...(obj.Keys && { Keys: SENSITIVE_STRING }),
|
|
389
|
+
});
|
|
390
|
+
export const GetProfileObjectTypeTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
391
|
+
...obj,
|
|
392
|
+
...(obj.Fields && { Fields: SENSITIVE_STRING }),
|
|
393
|
+
...(obj.Keys && { Keys: SENSITIVE_STRING }),
|
|
394
|
+
});
|
|
395
|
+
export const ListProfileObjectsItemFilterSensitiveLog = (obj) => ({
|
|
396
|
+
...obj,
|
|
397
|
+
...(obj.Object && { Object: SENSITIVE_STRING }),
|
|
398
|
+
});
|
|
399
|
+
export const ListProfileObjectsResponseFilterSensitiveLog = (obj) => ({
|
|
400
|
+
...obj,
|
|
401
|
+
...(obj.Items && { Items: obj.Items.map((item) => ListProfileObjectsItemFilterSensitiveLog(item)) }),
|
|
402
|
+
});
|
|
403
|
+
export const ListProfileObjectTypesResponseFilterSensitiveLog = (obj) => ({
|
|
404
|
+
...obj,
|
|
405
|
+
...(obj.Items && { Items: SENSITIVE_STRING }),
|
|
406
|
+
});
|
|
407
|
+
export const PutIntegrationRequestFilterSensitiveLog = (obj) => ({
|
|
408
|
+
...obj,
|
|
409
|
+
...(obj.FlowDefinition && { FlowDefinition: SENSITIVE_STRING }),
|
|
410
|
+
});
|
|
411
|
+
export const PutProfileObjectRequestFilterSensitiveLog = (obj) => ({
|
|
412
|
+
...obj,
|
|
413
|
+
...(obj.Object && { Object: SENSITIVE_STRING }),
|
|
414
|
+
});
|
|
415
|
+
export const PutProfileObjectTypeRequestFilterSensitiveLog = (obj) => ({
|
|
416
|
+
...obj,
|
|
417
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
418
|
+
...(obj.Fields && { Fields: SENSITIVE_STRING }),
|
|
419
|
+
...(obj.Keys && { Keys: SENSITIVE_STRING }),
|
|
420
|
+
});
|
|
421
|
+
export const PutProfileObjectTypeResponseFilterSensitiveLog = (obj) => ({
|
|
422
|
+
...obj,
|
|
423
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
424
|
+
...(obj.Fields && { Fields: SENSITIVE_STRING }),
|
|
425
|
+
...(obj.Keys && { Keys: SENSITIVE_STRING }),
|
|
426
|
+
});
|
|
427
|
+
export const ProfileFilterSensitiveLog = (obj) => ({
|
|
428
|
+
...obj,
|
|
429
|
+
...(obj.AccountNumber && { AccountNumber: SENSITIVE_STRING }),
|
|
430
|
+
...(obj.AdditionalInformation && { AdditionalInformation: SENSITIVE_STRING }),
|
|
431
|
+
...(obj.PartyType && { PartyType: SENSITIVE_STRING }),
|
|
432
|
+
...(obj.BusinessName && { BusinessName: SENSITIVE_STRING }),
|
|
433
|
+
...(obj.FirstName && { FirstName: SENSITIVE_STRING }),
|
|
434
|
+
...(obj.MiddleName && { MiddleName: SENSITIVE_STRING }),
|
|
435
|
+
...(obj.LastName && { LastName: SENSITIVE_STRING }),
|
|
436
|
+
...(obj.BirthDate && { BirthDate: SENSITIVE_STRING }),
|
|
437
|
+
...(obj.Gender && { Gender: SENSITIVE_STRING }),
|
|
438
|
+
...(obj.PhoneNumber && { PhoneNumber: SENSITIVE_STRING }),
|
|
439
|
+
...(obj.MobilePhoneNumber && { MobilePhoneNumber: SENSITIVE_STRING }),
|
|
440
|
+
...(obj.HomePhoneNumber && { HomePhoneNumber: SENSITIVE_STRING }),
|
|
441
|
+
...(obj.BusinessPhoneNumber && { BusinessPhoneNumber: SENSITIVE_STRING }),
|
|
442
|
+
...(obj.EmailAddress && { EmailAddress: SENSITIVE_STRING }),
|
|
443
|
+
...(obj.PersonalEmailAddress && { PersonalEmailAddress: SENSITIVE_STRING }),
|
|
444
|
+
...(obj.BusinessEmailAddress && { BusinessEmailAddress: SENSITIVE_STRING }),
|
|
445
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
446
|
+
...(obj.ShippingAddress && { ShippingAddress: SENSITIVE_STRING }),
|
|
447
|
+
...(obj.MailingAddress && { MailingAddress: SENSITIVE_STRING }),
|
|
448
|
+
...(obj.BillingAddress && { BillingAddress: SENSITIVE_STRING }),
|
|
449
|
+
...(obj.Attributes && { Attributes: SENSITIVE_STRING }),
|
|
450
|
+
...(obj.PartyTypeString && { PartyTypeString: SENSITIVE_STRING }),
|
|
451
|
+
...(obj.GenderString && { GenderString: SENSITIVE_STRING }),
|
|
452
|
+
});
|
|
453
|
+
export const SearchProfilesResponseFilterSensitiveLog = (obj) => ({
|
|
454
|
+
...obj,
|
|
455
|
+
...(obj.Items && { Items: obj.Items.map((item) => ProfileFilterSensitiveLog(item)) }),
|
|
456
|
+
});
|
|
457
|
+
export const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog = (obj) => ({
|
|
458
|
+
...obj,
|
|
459
|
+
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
|
|
460
|
+
});
|
|
461
|
+
export const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog = (obj) => ({
|
|
462
|
+
...obj,
|
|
463
|
+
...(obj.Statistic && { Statistic: SENSITIVE_STRING }),
|
|
464
|
+
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
|
|
465
|
+
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
|
|
466
|
+
});
|
|
467
|
+
export const UpdateAddressFilterSensitiveLog = (obj) => ({
|
|
468
|
+
...obj,
|
|
469
|
+
});
|
|
470
|
+
export const UpdateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
471
|
+
...obj,
|
|
472
|
+
...(obj.AdditionalInformation && { AdditionalInformation: SENSITIVE_STRING }),
|
|
473
|
+
...(obj.AccountNumber && { AccountNumber: SENSITIVE_STRING }),
|
|
474
|
+
...(obj.PartyType && { PartyType: SENSITIVE_STRING }),
|
|
475
|
+
...(obj.BusinessName && { BusinessName: SENSITIVE_STRING }),
|
|
476
|
+
...(obj.FirstName && { FirstName: SENSITIVE_STRING }),
|
|
477
|
+
...(obj.MiddleName && { MiddleName: SENSITIVE_STRING }),
|
|
478
|
+
...(obj.LastName && { LastName: SENSITIVE_STRING }),
|
|
479
|
+
...(obj.BirthDate && { BirthDate: SENSITIVE_STRING }),
|
|
480
|
+
...(obj.Gender && { Gender: SENSITIVE_STRING }),
|
|
481
|
+
...(obj.PhoneNumber && { PhoneNumber: SENSITIVE_STRING }),
|
|
482
|
+
...(obj.MobilePhoneNumber && { MobilePhoneNumber: SENSITIVE_STRING }),
|
|
483
|
+
...(obj.HomePhoneNumber && { HomePhoneNumber: SENSITIVE_STRING }),
|
|
484
|
+
...(obj.BusinessPhoneNumber && { BusinessPhoneNumber: SENSITIVE_STRING }),
|
|
485
|
+
...(obj.EmailAddress && { EmailAddress: SENSITIVE_STRING }),
|
|
486
|
+
...(obj.PersonalEmailAddress && { PersonalEmailAddress: SENSITIVE_STRING }),
|
|
487
|
+
...(obj.BusinessEmailAddress && { BusinessEmailAddress: SENSITIVE_STRING }),
|
|
488
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
489
|
+
...(obj.ShippingAddress && { ShippingAddress: SENSITIVE_STRING }),
|
|
490
|
+
...(obj.MailingAddress && { MailingAddress: SENSITIVE_STRING }),
|
|
491
|
+
...(obj.BillingAddress && { BillingAddress: SENSITIVE_STRING }),
|
|
492
|
+
...(obj.Attributes && { Attributes: SENSITIVE_STRING }),
|
|
493
|
+
...(obj.PartyTypeString && { PartyTypeString: SENSITIVE_STRING }),
|
|
494
|
+
...(obj.GenderString && { GenderString: SENSITIVE_STRING }),
|
|
495
|
+
});
|
|
@@ -5408,3 +5408,107 @@ export interface UpdateProfileResponse {
|
|
|
5408
5408
|
*/
|
|
5409
5409
|
ProfileId: string | undefined;
|
|
5410
5410
|
}
|
|
5411
|
+
/**
|
|
5412
|
+
* @internal
|
|
5413
|
+
*/
|
|
5414
|
+
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
5415
|
+
/**
|
|
5416
|
+
* @internal
|
|
5417
|
+
*/
|
|
5418
|
+
export declare const FlowDefinitionFilterSensitiveLog: (obj: FlowDefinition) => any;
|
|
5419
|
+
/**
|
|
5420
|
+
* @internal
|
|
5421
|
+
*/
|
|
5422
|
+
export declare const AppflowIntegrationFilterSensitiveLog: (obj: AppflowIntegration) => any;
|
|
5423
|
+
/**
|
|
5424
|
+
* @internal
|
|
5425
|
+
*/
|
|
5426
|
+
export declare const AttributeDetailsFilterSensitiveLog: (obj: AttributeDetails) => any;
|
|
5427
|
+
/**
|
|
5428
|
+
* @internal
|
|
5429
|
+
*/
|
|
5430
|
+
export declare const ConditionsFilterSensitiveLog: (obj: Conditions) => any;
|
|
5431
|
+
/**
|
|
5432
|
+
* @internal
|
|
5433
|
+
*/
|
|
5434
|
+
export declare const CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog: (obj: CreateCalculatedAttributeDefinitionRequest) => any;
|
|
5435
|
+
/**
|
|
5436
|
+
* @internal
|
|
5437
|
+
*/
|
|
5438
|
+
export declare const CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (obj: CreateCalculatedAttributeDefinitionResponse) => any;
|
|
5439
|
+
/**
|
|
5440
|
+
* @internal
|
|
5441
|
+
*/
|
|
5442
|
+
export declare const IntegrationConfigFilterSensitiveLog: (obj: IntegrationConfig) => any;
|
|
5443
|
+
/**
|
|
5444
|
+
* @internal
|
|
5445
|
+
*/
|
|
5446
|
+
export declare const CreateIntegrationWorkflowRequestFilterSensitiveLog: (obj: CreateIntegrationWorkflowRequest) => any;
|
|
5447
|
+
/**
|
|
5448
|
+
* @internal
|
|
5449
|
+
*/
|
|
5450
|
+
export declare const CreateProfileRequestFilterSensitiveLog: (obj: CreateProfileRequest) => any;
|
|
5451
|
+
/**
|
|
5452
|
+
* @internal
|
|
5453
|
+
*/
|
|
5454
|
+
export declare const GetCalculatedAttributeDefinitionResponseFilterSensitiveLog: (obj: GetCalculatedAttributeDefinitionResponse) => any;
|
|
5455
|
+
/**
|
|
5456
|
+
* @internal
|
|
5457
|
+
*/
|
|
5458
|
+
export declare const GetProfileObjectTypeResponseFilterSensitiveLog: (obj: GetProfileObjectTypeResponse) => any;
|
|
5459
|
+
/**
|
|
5460
|
+
* @internal
|
|
5461
|
+
*/
|
|
5462
|
+
export declare const GetProfileObjectTypeTemplateResponseFilterSensitiveLog: (obj: GetProfileObjectTypeTemplateResponse) => any;
|
|
5463
|
+
/**
|
|
5464
|
+
* @internal
|
|
5465
|
+
*/
|
|
5466
|
+
export declare const ListProfileObjectsItemFilterSensitiveLog: (obj: ListProfileObjectsItem) => any;
|
|
5467
|
+
/**
|
|
5468
|
+
* @internal
|
|
5469
|
+
*/
|
|
5470
|
+
export declare const ListProfileObjectsResponseFilterSensitiveLog: (obj: ListProfileObjectsResponse) => any;
|
|
5471
|
+
/**
|
|
5472
|
+
* @internal
|
|
5473
|
+
*/
|
|
5474
|
+
export declare const ListProfileObjectTypesResponseFilterSensitiveLog: (obj: ListProfileObjectTypesResponse) => any;
|
|
5475
|
+
/**
|
|
5476
|
+
* @internal
|
|
5477
|
+
*/
|
|
5478
|
+
export declare const PutIntegrationRequestFilterSensitiveLog: (obj: PutIntegrationRequest) => any;
|
|
5479
|
+
/**
|
|
5480
|
+
* @internal
|
|
5481
|
+
*/
|
|
5482
|
+
export declare const PutProfileObjectRequestFilterSensitiveLog: (obj: PutProfileObjectRequest) => any;
|
|
5483
|
+
/**
|
|
5484
|
+
* @internal
|
|
5485
|
+
*/
|
|
5486
|
+
export declare const PutProfileObjectTypeRequestFilterSensitiveLog: (obj: PutProfileObjectTypeRequest) => any;
|
|
5487
|
+
/**
|
|
5488
|
+
* @internal
|
|
5489
|
+
*/
|
|
5490
|
+
export declare const PutProfileObjectTypeResponseFilterSensitiveLog: (obj: PutProfileObjectTypeResponse) => any;
|
|
5491
|
+
/**
|
|
5492
|
+
* @internal
|
|
5493
|
+
*/
|
|
5494
|
+
export declare const ProfileFilterSensitiveLog: (obj: Profile) => any;
|
|
5495
|
+
/**
|
|
5496
|
+
* @internal
|
|
5497
|
+
*/
|
|
5498
|
+
export declare const SearchProfilesResponseFilterSensitiveLog: (obj: SearchProfilesResponse) => any;
|
|
5499
|
+
/**
|
|
5500
|
+
* @internal
|
|
5501
|
+
*/
|
|
5502
|
+
export declare const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog: (obj: UpdateCalculatedAttributeDefinitionRequest) => any;
|
|
5503
|
+
/**
|
|
5504
|
+
* @internal
|
|
5505
|
+
*/
|
|
5506
|
+
export declare const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (obj: UpdateCalculatedAttributeDefinitionResponse) => any;
|
|
5507
|
+
/**
|
|
5508
|
+
* @internal
|
|
5509
|
+
*/
|
|
5510
|
+
export declare const UpdateAddressFilterSensitiveLog: (obj: UpdateAddress) => any;
|
|
5511
|
+
/**
|
|
5512
|
+
* @internal
|
|
5513
|
+
*/
|
|
5514
|
+
export declare const UpdateProfileRequestFilterSensitiveLog: (obj: UpdateProfileRequest) => any;
|
|
@@ -1352,3 +1352,75 @@ export interface UpdateProfileRequest {
|
|
|
1352
1352
|
export interface UpdateProfileResponse {
|
|
1353
1353
|
ProfileId: string | undefined;
|
|
1354
1354
|
}
|
|
1355
|
+
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
1356
|
+
export declare const FlowDefinitionFilterSensitiveLog: (
|
|
1357
|
+
obj: FlowDefinition
|
|
1358
|
+
) => any;
|
|
1359
|
+
export declare const AppflowIntegrationFilterSensitiveLog: (
|
|
1360
|
+
obj: AppflowIntegration
|
|
1361
|
+
) => any;
|
|
1362
|
+
export declare const AttributeDetailsFilterSensitiveLog: (
|
|
1363
|
+
obj: AttributeDetails
|
|
1364
|
+
) => any;
|
|
1365
|
+
export declare const ConditionsFilterSensitiveLog: (obj: Conditions) => any;
|
|
1366
|
+
export declare const CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog: (
|
|
1367
|
+
obj: CreateCalculatedAttributeDefinitionRequest
|
|
1368
|
+
) => any;
|
|
1369
|
+
export declare const CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
|
|
1370
|
+
obj: CreateCalculatedAttributeDefinitionResponse
|
|
1371
|
+
) => any;
|
|
1372
|
+
export declare const IntegrationConfigFilterSensitiveLog: (
|
|
1373
|
+
obj: IntegrationConfig
|
|
1374
|
+
) => any;
|
|
1375
|
+
export declare const CreateIntegrationWorkflowRequestFilterSensitiveLog: (
|
|
1376
|
+
obj: CreateIntegrationWorkflowRequest
|
|
1377
|
+
) => any;
|
|
1378
|
+
export declare const CreateProfileRequestFilterSensitiveLog: (
|
|
1379
|
+
obj: CreateProfileRequest
|
|
1380
|
+
) => any;
|
|
1381
|
+
export declare const GetCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
|
|
1382
|
+
obj: GetCalculatedAttributeDefinitionResponse
|
|
1383
|
+
) => any;
|
|
1384
|
+
export declare const GetProfileObjectTypeResponseFilterSensitiveLog: (
|
|
1385
|
+
obj: GetProfileObjectTypeResponse
|
|
1386
|
+
) => any;
|
|
1387
|
+
export declare const GetProfileObjectTypeTemplateResponseFilterSensitiveLog: (
|
|
1388
|
+
obj: GetProfileObjectTypeTemplateResponse
|
|
1389
|
+
) => any;
|
|
1390
|
+
export declare const ListProfileObjectsItemFilterSensitiveLog: (
|
|
1391
|
+
obj: ListProfileObjectsItem
|
|
1392
|
+
) => any;
|
|
1393
|
+
export declare const ListProfileObjectsResponseFilterSensitiveLog: (
|
|
1394
|
+
obj: ListProfileObjectsResponse
|
|
1395
|
+
) => any;
|
|
1396
|
+
export declare const ListProfileObjectTypesResponseFilterSensitiveLog: (
|
|
1397
|
+
obj: ListProfileObjectTypesResponse
|
|
1398
|
+
) => any;
|
|
1399
|
+
export declare const PutIntegrationRequestFilterSensitiveLog: (
|
|
1400
|
+
obj: PutIntegrationRequest
|
|
1401
|
+
) => any;
|
|
1402
|
+
export declare const PutProfileObjectRequestFilterSensitiveLog: (
|
|
1403
|
+
obj: PutProfileObjectRequest
|
|
1404
|
+
) => any;
|
|
1405
|
+
export declare const PutProfileObjectTypeRequestFilterSensitiveLog: (
|
|
1406
|
+
obj: PutProfileObjectTypeRequest
|
|
1407
|
+
) => any;
|
|
1408
|
+
export declare const PutProfileObjectTypeResponseFilterSensitiveLog: (
|
|
1409
|
+
obj: PutProfileObjectTypeResponse
|
|
1410
|
+
) => any;
|
|
1411
|
+
export declare const ProfileFilterSensitiveLog: (obj: Profile) => any;
|
|
1412
|
+
export declare const SearchProfilesResponseFilterSensitiveLog: (
|
|
1413
|
+
obj: SearchProfilesResponse
|
|
1414
|
+
) => any;
|
|
1415
|
+
export declare const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog: (
|
|
1416
|
+
obj: UpdateCalculatedAttributeDefinitionRequest
|
|
1417
|
+
) => any;
|
|
1418
|
+
export declare const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
|
|
1419
|
+
obj: UpdateCalculatedAttributeDefinitionResponse
|
|
1420
|
+
) => any;
|
|
1421
|
+
export declare const UpdateAddressFilterSensitiveLog: (
|
|
1422
|
+
obj: UpdateAddress
|
|
1423
|
+
) => any;
|
|
1424
|
+
export declare const UpdateProfileRequestFilterSensitiveLog: (
|
|
1425
|
+
obj: UpdateProfileRequest
|
|
1426
|
+
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-customer-profiles",
|
|
3
3
|
"description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.404.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|