@aws-sdk/client-quicksight 3.254.0 → 3.255.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/CreateAnalysisCommand.js +2 -1
- package/dist-cjs/commands/ListDataSourcesCommand.js +2 -1
- package/dist-cjs/commands/ListFolderMembersCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_1.js +13 -25
- package/dist-cjs/models/models_2.js +27 -16
- package/dist-cjs/models/models_3.js +12 -3
- package/dist-cjs/protocols/Aws_restJson1.js +49 -1
- package/dist-es/commands/CreateAnalysisCommand.js +2 -1
- package/dist-es/commands/ListDataSourcesCommand.js +2 -1
- package/dist-es/commands/ListFolderMembersCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_1.js +6 -18
- package/dist-es/models/models_2.js +18 -7
- package/dist-es/models/models_3.js +8 -1
- package/dist-es/protocols/Aws_restJson1.js +50 -2
- package/dist-types/QuickSight.d.ts +1 -1
- package/dist-types/commands/CreateAnalysisCommand.d.ts +2 -1
- package/dist-types/commands/ListDataSourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListFolderMembersCommand.d.ts +1 -2
- package/dist-types/commands/RegisterUserCommand.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +38 -46
- package/dist-types/models/models_2.d.ts +87 -48
- package/dist-types/models/models_3.d.ts +45 -1
- package/dist-types/ts3.4/commands/CreateAnalysisCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListFolderMembersCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_1.d.ts +15 -20
- package/dist-types/ts3.4/models/models_2.d.ts +21 -18
- package/dist-types/ts3.4/models/models_3.d.ts +19 -0
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
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
|
-
import { ConcurrentUpdatingException, ConflictException, InternalFailureException, InvalidParameterValueException,
|
|
5
|
-
import { DataSourceParameters, DomainNotWhitelistedException, IdentityTypeNotSupportedException, InvalidNextTokenException, InvalidRequestException, PhysicalTable, QuickSightUserNotFoundException, SessionLifetimeInMinutesInvalidException, TransformOperation, UnsupportedPricingPlanException, UnsupportedUserEditionException, } from "../models/models_2";
|
|
4
|
+
import { ConcurrentUpdatingException, ConflictException, InternalFailureException, InvalidParameterValueException, PreconditionNotMetException, ResourceExistsException, ResourceNotFoundException, ResourceUnavailableException, ThrottlingException, } from "../models/models_1";
|
|
5
|
+
import { DataSourceParameters, DomainNotWhitelistedException, IdentityTypeNotSupportedException, InvalidNextTokenException, InvalidRequestException, LimitExceededException, PhysicalTable, QuickSightUserNotFoundException, SessionLifetimeInMinutesInvalidException, TransformOperation, UnsupportedPricingPlanException, UnsupportedUserEditionException, } from "../models/models_2";
|
|
6
6
|
import { QuickSightServiceException as __BaseException } from "../models/QuickSightServiceException";
|
|
7
7
|
export const serializeAws_restJson1CancelIngestionCommand = async (input, context) => {
|
|
8
8
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
@@ -12108,6 +12108,13 @@ const serializeAws_restJson1DashboardVisualPublishOptions = (input, context) =>
|
|
|
12108
12108
|
}),
|
|
12109
12109
|
};
|
|
12110
12110
|
};
|
|
12111
|
+
const serializeAws_restJson1DataBarsOptions = (input, context) => {
|
|
12112
|
+
return {
|
|
12113
|
+
...(input.FieldId != null && { FieldId: input.FieldId }),
|
|
12114
|
+
...(input.NegativeColor != null && { NegativeColor: input.NegativeColor }),
|
|
12115
|
+
...(input.PositiveColor != null && { PositiveColor: input.PositiveColor }),
|
|
12116
|
+
};
|
|
12117
|
+
};
|
|
12111
12118
|
const serializeAws_restJson1DatabricksParameters = (input, context) => {
|
|
12112
12119
|
return {
|
|
12113
12120
|
...(input.Host != null && { Host: input.Host }),
|
|
@@ -16062,6 +16069,9 @@ const serializeAws_restJson1TableConfiguration = (input, context) => {
|
|
|
16062
16069
|
...(input.SortConfiguration != null && {
|
|
16063
16070
|
SortConfiguration: serializeAws_restJson1TableSortConfiguration(input.SortConfiguration, context),
|
|
16064
16071
|
}),
|
|
16072
|
+
...(input.TableInlineVisualizations != null && {
|
|
16073
|
+
TableInlineVisualizations: serializeAws_restJson1TableInlineVisualizationList(input.TableInlineVisualizations, context),
|
|
16074
|
+
}),
|
|
16065
16075
|
...(input.TableOptions != null && {
|
|
16066
16076
|
TableOptions: serializeAws_restJson1TableOptions(input.TableOptions, context),
|
|
16067
16077
|
}),
|
|
@@ -16154,6 +16164,18 @@ const serializeAws_restJson1TableFieldWells = (input, context) => {
|
|
|
16154
16164
|
}),
|
|
16155
16165
|
};
|
|
16156
16166
|
};
|
|
16167
|
+
const serializeAws_restJson1TableInlineVisualization = (input, context) => {
|
|
16168
|
+
return {
|
|
16169
|
+
...(input.DataBars != null && { DataBars: serializeAws_restJson1DataBarsOptions(input.DataBars, context) }),
|
|
16170
|
+
};
|
|
16171
|
+
};
|
|
16172
|
+
const serializeAws_restJson1TableInlineVisualizationList = (input, context) => {
|
|
16173
|
+
return input
|
|
16174
|
+
.filter((e) => e != null)
|
|
16175
|
+
.map((entry) => {
|
|
16176
|
+
return serializeAws_restJson1TableInlineVisualization(entry, context);
|
|
16177
|
+
});
|
|
16178
|
+
};
|
|
16157
16179
|
const serializeAws_restJson1TableOptions = (input, context) => {
|
|
16158
16180
|
return {
|
|
16159
16181
|
...(input.CellStyle != null && { CellStyle: serializeAws_restJson1TableCellStyle(input.CellStyle, context) }),
|
|
@@ -18461,6 +18483,13 @@ const deserializeAws_restJson1DashboardVersionSummaryList = (output, context) =>
|
|
|
18461
18483
|
});
|
|
18462
18484
|
return retVal;
|
|
18463
18485
|
};
|
|
18486
|
+
const deserializeAws_restJson1DataBarsOptions = (output, context) => {
|
|
18487
|
+
return {
|
|
18488
|
+
FieldId: __expectString(output.FieldId),
|
|
18489
|
+
NegativeColor: __expectString(output.NegativeColor),
|
|
18490
|
+
PositiveColor: __expectString(output.PositiveColor),
|
|
18491
|
+
};
|
|
18492
|
+
};
|
|
18464
18493
|
const deserializeAws_restJson1DatabricksParameters = (output, context) => {
|
|
18465
18494
|
return {
|
|
18466
18495
|
Host: __expectString(output.Host),
|
|
@@ -22848,6 +22877,9 @@ const deserializeAws_restJson1TableConfiguration = (output, context) => {
|
|
|
22848
22877
|
SortConfiguration: output.SortConfiguration != null
|
|
22849
22878
|
? deserializeAws_restJson1TableSortConfiguration(output.SortConfiguration, context)
|
|
22850
22879
|
: undefined,
|
|
22880
|
+
TableInlineVisualizations: output.TableInlineVisualizations != null
|
|
22881
|
+
? deserializeAws_restJson1TableInlineVisualizationList(output.TableInlineVisualizations, context)
|
|
22882
|
+
: undefined,
|
|
22851
22883
|
TableOptions: output.TableOptions != null ? deserializeAws_restJson1TableOptions(output.TableOptions, context) : undefined,
|
|
22852
22884
|
TotalOptions: output.TotalOptions != null ? deserializeAws_restJson1TotalOptions(output.TotalOptions, context) : undefined,
|
|
22853
22885
|
};
|
|
@@ -22940,6 +22972,22 @@ const deserializeAws_restJson1TableFieldWells = (output, context) => {
|
|
|
22940
22972
|
: undefined,
|
|
22941
22973
|
};
|
|
22942
22974
|
};
|
|
22975
|
+
const deserializeAws_restJson1TableInlineVisualization = (output, context) => {
|
|
22976
|
+
return {
|
|
22977
|
+
DataBars: output.DataBars != null ? deserializeAws_restJson1DataBarsOptions(output.DataBars, context) : undefined,
|
|
22978
|
+
};
|
|
22979
|
+
};
|
|
22980
|
+
const deserializeAws_restJson1TableInlineVisualizationList = (output, context) => {
|
|
22981
|
+
const retVal = (output || [])
|
|
22982
|
+
.filter((e) => e != null)
|
|
22983
|
+
.map((entry) => {
|
|
22984
|
+
if (entry === null) {
|
|
22985
|
+
return null;
|
|
22986
|
+
}
|
|
22987
|
+
return deserializeAws_restJson1TableInlineVisualization(entry, context);
|
|
22988
|
+
});
|
|
22989
|
+
return retVal;
|
|
22990
|
+
};
|
|
22943
22991
|
const deserializeAws_restJson1TableOptions = (output, context) => {
|
|
22944
22992
|
return {
|
|
22945
22993
|
CellStyle: output.CellStyle != null ? deserializeAws_restJson1TableCellStyle(output.CellStyle, context) : undefined,
|
|
@@ -959,7 +959,7 @@ export declare class QuickSight extends QuickSightClient {
|
|
|
959
959
|
listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
960
960
|
listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
961
961
|
/**
|
|
962
|
-
* <p>Creates an Amazon QuickSight user
|
|
962
|
+
* <p>Creates an Amazon QuickSight user whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request. When you register a new user from the Amazon QuickSight API, Amazon QuickSight generates a registration URL. The user accesses this registration URL to create their account. Amazon QuickSight doesn't send a registration email to users who are registered from the Amazon QuickSight API. If you want new users to receive a registration email, then add those users in the Amazon QuickSight console. For more information on registering a new user in the Amazon QuickSight console, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/managing-users.html#inviting-users"> Inviting users to access Amazon QuickSight</a>.</p>
|
|
963
963
|
*/
|
|
964
964
|
registerUser(args: RegisterUserCommandInput, options?: __HttpHandlerOptions): Promise<RegisterUserCommandOutput>;
|
|
965
965
|
registerUser(args: RegisterUserCommandInput, cb: (err: any, data?: RegisterUserCommandOutput) => void): void;
|
|
@@ -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 { CreateAnalysisRequest
|
|
4
|
+
import { CreateAnalysisRequest } from "../models/models_1";
|
|
5
|
+
import { CreateAnalysisResponse } from "../models/models_2";
|
|
5
6
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
7
|
export interface CreateAnalysisCommandInput extends CreateAnalysisRequest {
|
|
7
8
|
}
|
|
@@ -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 { ListDataSourcesRequest
|
|
4
|
+
import { ListDataSourcesRequest } from "../models/models_2";
|
|
5
|
+
import { ListDataSourcesResponse } from "../models/models_3";
|
|
5
6
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
7
|
export interface ListDataSourcesCommandInput extends ListDataSourcesRequest {
|
|
7
8
|
}
|
|
@@ -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 { ListFolderMembersRequest } from "../models/
|
|
5
|
-
import { ListFolderMembersResponse } from "../models/models_3";
|
|
4
|
+
import { ListFolderMembersRequest, ListFolderMembersResponse } from "../models/models_3";
|
|
6
5
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
7
6
|
export interface ListFolderMembersCommandInput extends ListFolderMembersRequest {
|
|
8
7
|
}
|
|
@@ -8,7 +8,7 @@ export interface RegisterUserCommandInput extends RegisterUserRequest {
|
|
|
8
8
|
export interface RegisterUserCommandOutput extends RegisterUserResponse, __MetadataBearer {
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* <p>Creates an Amazon QuickSight user
|
|
11
|
+
* <p>Creates an Amazon QuickSight user whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request. When you register a new user from the Amazon QuickSight API, Amazon QuickSight generates a registration URL. The user accesses this registration URL to create their account. Amazon QuickSight doesn't send a registration email to users who are registered from the Amazon QuickSight API. If you want new users to receive a registration email, then add those users in the Amazon QuickSight console. For more information on registering a new user in the Amazon QuickSight console, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/managing-users.html#inviting-users"> Inviting users to access Amazon QuickSight</a>.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
14
|
* ```javascript
|
|
@@ -3517,6 +3517,32 @@ export interface TableSortConfiguration {
|
|
|
3517
3517
|
*/
|
|
3518
3518
|
PaginationConfiguration?: PaginationConfiguration;
|
|
3519
3519
|
}
|
|
3520
|
+
/**
|
|
3521
|
+
* <p>The options for data bars.</p>
|
|
3522
|
+
*/
|
|
3523
|
+
export interface DataBarsOptions {
|
|
3524
|
+
/**
|
|
3525
|
+
* <p>The field ID for the data bars options.</p>
|
|
3526
|
+
*/
|
|
3527
|
+
FieldId: string | undefined;
|
|
3528
|
+
/**
|
|
3529
|
+
* <p>The color of the positive data bar.</p>
|
|
3530
|
+
*/
|
|
3531
|
+
PositiveColor?: string;
|
|
3532
|
+
/**
|
|
3533
|
+
* <p>The color of the negative data bar.</p>
|
|
3534
|
+
*/
|
|
3535
|
+
NegativeColor?: string;
|
|
3536
|
+
}
|
|
3537
|
+
/**
|
|
3538
|
+
* <p>The inline visualization of a specific type to display within a chart.</p>
|
|
3539
|
+
*/
|
|
3540
|
+
export interface TableInlineVisualization {
|
|
3541
|
+
/**
|
|
3542
|
+
* <p>The configuration of the inline visualization of the data bars within a chart.</p>
|
|
3543
|
+
*/
|
|
3544
|
+
DataBars?: DataBarsOptions;
|
|
3545
|
+
}
|
|
3520
3546
|
export declare enum TableOrientation {
|
|
3521
3547
|
HORIZONTAL = "HORIZONTAL",
|
|
3522
3548
|
VERTICAL = "VERTICAL"
|
|
@@ -3595,6 +3621,10 @@ export interface TableConfiguration {
|
|
|
3595
3621
|
* <p>The paginated report options for a table visual.</p>
|
|
3596
3622
|
*/
|
|
3597
3623
|
PaginatedReportOptions?: TablePaginatedReportOptions;
|
|
3624
|
+
/**
|
|
3625
|
+
* <p>A collection of inline visualizations to display within a chart.</p>
|
|
3626
|
+
*/
|
|
3627
|
+
TableInlineVisualizations?: TableInlineVisualization[];
|
|
3598
3628
|
}
|
|
3599
3629
|
/**
|
|
3600
3630
|
* <p>The cell conditional formatting option for a table.</p>
|
|
@@ -5274,48 +5304,6 @@ export interface CreateAnalysisRequest {
|
|
|
5274
5304
|
*/
|
|
5275
5305
|
Definition?: AnalysisDefinition;
|
|
5276
5306
|
}
|
|
5277
|
-
export interface CreateAnalysisResponse {
|
|
5278
|
-
/**
|
|
5279
|
-
* <p>The ARN for the analysis.</p>
|
|
5280
|
-
*/
|
|
5281
|
-
Arn?: string;
|
|
5282
|
-
/**
|
|
5283
|
-
* <p>The ID of the analysis.</p>
|
|
5284
|
-
*/
|
|
5285
|
-
AnalysisId?: string;
|
|
5286
|
-
/**
|
|
5287
|
-
* <p>The status of the creation of the analysis. </p>
|
|
5288
|
-
*/
|
|
5289
|
-
CreationStatus?: ResourceStatus | string;
|
|
5290
|
-
/**
|
|
5291
|
-
* <p>The HTTP status of the request.</p>
|
|
5292
|
-
*/
|
|
5293
|
-
Status?: number;
|
|
5294
|
-
/**
|
|
5295
|
-
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
5296
|
-
*/
|
|
5297
|
-
RequestId?: string;
|
|
5298
|
-
}
|
|
5299
|
-
/**
|
|
5300
|
-
* <p>A limit is exceeded.</p>
|
|
5301
|
-
*/
|
|
5302
|
-
export declare class LimitExceededException extends __BaseException {
|
|
5303
|
-
readonly name: "LimitExceededException";
|
|
5304
|
-
readonly $fault: "client";
|
|
5305
|
-
Message?: string;
|
|
5306
|
-
/**
|
|
5307
|
-
* <p>Limit exceeded.</p>
|
|
5308
|
-
*/
|
|
5309
|
-
ResourceType?: ExceptionResourceType | string;
|
|
5310
|
-
/**
|
|
5311
|
-
* <p>The Amazon Web Services request ID for this request.</p>
|
|
5312
|
-
*/
|
|
5313
|
-
RequestId?: string;
|
|
5314
|
-
/**
|
|
5315
|
-
* @internal
|
|
5316
|
-
*/
|
|
5317
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
5318
|
-
}
|
|
5319
5307
|
/**
|
|
5320
5308
|
* @internal
|
|
5321
5309
|
*/
|
|
@@ -6004,6 +5992,14 @@ export declare const TablePaginatedReportOptionsFilterSensitiveLog: (obj: TableP
|
|
|
6004
5992
|
* @internal
|
|
6005
5993
|
*/
|
|
6006
5994
|
export declare const TableSortConfigurationFilterSensitiveLog: (obj: TableSortConfiguration) => any;
|
|
5995
|
+
/**
|
|
5996
|
+
* @internal
|
|
5997
|
+
*/
|
|
5998
|
+
export declare const DataBarsOptionsFilterSensitiveLog: (obj: DataBarsOptions) => any;
|
|
5999
|
+
/**
|
|
6000
|
+
* @internal
|
|
6001
|
+
*/
|
|
6002
|
+
export declare const TableInlineVisualizationFilterSensitiveLog: (obj: TableInlineVisualization) => any;
|
|
6007
6003
|
/**
|
|
6008
6004
|
* @internal
|
|
6009
6005
|
*/
|
|
@@ -6276,7 +6272,3 @@ export declare const ResourcePermissionFilterSensitiveLog: (obj: ResourcePermiss
|
|
|
6276
6272
|
* @internal
|
|
6277
6273
|
*/
|
|
6278
6274
|
export declare const CreateAnalysisRequestFilterSensitiveLog: (obj: CreateAnalysisRequest) => any;
|
|
6279
|
-
/**
|
|
6280
|
-
* @internal
|
|
6281
|
-
*/
|
|
6282
|
-
export declare const CreateAnalysisResponseFilterSensitiveLog: (obj: CreateAnalysisResponse) => any;
|
|
@@ -1,7 +1,49 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AccountCustomization, AccountInfo, AccountSettings, AdHocFilteringOption, AmazonElasticsearchParameters, AmazonOpenSearchParameters, Analysis, AnalysisDefaults, AnalysisError, CalculatedField, ColumnConfiguration, DashboardBehavior, DataSetIdentifierDeclaration, Entity, FilterGroup, ParameterDeclaration, ResourceStatus, Sheet } from "./models_0";
|
|
3
|
-
import { _Parameters, AnalysisDefinition, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssignmentStatus, AthenaParameters, AuroraParameters, AuroraPostgreSqlParameters, AwsIotAnalyticsParameters, BorderStyle, CalculatedColumn, CastColumnTypeOperation, ColumnDataType, ColumnGroup, ColumnGroupSchema, ColumnLevelPermissionRule, ColumnSchema, ColumnTag, ColumnTagName, DashboardVisualId, DataSetReference, FilterOperator, ResourcePermission, SheetDefinition, Tag } from "./models_1";
|
|
3
|
+
import { _Parameters, AnalysisDefinition, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssignmentStatus, AthenaParameters, AuroraParameters, AuroraPostgreSqlParameters, AwsIotAnalyticsParameters, BorderStyle, CalculatedColumn, CastColumnTypeOperation, ColumnDataType, ColumnGroup, ColumnGroupSchema, ColumnLevelPermissionRule, ColumnSchema, ColumnTag, ColumnTagName, DashboardVisualId, DataSetReference, ExceptionResourceType, FilterOperator, ResourcePermission, SheetDefinition, Tag } from "./models_1";
|
|
4
4
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
5
|
+
export interface CreateAnalysisResponse {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The ARN for the analysis.</p>
|
|
8
|
+
*/
|
|
9
|
+
Arn?: string;
|
|
10
|
+
/**
|
|
11
|
+
* <p>The ID of the analysis.</p>
|
|
12
|
+
*/
|
|
13
|
+
AnalysisId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The status of the creation of the analysis. </p>
|
|
16
|
+
*/
|
|
17
|
+
CreationStatus?: ResourceStatus | string;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The HTTP status of the request.</p>
|
|
20
|
+
*/
|
|
21
|
+
Status?: number;
|
|
22
|
+
/**
|
|
23
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
24
|
+
*/
|
|
25
|
+
RequestId?: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>A limit is exceeded.</p>
|
|
29
|
+
*/
|
|
30
|
+
export declare class LimitExceededException extends __BaseException {
|
|
31
|
+
readonly name: "LimitExceededException";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
Message?: string;
|
|
34
|
+
/**
|
|
35
|
+
* <p>Limit exceeded.</p>
|
|
36
|
+
*/
|
|
37
|
+
ResourceType?: ExceptionResourceType | string;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The Amazon Web Services request ID for this request.</p>
|
|
40
|
+
*/
|
|
41
|
+
RequestId?: string;
|
|
42
|
+
/**
|
|
43
|
+
* @internal
|
|
44
|
+
*/
|
|
45
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
46
|
+
}
|
|
5
47
|
/**
|
|
6
48
|
* <p>This error indicates that you are calling an operation on an Amazon QuickSight
|
|
7
49
|
* subscription where the edition doesn't include support for that operation. Amazon
|
|
@@ -559,7 +601,7 @@ export interface LogicalTable {
|
|
|
559
601
|
*/
|
|
560
602
|
Alias: string | undefined;
|
|
561
603
|
/**
|
|
562
|
-
* <p>Transform operations that act on this logical table
|
|
604
|
+
* <p>Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null. </p>
|
|
563
605
|
*/
|
|
564
606
|
DataTransforms?: TransformOperation[];
|
|
565
607
|
/**
|
|
@@ -5270,7 +5312,7 @@ export interface TemplateError {
|
|
|
5270
5312
|
*/
|
|
5271
5313
|
Message?: string;
|
|
5272
5314
|
/**
|
|
5273
|
-
* <p
|
|
5315
|
+
* <p>An error path that shows which entities caused the template error.</p>
|
|
5274
5316
|
*/
|
|
5275
5317
|
ViolatedEntities?: Entity[];
|
|
5276
5318
|
}
|
|
@@ -5291,7 +5333,44 @@ export interface TemplateVersion {
|
|
|
5291
5333
|
*/
|
|
5292
5334
|
VersionNumber?: number;
|
|
5293
5335
|
/**
|
|
5294
|
-
* <p>The
|
|
5336
|
+
* <p>The status that is associated with the template.</p>
|
|
5337
|
+
* <ul>
|
|
5338
|
+
* <li>
|
|
5339
|
+
* <p>
|
|
5340
|
+
* <code>CREATION_IN_PROGRESS</code>
|
|
5341
|
+
* </p>
|
|
5342
|
+
* </li>
|
|
5343
|
+
* <li>
|
|
5344
|
+
* <p>
|
|
5345
|
+
* <code>CREATION_SUCCESSFUL</code>
|
|
5346
|
+
* </p>
|
|
5347
|
+
* </li>
|
|
5348
|
+
* <li>
|
|
5349
|
+
* <p>
|
|
5350
|
+
* <code>CREATION_FAILED</code>
|
|
5351
|
+
* </p>
|
|
5352
|
+
* </li>
|
|
5353
|
+
* <li>
|
|
5354
|
+
* <p>
|
|
5355
|
+
* <code>UPDATE_IN_PROGRESS</code>
|
|
5356
|
+
* </p>
|
|
5357
|
+
* </li>
|
|
5358
|
+
* <li>
|
|
5359
|
+
* <p>
|
|
5360
|
+
* <code>UPDATE_SUCCESSFUL</code>
|
|
5361
|
+
* </p>
|
|
5362
|
+
* </li>
|
|
5363
|
+
* <li>
|
|
5364
|
+
* <p>
|
|
5365
|
+
* <code>UPDATE_FAILED</code>
|
|
5366
|
+
* </p>
|
|
5367
|
+
* </li>
|
|
5368
|
+
* <li>
|
|
5369
|
+
* <p>
|
|
5370
|
+
* <code>DELETED</code>
|
|
5371
|
+
* </p>
|
|
5372
|
+
* </li>
|
|
5373
|
+
* </ul>
|
|
5295
5374
|
*/
|
|
5296
5375
|
Status?: ResourceStatus | string;
|
|
5297
5376
|
/**
|
|
@@ -6671,42 +6750,10 @@ export interface ListDataSourcesRequest {
|
|
|
6671
6750
|
*/
|
|
6672
6751
|
MaxResults?: number;
|
|
6673
6752
|
}
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
-
DataSources?: DataSource[];
|
|
6679
|
-
/**
|
|
6680
|
-
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
6681
|
-
*/
|
|
6682
|
-
NextToken?: string;
|
|
6683
|
-
/**
|
|
6684
|
-
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
6685
|
-
*/
|
|
6686
|
-
RequestId?: string;
|
|
6687
|
-
/**
|
|
6688
|
-
* <p>The HTTP status of the request.</p>
|
|
6689
|
-
*/
|
|
6690
|
-
Status?: number;
|
|
6691
|
-
}
|
|
6692
|
-
export interface ListFolderMembersRequest {
|
|
6693
|
-
/**
|
|
6694
|
-
* <p>The ID for the Amazon Web Services account that contains the folder.</p>
|
|
6695
|
-
*/
|
|
6696
|
-
AwsAccountId: string | undefined;
|
|
6697
|
-
/**
|
|
6698
|
-
* <p>The ID of the folder.</p>
|
|
6699
|
-
*/
|
|
6700
|
-
FolderId: string | undefined;
|
|
6701
|
-
/**
|
|
6702
|
-
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
6703
|
-
*/
|
|
6704
|
-
NextToken?: string;
|
|
6705
|
-
/**
|
|
6706
|
-
* <p>The maximum number of results to be returned per request.</p>
|
|
6707
|
-
*/
|
|
6708
|
-
MaxResults?: number;
|
|
6709
|
-
}
|
|
6753
|
+
/**
|
|
6754
|
+
* @internal
|
|
6755
|
+
*/
|
|
6756
|
+
export declare const CreateAnalysisResponseFilterSensitiveLog: (obj: CreateAnalysisResponse) => any;
|
|
6710
6757
|
/**
|
|
6711
6758
|
* @internal
|
|
6712
6759
|
*/
|
|
@@ -7731,11 +7778,3 @@ export declare const ListDataSetsResponseFilterSensitiveLog: (obj: ListDataSetsR
|
|
|
7731
7778
|
* @internal
|
|
7732
7779
|
*/
|
|
7733
7780
|
export declare const ListDataSourcesRequestFilterSensitiveLog: (obj: ListDataSourcesRequest) => any;
|
|
7734
|
-
/**
|
|
7735
|
-
* @internal
|
|
7736
|
-
*/
|
|
7737
|
-
export declare const ListDataSourcesResponseFilterSensitiveLog: (obj: ListDataSourcesResponse) => any;
|
|
7738
|
-
/**
|
|
7739
|
-
* @internal
|
|
7740
|
-
*/
|
|
7741
|
-
export declare const ListFolderMembersRequestFilterSensitiveLog: (obj: ListFolderMembersRequest) => any;
|
|
@@ -1,6 +1,42 @@
|
|
|
1
1
|
import { AccountCustomization, ActiveIAMPolicyAssignment, ResourceStatus } from "./models_0";
|
|
2
2
|
import { _Parameters, AnalysisDefinition, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, ResourcePermission, Tag } from "./models_1";
|
|
3
|
-
import { DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionDefinition, DataSetImportMode, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FolderSearchFilter, FolderSummary, Group, GroupMember, GroupSearchFilter, IAMPolicyAssignmentSummary, IdentityType, Ingestion, LinkSharingConfiguration, LogicalTable, MemberIdArnPair, NamespaceInfoV2, PhysicalTable, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ThemeType, User, UserRole, VpcConnectionProperties } from "./models_2";
|
|
3
|
+
import { DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionDefinition, DataSetImportMode, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FolderSearchFilter, FolderSummary, Group, GroupMember, GroupSearchFilter, IAMPolicyAssignmentSummary, IdentityType, Ingestion, LinkSharingConfiguration, LogicalTable, MemberIdArnPair, NamespaceInfoV2, PhysicalTable, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ThemeType, User, UserRole, VpcConnectionProperties } from "./models_2";
|
|
4
|
+
export interface ListDataSourcesResponse {
|
|
5
|
+
/**
|
|
6
|
+
* <p>A list of data sources.</p>
|
|
7
|
+
*/
|
|
8
|
+
DataSources?: DataSource[];
|
|
9
|
+
/**
|
|
10
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
11
|
+
*/
|
|
12
|
+
NextToken?: string;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
15
|
+
*/
|
|
16
|
+
RequestId?: string;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The HTTP status of the request.</p>
|
|
19
|
+
*/
|
|
20
|
+
Status?: number;
|
|
21
|
+
}
|
|
22
|
+
export interface ListFolderMembersRequest {
|
|
23
|
+
/**
|
|
24
|
+
* <p>The ID for the Amazon Web Services account that contains the folder.</p>
|
|
25
|
+
*/
|
|
26
|
+
AwsAccountId: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The ID of the folder.</p>
|
|
29
|
+
*/
|
|
30
|
+
FolderId: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
33
|
+
*/
|
|
34
|
+
NextToken?: string;
|
|
35
|
+
/**
|
|
36
|
+
* <p>The maximum number of results to be returned per request.</p>
|
|
37
|
+
*/
|
|
38
|
+
MaxResults?: number;
|
|
39
|
+
}
|
|
4
40
|
export interface ListFolderMembersResponse {
|
|
5
41
|
/**
|
|
6
42
|
* <p>The HTTP status of the request.</p>
|
|
@@ -2381,6 +2417,14 @@ export interface UpdateUserResponse {
|
|
|
2381
2417
|
*/
|
|
2382
2418
|
Status?: number;
|
|
2383
2419
|
}
|
|
2420
|
+
/**
|
|
2421
|
+
* @internal
|
|
2422
|
+
*/
|
|
2423
|
+
export declare const ListDataSourcesResponseFilterSensitiveLog: (obj: ListDataSourcesResponse) => any;
|
|
2424
|
+
/**
|
|
2425
|
+
* @internal
|
|
2426
|
+
*/
|
|
2427
|
+
export declare const ListFolderMembersRequestFilterSensitiveLog: (obj: ListFolderMembersRequest) => any;
|
|
2384
2428
|
/**
|
|
2385
2429
|
* @internal
|
|
2386
2430
|
*/
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
CreateAnalysisResponse,
|
|
12
|
-
} from "../models/models_1";
|
|
9
|
+
import { CreateAnalysisRequest } from "../models/models_1";
|
|
10
|
+
import { CreateAnalysisResponse } from "../models/models_2";
|
|
13
11
|
import {
|
|
14
12
|
QuickSightClientResolvedConfig,
|
|
15
13
|
ServiceInputTypes,
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
ListDataSourcesResponse,
|
|
12
|
-
} from "../models/models_2";
|
|
9
|
+
import { ListDataSourcesRequest } from "../models/models_2";
|
|
10
|
+
import { ListDataSourcesResponse } 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
|
+
ListFolderMembersRequest,
|
|
11
|
+
ListFolderMembersResponse,
|
|
12
|
+
} from "../models/models_3";
|
|
11
13
|
import {
|
|
12
14
|
QuickSightClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|
|
@@ -1158,6 +1158,14 @@ export interface TableSortConfiguration {
|
|
|
1158
1158
|
RowSort?: FieldSortOptions[];
|
|
1159
1159
|
PaginationConfiguration?: PaginationConfiguration;
|
|
1160
1160
|
}
|
|
1161
|
+
export interface DataBarsOptions {
|
|
1162
|
+
FieldId: string | undefined;
|
|
1163
|
+
PositiveColor?: string;
|
|
1164
|
+
NegativeColor?: string;
|
|
1165
|
+
}
|
|
1166
|
+
export interface TableInlineVisualization {
|
|
1167
|
+
DataBars?: DataBarsOptions;
|
|
1168
|
+
}
|
|
1161
1169
|
export declare enum TableOrientation {
|
|
1162
1170
|
HORIZONTAL = "HORIZONTAL",
|
|
1163
1171
|
VERTICAL = "VERTICAL",
|
|
@@ -1182,6 +1190,7 @@ export interface TableConfiguration {
|
|
|
1182
1190
|
TotalOptions?: TotalOptions;
|
|
1183
1191
|
FieldOptions?: TableFieldOptions;
|
|
1184
1192
|
PaginatedReportOptions?: TablePaginatedReportOptions;
|
|
1193
|
+
TableInlineVisualizations?: TableInlineVisualization[];
|
|
1185
1194
|
}
|
|
1186
1195
|
export interface TableCellConditionalFormatting {
|
|
1187
1196
|
FieldId: string | undefined;
|
|
@@ -1709,23 +1718,6 @@ export interface CreateAnalysisRequest {
|
|
|
1709
1718
|
Tags?: Tag[];
|
|
1710
1719
|
Definition?: AnalysisDefinition;
|
|
1711
1720
|
}
|
|
1712
|
-
export interface CreateAnalysisResponse {
|
|
1713
|
-
Arn?: string;
|
|
1714
|
-
AnalysisId?: string;
|
|
1715
|
-
CreationStatus?: ResourceStatus | string;
|
|
1716
|
-
Status?: number;
|
|
1717
|
-
RequestId?: string;
|
|
1718
|
-
}
|
|
1719
|
-
export declare class LimitExceededException extends __BaseException {
|
|
1720
|
-
readonly name: "LimitExceededException";
|
|
1721
|
-
readonly $fault: "client";
|
|
1722
|
-
Message?: string;
|
|
1723
|
-
ResourceType?: ExceptionResourceType | string;
|
|
1724
|
-
RequestId?: string;
|
|
1725
|
-
constructor(
|
|
1726
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
1727
|
-
);
|
|
1728
|
-
}
|
|
1729
1721
|
export declare const ComboChartVisualFilterSensitiveLog: (
|
|
1730
1722
|
obj: ComboChartVisual
|
|
1731
1723
|
) => any;
|
|
@@ -2220,6 +2212,12 @@ export declare const TablePaginatedReportOptionsFilterSensitiveLog: (
|
|
|
2220
2212
|
export declare const TableSortConfigurationFilterSensitiveLog: (
|
|
2221
2213
|
obj: TableSortConfiguration
|
|
2222
2214
|
) => any;
|
|
2215
|
+
export declare const DataBarsOptionsFilterSensitiveLog: (
|
|
2216
|
+
obj: DataBarsOptions
|
|
2217
|
+
) => any;
|
|
2218
|
+
export declare const TableInlineVisualizationFilterSensitiveLog: (
|
|
2219
|
+
obj: TableInlineVisualization
|
|
2220
|
+
) => any;
|
|
2223
2221
|
export declare const TableOptionsFilterSensitiveLog: (obj: TableOptions) => any;
|
|
2224
2222
|
export declare const TotalOptionsFilterSensitiveLog: (obj: TotalOptions) => any;
|
|
2225
2223
|
export declare const TableConfigurationFilterSensitiveLog: (
|
|
@@ -2404,6 +2402,3 @@ export declare const ResourcePermissionFilterSensitiveLog: (
|
|
|
2404
2402
|
export declare const CreateAnalysisRequestFilterSensitiveLog: (
|
|
2405
2403
|
obj: CreateAnalysisRequest
|
|
2406
2404
|
) => any;
|
|
2407
|
-
export declare const CreateAnalysisResponseFilterSensitiveLog: (
|
|
2408
|
-
obj: CreateAnalysisResponse
|
|
2409
|
-
) => any;
|