@aws-sdk/client-quicksight 3.282.0 → 3.288.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/GetDashboardEmbedUrlCommand.js +2 -1
- package/dist-cjs/commands/GetSessionEmbedUrlCommand.js +1 -2
- package/dist-cjs/models/models_2.js +19 -31
- package/dist-cjs/models/models_3.js +27 -3
- package/dist-cjs/pagination/ListAnalysesPaginator.js +1 -8
- package/dist-cjs/pagination/ListDashboardVersionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListDashboardsPaginator.js +1 -8
- package/dist-cjs/pagination/ListDataSetsPaginator.js +1 -8
- package/dist-cjs/pagination/ListDataSourcesPaginator.js +1 -8
- package/dist-cjs/pagination/ListIngestionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListNamespacesPaginator.js +1 -8
- package/dist-cjs/pagination/ListTemplateAliasesPaginator.js +1 -8
- package/dist-cjs/pagination/ListTemplateVersionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListTemplatesPaginator.js +1 -8
- package/dist-cjs/pagination/ListThemeVersionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListThemesPaginator.js +1 -8
- package/dist-cjs/pagination/SearchAnalysesPaginator.js +1 -8
- package/dist-cjs/pagination/SearchDashboardsPaginator.js +1 -8
- package/dist-cjs/pagination/SearchDataSetsPaginator.js +1 -8
- package/dist-cjs/pagination/SearchDataSourcesPaginator.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +30 -1
- package/dist-es/commands/GetDashboardEmbedUrlCommand.js +2 -1
- package/dist-es/commands/GetSessionEmbedUrlCommand.js +1 -2
- package/dist-es/models/models_2.js +9 -21
- package/dist-es/models/models_3.js +21 -0
- package/dist-es/pagination/ListAnalysesPaginator.js +1 -8
- package/dist-es/pagination/ListDashboardVersionsPaginator.js +1 -8
- package/dist-es/pagination/ListDashboardsPaginator.js +1 -8
- package/dist-es/pagination/ListDataSetsPaginator.js +1 -8
- package/dist-es/pagination/ListDataSourcesPaginator.js +1 -8
- package/dist-es/pagination/ListIngestionsPaginator.js +1 -8
- package/dist-es/pagination/ListNamespacesPaginator.js +1 -8
- package/dist-es/pagination/ListTemplateAliasesPaginator.js +1 -8
- package/dist-es/pagination/ListTemplateVersionsPaginator.js +1 -8
- package/dist-es/pagination/ListTemplatesPaginator.js +1 -8
- package/dist-es/pagination/ListThemeVersionsPaginator.js +1 -8
- package/dist-es/pagination/ListThemesPaginator.js +1 -8
- package/dist-es/pagination/SearchAnalysesPaginator.js +1 -8
- package/dist-es/pagination/SearchDashboardsPaginator.js +1 -8
- package/dist-es/pagination/SearchDataSetsPaginator.js +1 -8
- package/dist-es/pagination/SearchDataSourcesPaginator.js +1 -8
- package/dist-es/protocols/Aws_restJson1.js +31 -2
- package/dist-types/QuickSight.d.ts +1 -1
- package/dist-types/commands/DeleteUserCommand.d.ts +1 -1
- package/dist-types/commands/GetDashboardEmbedUrlCommand.d.ts +2 -1
- package/dist-types/commands/GetSessionEmbedUrlCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +2 -2
- package/dist-types/models/models_1.d.ts +4 -0
- package/dist-types/models/models_2.d.ts +48 -115
- package/dist-types/models/models_3.d.ts +114 -1
- package/dist-types/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetDashboardEmbedUrlCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetSessionEmbedUrlCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +20 -29
- package/dist-types/ts3.4/models/models_3.d.ts +29 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/package.json +9 -9
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { SearchDataSetsCommand, } from "../commands/SearchDataSetsCommand";
|
|
2
|
-
import { QuickSight } from "../QuickSight";
|
|
3
2
|
import { QuickSightClient } from "../QuickSightClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new SearchDataSetsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.searchDataSets(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateSearchDataSets(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateSearchDataSets(config, input, ...additionalArgume
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.NextToken = token;
|
|
16
12
|
input["MaxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof QuickSightClient) {
|
|
13
|
+
if (config.client instanceof QuickSightClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { SearchDataSourcesCommand, } from "../commands/SearchDataSourcesCommand";
|
|
2
|
-
import { QuickSight } from "../QuickSight";
|
|
3
2
|
import { QuickSightClient } from "../QuickSightClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new SearchDataSourcesCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.searchDataSources(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateSearchDataSources(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateSearchDataSources(config, input, ...additionalArg
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.NextToken = token;
|
|
16
12
|
input["MaxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof QuickSightClient) {
|
|
13
|
+
if (config.client instanceof QuickSightClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -2,8 +2,8 @@ import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
|
|
|
2
2
|
import { decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, expectUnion as __expectUnion, limitedParseDouble as __limitedParseDouble, map as __map, parseEpochTimestamp as __parseEpochTimestamp, resolvedPath as __resolvedPath, serializeFloat as __serializeFloat, throwDefaultError, } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { AccessDeniedException, } from "../models/models_0";
|
|
4
4
|
import { ConcurrentUpdatingException, ConflictException, InternalFailureException, InvalidParameterValueException, ResourceExistsException, ResourceNotFoundException, ResourceUnavailableException, ThrottlingException, } from "../models/models_1";
|
|
5
|
-
import { DataSourceParameters, DomainNotWhitelistedException,
|
|
6
|
-
import { InvalidRequestException, } from "../models/models_3";
|
|
5
|
+
import { DataSourceParameters, DomainNotWhitelistedException, InvalidNextTokenException, LimitExceededException, PhysicalTable, PreconditionNotMetException, QuickSightUserNotFoundException, SessionLifetimeInMinutesInvalidException, TransformOperation, UnsupportedPricingPlanException, UnsupportedUserEditionException, } from "../models/models_2";
|
|
6
|
+
import { IdentityTypeNotSupportedException, InvalidRequestException, } from "../models/models_3";
|
|
7
7
|
import { QuickSightServiceException as __BaseException } from "../models/QuickSightServiceException";
|
|
8
8
|
export const serializeAws_restJson1CancelIngestionCommand = async (input, context) => {
|
|
9
9
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
@@ -15069,6 +15069,9 @@ const serializeAws_restJson1PivotTableFieldWells = (input, context) => {
|
|
|
15069
15069
|
const serializeAws_restJson1PivotTableOptions = (input, context) => {
|
|
15070
15070
|
return {
|
|
15071
15071
|
...(input.CellStyle != null && { CellStyle: serializeAws_restJson1TableCellStyle(input.CellStyle, context) }),
|
|
15072
|
+
...(input.CollapsedRowDimensionsVisibility != null && {
|
|
15073
|
+
CollapsedRowDimensionsVisibility: input.CollapsedRowDimensionsVisibility,
|
|
15074
|
+
}),
|
|
15072
15075
|
...(input.ColumnHeaderStyle != null && {
|
|
15073
15076
|
ColumnHeaderStyle: serializeAws_restJson1TableCellStyle(input.ColumnHeaderStyle, context),
|
|
15074
15077
|
}),
|
|
@@ -15431,11 +15434,28 @@ const serializeAws_restJson1ReferenceLineValueLabelConfiguration = (input, conte
|
|
|
15431
15434
|
...(input.RelativePosition != null && { RelativePosition: input.RelativePosition }),
|
|
15432
15435
|
};
|
|
15433
15436
|
};
|
|
15437
|
+
const serializeAws_restJson1RegisteredUserConsoleFeatureConfigurations = (input, context) => {
|
|
15438
|
+
return {
|
|
15439
|
+
...(input.StatePersistence != null && {
|
|
15440
|
+
StatePersistence: serializeAws_restJson1StatePersistenceConfigurations(input.StatePersistence, context),
|
|
15441
|
+
}),
|
|
15442
|
+
};
|
|
15443
|
+
};
|
|
15434
15444
|
const serializeAws_restJson1RegisteredUserDashboardEmbeddingConfiguration = (input, context) => {
|
|
15435
15445
|
return {
|
|
15446
|
+
...(input.FeatureConfigurations != null && {
|
|
15447
|
+
FeatureConfigurations: serializeAws_restJson1RegisteredUserDashboardFeatureConfigurations(input.FeatureConfigurations, context),
|
|
15448
|
+
}),
|
|
15436
15449
|
...(input.InitialDashboardId != null && { InitialDashboardId: input.InitialDashboardId }),
|
|
15437
15450
|
};
|
|
15438
15451
|
};
|
|
15452
|
+
const serializeAws_restJson1RegisteredUserDashboardFeatureConfigurations = (input, context) => {
|
|
15453
|
+
return {
|
|
15454
|
+
...(input.StatePersistence != null && {
|
|
15455
|
+
StatePersistence: serializeAws_restJson1StatePersistenceConfigurations(input.StatePersistence, context),
|
|
15456
|
+
}),
|
|
15457
|
+
};
|
|
15458
|
+
};
|
|
15439
15459
|
const serializeAws_restJson1RegisteredUserDashboardVisualEmbeddingConfiguration = (input, context) => {
|
|
15440
15460
|
return {
|
|
15441
15461
|
...(input.InitialDashboardVisualId != null && {
|
|
@@ -15466,6 +15486,9 @@ const serializeAws_restJson1RegisteredUserQSearchBarEmbeddingConfiguration = (in
|
|
|
15466
15486
|
};
|
|
15467
15487
|
const serializeAws_restJson1RegisteredUserQuickSightConsoleEmbeddingConfiguration = (input, context) => {
|
|
15468
15488
|
return {
|
|
15489
|
+
...(input.FeatureConfigurations != null && {
|
|
15490
|
+
FeatureConfigurations: serializeAws_restJson1RegisteredUserConsoleFeatureConfigurations(input.FeatureConfigurations, context),
|
|
15491
|
+
}),
|
|
15469
15492
|
...(input.InitialPath != null && { InitialPath: input.InitialPath }),
|
|
15470
15493
|
};
|
|
15471
15494
|
};
|
|
@@ -16075,6 +16098,11 @@ const serializeAws_restJson1SslProperties = (input, context) => {
|
|
|
16075
16098
|
...(input.DisableSsl != null && { DisableSsl: input.DisableSsl }),
|
|
16076
16099
|
};
|
|
16077
16100
|
};
|
|
16101
|
+
const serializeAws_restJson1StatePersistenceConfigurations = (input, context) => {
|
|
16102
|
+
return {
|
|
16103
|
+
...(input.Enabled != null && { Enabled: input.Enabled }),
|
|
16104
|
+
};
|
|
16105
|
+
};
|
|
16078
16106
|
const serializeAws_restJson1StringDefaultValueList = (input, context) => {
|
|
16079
16107
|
return input
|
|
16080
16108
|
.filter((e) => e != null)
|
|
@@ -22102,6 +22130,7 @@ const deserializeAws_restJson1PivotTableFieldWells = (output, context) => {
|
|
|
22102
22130
|
const deserializeAws_restJson1PivotTableOptions = (output, context) => {
|
|
22103
22131
|
return {
|
|
22104
22132
|
CellStyle: output.CellStyle != null ? deserializeAws_restJson1TableCellStyle(output.CellStyle, context) : undefined,
|
|
22133
|
+
CollapsedRowDimensionsVisibility: __expectString(output.CollapsedRowDimensionsVisibility),
|
|
22105
22134
|
ColumnHeaderStyle: output.ColumnHeaderStyle != null
|
|
22106
22135
|
? deserializeAws_restJson1TableCellStyle(output.ColumnHeaderStyle, context)
|
|
22107
22136
|
: undefined,
|
|
@@ -440,7 +440,7 @@ export declare class QuickSight extends QuickSightClient {
|
|
|
440
440
|
deleteThemeAlias(args: DeleteThemeAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteThemeAliasCommandOutput) => void): void;
|
|
441
441
|
/**
|
|
442
442
|
* <p>Deletes the Amazon QuickSight user that is associated with the identity of the
|
|
443
|
-
*
|
|
443
|
+
* IAM user or role that's making the call. The IAM user
|
|
444
444
|
* isn't deleted as a result of this call. </p>
|
|
445
445
|
*/
|
|
446
446
|
deleteUser(args: DeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCommandOutput>;
|
|
@@ -15,7 +15,7 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Deletes the Amazon QuickSight user that is associated with the identity of the
|
|
18
|
-
*
|
|
18
|
+
* IAM user or role that's making the call. The IAM user
|
|
19
19
|
* isn't deleted as a result of this call. </p>
|
|
20
20
|
* @example
|
|
21
21
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
-
import { GetDashboardEmbedUrlRequest
|
|
4
|
+
import { GetDashboardEmbedUrlRequest } from "../models/models_2";
|
|
5
|
+
import { GetDashboardEmbedUrlResponse } from "../models/models_3";
|
|
5
6
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
7
|
/**
|
|
7
8
|
* The input for {@link GetDashboardEmbedUrlCommand}.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
-
import { GetSessionEmbedUrlRequest } from "../models/
|
|
5
|
-
import { GetSessionEmbedUrlResponse } from "../models/models_3";
|
|
4
|
+
import { GetSessionEmbedUrlRequest, GetSessionEmbedUrlResponse } from "../models/models_3";
|
|
6
5
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
7
6
|
/**
|
|
8
7
|
* The input for {@link GetSessionEmbedUrlCommand}.
|
|
@@ -4,7 +4,7 @@ import { QuickSightServiceException as __BaseException } from "./QuickSightServi
|
|
|
4
4
|
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
5
5
|
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
6
6
|
* account is authorized to use the Amazon QuickSight service, that your policies have the
|
|
7
|
-
* correct permissions, and that you are using the correct
|
|
7
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
8
8
|
*/
|
|
9
9
|
export declare class AccessDeniedException extends __BaseException {
|
|
10
10
|
readonly name: "AccessDeniedException";
|
|
@@ -374,7 +374,7 @@ export interface AnalysisError {
|
|
|
374
374
|
*/
|
|
375
375
|
Message?: string;
|
|
376
376
|
/**
|
|
377
|
-
* <p
|
|
377
|
+
* <p>Lists the violated entities that caused the analysis error</p>
|
|
378
378
|
*/
|
|
379
379
|
ViolatedEntities?: Entity[];
|
|
380
380
|
}
|
|
@@ -2863,6 +2863,10 @@ export interface PivotTableOptions {
|
|
|
2863
2863
|
* <p>The row alternate color options (widget status, row alternate colors).</p>
|
|
2864
2864
|
*/
|
|
2865
2865
|
RowAlternateColorOptions?: RowAlternateColorOptions;
|
|
2866
|
+
/**
|
|
2867
|
+
* <p>The visibility setting of a pivot table's collapsed row dimension fields. If the value of this structure is <code>HIDDEN</code>, all collapsed columns in a pivot table are automatically hidden. The default value is <code>VISIBLE</code>.</p>
|
|
2868
|
+
*/
|
|
2869
|
+
CollapsedRowDimensionsVisibility?: Visibility | string;
|
|
2866
2870
|
}
|
|
2867
2871
|
export declare enum PivotTableSubtotalLevel {
|
|
2868
2872
|
ALL = "ALL",
|
|
@@ -6176,8 +6176,7 @@ export interface User {
|
|
|
6176
6176
|
*/
|
|
6177
6177
|
IdentityType?: IdentityType | string;
|
|
6178
6178
|
/**
|
|
6179
|
-
* <p>The active status of user. When you create an Amazon QuickSight user that
|
|
6180
|
-
* user or an Active Directory user, that user is inactive until they sign in and provide a
|
|
6179
|
+
* <p>The active status of user. When you create an Amazon QuickSight user that's not an IAM user or an Active Directory user, that user is inactive until they sign in and provide a
|
|
6181
6180
|
* password.</p>
|
|
6182
6181
|
*/
|
|
6183
6182
|
Active?: boolean;
|
|
@@ -6464,6 +6463,24 @@ export declare class UnsupportedPricingPlanException extends __BaseException {
|
|
|
6464
6463
|
*/
|
|
6465
6464
|
constructor(opts: __ExceptionOptionType<UnsupportedPricingPlanException, __BaseException>);
|
|
6466
6465
|
}
|
|
6466
|
+
/**
|
|
6467
|
+
* <p>The state perssitence configuration of an embedded dashboard.</p>
|
|
6468
|
+
*/
|
|
6469
|
+
export interface StatePersistenceConfigurations {
|
|
6470
|
+
/**
|
|
6471
|
+
* <p>Determines if a Amazon QuickSight dashboard's state persistence settings are turned on or off.</p>
|
|
6472
|
+
*/
|
|
6473
|
+
Enabled: boolean | undefined;
|
|
6474
|
+
}
|
|
6475
|
+
/**
|
|
6476
|
+
* <p>The feature configuration for an embedded dashboard.</p>
|
|
6477
|
+
*/
|
|
6478
|
+
export interface RegisteredUserDashboardFeatureConfigurations {
|
|
6479
|
+
/**
|
|
6480
|
+
* <p>The state persistence settings of an embedded dashboard.</p>
|
|
6481
|
+
*/
|
|
6482
|
+
StatePersistence?: StatePersistenceConfigurations;
|
|
6483
|
+
}
|
|
6467
6484
|
/**
|
|
6468
6485
|
* <p>Information about the dashboard you want to embed.</p>
|
|
6469
6486
|
*/
|
|
@@ -6473,6 +6490,10 @@ export interface RegisteredUserDashboardEmbeddingConfiguration {
|
|
|
6473
6490
|
* <p>If the user does not have permission to view this dashboard, they see a permissions error message.</p>
|
|
6474
6491
|
*/
|
|
6475
6492
|
InitialDashboardId: string | undefined;
|
|
6493
|
+
/**
|
|
6494
|
+
* <p>The feature configurations of an embbedded Amazon QuickSight dashboard.</p>
|
|
6495
|
+
*/
|
|
6496
|
+
FeatureConfigurations?: RegisteredUserDashboardFeatureConfigurations;
|
|
6476
6497
|
}
|
|
6477
6498
|
/**
|
|
6478
6499
|
* <p>The experience that you are embedding. You can use this object to generate a url that embeds a visual into your application.</p>
|
|
@@ -6498,6 +6519,15 @@ export interface RegisteredUserQSearchBarEmbeddingConfiguration {
|
|
|
6498
6519
|
*/
|
|
6499
6520
|
InitialTopicId?: string;
|
|
6500
6521
|
}
|
|
6522
|
+
/**
|
|
6523
|
+
* <p>The feature configurations of an embedded Amazon QuickSight console.</p>
|
|
6524
|
+
*/
|
|
6525
|
+
export interface RegisteredUserConsoleFeatureConfigurations {
|
|
6526
|
+
/**
|
|
6527
|
+
* <p>The state persistence configurations of an embedded Amazon QuickSight console.</p>
|
|
6528
|
+
*/
|
|
6529
|
+
StatePersistence?: StatePersistenceConfigurations;
|
|
6530
|
+
}
|
|
6501
6531
|
/**
|
|
6502
6532
|
* <p>Information about the Amazon QuickSight console that you want to embed.</p>
|
|
6503
6533
|
*/
|
|
@@ -6537,6 +6567,10 @@ export interface RegisteredUserQuickSightConsoleEmbeddingConfiguration {
|
|
|
6537
6567
|
* </ul>
|
|
6538
6568
|
*/
|
|
6539
6569
|
InitialPath?: string;
|
|
6570
|
+
/**
|
|
6571
|
+
* <p>The embedding configuration of an embedded Amazon QuickSight console.</p>
|
|
6572
|
+
*/
|
|
6573
|
+
FeatureConfigurations?: RegisteredUserConsoleFeatureConfigurations;
|
|
6540
6574
|
}
|
|
6541
6575
|
/**
|
|
6542
6576
|
* <p>The type of experience you want to embed. For registered users, you can embed Amazon QuickSight dashboards or the Amazon QuickSight console.</p>
|
|
@@ -6724,111 +6758,6 @@ export interface GetDashboardEmbedUrlRequest {
|
|
|
6724
6758
|
*/
|
|
6725
6759
|
AdditionalDashboardIds?: string[];
|
|
6726
6760
|
}
|
|
6727
|
-
/**
|
|
6728
|
-
* <p>Output returned from the <code>GetDashboardEmbedUrl</code> operation.</p>
|
|
6729
|
-
*/
|
|
6730
|
-
export interface GetDashboardEmbedUrlResponse {
|
|
6731
|
-
/**
|
|
6732
|
-
* <p>A single-use URL that you can put into your server-side webpage to embed your
|
|
6733
|
-
* dashboard. This URL is valid for 5 minutes. The API operation provides the URL with an
|
|
6734
|
-
* <code>auth_code</code> value that enables one (and only one) sign-on to a user session
|
|
6735
|
-
* that is valid for 10 hours. </p>
|
|
6736
|
-
*/
|
|
6737
|
-
EmbedUrl?: string;
|
|
6738
|
-
/**
|
|
6739
|
-
* <p>The HTTP status of the request.</p>
|
|
6740
|
-
*/
|
|
6741
|
-
Status?: number;
|
|
6742
|
-
/**
|
|
6743
|
-
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
6744
|
-
*/
|
|
6745
|
-
RequestId?: string;
|
|
6746
|
-
}
|
|
6747
|
-
/**
|
|
6748
|
-
* <p>The identity type specified isn't supported. Supported identity types include
|
|
6749
|
-
* <code>IAM</code> and <code>QUICKSIGHT</code>.</p>
|
|
6750
|
-
*/
|
|
6751
|
-
export declare class IdentityTypeNotSupportedException extends __BaseException {
|
|
6752
|
-
readonly name: "IdentityTypeNotSupportedException";
|
|
6753
|
-
readonly $fault: "client";
|
|
6754
|
-
Message?: string;
|
|
6755
|
-
/**
|
|
6756
|
-
* <p>The Amazon Web Services request ID for this request.</p>
|
|
6757
|
-
*/
|
|
6758
|
-
RequestId?: string;
|
|
6759
|
-
/**
|
|
6760
|
-
* @internal
|
|
6761
|
-
*/
|
|
6762
|
-
constructor(opts: __ExceptionOptionType<IdentityTypeNotSupportedException, __BaseException>);
|
|
6763
|
-
}
|
|
6764
|
-
export interface GetSessionEmbedUrlRequest {
|
|
6765
|
-
/**
|
|
6766
|
-
* <p>The ID for the Amazon Web Services account associated with your Amazon QuickSight subscription.</p>
|
|
6767
|
-
*/
|
|
6768
|
-
AwsAccountId: string | undefined;
|
|
6769
|
-
/**
|
|
6770
|
-
* <p>The URL you use to access the embedded session. The entry point URL is constrained to
|
|
6771
|
-
* the following paths:</p>
|
|
6772
|
-
* <ul>
|
|
6773
|
-
* <li>
|
|
6774
|
-
* <p>
|
|
6775
|
-
* <code>/start</code>
|
|
6776
|
-
* </p>
|
|
6777
|
-
* </li>
|
|
6778
|
-
* <li>
|
|
6779
|
-
* <p>
|
|
6780
|
-
* <code>/start/analyses</code>
|
|
6781
|
-
* </p>
|
|
6782
|
-
* </li>
|
|
6783
|
-
* <li>
|
|
6784
|
-
* <p>
|
|
6785
|
-
* <code>/start/dashboards</code>
|
|
6786
|
-
* </p>
|
|
6787
|
-
* </li>
|
|
6788
|
-
* <li>
|
|
6789
|
-
* <p>
|
|
6790
|
-
* <code>/start/favorites</code>
|
|
6791
|
-
* </p>
|
|
6792
|
-
* </li>
|
|
6793
|
-
* <li>
|
|
6794
|
-
* <p>
|
|
6795
|
-
* <code>/dashboards/<i>DashboardId</i>
|
|
6796
|
-
* </code> - where <code>DashboardId</code> is the actual ID key from the Amazon QuickSight console URL of the dashboard</p>
|
|
6797
|
-
* </li>
|
|
6798
|
-
* <li>
|
|
6799
|
-
* <p>
|
|
6800
|
-
* <code>/analyses/<i>AnalysisId</i>
|
|
6801
|
-
* </code> - where <code>AnalysisId</code> is the actual ID key from the Amazon QuickSight console URL of the analysis</p>
|
|
6802
|
-
* </li>
|
|
6803
|
-
* </ul>
|
|
6804
|
-
*/
|
|
6805
|
-
EntryPoint?: string;
|
|
6806
|
-
/**
|
|
6807
|
-
* <p>How many minutes the session is valid. The session lifetime must be 15-600 minutes.</p>
|
|
6808
|
-
*/
|
|
6809
|
-
SessionLifetimeInMinutes?: number;
|
|
6810
|
-
/**
|
|
6811
|
-
* <p>The Amazon QuickSight user's Amazon Resource Name (ARN), for use with <code>QUICKSIGHT</code> identity type.
|
|
6812
|
-
* You can use this for any type of Amazon QuickSight users in your account (readers, authors, or
|
|
6813
|
-
* admins). They need to be authenticated as one of the following:</p>
|
|
6814
|
-
* <ol>
|
|
6815
|
-
* <li>
|
|
6816
|
-
* <p>Active Directory (AD) users or group members</p>
|
|
6817
|
-
* </li>
|
|
6818
|
-
* <li>
|
|
6819
|
-
* <p>Invited nonfederated users</p>
|
|
6820
|
-
* </li>
|
|
6821
|
-
* <li>
|
|
6822
|
-
* <p>Identity and Access Management (IAM) users and IAM role-based sessions authenticated
|
|
6823
|
-
* through Federated Single Sign-On using SAML, OpenID Connect, or IAM
|
|
6824
|
-
* federation</p>
|
|
6825
|
-
* </li>
|
|
6826
|
-
* </ol>
|
|
6827
|
-
* <p>Omit this parameter for users in the third group, IAM users and IAM role-based
|
|
6828
|
-
* sessions.</p>
|
|
6829
|
-
*/
|
|
6830
|
-
UserArn?: string;
|
|
6831
|
-
}
|
|
6832
6761
|
/**
|
|
6833
6762
|
* @internal
|
|
6834
6763
|
*/
|
|
@@ -7825,6 +7754,14 @@ export declare const GenerateEmbedUrlForAnonymousUserRequestFilterSensitiveLog:
|
|
|
7825
7754
|
* @internal
|
|
7826
7755
|
*/
|
|
7827
7756
|
export declare const GenerateEmbedUrlForAnonymousUserResponseFilterSensitiveLog: (obj: GenerateEmbedUrlForAnonymousUserResponse) => any;
|
|
7757
|
+
/**
|
|
7758
|
+
* @internal
|
|
7759
|
+
*/
|
|
7760
|
+
export declare const StatePersistenceConfigurationsFilterSensitiveLog: (obj: StatePersistenceConfigurations) => any;
|
|
7761
|
+
/**
|
|
7762
|
+
* @internal
|
|
7763
|
+
*/
|
|
7764
|
+
export declare const RegisteredUserDashboardFeatureConfigurationsFilterSensitiveLog: (obj: RegisteredUserDashboardFeatureConfigurations) => any;
|
|
7828
7765
|
/**
|
|
7829
7766
|
* @internal
|
|
7830
7767
|
*/
|
|
@@ -7837,6 +7774,10 @@ export declare const RegisteredUserDashboardVisualEmbeddingConfigurationFilterSe
|
|
|
7837
7774
|
* @internal
|
|
7838
7775
|
*/
|
|
7839
7776
|
export declare const RegisteredUserQSearchBarEmbeddingConfigurationFilterSensitiveLog: (obj: RegisteredUserQSearchBarEmbeddingConfiguration) => any;
|
|
7777
|
+
/**
|
|
7778
|
+
* @internal
|
|
7779
|
+
*/
|
|
7780
|
+
export declare const RegisteredUserConsoleFeatureConfigurationsFilterSensitiveLog: (obj: RegisteredUserConsoleFeatureConfigurations) => any;
|
|
7840
7781
|
/**
|
|
7841
7782
|
* @internal
|
|
7842
7783
|
*/
|
|
@@ -7857,11 +7798,3 @@ export declare const GenerateEmbedUrlForRegisteredUserResponseFilterSensitiveLog
|
|
|
7857
7798
|
* @internal
|
|
7858
7799
|
*/
|
|
7859
7800
|
export declare const GetDashboardEmbedUrlRequestFilterSensitiveLog: (obj: GetDashboardEmbedUrlRequest) => any;
|
|
7860
|
-
/**
|
|
7861
|
-
* @internal
|
|
7862
|
-
*/
|
|
7863
|
-
export declare const GetDashboardEmbedUrlResponseFilterSensitiveLog: (obj: GetDashboardEmbedUrlResponse) => any;
|
|
7864
|
-
/**
|
|
7865
|
-
* @internal
|
|
7866
|
-
*/
|
|
7867
|
-
export declare const GetSessionEmbedUrlRequestFilterSensitiveLog: (obj: GetSessionEmbedUrlRequest) => any;
|
|
@@ -3,6 +3,111 @@ import { AccountCustomization, ActiveIAMPolicyAssignment, ResourceStatus } from
|
|
|
3
3
|
import { AnalysisDefinition, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, Tag } from "./models_1";
|
|
4
4
|
import { _Parameters, DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionDefinition, DashboardVersionSummary, DataSetImportMode, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FolderSearchFilter, FolderSummary, Group, GroupMember, IdentityType, Ingestion, LinkSharingConfiguration, LogicalTable, MemberIdArnPair, NamespaceInfoV2, PhysicalTable, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ThemeType, User, UserRole, VpcConnectionProperties } from "./models_2";
|
|
5
5
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
6
|
+
/**
|
|
7
|
+
* <p>Output returned from the <code>GetDashboardEmbedUrl</code> operation.</p>
|
|
8
|
+
*/
|
|
9
|
+
export interface GetDashboardEmbedUrlResponse {
|
|
10
|
+
/**
|
|
11
|
+
* <p>A single-use URL that you can put into your server-side webpage to embed your
|
|
12
|
+
* dashboard. This URL is valid for 5 minutes. The API operation provides the URL with an
|
|
13
|
+
* <code>auth_code</code> value that enables one (and only one) sign-on to a user session
|
|
14
|
+
* that is valid for 10 hours. </p>
|
|
15
|
+
*/
|
|
16
|
+
EmbedUrl?: string;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The HTTP status of the request.</p>
|
|
19
|
+
*/
|
|
20
|
+
Status?: number;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
23
|
+
*/
|
|
24
|
+
RequestId?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* <p>The identity type specified isn't supported. Supported identity types include
|
|
28
|
+
* <code>IAM</code> and <code>QUICKSIGHT</code>.</p>
|
|
29
|
+
*/
|
|
30
|
+
export declare class IdentityTypeNotSupportedException extends __BaseException {
|
|
31
|
+
readonly name: "IdentityTypeNotSupportedException";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
Message?: string;
|
|
34
|
+
/**
|
|
35
|
+
* <p>The Amazon Web Services request ID for this request.</p>
|
|
36
|
+
*/
|
|
37
|
+
RequestId?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @internal
|
|
40
|
+
*/
|
|
41
|
+
constructor(opts: __ExceptionOptionType<IdentityTypeNotSupportedException, __BaseException>);
|
|
42
|
+
}
|
|
43
|
+
export interface GetSessionEmbedUrlRequest {
|
|
44
|
+
/**
|
|
45
|
+
* <p>The ID for the Amazon Web Services account associated with your Amazon QuickSight subscription.</p>
|
|
46
|
+
*/
|
|
47
|
+
AwsAccountId: string | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The URL you use to access the embedded session. The entry point URL is constrained to
|
|
50
|
+
* the following paths:</p>
|
|
51
|
+
* <ul>
|
|
52
|
+
* <li>
|
|
53
|
+
* <p>
|
|
54
|
+
* <code>/start</code>
|
|
55
|
+
* </p>
|
|
56
|
+
* </li>
|
|
57
|
+
* <li>
|
|
58
|
+
* <p>
|
|
59
|
+
* <code>/start/analyses</code>
|
|
60
|
+
* </p>
|
|
61
|
+
* </li>
|
|
62
|
+
* <li>
|
|
63
|
+
* <p>
|
|
64
|
+
* <code>/start/dashboards</code>
|
|
65
|
+
* </p>
|
|
66
|
+
* </li>
|
|
67
|
+
* <li>
|
|
68
|
+
* <p>
|
|
69
|
+
* <code>/start/favorites</code>
|
|
70
|
+
* </p>
|
|
71
|
+
* </li>
|
|
72
|
+
* <li>
|
|
73
|
+
* <p>
|
|
74
|
+
* <code>/dashboards/<i>DashboardId</i>
|
|
75
|
+
* </code> - where <code>DashboardId</code> is the actual ID key from the Amazon QuickSight console URL of the dashboard</p>
|
|
76
|
+
* </li>
|
|
77
|
+
* <li>
|
|
78
|
+
* <p>
|
|
79
|
+
* <code>/analyses/<i>AnalysisId</i>
|
|
80
|
+
* </code> - where <code>AnalysisId</code> is the actual ID key from the Amazon QuickSight console URL of the analysis</p>
|
|
81
|
+
* </li>
|
|
82
|
+
* </ul>
|
|
83
|
+
*/
|
|
84
|
+
EntryPoint?: string;
|
|
85
|
+
/**
|
|
86
|
+
* <p>How many minutes the session is valid. The session lifetime must be 15-600 minutes.</p>
|
|
87
|
+
*/
|
|
88
|
+
SessionLifetimeInMinutes?: number;
|
|
89
|
+
/**
|
|
90
|
+
* <p>The Amazon QuickSight user's Amazon Resource Name (ARN), for use with <code>QUICKSIGHT</code> identity type.
|
|
91
|
+
* You can use this for any type of Amazon QuickSight users in your account (readers, authors, or
|
|
92
|
+
* admins). They need to be authenticated as one of the following:</p>
|
|
93
|
+
* <ol>
|
|
94
|
+
* <li>
|
|
95
|
+
* <p>Active Directory (AD) users or group members</p>
|
|
96
|
+
* </li>
|
|
97
|
+
* <li>
|
|
98
|
+
* <p>Invited nonfederated users</p>
|
|
99
|
+
* </li>
|
|
100
|
+
* <li>
|
|
101
|
+
* <p>IAM users and IAM role-based sessions authenticated
|
|
102
|
+
* through Federated Single Sign-On using SAML, OpenID Connect, or IAM
|
|
103
|
+
* federation</p>
|
|
104
|
+
* </li>
|
|
105
|
+
* </ol>
|
|
106
|
+
* <p>Omit this parameter for users in the third group, IAM users and IAM role-based
|
|
107
|
+
* sessions.</p>
|
|
108
|
+
*/
|
|
109
|
+
UserArn?: string;
|
|
110
|
+
}
|
|
6
111
|
export interface GetSessionEmbedUrlResponse {
|
|
7
112
|
/**
|
|
8
113
|
* <p>A single-use URL that you can put into your server-side web page to embed your
|
|
@@ -1476,7 +1581,7 @@ export interface UpdateAccountSettingsRequest {
|
|
|
1476
1581
|
AwsAccountId: string | undefined;
|
|
1477
1582
|
/**
|
|
1478
1583
|
* <p>The default namespace for this Amazon Web Services account. Currently, the default is
|
|
1479
|
-
* <code>default</code>.
|
|
1584
|
+
* <code>default</code>. IAM users that
|
|
1480
1585
|
* register for the first time with Amazon QuickSight provide an email address that becomes
|
|
1481
1586
|
* associated with the default namespace.
|
|
1482
1587
|
* </p>
|
|
@@ -2641,6 +2746,14 @@ export interface UpdateUserResponse {
|
|
|
2641
2746
|
*/
|
|
2642
2747
|
Status?: number;
|
|
2643
2748
|
}
|
|
2749
|
+
/**
|
|
2750
|
+
* @internal
|
|
2751
|
+
*/
|
|
2752
|
+
export declare const GetDashboardEmbedUrlResponseFilterSensitiveLog: (obj: GetDashboardEmbedUrlResponse) => any;
|
|
2753
|
+
/**
|
|
2754
|
+
* @internal
|
|
2755
|
+
*/
|
|
2756
|
+
export declare const GetSessionEmbedUrlRequestFilterSensitiveLog: (obj: GetSessionEmbedUrlRequest) => any;
|
|
2644
2757
|
/**
|
|
2645
2758
|
* @internal
|
|
2646
2759
|
*/
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { QuickSight } from "../QuickSight";
|
|
3
2
|
import { QuickSightClient } from "../QuickSightClient";
|
|
4
3
|
export interface QuickSightPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
client:
|
|
4
|
+
client: QuickSightClient;
|
|
6
5
|
}
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
GetDashboardEmbedUrlResponse,
|
|
12
|
-
} from "../models/models_2";
|
|
9
|
+
import { GetDashboardEmbedUrlRequest } from "../models/models_2";
|
|
10
|
+
import { GetDashboardEmbedUrlResponse } from "../models/models_3";
|
|
13
11
|
import {
|
|
14
12
|
QuickSightClientResolvedConfig,
|
|
15
13
|
ServiceInputTypes,
|
|
@@ -6,8 +6,10 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import {
|
|
10
|
+
GetSessionEmbedUrlRequest,
|
|
11
|
+
GetSessionEmbedUrlResponse,
|
|
12
|
+
} from "../models/models_3";
|
|
11
13
|
import {
|
|
12
14
|
QuickSightClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|
|
@@ -948,6 +948,7 @@ export interface PivotTableOptions {
|
|
|
948
948
|
CellStyle?: TableCellStyle;
|
|
949
949
|
RowFieldNamesStyle?: TableCellStyle;
|
|
950
950
|
RowAlternateColorOptions?: RowAlternateColorOptions;
|
|
951
|
+
CollapsedRowDimensionsVisibility?: Visibility | string;
|
|
951
952
|
}
|
|
952
953
|
export declare enum PivotTableSubtotalLevel {
|
|
953
954
|
ALL = "ALL",
|