@aws-sdk/client-quicksight 3.635.0 → 3.637.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/index.js +131 -111
- package/dist-es/commands/CreateDataSourceCommand.js +1 -1
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +0 -3
- package/dist-es/models/models_2.js +9 -58
- package/dist-es/models/models_3.js +58 -31
- package/dist-es/models/models_4.js +31 -0
- package/dist-es/protocols/Aws_restJson1.js +7 -3
- package/dist-types/commands/CreateAnalysisCommand.d.ts +3 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +3 -0
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +3 -0
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +3 -0
- package/dist-types/commands/DescribeVPCConnectionCommand.d.ts +2 -1
- package/dist-types/commands/GenerateEmbedUrlForAnonymousUserCommand.d.ts +11 -0
- package/dist-types/commands/GenerateEmbedUrlForRegisteredUserCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +3 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +23 -58
- package/dist-types/models/models_1.d.ts +59 -63
- package/dist-types/models/models_2.d.ts +126 -179
- package/dist-types/models/models_3.d.ts +184 -172
- package/dist-types/models/models_4.d.ts +184 -2
- package/dist-types/ts3.4/commands/CreateDataSourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeVPCConnectionCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +9 -8
- package/dist-types/ts3.4/models/models_1.d.ts +9 -18
- package/dist-types/ts3.4/models/models_2.d.ts +39 -81
- package/dist-types/ts3.4/models/models_3.d.ts +81 -59
- package/dist-types/ts3.4/models/models_4.d.ts +61 -4
- package/package.json +6 -6
|
@@ -1,7 +1,65 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AccountCustomization, AdHocFilteringOption, AggFunction, AggregationPartitionBy, AggType, AmazonElasticsearchParameters, AmazonOpenSearchParameters, AnalysisDefaults, AssetOptions, AxisDisplayOptions, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, DashboardBehavior, DataLabelOptions, DataSetIdentifierDeclaration, DimensionField, Edition, FilterControl, FilterGroup,
|
|
3
|
-
import { BarChartVisual, BoxPlotVisual, ColumnHierarchy, ComboChartVisual, CustomContentVisual, EmptyVisual, FieldSortOptions, FilledMapVisual, FunnelChartVisual, GaugeChartVisual, GeospatialMapVisual, HeatMapVisual, HistogramVisual, InsightVisual, KPIVisual, LineChartVisual, PieChartVisual, PivotTableVisual, RadarChartVisual, SankeyDiagramVisual, ScatterPlotVisual, TableVisual,
|
|
2
|
+
import { AccountCustomization, AdHocFilteringOption, AggFunction, AggregationPartitionBy, AggType, AmazonElasticsearchParameters, AmazonOpenSearchParameters, AnalysisDefaults, AssetOptions, AxisDisplayOptions, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, DashboardBehavior, DataLabelOptions, DataSetIdentifierDeclaration, DimensionField, Edition, FilterControl, FilterGroup, Layout, LegendOptions, MeasureField, NumberScale, ParameterControl, ParameterDeclaration, QueryExecutionOptions, ResourceStatus, SheetContentType, SheetControlLayout, SheetTextBox, TimeGranularity, TopicTimeGranularity, VisualCustomAction, VisualInteractionOptions, VisualMenuOption } from "./models_0";
|
|
3
|
+
import { BarChartVisual, BoxPlotVisual, ColumnHierarchy, ComboChartVisual, CustomContentVisual, EmptyVisual, FieldSortOptions, FilledMapVisual, FunnelChartVisual, GaugeChartVisual, GeospatialMapVisual, HeatMapVisual, HistogramVisual, InsightVisual, ItemsLimitConfiguration, KPIVisual, LineChartVisual, PieChartVisual, PivotTableVisual, RadarChartVisual, SankeyDiagramVisual, ScatterPlotVisual, TableVisual, TreeMapConfiguration, VisualPalette, VisualSubtitleLabelOptions, VisualTitleLabelOptions } from "./models_1";
|
|
4
4
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* <p>A tree map.</p>
|
|
7
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/tree-map.html">Using tree maps</a> in the <i>Amazon QuickSight User Guide</i>.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface TreeMapVisual {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers..</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
VisualId: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The title that is displayed on the visual.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
Title?: VisualTitleLabelOptions;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The subtitle that is displayed on the visual.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
Subtitle?: VisualSubtitleLabelOptions;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The configuration settings of the visual.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
ChartConfiguration?: TreeMapConfiguration;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The list of custom actions that are configured for a visual.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
Actions?: VisualCustomAction[];
|
|
36
|
+
/**
|
|
37
|
+
* <p>The column hierarchy that is used during drill-downs and drill-ups.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
ColumnHierarchies?: ColumnHierarchy[];
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>The color configuration for individual groups within a waterfall visual.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export interface WaterfallChartGroupColorConfiguration {
|
|
47
|
+
/**
|
|
48
|
+
* <p>Defines the color for the positive bars of a waterfall chart.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
PositiveBarColor?: string;
|
|
52
|
+
/**
|
|
53
|
+
* <p>Defines the color for the negative bars of a waterfall chart.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
NegativeBarColor?: string;
|
|
57
|
+
/**
|
|
58
|
+
* <p>Defines the color for the total bars of a waterfall chart.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
TotalBarColor?: string;
|
|
62
|
+
}
|
|
5
63
|
/**
|
|
6
64
|
* <p>The color configuration of a waterfall visual.</p>
|
|
7
65
|
* @public
|
|
@@ -658,6 +716,11 @@ export interface AnalysisDefinition {
|
|
|
658
716
|
* @public
|
|
659
717
|
*/
|
|
660
718
|
Options?: AssetOptions;
|
|
719
|
+
/**
|
|
720
|
+
* <p>A structure that describes the query execution options.</p>
|
|
721
|
+
* @public
|
|
722
|
+
*/
|
|
723
|
+
QueryExecutionOptions?: QueryExecutionOptions;
|
|
661
724
|
}
|
|
662
725
|
/**
|
|
663
726
|
* @public
|
|
@@ -853,6 +916,50 @@ export interface Anchor {
|
|
|
853
916
|
*/
|
|
854
917
|
Offset?: number;
|
|
855
918
|
}
|
|
919
|
+
/**
|
|
920
|
+
* @public
|
|
921
|
+
* @enum
|
|
922
|
+
*/
|
|
923
|
+
export declare const AnonymousUserDashboardEmbeddingConfigurationDisabledFeature: {
|
|
924
|
+
readonly SHARED_VIEW: "SHARED_VIEW";
|
|
925
|
+
};
|
|
926
|
+
/**
|
|
927
|
+
* @public
|
|
928
|
+
*/
|
|
929
|
+
export type AnonymousUserDashboardEmbeddingConfigurationDisabledFeature = (typeof AnonymousUserDashboardEmbeddingConfigurationDisabledFeature)[keyof typeof AnonymousUserDashboardEmbeddingConfigurationDisabledFeature];
|
|
930
|
+
/**
|
|
931
|
+
* @public
|
|
932
|
+
* @enum
|
|
933
|
+
*/
|
|
934
|
+
export declare const AnonymousUserDashboardEmbeddingConfigurationEnabledFeature: {
|
|
935
|
+
readonly SHARED_VIEW: "SHARED_VIEW";
|
|
936
|
+
};
|
|
937
|
+
/**
|
|
938
|
+
* @public
|
|
939
|
+
*/
|
|
940
|
+
export type AnonymousUserDashboardEmbeddingConfigurationEnabledFeature = (typeof AnonymousUserDashboardEmbeddingConfigurationEnabledFeature)[keyof typeof AnonymousUserDashboardEmbeddingConfigurationEnabledFeature];
|
|
941
|
+
/**
|
|
942
|
+
* <p>The shared view settings of an embedded dashboard.</p>
|
|
943
|
+
* @public
|
|
944
|
+
*/
|
|
945
|
+
export interface SharedViewConfigurations {
|
|
946
|
+
/**
|
|
947
|
+
* <p>The shared view settings of an embedded dashboard.</p>
|
|
948
|
+
* @public
|
|
949
|
+
*/
|
|
950
|
+
Enabled: boolean | undefined;
|
|
951
|
+
}
|
|
952
|
+
/**
|
|
953
|
+
* <p>The feature configuration for an embedded dashboard.</p>
|
|
954
|
+
* @public
|
|
955
|
+
*/
|
|
956
|
+
export interface AnonymousUserDashboardFeatureConfigurations {
|
|
957
|
+
/**
|
|
958
|
+
* <p>The shared view settings of an embedded dashboard.</p>
|
|
959
|
+
* @public
|
|
960
|
+
*/
|
|
961
|
+
SharedView?: SharedViewConfigurations;
|
|
962
|
+
}
|
|
856
963
|
/**
|
|
857
964
|
* <p>Information about the dashboard that you want to embed.</p>
|
|
858
965
|
* @public
|
|
@@ -864,6 +971,21 @@ export interface AnonymousUserDashboardEmbeddingConfiguration {
|
|
|
864
971
|
* @public
|
|
865
972
|
*/
|
|
866
973
|
InitialDashboardId: string | undefined;
|
|
974
|
+
/**
|
|
975
|
+
* <p>A list of all enabled features of a specified anonymous dashboard.</p>
|
|
976
|
+
* @public
|
|
977
|
+
*/
|
|
978
|
+
EnabledFeatures?: AnonymousUserDashboardEmbeddingConfigurationEnabledFeature[];
|
|
979
|
+
/**
|
|
980
|
+
* <p>A list of all disabled features of a specified anonymous dashboard.</p>
|
|
981
|
+
* @public
|
|
982
|
+
*/
|
|
983
|
+
DisabledFeatures?: AnonymousUserDashboardEmbeddingConfigurationDisabledFeature[];
|
|
984
|
+
/**
|
|
985
|
+
* <p>The feature configuration for an embedded dashboard.</p>
|
|
986
|
+
* @public
|
|
987
|
+
*/
|
|
988
|
+
FeatureConfigurations?: AnonymousUserDashboardFeatureConfigurations;
|
|
867
989
|
}
|
|
868
990
|
/**
|
|
869
991
|
* <p>A structure that contains the following elements:</p>
|
|
@@ -7400,180 +7522,9 @@ export interface DataSourceCredentials {
|
|
|
7400
7522
|
SecretArn?: string;
|
|
7401
7523
|
}
|
|
7402
7524
|
/**
|
|
7403
|
-
* @
|
|
7404
|
-
* @enum
|
|
7405
|
-
*/
|
|
7406
|
-
export declare const DataSourceType: {
|
|
7407
|
-
readonly ADOBE_ANALYTICS: "ADOBE_ANALYTICS";
|
|
7408
|
-
readonly AMAZON_ELASTICSEARCH: "AMAZON_ELASTICSEARCH";
|
|
7409
|
-
readonly AMAZON_OPENSEARCH: "AMAZON_OPENSEARCH";
|
|
7410
|
-
readonly ATHENA: "ATHENA";
|
|
7411
|
-
readonly AURORA: "AURORA";
|
|
7412
|
-
readonly AURORA_POSTGRESQL: "AURORA_POSTGRESQL";
|
|
7413
|
-
readonly AWS_IOT_ANALYTICS: "AWS_IOT_ANALYTICS";
|
|
7414
|
-
readonly BIGQUERY: "BIGQUERY";
|
|
7415
|
-
readonly DATABRICKS: "DATABRICKS";
|
|
7416
|
-
readonly EXASOL: "EXASOL";
|
|
7417
|
-
readonly GITHUB: "GITHUB";
|
|
7418
|
-
readonly JIRA: "JIRA";
|
|
7419
|
-
readonly MARIADB: "MARIADB";
|
|
7420
|
-
readonly MYSQL: "MYSQL";
|
|
7421
|
-
readonly ORACLE: "ORACLE";
|
|
7422
|
-
readonly POSTGRESQL: "POSTGRESQL";
|
|
7423
|
-
readonly PRESTO: "PRESTO";
|
|
7424
|
-
readonly REDSHIFT: "REDSHIFT";
|
|
7425
|
-
readonly S3: "S3";
|
|
7426
|
-
readonly SALESFORCE: "SALESFORCE";
|
|
7427
|
-
readonly SERVICENOW: "SERVICENOW";
|
|
7428
|
-
readonly SNOWFLAKE: "SNOWFLAKE";
|
|
7429
|
-
readonly SPARK: "SPARK";
|
|
7430
|
-
readonly SQLSERVER: "SQLSERVER";
|
|
7431
|
-
readonly STARBURST: "STARBURST";
|
|
7432
|
-
readonly TERADATA: "TERADATA";
|
|
7433
|
-
readonly TIMESTREAM: "TIMESTREAM";
|
|
7434
|
-
readonly TRINO: "TRINO";
|
|
7435
|
-
readonly TWITTER: "TWITTER";
|
|
7436
|
-
};
|
|
7437
|
-
/**
|
|
7438
|
-
* @public
|
|
7439
|
-
*/
|
|
7440
|
-
export type DataSourceType = (typeof DataSourceType)[keyof typeof DataSourceType];
|
|
7441
|
-
/**
|
|
7442
|
-
* @public
|
|
7443
|
-
*/
|
|
7444
|
-
export interface CreateDataSourceRequest {
|
|
7445
|
-
/**
|
|
7446
|
-
* <p>The Amazon Web Services account ID.</p>
|
|
7447
|
-
* @public
|
|
7448
|
-
*/
|
|
7449
|
-
AwsAccountId: string | undefined;
|
|
7450
|
-
/**
|
|
7451
|
-
* <p>An ID for the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. </p>
|
|
7452
|
-
* @public
|
|
7453
|
-
*/
|
|
7454
|
-
DataSourceId: string | undefined;
|
|
7455
|
-
/**
|
|
7456
|
-
* <p>A display name for the data source.</p>
|
|
7457
|
-
* @public
|
|
7458
|
-
*/
|
|
7459
|
-
Name: string | undefined;
|
|
7460
|
-
/**
|
|
7461
|
-
* <p>The type of the data source. To return a
|
|
7462
|
-
* list of all data sources, use <code>ListDataSources</code>.</p>
|
|
7463
|
-
* <p>Use <code>AMAZON_ELASTICSEARCH</code> for Amazon OpenSearch Service.</p>
|
|
7464
|
-
* @public
|
|
7465
|
-
*/
|
|
7466
|
-
Type: DataSourceType | undefined;
|
|
7467
|
-
/**
|
|
7468
|
-
* <p>The parameters that Amazon QuickSight uses to connect to your underlying source.</p>
|
|
7469
|
-
* @public
|
|
7470
|
-
*/
|
|
7471
|
-
DataSourceParameters?: DataSourceParameters;
|
|
7472
|
-
/**
|
|
7473
|
-
* <p>The credentials Amazon QuickSight that uses to connect to your underlying source. Currently, only
|
|
7474
|
-
* credentials based on user name and password are supported.</p>
|
|
7475
|
-
* @public
|
|
7476
|
-
*/
|
|
7477
|
-
Credentials?: DataSourceCredentials;
|
|
7478
|
-
/**
|
|
7479
|
-
* <p>A list of resource permissions on the data source.</p>
|
|
7480
|
-
* @public
|
|
7481
|
-
*/
|
|
7482
|
-
Permissions?: ResourcePermission[];
|
|
7483
|
-
/**
|
|
7484
|
-
* <p>Use this parameter only when you want Amazon QuickSight to use a VPC connection when connecting to
|
|
7485
|
-
* your underlying source.</p>
|
|
7486
|
-
* @public
|
|
7487
|
-
*/
|
|
7488
|
-
VpcConnectionProperties?: VpcConnectionProperties;
|
|
7489
|
-
/**
|
|
7490
|
-
* <p>Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your underlying source.</p>
|
|
7491
|
-
* @public
|
|
7492
|
-
*/
|
|
7493
|
-
SslProperties?: SslProperties;
|
|
7494
|
-
/**
|
|
7495
|
-
* <p>Contains a map of the key-value pairs for the resource tag or tags assigned to the data source.</p>
|
|
7496
|
-
* @public
|
|
7497
|
-
*/
|
|
7498
|
-
Tags?: Tag[];
|
|
7499
|
-
/**
|
|
7500
|
-
* <p>When you create the data source, Amazon QuickSight adds the data source to these folders.</p>
|
|
7501
|
-
* @public
|
|
7502
|
-
*/
|
|
7503
|
-
FolderArns?: string[];
|
|
7504
|
-
}
|
|
7505
|
-
/**
|
|
7506
|
-
* @public
|
|
7507
|
-
*/
|
|
7508
|
-
export interface CreateDataSourceResponse {
|
|
7509
|
-
/**
|
|
7510
|
-
* <p>The Amazon Resource Name (ARN) of the data source.</p>
|
|
7511
|
-
* @public
|
|
7512
|
-
*/
|
|
7513
|
-
Arn?: string;
|
|
7514
|
-
/**
|
|
7515
|
-
* <p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
|
|
7516
|
-
* @public
|
|
7517
|
-
*/
|
|
7518
|
-
DataSourceId?: string;
|
|
7519
|
-
/**
|
|
7520
|
-
* <p>The status of creating the data source.</p>
|
|
7521
|
-
* @public
|
|
7522
|
-
*/
|
|
7523
|
-
CreationStatus?: ResourceStatus;
|
|
7524
|
-
/**
|
|
7525
|
-
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
7526
|
-
* @public
|
|
7527
|
-
*/
|
|
7528
|
-
RequestId?: string;
|
|
7529
|
-
/**
|
|
7530
|
-
* <p>The HTTP status of the request.</p>
|
|
7531
|
-
* @public
|
|
7532
|
-
*/
|
|
7533
|
-
Status?: number;
|
|
7534
|
-
}
|
|
7535
|
-
/**
|
|
7536
|
-
* <p>The customer managed key that is registered to your Amazon QuickSight account is unavailable.</p>
|
|
7537
|
-
* @public
|
|
7538
|
-
*/
|
|
7539
|
-
export declare class CustomerManagedKeyUnavailableException extends __BaseException {
|
|
7540
|
-
readonly name: "CustomerManagedKeyUnavailableException";
|
|
7541
|
-
readonly $fault: "client";
|
|
7542
|
-
Message?: string;
|
|
7543
|
-
/**
|
|
7544
|
-
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
7545
|
-
* @public
|
|
7546
|
-
*/
|
|
7547
|
-
RequestId?: string;
|
|
7548
|
-
/**
|
|
7549
|
-
* @internal
|
|
7550
|
-
*/
|
|
7551
|
-
constructor(opts: __ExceptionOptionType<CustomerManagedKeyUnavailableException, __BaseException>);
|
|
7552
|
-
}
|
|
7553
|
-
/**
|
|
7554
|
-
* @public
|
|
7555
|
-
* @enum
|
|
7556
|
-
*/
|
|
7557
|
-
export declare const FolderType: {
|
|
7558
|
-
readonly RESTRICTED: "RESTRICTED";
|
|
7559
|
-
readonly SHARED: "SHARED";
|
|
7560
|
-
};
|
|
7561
|
-
/**
|
|
7562
|
-
* @public
|
|
7563
|
-
*/
|
|
7564
|
-
export type FolderType = (typeof FolderType)[keyof typeof FolderType];
|
|
7565
|
-
/**
|
|
7566
|
-
* @public
|
|
7567
|
-
* @enum
|
|
7568
|
-
*/
|
|
7569
|
-
export declare const SharingModel: {
|
|
7570
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
7571
|
-
readonly NAMESPACE: "NAMESPACE";
|
|
7572
|
-
};
|
|
7573
|
-
/**
|
|
7574
|
-
* @public
|
|
7525
|
+
* @internal
|
|
7575
7526
|
*/
|
|
7576
|
-
export
|
|
7527
|
+
export declare const TreeMapVisualFilterSensitiveLog: (obj: TreeMapVisual) => any;
|
|
7577
7528
|
/**
|
|
7578
7529
|
* @internal
|
|
7579
7530
|
*/
|
|
@@ -7730,7 +7681,3 @@ export declare const CreateDataSetRequestFilterSensitiveLog: (obj: CreateDataSet
|
|
|
7730
7681
|
* @internal
|
|
7731
7682
|
*/
|
|
7732
7683
|
export declare const DataSourceCredentialsFilterSensitiveLog: (obj: DataSourceCredentials) => any;
|
|
7733
|
-
/**
|
|
7734
|
-
* @internal
|
|
7735
|
-
*/
|
|
7736
|
-
export declare const CreateDataSourceRequestFilterSensitiveLog: (obj: CreateDataSourceRequest) => any;
|