@aws-sdk/client-quicksight 3.43.0 → 3.47.1
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 +48 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +6 -84
- package/dist-cjs/models/models_1.js +3 -33
- 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 +0 -52
- package/dist-es/models/models_1.js +0 -20
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/QuickSight.d.ts +7 -4
- package/dist-types/QuickSightClient.d.ts +5 -1
- package/dist-types/commands/CreateDataSetCommand.d.ts +1 -1
- package/dist-types/commands/CreateIngestionCommand.d.ts +4 -1
- package/dist-types/commands/DescribeDataSetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataSetCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +0 -78
- package/dist-types/models/models_1.d.ts +0 -30
- 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 +0 -52
- package/dist-types/ts3.4/models/models_1.d.ts +0 -20
- 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 +39 -46
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,21 +1,28 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
2
|
import packageInfo from "../package.json";
|
|
3
3
|
import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
|
|
4
4
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
|
|
5
5
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
6
6
|
import { Hash } from "@aws-sdk/hash-node";
|
|
7
|
-
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@aws-sdk/middleware-retry";
|
|
7
|
+
import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@aws-sdk/middleware-retry";
|
|
8
8
|
import { loadConfig as loadNodeConfig } from "@aws-sdk/node-config-provider";
|
|
9
|
-
import { NodeHttpHandler, streamCollector } from "@aws-sdk/node-http-handler";
|
|
9
|
+
import { NodeHttpHandler as RequestHandler, streamCollector } from "@aws-sdk/node-http-handler";
|
|
10
10
|
import { fromBase64, toBase64 } from "@aws-sdk/util-base64-node";
|
|
11
11
|
import { calculateBodyLength } from "@aws-sdk/util-body-length-node";
|
|
12
12
|
import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
|
|
13
13
|
import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
|
|
14
14
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
15
|
-
import {
|
|
15
|
+
import { loadConfigsForDefaultMode } from "@aws-sdk/smithy-client";
|
|
16
|
+
import { resolveDefaultsModeConfig } from "@aws-sdk/util-defaults-mode-node";
|
|
16
17
|
export var getRuntimeConfig = function (config) {
|
|
17
18
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
18
|
-
|
|
19
|
+
var defaultsMode = resolveDefaultsModeConfig(config);
|
|
20
|
+
var defaultConfigProvider = function () { return defaultsMode().then(loadConfigsForDefaultMode); };
|
|
19
21
|
var clientSharedValues = getSharedRuntimeConfig(config);
|
|
20
|
-
return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new
|
|
22
|
+
return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", defaultsMode: defaultsMode, base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new RequestHandler(defaultConfigProvider), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(__assign(__assign({}, NODE_RETRY_MODE_CONFIG_OPTIONS), { default: function () { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
23
|
+
switch (_a.label) {
|
|
24
|
+
case 0: return [4, defaultConfigProvider()];
|
|
25
|
+
case 1: return [2, (_a.sent()).retryMode || DEFAULT_RETRY_MODE];
|
|
26
|
+
}
|
|
27
|
+
}); }); } })), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
|
|
21
28
|
};
|
|
@@ -179,7 +179,7 @@ export declare class QuickSight extends QuickSightClient {
|
|
|
179
179
|
createDashboard(args: CreateDashboardCommandInput, cb: (err: any, data?: CreateDashboardCommandOutput) => void): void;
|
|
180
180
|
createDashboard(args: CreateDashboardCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDashboardCommandOutput) => void): void;
|
|
181
181
|
/**
|
|
182
|
-
* <p>Creates a dataset.</p>
|
|
182
|
+
* <p>Creates a dataset. This operation doesn't support datasets that include uploaded files as a source.</p>
|
|
183
183
|
*/
|
|
184
184
|
createDataSet(args: CreateDataSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataSetCommandOutput>;
|
|
185
185
|
createDataSet(args: CreateDataSetCommandInput, cb: (err: any, data?: CreateDataSetCommandOutput) => void): void;
|
|
@@ -228,7 +228,10 @@ export declare class QuickSight extends QuickSightClient {
|
|
|
228
228
|
createIAMPolicyAssignment(args: CreateIAMPolicyAssignmentCommandInput, cb: (err: any, data?: CreateIAMPolicyAssignmentCommandOutput) => void): void;
|
|
229
229
|
createIAMPolicyAssignment(args: CreateIAMPolicyAssignmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIAMPolicyAssignmentCommandOutput) => void): void;
|
|
230
230
|
/**
|
|
231
|
-
* <p>Creates and starts a new SPICE ingestion
|
|
231
|
+
* <p>Creates and starts a new SPICE ingestion for a dataset. You can manually refresh datasets in
|
|
232
|
+
* an Enterprise edition account 32 times in a 24-hour period. You can manually refresh
|
|
233
|
+
* datasets in a Standard edition account 8 times in a 24-hour period. Each 24-hour period
|
|
234
|
+
* is measured starting 24 hours before the current date and time.</p>
|
|
232
235
|
*
|
|
233
236
|
* <p>Any ingestions operating on tagged datasets inherit the same tags automatically for use in
|
|
234
237
|
* access control. For an example, see <a href="http://aws.amazon.com/premiumsupport/knowledge-center/iam-ec2-resource-tags/">How do I create an IAM policy to control access to Amazon EC2 resources using
|
|
@@ -500,7 +503,7 @@ export declare class QuickSight extends QuickSightClient {
|
|
|
500
503
|
describeDashboardPermissions(args: DescribeDashboardPermissionsCommandInput, cb: (err: any, data?: DescribeDashboardPermissionsCommandOutput) => void): void;
|
|
501
504
|
describeDashboardPermissions(args: DescribeDashboardPermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDashboardPermissionsCommandOutput) => void): void;
|
|
502
505
|
/**
|
|
503
|
-
* <p>Describes a dataset.
|
|
506
|
+
* <p>Describes a dataset. This operation doesn't support datasets that include uploaded files as a source.</p>
|
|
504
507
|
*/
|
|
505
508
|
describeDataSet(args: DescribeDataSetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataSetCommandOutput>;
|
|
506
509
|
describeDataSet(args: DescribeDataSetCommandInput, cb: (err: any, data?: DescribeDataSetCommandOutput) => void): void;
|
|
@@ -983,7 +986,7 @@ export declare class QuickSight extends QuickSightClient {
|
|
|
983
986
|
updateDashboardPublishedVersion(args: UpdateDashboardPublishedVersionCommandInput, cb: (err: any, data?: UpdateDashboardPublishedVersionCommandOutput) => void): void;
|
|
984
987
|
updateDashboardPublishedVersion(args: UpdateDashboardPublishedVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDashboardPublishedVersionCommandOutput) => void): void;
|
|
985
988
|
/**
|
|
986
|
-
* <p>Updates a dataset.</p>
|
|
989
|
+
* <p>Updates a dataset. This operation doesn't support datasets that include uploaded files as a source.</p>
|
|
987
990
|
*/
|
|
988
991
|
updateDataSet(args: UpdateDataSetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataSetCommandOutput>;
|
|
989
992
|
updateDataSet(args: UpdateDataSetCommandInput, cb: (err: any, data?: UpdateDataSetCommandOutput) => void): void;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CancelIngestionCommandInput, CancelIngestionCommandOutput } from "./commands/CancelIngestionCommand";
|
|
10
10
|
import { CreateAccountCustomizationCommandInput, CreateAccountCustomizationCommandOutput } from "./commands/CreateAccountCustomizationCommand";
|
|
@@ -223,6 +223,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
223
223
|
* @internal
|
|
224
224
|
*/
|
|
225
225
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
226
|
+
/**
|
|
227
|
+
* The {@link DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
228
|
+
*/
|
|
229
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
226
230
|
}
|
|
227
231
|
declare type QuickSightClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
228
232
|
/**
|
|
@@ -7,7 +7,7 @@ export interface CreateDataSetCommandInput extends CreateDataSetRequest {
|
|
|
7
7
|
export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a dataset.</p>
|
|
10
|
+
* <p>Creates a dataset. This operation doesn't support datasets that include uploaded files as a source.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,10 @@ export interface CreateIngestionCommandInput extends CreateIngestionRequest {
|
|
|
7
7
|
export interface CreateIngestionCommandOutput extends CreateIngestionResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates and starts a new SPICE ingestion
|
|
10
|
+
* <p>Creates and starts a new SPICE ingestion for a dataset. You can manually refresh datasets in
|
|
11
|
+
* an Enterprise edition account 32 times in a 24-hour period. You can manually refresh
|
|
12
|
+
* datasets in a Standard edition account 8 times in a 24-hour period. Each 24-hour period
|
|
13
|
+
* is measured starting 24 hours before the current date and time.</p>
|
|
11
14
|
*
|
|
12
15
|
* <p>Any ingestions operating on tagged datasets inherit the same tags automatically for use in
|
|
13
16
|
* access control. For an example, see <a href="http://aws.amazon.com/premiumsupport/knowledge-center/iam-ec2-resource-tags/">How do I create an IAM policy to control access to Amazon EC2 resources using
|
|
@@ -7,7 +7,7 @@ export interface DescribeDataSetCommandInput extends DescribeDataSetRequest {
|
|
|
7
7
|
export interface DescribeDataSetCommandOutput extends DescribeDataSetResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Describes a dataset.
|
|
10
|
+
* <p>Describes a dataset. This operation doesn't support datasets that include uploaded files as a source.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface UpdateDataSetCommandInput extends UpdateDataSetRequest {
|
|
|
7
7
|
export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Updates a dataset.</p>
|
|
10
|
+
* <p>Updates a dataset. This operation doesn't support datasets that include uploaded files as a source.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -14,12 +14,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
14
14
|
*/
|
|
15
15
|
RequestId?: string;
|
|
16
16
|
}
|
|
17
|
-
export declare namespace AccessDeniedException {
|
|
18
|
-
/**
|
|
19
|
-
* @internal
|
|
20
|
-
*/
|
|
21
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
22
|
-
}
|
|
23
17
|
/**
|
|
24
18
|
* <p>The Amazon QuickSight customizations associated with your Amazon Web Services account or a QuickSight namespace in a specific Amazon Web Services Region.</p>
|
|
25
19
|
*/
|
|
@@ -586,12 +580,6 @@ export interface InternalFailureException extends __SmithyException, $MetadataBe
|
|
|
586
580
|
*/
|
|
587
581
|
RequestId?: string;
|
|
588
582
|
}
|
|
589
|
-
export declare namespace InternalFailureException {
|
|
590
|
-
/**
|
|
591
|
-
* @internal
|
|
592
|
-
*/
|
|
593
|
-
const filterSensitiveLog: (obj: InternalFailureException) => any;
|
|
594
|
-
}
|
|
595
583
|
/**
|
|
596
584
|
* <p>One or more parameters has a value that isn't valid.</p>
|
|
597
585
|
*/
|
|
@@ -604,12 +592,6 @@ export interface InvalidParameterValueException extends __SmithyException, $Meta
|
|
|
604
592
|
*/
|
|
605
593
|
RequestId?: string;
|
|
606
594
|
}
|
|
607
|
-
export declare namespace InvalidParameterValueException {
|
|
608
|
-
/**
|
|
609
|
-
* @internal
|
|
610
|
-
*/
|
|
611
|
-
const filterSensitiveLog: (obj: InvalidParameterValueException) => any;
|
|
612
|
-
}
|
|
613
595
|
export declare enum ExceptionResourceType {
|
|
614
596
|
ACCOUNT_SETTINGS = "ACCOUNT_SETTINGS",
|
|
615
597
|
DATA_SET = "DATA_SET",
|
|
@@ -637,12 +619,6 @@ export interface ResourceExistsException extends __SmithyException, $MetadataBea
|
|
|
637
619
|
*/
|
|
638
620
|
RequestId?: string;
|
|
639
621
|
}
|
|
640
|
-
export declare namespace ResourceExistsException {
|
|
641
|
-
/**
|
|
642
|
-
* @internal
|
|
643
|
-
*/
|
|
644
|
-
const filterSensitiveLog: (obj: ResourceExistsException) => any;
|
|
645
|
-
}
|
|
646
622
|
/**
|
|
647
623
|
* <p>One or more resources can't be found.</p>
|
|
648
624
|
*/
|
|
@@ -659,12 +635,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
659
635
|
*/
|
|
660
636
|
RequestId?: string;
|
|
661
637
|
}
|
|
662
|
-
export declare namespace ResourceNotFoundException {
|
|
663
|
-
/**
|
|
664
|
-
* @internal
|
|
665
|
-
*/
|
|
666
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
667
|
-
}
|
|
668
638
|
/**
|
|
669
639
|
* <p>Access is throttled.</p>
|
|
670
640
|
*/
|
|
@@ -677,12 +647,6 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
|
|
|
677
647
|
*/
|
|
678
648
|
RequestId?: string;
|
|
679
649
|
}
|
|
680
|
-
export declare namespace ThrottlingException {
|
|
681
|
-
/**
|
|
682
|
-
* @internal
|
|
683
|
-
*/
|
|
684
|
-
const filterSensitiveLog: (obj: ThrottlingException) => any;
|
|
685
|
-
}
|
|
686
650
|
export declare enum ColumnDataType {
|
|
687
651
|
DATETIME = "DATETIME",
|
|
688
652
|
DECIMAL = "DECIMAL",
|
|
@@ -900,12 +864,6 @@ export interface ConcurrentUpdatingException extends __SmithyException, $Metadat
|
|
|
900
864
|
Message?: string;
|
|
901
865
|
RequestId?: string;
|
|
902
866
|
}
|
|
903
|
-
export declare namespace ConcurrentUpdatingException {
|
|
904
|
-
/**
|
|
905
|
-
* @internal
|
|
906
|
-
*/
|
|
907
|
-
const filterSensitiveLog: (obj: ConcurrentUpdatingException) => any;
|
|
908
|
-
}
|
|
909
867
|
/**
|
|
910
868
|
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
911
869
|
*/
|
|
@@ -918,12 +876,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
918
876
|
*/
|
|
919
877
|
RequestId?: string;
|
|
920
878
|
}
|
|
921
|
-
export declare namespace ConflictException {
|
|
922
|
-
/**
|
|
923
|
-
* @internal
|
|
924
|
-
*/
|
|
925
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
926
|
-
}
|
|
927
879
|
/**
|
|
928
880
|
* <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
|
|
929
881
|
* resource.</p>
|
|
@@ -1023,12 +975,6 @@ export interface ResourceUnavailableException extends __SmithyException, $Metada
|
|
|
1023
975
|
*/
|
|
1024
976
|
RequestId?: string;
|
|
1025
977
|
}
|
|
1026
|
-
export declare namespace ResourceUnavailableException {
|
|
1027
|
-
/**
|
|
1028
|
-
* @internal
|
|
1029
|
-
*/
|
|
1030
|
-
const filterSensitiveLog: (obj: ResourceUnavailableException) => any;
|
|
1031
|
-
}
|
|
1032
978
|
/**
|
|
1033
979
|
* <p>A date-time parameter.</p>
|
|
1034
980
|
*/
|
|
@@ -1259,12 +1205,6 @@ export interface UnsupportedUserEditionException extends __SmithyException, $Met
|
|
|
1259
1205
|
*/
|
|
1260
1206
|
RequestId?: string;
|
|
1261
1207
|
}
|
|
1262
|
-
export declare namespace UnsupportedUserEditionException {
|
|
1263
|
-
/**
|
|
1264
|
-
* @internal
|
|
1265
|
-
*/
|
|
1266
|
-
const filterSensitiveLog: (obj: UnsupportedUserEditionException) => any;
|
|
1267
|
-
}
|
|
1268
1208
|
/**
|
|
1269
1209
|
* <p>A transform operation that creates calculated columns. Columns created in one such
|
|
1270
1210
|
* operation form a lexical closure.</p>
|
|
@@ -2290,12 +2230,6 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
|
|
|
2290
2230
|
*/
|
|
2291
2231
|
RequestId?: string;
|
|
2292
2232
|
}
|
|
2293
|
-
export declare namespace LimitExceededException {
|
|
2294
|
-
/**
|
|
2295
|
-
* @internal
|
|
2296
|
-
*/
|
|
2297
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
2298
|
-
}
|
|
2299
2233
|
/**
|
|
2300
2234
|
* <p>The required parameters for connecting to an Exasol data source.</p>
|
|
2301
2235
|
*/
|
|
@@ -3750,12 +3684,6 @@ export interface PreconditionNotMetException extends __SmithyException, $Metadat
|
|
|
3750
3684
|
*/
|
|
3751
3685
|
RequestId?: string;
|
|
3752
3686
|
}
|
|
3753
|
-
export declare namespace PreconditionNotMetException {
|
|
3754
|
-
/**
|
|
3755
|
-
* @internal
|
|
3756
|
-
*/
|
|
3757
|
-
const filterSensitiveLog: (obj: PreconditionNotMetException) => any;
|
|
3758
|
-
}
|
|
3759
3687
|
export interface CreateGroupMembershipRequest {
|
|
3760
3688
|
/**
|
|
3761
3689
|
* <p>The name of the user that you want to add to the group membership.</p>
|
|
@@ -6633,12 +6561,6 @@ export interface InvalidNextTokenException extends __SmithyException, $MetadataB
|
|
|
6633
6561
|
*/
|
|
6634
6562
|
RequestId?: string;
|
|
6635
6563
|
}
|
|
6636
|
-
export declare namespace InvalidNextTokenException {
|
|
6637
|
-
/**
|
|
6638
|
-
* @internal
|
|
6639
|
-
*/
|
|
6640
|
-
const filterSensitiveLog: (obj: InvalidNextTokenException) => any;
|
|
6641
|
-
}
|
|
6642
6564
|
export interface DescribeIngestionRequest {
|
|
6643
6565
|
/**
|
|
6644
6566
|
* <p>The Amazon Web Services account ID.</p>
|
|
@@ -137,12 +137,6 @@ export interface DomainNotWhitelistedException extends __SmithyException, $Metad
|
|
|
137
137
|
*/
|
|
138
138
|
RequestId?: string;
|
|
139
139
|
}
|
|
140
|
-
export declare namespace DomainNotWhitelistedException {
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
const filterSensitiveLog: (obj: DomainNotWhitelistedException) => any;
|
|
145
|
-
}
|
|
146
140
|
export declare enum EmbeddingIdentityType {
|
|
147
141
|
ANONYMOUS = "ANONYMOUS",
|
|
148
142
|
IAM = "IAM",
|
|
@@ -314,12 +308,6 @@ export interface SessionLifetimeInMinutesInvalidException extends __SmithyExcept
|
|
|
314
308
|
*/
|
|
315
309
|
RequestId?: string;
|
|
316
310
|
}
|
|
317
|
-
export declare namespace SessionLifetimeInMinutesInvalidException {
|
|
318
|
-
/**
|
|
319
|
-
* @internal
|
|
320
|
-
*/
|
|
321
|
-
const filterSensitiveLog: (obj: SessionLifetimeInMinutesInvalidException) => any;
|
|
322
|
-
}
|
|
323
311
|
/**
|
|
324
312
|
* <p>This error indicates that you are calling an embedding operation in Amazon QuickSight
|
|
325
313
|
* without the required pricing plan on your Amazon Web Services account. Before you can use embedding
|
|
@@ -340,12 +328,6 @@ export interface UnsupportedPricingPlanException extends __SmithyException, $Met
|
|
|
340
328
|
*/
|
|
341
329
|
RequestId?: string;
|
|
342
330
|
}
|
|
343
|
-
export declare namespace UnsupportedPricingPlanException {
|
|
344
|
-
/**
|
|
345
|
-
* @internal
|
|
346
|
-
*/
|
|
347
|
-
const filterSensitiveLog: (obj: UnsupportedPricingPlanException) => any;
|
|
348
|
-
}
|
|
349
331
|
/**
|
|
350
332
|
* <p>Information about the dashboard you want to embed.</p>
|
|
351
333
|
*/
|
|
@@ -545,12 +527,6 @@ export interface QuickSightUserNotFoundException extends __SmithyException, $Met
|
|
|
545
527
|
*/
|
|
546
528
|
RequestId?: string;
|
|
547
529
|
}
|
|
548
|
-
export declare namespace QuickSightUserNotFoundException {
|
|
549
|
-
/**
|
|
550
|
-
* @internal
|
|
551
|
-
*/
|
|
552
|
-
const filterSensitiveLog: (obj: QuickSightUserNotFoundException) => any;
|
|
553
|
-
}
|
|
554
530
|
export interface GetDashboardEmbedUrlRequest {
|
|
555
531
|
/**
|
|
556
532
|
* <p>The ID for the Amazon Web Services account that contains the dashboard that you're embedding.</p>
|
|
@@ -669,12 +645,6 @@ export interface IdentityTypeNotSupportedException extends __SmithyException, $M
|
|
|
669
645
|
*/
|
|
670
646
|
RequestId?: string;
|
|
671
647
|
}
|
|
672
|
-
export declare namespace IdentityTypeNotSupportedException {
|
|
673
|
-
/**
|
|
674
|
-
* @internal
|
|
675
|
-
*/
|
|
676
|
-
const filterSensitiveLog: (obj: IdentityTypeNotSupportedException) => any;
|
|
677
|
-
}
|
|
678
648
|
export interface GetSessionEmbedUrlRequest {
|
|
679
649
|
/**
|
|
680
650
|
* <p>The ID for the Amazon Web Services account associated with your Amazon QuickSight subscription.</p>
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { QuickSightClientConfig } from "./QuickSightClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { QuickSightClientConfig } from "./QuickSightClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CancelIngestionCommandInput, CancelIngestionCommandOutput } from "./commands/CancelIngestionCommand";
|
|
10
10
|
import { CreateAccountCustomizationCommandInput, CreateAccountCustomizationCommandOutput } from "./commands/CreateAccountCustomizationCommand";
|
|
@@ -166,6 +166,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
166
166
|
regionInfoProvider?: RegionInfoProvider;
|
|
167
167
|
|
|
168
168
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
169
|
+
|
|
170
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
169
171
|
}
|
|
170
172
|
declare type QuickSightClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
171
173
|
|
|
@@ -7,10 +7,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
7
7
|
|
|
8
8
|
RequestId?: string;
|
|
9
9
|
}
|
|
10
|
-
export declare namespace AccessDeniedException {
|
|
11
|
-
|
|
12
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
13
|
-
}
|
|
14
10
|
|
|
15
11
|
export interface AccountCustomization {
|
|
16
12
|
|
|
@@ -345,10 +341,6 @@ export interface InternalFailureException extends __SmithyException, $MetadataBe
|
|
|
345
341
|
|
|
346
342
|
RequestId?: string;
|
|
347
343
|
}
|
|
348
|
-
export declare namespace InternalFailureException {
|
|
349
|
-
|
|
350
|
-
const filterSensitiveLog: (obj: InternalFailureException) => any;
|
|
351
|
-
}
|
|
352
344
|
|
|
353
345
|
export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer {
|
|
354
346
|
name: "InvalidParameterValueException";
|
|
@@ -357,10 +349,6 @@ export interface InvalidParameterValueException extends __SmithyException, $Meta
|
|
|
357
349
|
|
|
358
350
|
RequestId?: string;
|
|
359
351
|
}
|
|
360
|
-
export declare namespace InvalidParameterValueException {
|
|
361
|
-
|
|
362
|
-
const filterSensitiveLog: (obj: InvalidParameterValueException) => any;
|
|
363
|
-
}
|
|
364
352
|
export declare enum ExceptionResourceType {
|
|
365
353
|
ACCOUNT_SETTINGS = "ACCOUNT_SETTINGS",
|
|
366
354
|
DATA_SET = "DATA_SET",
|
|
@@ -382,10 +370,6 @@ export interface ResourceExistsException extends __SmithyException, $MetadataBea
|
|
|
382
370
|
|
|
383
371
|
RequestId?: string;
|
|
384
372
|
}
|
|
385
|
-
export declare namespace ResourceExistsException {
|
|
386
|
-
|
|
387
|
-
const filterSensitiveLog: (obj: ResourceExistsException) => any;
|
|
388
|
-
}
|
|
389
373
|
|
|
390
374
|
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
391
375
|
name: "ResourceNotFoundException";
|
|
@@ -396,10 +380,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
396
380
|
|
|
397
381
|
RequestId?: string;
|
|
398
382
|
}
|
|
399
|
-
export declare namespace ResourceNotFoundException {
|
|
400
|
-
|
|
401
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
402
|
-
}
|
|
403
383
|
|
|
404
384
|
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
405
385
|
name: "ThrottlingException";
|
|
@@ -408,10 +388,6 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
|
|
|
408
388
|
|
|
409
389
|
RequestId?: string;
|
|
410
390
|
}
|
|
411
|
-
export declare namespace ThrottlingException {
|
|
412
|
-
|
|
413
|
-
const filterSensitiveLog: (obj: ThrottlingException) => any;
|
|
414
|
-
}
|
|
415
391
|
export declare enum ColumnDataType {
|
|
416
392
|
DATETIME = "DATETIME",
|
|
417
393
|
DECIMAL = "DECIMAL",
|
|
@@ -540,10 +516,6 @@ export interface ConcurrentUpdatingException extends __SmithyException, $Metadat
|
|
|
540
516
|
Message?: string;
|
|
541
517
|
RequestId?: string;
|
|
542
518
|
}
|
|
543
|
-
export declare namespace ConcurrentUpdatingException {
|
|
544
|
-
|
|
545
|
-
const filterSensitiveLog: (obj: ConcurrentUpdatingException) => any;
|
|
546
|
-
}
|
|
547
519
|
|
|
548
520
|
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
549
521
|
name: "ConflictException";
|
|
@@ -552,10 +524,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
552
524
|
|
|
553
525
|
RequestId?: string;
|
|
554
526
|
}
|
|
555
|
-
export declare namespace ConflictException {
|
|
556
|
-
|
|
557
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
558
|
-
}
|
|
559
527
|
|
|
560
528
|
export interface Tag {
|
|
561
529
|
|
|
@@ -609,10 +577,6 @@ export interface ResourceUnavailableException extends __SmithyException, $Metada
|
|
|
609
577
|
|
|
610
578
|
RequestId?: string;
|
|
611
579
|
}
|
|
612
|
-
export declare namespace ResourceUnavailableException {
|
|
613
|
-
|
|
614
|
-
const filterSensitiveLog: (obj: ResourceUnavailableException) => any;
|
|
615
|
-
}
|
|
616
580
|
|
|
617
581
|
export interface DateTimeParameter {
|
|
618
582
|
|
|
@@ -729,10 +693,6 @@ export interface UnsupportedUserEditionException extends __SmithyException, $Met
|
|
|
729
693
|
|
|
730
694
|
RequestId?: string;
|
|
731
695
|
}
|
|
732
|
-
export declare namespace UnsupportedUserEditionException {
|
|
733
|
-
|
|
734
|
-
const filterSensitiveLog: (obj: UnsupportedUserEditionException) => any;
|
|
735
|
-
}
|
|
736
696
|
|
|
737
697
|
export interface CreateColumnsOperation {
|
|
738
698
|
|
|
@@ -1345,10 +1305,6 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
|
|
|
1345
1305
|
|
|
1346
1306
|
RequestId?: string;
|
|
1347
1307
|
}
|
|
1348
|
-
export declare namespace LimitExceededException {
|
|
1349
|
-
|
|
1350
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
1351
|
-
}
|
|
1352
1308
|
|
|
1353
1309
|
export interface ExasolParameters {
|
|
1354
1310
|
|
|
@@ -2423,10 +2379,6 @@ export interface PreconditionNotMetException extends __SmithyException, $Metadat
|
|
|
2423
2379
|
|
|
2424
2380
|
RequestId?: string;
|
|
2425
2381
|
}
|
|
2426
|
-
export declare namespace PreconditionNotMetException {
|
|
2427
|
-
|
|
2428
|
-
const filterSensitiveLog: (obj: PreconditionNotMetException) => any;
|
|
2429
|
-
}
|
|
2430
2382
|
export interface CreateGroupMembershipRequest {
|
|
2431
2383
|
|
|
2432
2384
|
MemberName: string | undefined;
|
|
@@ -4021,10 +3973,6 @@ export interface InvalidNextTokenException extends __SmithyException, $MetadataB
|
|
|
4021
3973
|
|
|
4022
3974
|
RequestId?: string;
|
|
4023
3975
|
}
|
|
4024
|
-
export declare namespace InvalidNextTokenException {
|
|
4025
|
-
|
|
4026
|
-
const filterSensitiveLog: (obj: InvalidNextTokenException) => any;
|
|
4027
|
-
}
|
|
4028
3976
|
export interface DescribeIngestionRequest {
|
|
4029
3977
|
|
|
4030
3978
|
AwsAccountId: string | undefined;
|
|
@@ -56,10 +56,6 @@ export interface DomainNotWhitelistedException extends __SmithyException, $Metad
|
|
|
56
56
|
|
|
57
57
|
RequestId?: string;
|
|
58
58
|
}
|
|
59
|
-
export declare namespace DomainNotWhitelistedException {
|
|
60
|
-
|
|
61
|
-
const filterSensitiveLog: (obj: DomainNotWhitelistedException) => any;
|
|
62
|
-
}
|
|
63
59
|
export declare enum EmbeddingIdentityType {
|
|
64
60
|
ANONYMOUS = "ANONYMOUS",
|
|
65
61
|
IAM = "IAM",
|
|
@@ -160,10 +156,6 @@ export interface SessionLifetimeInMinutesInvalidException extends __SmithyExcept
|
|
|
160
156
|
|
|
161
157
|
RequestId?: string;
|
|
162
158
|
}
|
|
163
|
-
export declare namespace SessionLifetimeInMinutesInvalidException {
|
|
164
|
-
|
|
165
|
-
const filterSensitiveLog: (obj: SessionLifetimeInMinutesInvalidException) => any;
|
|
166
|
-
}
|
|
167
159
|
|
|
168
160
|
export interface UnsupportedPricingPlanException extends __SmithyException, $MetadataBearer {
|
|
169
161
|
name: "UnsupportedPricingPlanException";
|
|
@@ -172,10 +164,6 @@ export interface UnsupportedPricingPlanException extends __SmithyException, $Met
|
|
|
172
164
|
|
|
173
165
|
RequestId?: string;
|
|
174
166
|
}
|
|
175
|
-
export declare namespace UnsupportedPricingPlanException {
|
|
176
|
-
|
|
177
|
-
const filterSensitiveLog: (obj: UnsupportedPricingPlanException) => any;
|
|
178
|
-
}
|
|
179
167
|
|
|
180
168
|
export interface RegisteredUserDashboardEmbeddingConfiguration {
|
|
181
169
|
|
|
@@ -250,10 +238,6 @@ export interface QuickSightUserNotFoundException extends __SmithyException, $Met
|
|
|
250
238
|
|
|
251
239
|
RequestId?: string;
|
|
252
240
|
}
|
|
253
|
-
export declare namespace QuickSightUserNotFoundException {
|
|
254
|
-
|
|
255
|
-
const filterSensitiveLog: (obj: QuickSightUserNotFoundException) => any;
|
|
256
|
-
}
|
|
257
241
|
export interface GetDashboardEmbedUrlRequest {
|
|
258
242
|
|
|
259
243
|
AwsAccountId: string | undefined;
|
|
@@ -301,10 +285,6 @@ export interface IdentityTypeNotSupportedException extends __SmithyException, $M
|
|
|
301
285
|
|
|
302
286
|
RequestId?: string;
|
|
303
287
|
}
|
|
304
|
-
export declare namespace IdentityTypeNotSupportedException {
|
|
305
|
-
|
|
306
|
-
const filterSensitiveLog: (obj: IdentityTypeNotSupportedException) => any;
|
|
307
|
-
}
|
|
308
288
|
export interface GetSessionEmbedUrlRequest {
|
|
309
289
|
|
|
310
290
|
AwsAccountId: string | undefined;
|