@aws-sdk/client-quicksight 3.42.0 → 3.47.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/CHANGELOG.md +51 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +21 -96
- package/dist-cjs/models/models_1.js +17 -33
- package/dist-cjs/protocols/Aws_restJson1.js +80 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +13 -64
- package/dist-es/models/models_1.js +12 -20
- package/dist-es/protocols/Aws_restJson1.js +189 -115
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/QuickSight.d.ts +47 -37
- package/dist-types/QuickSightClient.d.ts +5 -1
- package/dist-types/commands/CreateAccountCustomizationCommand.d.ts +7 -5
- package/dist-types/commands/CreateDashboardCommand.d.ts +5 -3
- package/dist-types/commands/CreateDataSetCommand.d.ts +1 -1
- package/dist-types/commands/CreateIAMPolicyAssignmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateIngestionCommand.d.ts +4 -1
- package/dist-types/commands/DeleteIAMPolicyAssignmentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAccountCustomizationCommand.d.ts +4 -4
- package/dist-types/commands/DescribeDataSetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIAMPolicyAssignmentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIpRestrictionCommand.d.ts +1 -1
- package/dist-types/commands/GetSessionEmbedUrlCommand.d.ts +4 -3
- package/dist-types/commands/ListIAMPolicyAssignmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListIAMPolicyAssignmentsForUserCommand.d.ts +1 -1
- package/dist-types/commands/RegisterUserCommand.d.ts +1 -2
- package/dist-types/commands/TagResourceCommand.d.ts +8 -7
- package/dist-types/commands/UpdateDashboardCommand.d.ts +3 -1
- package/dist-types/commands/UpdateDataSetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIAMPolicyAssignmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIpRestrictionCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +185 -250
- package/dist-types/models/models_1.d.ts +213 -113
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +76 -87
- package/dist-types/ts3.4/models/models_1.d.ts +43 -21
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -16,14 +16,17 @@ const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
|
16
16
|
const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
|
|
17
17
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
18
18
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
19
|
+
const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
|
|
19
20
|
const getRuntimeConfig = (config) => {
|
|
20
21
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
21
|
-
|
|
22
|
+
const defaultsMode = util_defaults_mode_node_1.resolveDefaultsModeConfig(config);
|
|
23
|
+
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
22
24
|
const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
|
|
23
25
|
return {
|
|
24
26
|
...clientSharedValues,
|
|
25
27
|
...config,
|
|
26
28
|
runtime: "node",
|
|
29
|
+
defaultsMode,
|
|
27
30
|
base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : util_base64_node_1.fromBase64,
|
|
28
31
|
base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : util_base64_node_1.toBase64,
|
|
29
32
|
bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : util_body_length_node_1.calculateBodyLength,
|
|
@@ -31,8 +34,11 @@ const getRuntimeConfig = (config) => {
|
|
|
31
34
|
defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : util_user_agent_node_1.defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
32
35
|
maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : node_config_provider_1.loadConfig(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
33
36
|
region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : node_config_provider_1.loadConfig(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
34
|
-
requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new node_http_handler_1.NodeHttpHandler(),
|
|
35
|
-
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : node_config_provider_1.loadConfig(
|
|
37
|
+
requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new node_http_handler_1.NodeHttpHandler(defaultConfigProvider),
|
|
38
|
+
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : node_config_provider_1.loadConfig({
|
|
39
|
+
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
40
|
+
default: async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE,
|
|
41
|
+
}),
|
|
36
42
|
sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : hash_node_1.Hash.bind(null, "sha256"),
|
|
37
43
|
streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : node_http_handler_1.streamCollector,
|
|
38
44
|
useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
-
export var AccessDeniedException;
|
|
4
|
-
(function (AccessDeniedException) {
|
|
5
|
-
AccessDeniedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
6
|
-
})(AccessDeniedException || (AccessDeniedException = {}));
|
|
7
3
|
export var AccountCustomization;
|
|
8
4
|
(function (AccountCustomization) {
|
|
9
5
|
AccountCustomization.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -147,14 +143,6 @@ export var CancelIngestionResponse;
|
|
|
147
143
|
(function (CancelIngestionResponse) {
|
|
148
144
|
CancelIngestionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
145
|
})(CancelIngestionResponse || (CancelIngestionResponse = {}));
|
|
150
|
-
export var InternalFailureException;
|
|
151
|
-
(function (InternalFailureException) {
|
|
152
|
-
InternalFailureException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
153
|
-
})(InternalFailureException || (InternalFailureException = {}));
|
|
154
|
-
export var InvalidParameterValueException;
|
|
155
|
-
(function (InvalidParameterValueException) {
|
|
156
|
-
InvalidParameterValueException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
|
-
})(InvalidParameterValueException || (InvalidParameterValueException = {}));
|
|
158
146
|
export var ExceptionResourceType;
|
|
159
147
|
(function (ExceptionResourceType) {
|
|
160
148
|
ExceptionResourceType["ACCOUNT_SETTINGS"] = "ACCOUNT_SETTINGS";
|
|
@@ -167,18 +155,6 @@ export var ExceptionResourceType;
|
|
|
167
155
|
ExceptionResourceType["USER"] = "USER";
|
|
168
156
|
ExceptionResourceType["VPC_CONNECTION"] = "VPC_CONNECTION";
|
|
169
157
|
})(ExceptionResourceType || (ExceptionResourceType = {}));
|
|
170
|
-
export var ResourceExistsException;
|
|
171
|
-
(function (ResourceExistsException) {
|
|
172
|
-
ResourceExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
|
-
})(ResourceExistsException || (ResourceExistsException = {}));
|
|
174
|
-
export var ResourceNotFoundException;
|
|
175
|
-
(function (ResourceNotFoundException) {
|
|
176
|
-
ResourceNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
|
-
})(ResourceNotFoundException || (ResourceNotFoundException = {}));
|
|
178
|
-
export var ThrottlingException;
|
|
179
|
-
(function (ThrottlingException) {
|
|
180
|
-
ThrottlingException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
|
-
})(ThrottlingException || (ThrottlingException = {}));
|
|
182
158
|
export var ColumnDataType;
|
|
183
159
|
(function (ColumnDataType) {
|
|
184
160
|
ColumnDataType["DATETIME"] = "DATETIME";
|
|
@@ -241,14 +217,6 @@ export var ColumnTagName;
|
|
|
241
217
|
ColumnTagName["COLUMN_DESCRIPTION"] = "COLUMN_DESCRIPTION";
|
|
242
218
|
ColumnTagName["COLUMN_GEOGRAPHIC_ROLE"] = "COLUMN_GEOGRAPHIC_ROLE";
|
|
243
219
|
})(ColumnTagName || (ColumnTagName = {}));
|
|
244
|
-
export var ConcurrentUpdatingException;
|
|
245
|
-
(function (ConcurrentUpdatingException) {
|
|
246
|
-
ConcurrentUpdatingException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
-
})(ConcurrentUpdatingException || (ConcurrentUpdatingException = {}));
|
|
248
|
-
export var ConflictException;
|
|
249
|
-
(function (ConflictException) {
|
|
250
|
-
ConflictException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
-
})(ConflictException || (ConflictException = {}));
|
|
252
220
|
export var Tag;
|
|
253
221
|
(function (Tag) {
|
|
254
222
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -261,10 +229,6 @@ export var CreateAccountCustomizationResponse;
|
|
|
261
229
|
(function (CreateAccountCustomizationResponse) {
|
|
262
230
|
CreateAccountCustomizationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
231
|
})(CreateAccountCustomizationResponse || (CreateAccountCustomizationResponse = {}));
|
|
264
|
-
export var ResourceUnavailableException;
|
|
265
|
-
(function (ResourceUnavailableException) {
|
|
266
|
-
ResourceUnavailableException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
-
})(ResourceUnavailableException || (ResourceUnavailableException = {}));
|
|
268
232
|
export var DateTimeParameter;
|
|
269
233
|
(function (DateTimeParameter) {
|
|
270
234
|
DateTimeParameter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -297,10 +261,6 @@ export var CreateAnalysisResponse;
|
|
|
297
261
|
(function (CreateAnalysisResponse) {
|
|
298
262
|
CreateAnalysisResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
263
|
})(CreateAnalysisResponse || (CreateAnalysisResponse = {}));
|
|
300
|
-
export var UnsupportedUserEditionException;
|
|
301
|
-
(function (UnsupportedUserEditionException) {
|
|
302
|
-
UnsupportedUserEditionException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
-
})(UnsupportedUserEditionException || (UnsupportedUserEditionException = {}));
|
|
304
264
|
export var CreateColumnsOperation;
|
|
305
265
|
(function (CreateColumnsOperation) {
|
|
306
266
|
CreateColumnsOperation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -551,10 +511,10 @@ export var CreateDataSetResponse;
|
|
|
551
511
|
(function (CreateDataSetResponse) {
|
|
552
512
|
CreateDataSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
553
513
|
})(CreateDataSetResponse || (CreateDataSetResponse = {}));
|
|
554
|
-
export var
|
|
555
|
-
(function (
|
|
556
|
-
|
|
557
|
-
})(
|
|
514
|
+
export var ExasolParameters;
|
|
515
|
+
(function (ExasolParameters) {
|
|
516
|
+
ExasolParameters.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
517
|
+
})(ExasolParameters || (ExasolParameters = {}));
|
|
558
518
|
export var JiraParameters;
|
|
559
519
|
(function (JiraParameters) {
|
|
560
520
|
JiraParameters.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -664,6 +624,8 @@ export var DataSourceParameters;
|
|
|
664
624
|
return visitor.TwitterParameters(value.TwitterParameters);
|
|
665
625
|
if (value.AmazonOpenSearchParameters !== undefined)
|
|
666
626
|
return visitor.AmazonOpenSearchParameters(value.AmazonOpenSearchParameters);
|
|
627
|
+
if (value.ExasolParameters !== undefined)
|
|
628
|
+
return visitor.ExasolParameters(value.ExasolParameters);
|
|
667
629
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
668
630
|
};
|
|
669
631
|
DataSourceParameters.filterSensitiveLog = function (obj) {
|
|
@@ -716,6 +678,8 @@ export var DataSourceParameters;
|
|
|
716
678
|
return {
|
|
717
679
|
AmazonOpenSearchParameters: AmazonOpenSearchParameters.filterSensitiveLog(obj.AmazonOpenSearchParameters),
|
|
718
680
|
};
|
|
681
|
+
if (obj.ExasolParameters !== undefined)
|
|
682
|
+
return { ExasolParameters: ExasolParameters.filterSensitiveLog(obj.ExasolParameters) };
|
|
719
683
|
if (obj.$unknown !== undefined)
|
|
720
684
|
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
721
685
|
};
|
|
@@ -745,6 +709,7 @@ export var DataSourceType;
|
|
|
745
709
|
DataSourceType["AURORA"] = "AURORA";
|
|
746
710
|
DataSourceType["AURORA_POSTGRESQL"] = "AURORA_POSTGRESQL";
|
|
747
711
|
DataSourceType["AWS_IOT_ANALYTICS"] = "AWS_IOT_ANALYTICS";
|
|
712
|
+
DataSourceType["EXASOL"] = "EXASOL";
|
|
748
713
|
DataSourceType["GITHUB"] = "GITHUB";
|
|
749
714
|
DataSourceType["JIRA"] = "JIRA";
|
|
750
715
|
DataSourceType["MARIADB"] = "MARIADB";
|
|
@@ -819,10 +784,6 @@ export var CreateGroupResponse;
|
|
|
819
784
|
(function (CreateGroupResponse) {
|
|
820
785
|
CreateGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
821
786
|
})(CreateGroupResponse || (CreateGroupResponse = {}));
|
|
822
|
-
export var PreconditionNotMetException;
|
|
823
|
-
(function (PreconditionNotMetException) {
|
|
824
|
-
PreconditionNotMetException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
825
|
-
})(PreconditionNotMetException || (PreconditionNotMetException = {}));
|
|
826
787
|
export var CreateGroupMembershipRequest;
|
|
827
788
|
(function (CreateGroupMembershipRequest) {
|
|
828
789
|
CreateGroupMembershipRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1249,6 +1210,10 @@ export var DescribeDashboardPermissionsRequest;
|
|
|
1249
1210
|
(function (DescribeDashboardPermissionsRequest) {
|
|
1250
1211
|
DescribeDashboardPermissionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1251
1212
|
})(DescribeDashboardPermissionsRequest || (DescribeDashboardPermissionsRequest = {}));
|
|
1213
|
+
export var LinkSharingConfiguration;
|
|
1214
|
+
(function (LinkSharingConfiguration) {
|
|
1215
|
+
LinkSharingConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1216
|
+
})(LinkSharingConfiguration || (LinkSharingConfiguration = {}));
|
|
1252
1217
|
export var DescribeDashboardPermissionsResponse;
|
|
1253
1218
|
(function (DescribeDashboardPermissionsResponse) {
|
|
1254
1219
|
DescribeDashboardPermissionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1333,10 +1298,6 @@ export var DescribeIAMPolicyAssignmentResponse;
|
|
|
1333
1298
|
(function (DescribeIAMPolicyAssignmentResponse) {
|
|
1334
1299
|
DescribeIAMPolicyAssignmentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1335
1300
|
})(DescribeIAMPolicyAssignmentResponse || (DescribeIAMPolicyAssignmentResponse = {}));
|
|
1336
|
-
export var InvalidNextTokenException;
|
|
1337
|
-
(function (InvalidNextTokenException) {
|
|
1338
|
-
InvalidNextTokenException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1339
|
-
})(InvalidNextTokenException || (InvalidNextTokenException = {}));
|
|
1340
1301
|
export var DescribeIngestionRequest;
|
|
1341
1302
|
(function (DescribeIngestionRequest) {
|
|
1342
1303
|
DescribeIngestionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1547,15 +1508,3 @@ export var IdentityType;
|
|
|
1547
1508
|
IdentityType["IAM"] = "IAM";
|
|
1548
1509
|
IdentityType["QUICKSIGHT"] = "QUICKSIGHT";
|
|
1549
1510
|
})(IdentityType || (IdentityType = {}));
|
|
1550
|
-
export var UserRole;
|
|
1551
|
-
(function (UserRole) {
|
|
1552
|
-
UserRole["ADMIN"] = "ADMIN";
|
|
1553
|
-
UserRole["AUTHOR"] = "AUTHOR";
|
|
1554
|
-
UserRole["READER"] = "READER";
|
|
1555
|
-
UserRole["RESTRICTED_AUTHOR"] = "RESTRICTED_AUTHOR";
|
|
1556
|
-
UserRole["RESTRICTED_READER"] = "RESTRICTED_READER";
|
|
1557
|
-
})(UserRole || (UserRole = {}));
|
|
1558
|
-
export var User;
|
|
1559
|
-
(function (User) {
|
|
1560
|
-
User.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1561
|
-
})(User || (User = {}));
|
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { DataSource, DataSourceParameters, LogicalTable, PhysicalTable, RowLevelPermissionTagConfiguration, } from "./models_0";
|
|
4
|
+
export var UserRole;
|
|
5
|
+
(function (UserRole) {
|
|
6
|
+
UserRole["ADMIN"] = "ADMIN";
|
|
7
|
+
UserRole["AUTHOR"] = "AUTHOR";
|
|
8
|
+
UserRole["READER"] = "READER";
|
|
9
|
+
UserRole["RESTRICTED_AUTHOR"] = "RESTRICTED_AUTHOR";
|
|
10
|
+
UserRole["RESTRICTED_READER"] = "RESTRICTED_READER";
|
|
11
|
+
})(UserRole || (UserRole = {}));
|
|
12
|
+
export var User;
|
|
13
|
+
(function (User) {
|
|
14
|
+
User.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
15
|
+
})(User || (User = {}));
|
|
4
16
|
export var DescribeUserResponse;
|
|
5
17
|
(function (DescribeUserResponse) {
|
|
6
18
|
DescribeUserResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
7
19
|
})(DescribeUserResponse || (DescribeUserResponse = {}));
|
|
8
|
-
export var DomainNotWhitelistedException;
|
|
9
|
-
(function (DomainNotWhitelistedException) {
|
|
10
|
-
DomainNotWhitelistedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
11
|
-
})(DomainNotWhitelistedException || (DomainNotWhitelistedException = {}));
|
|
12
20
|
export var EmbeddingIdentityType;
|
|
13
21
|
(function (EmbeddingIdentityType) {
|
|
14
22
|
EmbeddingIdentityType["ANONYMOUS"] = "ANONYMOUS";
|
|
@@ -43,14 +51,6 @@ export var GenerateEmbedUrlForAnonymousUserResponse;
|
|
|
43
51
|
(function (GenerateEmbedUrlForAnonymousUserResponse) {
|
|
44
52
|
GenerateEmbedUrlForAnonymousUserResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.EmbedUrl && { EmbedUrl: SENSITIVE_STRING }))); };
|
|
45
53
|
})(GenerateEmbedUrlForAnonymousUserResponse || (GenerateEmbedUrlForAnonymousUserResponse = {}));
|
|
46
|
-
export var SessionLifetimeInMinutesInvalidException;
|
|
47
|
-
(function (SessionLifetimeInMinutesInvalidException) {
|
|
48
|
-
SessionLifetimeInMinutesInvalidException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
49
|
-
})(SessionLifetimeInMinutesInvalidException || (SessionLifetimeInMinutesInvalidException = {}));
|
|
50
|
-
export var UnsupportedPricingPlanException;
|
|
51
|
-
(function (UnsupportedPricingPlanException) {
|
|
52
|
-
UnsupportedPricingPlanException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
|
-
})(UnsupportedPricingPlanException || (UnsupportedPricingPlanException = {}));
|
|
54
54
|
export var RegisteredUserDashboardEmbeddingConfiguration;
|
|
55
55
|
(function (RegisteredUserDashboardEmbeddingConfiguration) {
|
|
56
56
|
RegisteredUserDashboardEmbeddingConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -75,10 +75,6 @@ export var GenerateEmbedUrlForRegisteredUserResponse;
|
|
|
75
75
|
(function (GenerateEmbedUrlForRegisteredUserResponse) {
|
|
76
76
|
GenerateEmbedUrlForRegisteredUserResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.EmbedUrl && { EmbedUrl: SENSITIVE_STRING }))); };
|
|
77
77
|
})(GenerateEmbedUrlForRegisteredUserResponse || (GenerateEmbedUrlForRegisteredUserResponse = {}));
|
|
78
|
-
export var QuickSightUserNotFoundException;
|
|
79
|
-
(function (QuickSightUserNotFoundException) {
|
|
80
|
-
QuickSightUserNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
81
|
-
})(QuickSightUserNotFoundException || (QuickSightUserNotFoundException = {}));
|
|
82
78
|
export var GetDashboardEmbedUrlRequest;
|
|
83
79
|
(function (GetDashboardEmbedUrlRequest) {
|
|
84
80
|
GetDashboardEmbedUrlRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -87,10 +83,6 @@ export var GetDashboardEmbedUrlResponse;
|
|
|
87
83
|
(function (GetDashboardEmbedUrlResponse) {
|
|
88
84
|
GetDashboardEmbedUrlResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.EmbedUrl && { EmbedUrl: SENSITIVE_STRING }))); };
|
|
89
85
|
})(GetDashboardEmbedUrlResponse || (GetDashboardEmbedUrlResponse = {}));
|
|
90
|
-
export var IdentityTypeNotSupportedException;
|
|
91
|
-
(function (IdentityTypeNotSupportedException) {
|
|
92
|
-
IdentityTypeNotSupportedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
93
|
-
})(IdentityTypeNotSupportedException || (IdentityTypeNotSupportedException = {}));
|
|
94
86
|
export var GetSessionEmbedUrlRequest;
|
|
95
87
|
(function (GetSessionEmbedUrlRequest) {
|
|
96
88
|
GetSessionEmbedUrlRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|