@aws-sdk/client-quicksight 3.431.0 → 3.432.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/StartAssetBundleImportJobCommand.js +2 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +17 -9
- package/dist-cjs/models/models_1.js +20 -9
- package/dist-cjs/models/models_2.js +17 -25
- package/dist-cjs/models/models_3.js +22 -15
- package/dist-cjs/models/models_4.js +16 -1
- package/dist-cjs/protocols/Aws_restJson1.js +8 -0
- package/dist-es/commands/StartAssetBundleImportJobCommand.js +1 -1
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +14 -6
- package/dist-es/models/models_1.js +15 -4
- package/dist-es/models/models_2.js +13 -22
- package/dist-es/models/models_3.js +22 -13
- package/dist-es/models/models_4.js +14 -1
- package/dist-es/protocols/Aws_restJson1.js +8 -0
- package/dist-types/commands/CreateAnalysisCommand.d.ts +47 -12
- package/dist-types/commands/CreateDashboardCommand.d.ts +47 -12
- package/dist-types/commands/CreateDataSetCommand.d.ts +3 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +25 -0
- package/dist-types/commands/CreateFolderCommand.d.ts +1 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +44 -12
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +11 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/DescribeFolderCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/ListDataSourcesCommand.d.ts +22 -0
- package/dist-types/commands/ListFoldersCommand.d.ts +1 -1
- package/dist-types/commands/SearchFoldersCommand.d.ts +2 -2
- package/dist-types/commands/SearchGroupsCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +12 -1
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +44 -12
- package/dist-types/commands/UpdateDashboardCommand.d.ts +44 -12
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +44 -12
- package/dist-types/models/models_0.d.ts +111 -106
- package/dist-types/models/models_1.d.ts +137 -122
- package/dist-types/models/models_2.d.ts +320 -310
- package/dist-types/models/models_3.d.ts +309 -290
- package/dist-types/models/models_4.d.ts +290 -2
- package/dist-types/ts3.4/commands/SearchFoldersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleImportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +29 -26
- package/dist-types/ts3.4/models/models_1.d.ts +40 -31
- package/dist-types/ts3.4/models/models_2.d.ts +161 -83
- package/dist-types/ts3.4/models/models_3.d.ts +81 -70
- package/dist-types/ts3.4/models/models_4.d.ts +70 -1
- package/package.json +1 -1
|
@@ -1,7 +1,126 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AccountCustomization, AdHocFilteringOption, AmazonElasticsearchParameters, AmazonOpenSearchParameters, AnalysisDefaults, CalculatedField, ColumnConfiguration, DashboardBehavior, DataSetIdentifierDeclaration, Edition,
|
|
3
|
-
import { AnalysisDefinition, AnalysisSourceEntity, DataSetReference,
|
|
2
|
+
import { AccountCustomization, AdHocFilteringOption, AmazonElasticsearchParameters, AmazonOpenSearchParameters, AnalysisDefaults, CalculatedField, ColumnConfiguration, DashboardBehavior, DataSetIdentifierDeclaration, Edition, FilterGroup, NumberScale, ParameterDeclaration, ResourceStatus, TimeGranularity } from "./models_0";
|
|
3
|
+
import { AnalysisDefinition, AnalysisSourceEntity, DataSetReference, SheetDefinition, SnapshotFileFormatType, SnapshotFileSheetSelectionScope } from "./models_1";
|
|
4
4
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* <p>A structure that contains information that identifies the snapshot that needs to be generated.</p>
|
|
8
|
+
*/
|
|
9
|
+
export interface SnapshotFileSheetSelection {
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
* <p>The sheet ID of the dashboard to generate the snapshot artifact from. This value is required for CSV, Excel, and PDF format types.</p>
|
|
13
|
+
*/
|
|
14
|
+
SheetId: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* <p>The selection scope of the visuals on a sheet of a dashboard that you are generating a snapthot of. You can choose one of the following options.</p>
|
|
18
|
+
* <ul>
|
|
19
|
+
* <li>
|
|
20
|
+
* <p>
|
|
21
|
+
* <code>ALL_VISUALS</code> - Selects all visuals that are on the sheet. This value is required if the snapshot is a PDF.</p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>
|
|
25
|
+
* <code>SELECTED_VISUALS</code> - Select the visual that you want to add to the snapshot. This value is required if the snapshot is a CSV or Excel workbook.</p>
|
|
26
|
+
* </li>
|
|
27
|
+
* </ul>
|
|
28
|
+
*/
|
|
29
|
+
SelectionScope: SnapshotFileSheetSelectionScope | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* <p>
|
|
33
|
+
* A structure that lists the IDs of the visuals in the selected sheet. Supported visual types are table, pivot table visuals. This value is required if you are generating a CSV or Excel workbook. This value supports a maximum of 1 visual ID for CSV and 5 visual IDs across up to 5 sheet selections for Excel. If you are generating an Excel workbook, the order of the visual IDs provided in this structure determines the order of the worksheets in the Excel file.
|
|
34
|
+
* </p>
|
|
35
|
+
*/
|
|
36
|
+
VisualIds?: string[];
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
* <p>A structure that contains the information for the snapshot that you want to generate. This information is provided by you when you start a new snapshot job.</p>
|
|
41
|
+
*/
|
|
42
|
+
export interface SnapshotFile {
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
* <p>A list of <code>SnapshotFileSheetSelection</code> objects that contain information on the dashboard sheet that is exported. These objects provide information about the snapshot artifacts that are generated during the job. This structure can hold a maximum of 5 CSV configurations, 5 Excel configurations, or 1 configuration for PDF.</p>
|
|
46
|
+
*/
|
|
47
|
+
SheetSelections: SnapshotFileSheetSelection[] | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
* <p>The format of the snapshot file to be generated. You can choose between <code>CSV</code>, <code>Excel</code>, or <code>PDF</code>.</p>
|
|
51
|
+
*/
|
|
52
|
+
FormatType: SnapshotFileFormatType | undefined;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* <p>Information on the error that caused the snapshot job to fail.</p>
|
|
57
|
+
*/
|
|
58
|
+
export interface SnapshotJobResultErrorInfo {
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
* <p>The error message.</p>
|
|
62
|
+
*/
|
|
63
|
+
ErrorMessage?: string;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
* <p>The error type.</p>
|
|
67
|
+
*/
|
|
68
|
+
ErrorType?: string;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
* <p>An optional structure that contains the Amazon S3 bucket configuration that the generated snapshots are stored in. If you don't provide this information, generated snapshots are stored in the default Amazon QuickSight bucket.</p>
|
|
73
|
+
*/
|
|
74
|
+
export interface S3BucketConfiguration {
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
* <p>The name of an existing Amazon S3 bucket where the generated snapshot artifacts are sent.</p>
|
|
78
|
+
*/
|
|
79
|
+
BucketName: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
* <p>The prefix of the Amazon S3 bucket that the generated snapshots are stored in.</p>
|
|
83
|
+
*/
|
|
84
|
+
BucketPrefix: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
* <p>The region that the Amazon S3 bucket is located in. The bucket must be located in the same region that the <code>StartDashboardSnapshotJob</code> API call is made.</p>
|
|
88
|
+
*/
|
|
89
|
+
BucketRegion: string | undefined;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
* <p>A structure that describes the Amazon S3 settings to use to save the generated dashboard snapshot.</p>
|
|
94
|
+
*/
|
|
95
|
+
export interface SnapshotS3DestinationConfiguration {
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
* <p>A structure that contains details about the Amazon S3 bucket that the generated dashboard snapshot is saved in.</p>
|
|
99
|
+
*/
|
|
100
|
+
BucketConfiguration?: S3BucketConfiguration;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
* <p>The Amazon S3 result from the snapshot job. The result includes the <code>DestinationConfiguration</code> and the Amazon S3 Uri. If an error occured during the job, the result returns information on the error.</p>
|
|
105
|
+
*/
|
|
106
|
+
export interface SnapshotJobS3Result {
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
* <p>A list of Amazon S3 bucket configurations that are provided when you make a <code>StartDashboardSnapshotJob</code> API call.
|
|
110
|
+
* </p>
|
|
111
|
+
*/
|
|
112
|
+
S3DestinationConfiguration?: SnapshotS3DestinationConfiguration;
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
* <p>The Amazon S3 Uri.</p>
|
|
116
|
+
*/
|
|
117
|
+
S3Uri?: string;
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
* <p>An array of error records that describe any failures that occur while the dashboard snapshot job runs.</p>
|
|
121
|
+
*/
|
|
122
|
+
ErrorInfo?: SnapshotJobResultErrorInfo[];
|
|
123
|
+
}
|
|
5
124
|
/**
|
|
6
125
|
* @public
|
|
7
126
|
* <p>A structure that contains information on the generated snapshot file groups.</p>
|
|
@@ -540,7 +659,7 @@ export interface AwsIotAnalyticsParameters {
|
|
|
540
659
|
}
|
|
541
660
|
/**
|
|
542
661
|
* @public
|
|
543
|
-
* <p>The
|
|
662
|
+
* <p>The parameters that are required to connect to a Databricks data source.</p>
|
|
544
663
|
*/
|
|
545
664
|
export interface DatabricksParameters {
|
|
546
665
|
/**
|
|
@@ -870,6 +989,44 @@ export interface SqlServerParameters {
|
|
|
870
989
|
*/
|
|
871
990
|
Database: string | undefined;
|
|
872
991
|
}
|
|
992
|
+
/**
|
|
993
|
+
* @public
|
|
994
|
+
* @enum
|
|
995
|
+
*/
|
|
996
|
+
export declare const StarburstProductType: {
|
|
997
|
+
readonly ENTERPRISE: "ENTERPRISE";
|
|
998
|
+
readonly GALAXY: "GALAXY";
|
|
999
|
+
};
|
|
1000
|
+
/**
|
|
1001
|
+
* @public
|
|
1002
|
+
*/
|
|
1003
|
+
export type StarburstProductType = (typeof StarburstProductType)[keyof typeof StarburstProductType];
|
|
1004
|
+
/**
|
|
1005
|
+
* @public
|
|
1006
|
+
* <p>The parameters that are required to connect to a Starburst data source.</p>
|
|
1007
|
+
*/
|
|
1008
|
+
export interface StarburstParameters {
|
|
1009
|
+
/**
|
|
1010
|
+
* @public
|
|
1011
|
+
* <p>The host name of the Starburst data source.</p>
|
|
1012
|
+
*/
|
|
1013
|
+
Host: string | undefined;
|
|
1014
|
+
/**
|
|
1015
|
+
* @public
|
|
1016
|
+
* <p>The port for the Starburst data source.</p>
|
|
1017
|
+
*/
|
|
1018
|
+
Port: number | undefined;
|
|
1019
|
+
/**
|
|
1020
|
+
* @public
|
|
1021
|
+
* <p>The catalog name for the Starburst data source.</p>
|
|
1022
|
+
*/
|
|
1023
|
+
Catalog: string | undefined;
|
|
1024
|
+
/**
|
|
1025
|
+
* @public
|
|
1026
|
+
* <p>The product type for the Starburst data source.</p>
|
|
1027
|
+
*/
|
|
1028
|
+
ProductType?: StarburstProductType;
|
|
1029
|
+
}
|
|
873
1030
|
/**
|
|
874
1031
|
* @public
|
|
875
1032
|
* <p>The parameters for Teradata.</p>
|
|
@@ -891,6 +1048,27 @@ export interface TeradataParameters {
|
|
|
891
1048
|
*/
|
|
892
1049
|
Database: string | undefined;
|
|
893
1050
|
}
|
|
1051
|
+
/**
|
|
1052
|
+
* @public
|
|
1053
|
+
* <p>The parameters that are required to connect to a Trino data source.</p>
|
|
1054
|
+
*/
|
|
1055
|
+
export interface TrinoParameters {
|
|
1056
|
+
/**
|
|
1057
|
+
* @public
|
|
1058
|
+
* <p>The host name of the Trino data source.</p>
|
|
1059
|
+
*/
|
|
1060
|
+
Host: string | undefined;
|
|
1061
|
+
/**
|
|
1062
|
+
* @public
|
|
1063
|
+
* <p>The port for the Trino data source.</p>
|
|
1064
|
+
*/
|
|
1065
|
+
Port: number | undefined;
|
|
1066
|
+
/**
|
|
1067
|
+
* @public
|
|
1068
|
+
* <p>The catalog name for the Trino data source.</p>
|
|
1069
|
+
*/
|
|
1070
|
+
Catalog: string | undefined;
|
|
1071
|
+
}
|
|
894
1072
|
/**
|
|
895
1073
|
* @public
|
|
896
1074
|
* <p>The parameters for Twitter.</p>
|
|
@@ -913,7 +1091,7 @@ export interface TwitterParameters {
|
|
|
913
1091
|
* This is a variant type structure. For this structure to be valid, only one of the
|
|
914
1092
|
* attributes can be non-null.</p>
|
|
915
1093
|
*/
|
|
916
|
-
export type DataSourceParameters = DataSourceParameters.AmazonElasticsearchParametersMember | DataSourceParameters.AmazonOpenSearchParametersMember | DataSourceParameters.AthenaParametersMember | DataSourceParameters.AuroraParametersMember | DataSourceParameters.AuroraPostgreSqlParametersMember | DataSourceParameters.AwsIotAnalyticsParametersMember | DataSourceParameters.DatabricksParametersMember | DataSourceParameters.ExasolParametersMember | DataSourceParameters.JiraParametersMember | DataSourceParameters.MariaDbParametersMember | DataSourceParameters.MySqlParametersMember | DataSourceParameters.OracleParametersMember | DataSourceParameters.PostgreSqlParametersMember | DataSourceParameters.PrestoParametersMember | DataSourceParameters.RdsParametersMember | DataSourceParameters.RedshiftParametersMember | DataSourceParameters.S3ParametersMember | DataSourceParameters.ServiceNowParametersMember | DataSourceParameters.SnowflakeParametersMember | DataSourceParameters.SparkParametersMember | DataSourceParameters.SqlServerParametersMember | DataSourceParameters.TeradataParametersMember | DataSourceParameters.TwitterParametersMember | DataSourceParameters.$UnknownMember;
|
|
1094
|
+
export type DataSourceParameters = DataSourceParameters.AmazonElasticsearchParametersMember | DataSourceParameters.AmazonOpenSearchParametersMember | DataSourceParameters.AthenaParametersMember | DataSourceParameters.AuroraParametersMember | DataSourceParameters.AuroraPostgreSqlParametersMember | DataSourceParameters.AwsIotAnalyticsParametersMember | DataSourceParameters.DatabricksParametersMember | DataSourceParameters.ExasolParametersMember | DataSourceParameters.JiraParametersMember | DataSourceParameters.MariaDbParametersMember | DataSourceParameters.MySqlParametersMember | DataSourceParameters.OracleParametersMember | DataSourceParameters.PostgreSqlParametersMember | DataSourceParameters.PrestoParametersMember | DataSourceParameters.RdsParametersMember | DataSourceParameters.RedshiftParametersMember | DataSourceParameters.S3ParametersMember | DataSourceParameters.ServiceNowParametersMember | DataSourceParameters.SnowflakeParametersMember | DataSourceParameters.SparkParametersMember | DataSourceParameters.SqlServerParametersMember | DataSourceParameters.StarburstParametersMember | DataSourceParameters.TeradataParametersMember | DataSourceParameters.TrinoParametersMember | DataSourceParameters.TwitterParametersMember | DataSourceParameters.$UnknownMember;
|
|
917
1095
|
/**
|
|
918
1096
|
* @public
|
|
919
1097
|
*/
|
|
@@ -946,6 +1124,8 @@ export declare namespace DataSourceParameters {
|
|
|
946
1124
|
AmazonOpenSearchParameters?: never;
|
|
947
1125
|
ExasolParameters?: never;
|
|
948
1126
|
DatabricksParameters?: never;
|
|
1127
|
+
StarburstParameters?: never;
|
|
1128
|
+
TrinoParameters?: never;
|
|
949
1129
|
$unknown?: never;
|
|
950
1130
|
}
|
|
951
1131
|
/**
|
|
@@ -976,6 +1156,8 @@ export declare namespace DataSourceParameters {
|
|
|
976
1156
|
AmazonOpenSearchParameters?: never;
|
|
977
1157
|
ExasolParameters?: never;
|
|
978
1158
|
DatabricksParameters?: never;
|
|
1159
|
+
StarburstParameters?: never;
|
|
1160
|
+
TrinoParameters?: never;
|
|
979
1161
|
$unknown?: never;
|
|
980
1162
|
}
|
|
981
1163
|
/**
|
|
@@ -1006,6 +1188,8 @@ export declare namespace DataSourceParameters {
|
|
|
1006
1188
|
AmazonOpenSearchParameters?: never;
|
|
1007
1189
|
ExasolParameters?: never;
|
|
1008
1190
|
DatabricksParameters?: never;
|
|
1191
|
+
StarburstParameters?: never;
|
|
1192
|
+
TrinoParameters?: never;
|
|
1009
1193
|
$unknown?: never;
|
|
1010
1194
|
}
|
|
1011
1195
|
/**
|
|
@@ -1036,6 +1220,8 @@ export declare namespace DataSourceParameters {
|
|
|
1036
1220
|
AmazonOpenSearchParameters?: never;
|
|
1037
1221
|
ExasolParameters?: never;
|
|
1038
1222
|
DatabricksParameters?: never;
|
|
1223
|
+
StarburstParameters?: never;
|
|
1224
|
+
TrinoParameters?: never;
|
|
1039
1225
|
$unknown?: never;
|
|
1040
1226
|
}
|
|
1041
1227
|
/**
|
|
@@ -1066,6 +1252,8 @@ export declare namespace DataSourceParameters {
|
|
|
1066
1252
|
AmazonOpenSearchParameters?: never;
|
|
1067
1253
|
ExasolParameters?: never;
|
|
1068
1254
|
DatabricksParameters?: never;
|
|
1255
|
+
StarburstParameters?: never;
|
|
1256
|
+
TrinoParameters?: never;
|
|
1069
1257
|
$unknown?: never;
|
|
1070
1258
|
}
|
|
1071
1259
|
/**
|
|
@@ -1096,6 +1284,8 @@ export declare namespace DataSourceParameters {
|
|
|
1096
1284
|
AmazonOpenSearchParameters?: never;
|
|
1097
1285
|
ExasolParameters?: never;
|
|
1098
1286
|
DatabricksParameters?: never;
|
|
1287
|
+
StarburstParameters?: never;
|
|
1288
|
+
TrinoParameters?: never;
|
|
1099
1289
|
$unknown?: never;
|
|
1100
1290
|
}
|
|
1101
1291
|
/**
|
|
@@ -1126,6 +1316,8 @@ export declare namespace DataSourceParameters {
|
|
|
1126
1316
|
AmazonOpenSearchParameters?: never;
|
|
1127
1317
|
ExasolParameters?: never;
|
|
1128
1318
|
DatabricksParameters?: never;
|
|
1319
|
+
StarburstParameters?: never;
|
|
1320
|
+
TrinoParameters?: never;
|
|
1129
1321
|
$unknown?: never;
|
|
1130
1322
|
}
|
|
1131
1323
|
/**
|
|
@@ -1156,6 +1348,8 @@ export declare namespace DataSourceParameters {
|
|
|
1156
1348
|
AmazonOpenSearchParameters?: never;
|
|
1157
1349
|
ExasolParameters?: never;
|
|
1158
1350
|
DatabricksParameters?: never;
|
|
1351
|
+
StarburstParameters?: never;
|
|
1352
|
+
TrinoParameters?: never;
|
|
1159
1353
|
$unknown?: never;
|
|
1160
1354
|
}
|
|
1161
1355
|
/**
|
|
@@ -1186,6 +1380,8 @@ export declare namespace DataSourceParameters {
|
|
|
1186
1380
|
AmazonOpenSearchParameters?: never;
|
|
1187
1381
|
ExasolParameters?: never;
|
|
1188
1382
|
DatabricksParameters?: never;
|
|
1383
|
+
StarburstParameters?: never;
|
|
1384
|
+
TrinoParameters?: never;
|
|
1189
1385
|
$unknown?: never;
|
|
1190
1386
|
}
|
|
1191
1387
|
/**
|
|
@@ -1216,6 +1412,8 @@ export declare namespace DataSourceParameters {
|
|
|
1216
1412
|
AmazonOpenSearchParameters?: never;
|
|
1217
1413
|
ExasolParameters?: never;
|
|
1218
1414
|
DatabricksParameters?: never;
|
|
1415
|
+
StarburstParameters?: never;
|
|
1416
|
+
TrinoParameters?: never;
|
|
1219
1417
|
$unknown?: never;
|
|
1220
1418
|
}
|
|
1221
1419
|
/**
|
|
@@ -1246,6 +1444,8 @@ export declare namespace DataSourceParameters {
|
|
|
1246
1444
|
AmazonOpenSearchParameters?: never;
|
|
1247
1445
|
ExasolParameters?: never;
|
|
1248
1446
|
DatabricksParameters?: never;
|
|
1447
|
+
StarburstParameters?: never;
|
|
1448
|
+
TrinoParameters?: never;
|
|
1249
1449
|
$unknown?: never;
|
|
1250
1450
|
}
|
|
1251
1451
|
/**
|
|
@@ -1276,6 +1476,8 @@ export declare namespace DataSourceParameters {
|
|
|
1276
1476
|
AmazonOpenSearchParameters?: never;
|
|
1277
1477
|
ExasolParameters?: never;
|
|
1278
1478
|
DatabricksParameters?: never;
|
|
1479
|
+
StarburstParameters?: never;
|
|
1480
|
+
TrinoParameters?: never;
|
|
1279
1481
|
$unknown?: never;
|
|
1280
1482
|
}
|
|
1281
1483
|
/**
|
|
@@ -1306,6 +1508,8 @@ export declare namespace DataSourceParameters {
|
|
|
1306
1508
|
AmazonOpenSearchParameters?: never;
|
|
1307
1509
|
ExasolParameters?: never;
|
|
1308
1510
|
DatabricksParameters?: never;
|
|
1511
|
+
StarburstParameters?: never;
|
|
1512
|
+
TrinoParameters?: never;
|
|
1309
1513
|
$unknown?: never;
|
|
1310
1514
|
}
|
|
1311
1515
|
/**
|
|
@@ -1336,6 +1540,8 @@ export declare namespace DataSourceParameters {
|
|
|
1336
1540
|
AmazonOpenSearchParameters?: never;
|
|
1337
1541
|
ExasolParameters?: never;
|
|
1338
1542
|
DatabricksParameters?: never;
|
|
1543
|
+
StarburstParameters?: never;
|
|
1544
|
+
TrinoParameters?: never;
|
|
1339
1545
|
$unknown?: never;
|
|
1340
1546
|
}
|
|
1341
1547
|
/**
|
|
@@ -1366,6 +1572,8 @@ export declare namespace DataSourceParameters {
|
|
|
1366
1572
|
AmazonOpenSearchParameters?: never;
|
|
1367
1573
|
ExasolParameters?: never;
|
|
1368
1574
|
DatabricksParameters?: never;
|
|
1575
|
+
StarburstParameters?: never;
|
|
1576
|
+
TrinoParameters?: never;
|
|
1369
1577
|
$unknown?: never;
|
|
1370
1578
|
}
|
|
1371
1579
|
/**
|
|
@@ -1396,6 +1604,8 @@ export declare namespace DataSourceParameters {
|
|
|
1396
1604
|
AmazonOpenSearchParameters?: never;
|
|
1397
1605
|
ExasolParameters?: never;
|
|
1398
1606
|
DatabricksParameters?: never;
|
|
1607
|
+
StarburstParameters?: never;
|
|
1608
|
+
TrinoParameters?: never;
|
|
1399
1609
|
$unknown?: never;
|
|
1400
1610
|
}
|
|
1401
1611
|
/**
|
|
@@ -1426,6 +1636,8 @@ export declare namespace DataSourceParameters {
|
|
|
1426
1636
|
AmazonOpenSearchParameters?: never;
|
|
1427
1637
|
ExasolParameters?: never;
|
|
1428
1638
|
DatabricksParameters?: never;
|
|
1639
|
+
StarburstParameters?: never;
|
|
1640
|
+
TrinoParameters?: never;
|
|
1429
1641
|
$unknown?: never;
|
|
1430
1642
|
}
|
|
1431
1643
|
/**
|
|
@@ -1456,6 +1668,8 @@ export declare namespace DataSourceParameters {
|
|
|
1456
1668
|
AmazonOpenSearchParameters?: never;
|
|
1457
1669
|
ExasolParameters?: never;
|
|
1458
1670
|
DatabricksParameters?: never;
|
|
1671
|
+
StarburstParameters?: never;
|
|
1672
|
+
TrinoParameters?: never;
|
|
1459
1673
|
$unknown?: never;
|
|
1460
1674
|
}
|
|
1461
1675
|
/**
|
|
@@ -1486,6 +1700,8 @@ export declare namespace DataSourceParameters {
|
|
|
1486
1700
|
AmazonOpenSearchParameters?: never;
|
|
1487
1701
|
ExasolParameters?: never;
|
|
1488
1702
|
DatabricksParameters?: never;
|
|
1703
|
+
StarburstParameters?: never;
|
|
1704
|
+
TrinoParameters?: never;
|
|
1489
1705
|
$unknown?: never;
|
|
1490
1706
|
}
|
|
1491
1707
|
/**
|
|
@@ -1516,6 +1732,8 @@ export declare namespace DataSourceParameters {
|
|
|
1516
1732
|
AmazonOpenSearchParameters?: never;
|
|
1517
1733
|
ExasolParameters?: never;
|
|
1518
1734
|
DatabricksParameters?: never;
|
|
1735
|
+
StarburstParameters?: never;
|
|
1736
|
+
TrinoParameters?: never;
|
|
1519
1737
|
$unknown?: never;
|
|
1520
1738
|
}
|
|
1521
1739
|
/**
|
|
@@ -1546,6 +1764,8 @@ export declare namespace DataSourceParameters {
|
|
|
1546
1764
|
AmazonOpenSearchParameters: AmazonOpenSearchParameters;
|
|
1547
1765
|
ExasolParameters?: never;
|
|
1548
1766
|
DatabricksParameters?: never;
|
|
1767
|
+
StarburstParameters?: never;
|
|
1768
|
+
TrinoParameters?: never;
|
|
1549
1769
|
$unknown?: never;
|
|
1550
1770
|
}
|
|
1551
1771
|
/**
|
|
@@ -1576,11 +1796,13 @@ export declare namespace DataSourceParameters {
|
|
|
1576
1796
|
AmazonOpenSearchParameters?: never;
|
|
1577
1797
|
ExasolParameters: ExasolParameters;
|
|
1578
1798
|
DatabricksParameters?: never;
|
|
1799
|
+
StarburstParameters?: never;
|
|
1800
|
+
TrinoParameters?: never;
|
|
1579
1801
|
$unknown?: never;
|
|
1580
1802
|
}
|
|
1581
1803
|
/**
|
|
1582
1804
|
* @public
|
|
1583
|
-
* <p>The
|
|
1805
|
+
* <p>The parameters that are required to connect to a Databricks data source.</p>
|
|
1584
1806
|
*/
|
|
1585
1807
|
interface DatabricksParametersMember {
|
|
1586
1808
|
AmazonElasticsearchParameters?: never;
|
|
@@ -1606,6 +1828,72 @@ export declare namespace DataSourceParameters {
|
|
|
1606
1828
|
AmazonOpenSearchParameters?: never;
|
|
1607
1829
|
ExasolParameters?: never;
|
|
1608
1830
|
DatabricksParameters: DatabricksParameters;
|
|
1831
|
+
StarburstParameters?: never;
|
|
1832
|
+
TrinoParameters?: never;
|
|
1833
|
+
$unknown?: never;
|
|
1834
|
+
}
|
|
1835
|
+
/**
|
|
1836
|
+
* @public
|
|
1837
|
+
* <p>The parameters that are required to connect to a Starburst data source.</p>
|
|
1838
|
+
*/
|
|
1839
|
+
interface StarburstParametersMember {
|
|
1840
|
+
AmazonElasticsearchParameters?: never;
|
|
1841
|
+
AthenaParameters?: never;
|
|
1842
|
+
AuroraParameters?: never;
|
|
1843
|
+
AuroraPostgreSqlParameters?: never;
|
|
1844
|
+
AwsIotAnalyticsParameters?: never;
|
|
1845
|
+
JiraParameters?: never;
|
|
1846
|
+
MariaDbParameters?: never;
|
|
1847
|
+
MySqlParameters?: never;
|
|
1848
|
+
OracleParameters?: never;
|
|
1849
|
+
PostgreSqlParameters?: never;
|
|
1850
|
+
PrestoParameters?: never;
|
|
1851
|
+
RdsParameters?: never;
|
|
1852
|
+
RedshiftParameters?: never;
|
|
1853
|
+
S3Parameters?: never;
|
|
1854
|
+
ServiceNowParameters?: never;
|
|
1855
|
+
SnowflakeParameters?: never;
|
|
1856
|
+
SparkParameters?: never;
|
|
1857
|
+
SqlServerParameters?: never;
|
|
1858
|
+
TeradataParameters?: never;
|
|
1859
|
+
TwitterParameters?: never;
|
|
1860
|
+
AmazonOpenSearchParameters?: never;
|
|
1861
|
+
ExasolParameters?: never;
|
|
1862
|
+
DatabricksParameters?: never;
|
|
1863
|
+
StarburstParameters: StarburstParameters;
|
|
1864
|
+
TrinoParameters?: never;
|
|
1865
|
+
$unknown?: never;
|
|
1866
|
+
}
|
|
1867
|
+
/**
|
|
1868
|
+
* @public
|
|
1869
|
+
* <p>The parameters that are required to connect to a Trino data source.</p>
|
|
1870
|
+
*/
|
|
1871
|
+
interface TrinoParametersMember {
|
|
1872
|
+
AmazonElasticsearchParameters?: never;
|
|
1873
|
+
AthenaParameters?: never;
|
|
1874
|
+
AuroraParameters?: never;
|
|
1875
|
+
AuroraPostgreSqlParameters?: never;
|
|
1876
|
+
AwsIotAnalyticsParameters?: never;
|
|
1877
|
+
JiraParameters?: never;
|
|
1878
|
+
MariaDbParameters?: never;
|
|
1879
|
+
MySqlParameters?: never;
|
|
1880
|
+
OracleParameters?: never;
|
|
1881
|
+
PostgreSqlParameters?: never;
|
|
1882
|
+
PrestoParameters?: never;
|
|
1883
|
+
RdsParameters?: never;
|
|
1884
|
+
RedshiftParameters?: never;
|
|
1885
|
+
S3Parameters?: never;
|
|
1886
|
+
ServiceNowParameters?: never;
|
|
1887
|
+
SnowflakeParameters?: never;
|
|
1888
|
+
SparkParameters?: never;
|
|
1889
|
+
SqlServerParameters?: never;
|
|
1890
|
+
TeradataParameters?: never;
|
|
1891
|
+
TwitterParameters?: never;
|
|
1892
|
+
AmazonOpenSearchParameters?: never;
|
|
1893
|
+
ExasolParameters?: never;
|
|
1894
|
+
DatabricksParameters?: never;
|
|
1895
|
+
StarburstParameters?: never;
|
|
1896
|
+
TrinoParameters: TrinoParameters;
|
|
1609
1897
|
$unknown?: never;
|
|
1610
1898
|
}
|
|
1611
1899
|
/**
|
|
@@ -1635,6 +1923,8 @@ export declare namespace DataSourceParameters {
|
|
|
1635
1923
|
AmazonOpenSearchParameters?: never;
|
|
1636
1924
|
ExasolParameters?: never;
|
|
1637
1925
|
DatabricksParameters?: never;
|
|
1926
|
+
StarburstParameters?: never;
|
|
1927
|
+
TrinoParameters?: never;
|
|
1638
1928
|
$unknown: [string, any];
|
|
1639
1929
|
}
|
|
1640
1930
|
interface Visitor<T> {
|
|
@@ -1661,6 +1951,8 @@ export declare namespace DataSourceParameters {
|
|
|
1661
1951
|
AmazonOpenSearchParameters: (value: AmazonOpenSearchParameters) => T;
|
|
1662
1952
|
ExasolParameters: (value: ExasolParameters) => T;
|
|
1663
1953
|
DatabricksParameters: (value: DatabricksParameters) => T;
|
|
1954
|
+
StarburstParameters: (value: StarburstParameters) => T;
|
|
1955
|
+
TrinoParameters: (value: TrinoParameters) => T;
|
|
1664
1956
|
_: (name: string, value: any) => T;
|
|
1665
1957
|
}
|
|
1666
1958
|
const visit: <T>(value: DataSourceParameters, visitor: Visitor<T>) => T;
|
|
@@ -3106,6 +3398,11 @@ export interface CreateAnalysisRequest {
|
|
|
3106
3398
|
* <p>The option to relax the validation needed to create an analysis with definition objects. This skips the validation step for specific errors.</p>
|
|
3107
3399
|
*/
|
|
3108
3400
|
ValidationStrategy?: ValidationStrategy;
|
|
3401
|
+
/**
|
|
3402
|
+
* @public
|
|
3403
|
+
* <p>When you create the analysis, Amazon QuickSight adds the analysis to these folders.</p>
|
|
3404
|
+
*/
|
|
3405
|
+
FolderArns?: string[];
|
|
3109
3406
|
}
|
|
3110
3407
|
/**
|
|
3111
3408
|
* @public
|
|
@@ -3576,6 +3873,11 @@ export interface CreateDashboardRequest {
|
|
|
3576
3873
|
* <p>The option to relax the validation needed to create a dashboard with definition objects. This option skips the validation step for specific errors.</p>
|
|
3577
3874
|
*/
|
|
3578
3875
|
ValidationStrategy?: ValidationStrategy;
|
|
3876
|
+
/**
|
|
3877
|
+
* @public
|
|
3878
|
+
* <p>When you create the dashboard, Amazon QuickSight adds the dashboard to these folders.</p>
|
|
3879
|
+
*/
|
|
3880
|
+
FolderArns?: string[];
|
|
3579
3881
|
}
|
|
3580
3882
|
/**
|
|
3581
3883
|
* @public
|
|
@@ -4670,6 +4972,11 @@ export interface CreateDataSetRequest {
|
|
|
4670
4972
|
* <p>The parameter declarations of the dataset.</p>
|
|
4671
4973
|
*/
|
|
4672
4974
|
DatasetParameters?: DatasetParameter[];
|
|
4975
|
+
/**
|
|
4976
|
+
* @public
|
|
4977
|
+
* <p>When you create the dataset, Amazon QuickSight adds the dataset to these folders.</p>
|
|
4978
|
+
*/
|
|
4979
|
+
FolderArns?: string[];
|
|
4673
4980
|
}
|
|
4674
4981
|
/**
|
|
4675
4982
|
* @public
|
|
@@ -4859,6 +5166,11 @@ export interface CreateDataSourceRequest {
|
|
|
4859
5166
|
* <p>Contains a map of the key-value pairs for the resource tag or tags assigned to the data source.</p>
|
|
4860
5167
|
*/
|
|
4861
5168
|
Tags?: Tag[];
|
|
5169
|
+
/**
|
|
5170
|
+
* @public
|
|
5171
|
+
* <p>When you create the data source, Amazon QuickSight adds the data source to these folders.</p>
|
|
5172
|
+
*/
|
|
5173
|
+
FolderArns?: string[];
|
|
4862
5174
|
}
|
|
4863
5175
|
/**
|
|
4864
5176
|
* @public
|
|
@@ -4895,6 +5207,7 @@ export interface CreateDataSourceResponse {
|
|
|
4895
5207
|
* @enum
|
|
4896
5208
|
*/
|
|
4897
5209
|
export declare const FolderType: {
|
|
5210
|
+
readonly RESTRICTED: "RESTRICTED";
|
|
4898
5211
|
readonly SHARED: "SHARED";
|
|
4899
5212
|
};
|
|
4900
5213
|
/**
|
|
@@ -7651,312 +7964,9 @@ export interface CreateVPCConnectionResponse {
|
|
|
7651
7964
|
Status?: number;
|
|
7652
7965
|
}
|
|
7653
7966
|
/**
|
|
7654
|
-
* @
|
|
7655
|
-
* @enum
|
|
7656
|
-
*/
|
|
7657
|
-
export declare const DashboardErrorType: {
|
|
7658
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
7659
|
-
readonly COLUMN_GEOGRAPHIC_ROLE_MISMATCH: "COLUMN_GEOGRAPHIC_ROLE_MISMATCH";
|
|
7660
|
-
readonly COLUMN_REPLACEMENT_MISSING: "COLUMN_REPLACEMENT_MISSING";
|
|
7661
|
-
readonly COLUMN_TYPE_MISMATCH: "COLUMN_TYPE_MISMATCH";
|
|
7662
|
-
readonly DATA_SET_NOT_FOUND: "DATA_SET_NOT_FOUND";
|
|
7663
|
-
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
7664
|
-
readonly PARAMETER_NOT_FOUND: "PARAMETER_NOT_FOUND";
|
|
7665
|
-
readonly PARAMETER_TYPE_INVALID: "PARAMETER_TYPE_INVALID";
|
|
7666
|
-
readonly PARAMETER_VALUE_INCOMPATIBLE: "PARAMETER_VALUE_INCOMPATIBLE";
|
|
7667
|
-
readonly SOURCE_NOT_FOUND: "SOURCE_NOT_FOUND";
|
|
7668
|
-
};
|
|
7669
|
-
/**
|
|
7670
|
-
* @public
|
|
7671
|
-
*/
|
|
7672
|
-
export type DashboardErrorType = (typeof DashboardErrorType)[keyof typeof DashboardErrorType];
|
|
7673
|
-
/**
|
|
7674
|
-
* @public
|
|
7675
|
-
* <p>Dashboard error.</p>
|
|
7676
|
-
*/
|
|
7677
|
-
export interface DashboardError {
|
|
7678
|
-
/**
|
|
7679
|
-
* @public
|
|
7680
|
-
* <p>Type.</p>
|
|
7681
|
-
*/
|
|
7682
|
-
Type?: DashboardErrorType;
|
|
7683
|
-
/**
|
|
7684
|
-
* @public
|
|
7685
|
-
* <p>Message.</p>
|
|
7686
|
-
*/
|
|
7687
|
-
Message?: string;
|
|
7688
|
-
/**
|
|
7689
|
-
* @public
|
|
7690
|
-
* <p>Lists the violated entities that caused the dashboard error.</p>
|
|
7691
|
-
*/
|
|
7692
|
-
ViolatedEntities?: Entity[];
|
|
7693
|
-
}
|
|
7694
|
-
/**
|
|
7695
|
-
* @public
|
|
7696
|
-
* <p>Dashboard version.</p>
|
|
7697
|
-
*/
|
|
7698
|
-
export interface DashboardVersion {
|
|
7699
|
-
/**
|
|
7700
|
-
* @public
|
|
7701
|
-
* <p>The time that this dashboard version was created.</p>
|
|
7702
|
-
*/
|
|
7703
|
-
CreatedTime?: Date;
|
|
7704
|
-
/**
|
|
7705
|
-
* @public
|
|
7706
|
-
* <p>Errors associated with this dashboard version.</p>
|
|
7707
|
-
*/
|
|
7708
|
-
Errors?: DashboardError[];
|
|
7709
|
-
/**
|
|
7710
|
-
* @public
|
|
7711
|
-
* <p>Version number for this version of the dashboard.</p>
|
|
7712
|
-
*/
|
|
7713
|
-
VersionNumber?: number;
|
|
7714
|
-
/**
|
|
7715
|
-
* @public
|
|
7716
|
-
* <p>The HTTP status of the request.</p>
|
|
7717
|
-
*/
|
|
7718
|
-
Status?: ResourceStatus;
|
|
7719
|
-
/**
|
|
7720
|
-
* @public
|
|
7721
|
-
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
7722
|
-
*/
|
|
7723
|
-
Arn?: string;
|
|
7724
|
-
/**
|
|
7725
|
-
* @public
|
|
7726
|
-
* <p>Source entity ARN.</p>
|
|
7727
|
-
*/
|
|
7728
|
-
SourceEntityArn?: string;
|
|
7729
|
-
/**
|
|
7730
|
-
* @public
|
|
7731
|
-
* <p>The Amazon Resource Numbers (ARNs) for the datasets that are associated with this
|
|
7732
|
-
* version of the dashboard.</p>
|
|
7733
|
-
*/
|
|
7734
|
-
DataSetArns?: string[];
|
|
7735
|
-
/**
|
|
7736
|
-
* @public
|
|
7737
|
-
* <p>Description.</p>
|
|
7738
|
-
*/
|
|
7739
|
-
Description?: string;
|
|
7740
|
-
/**
|
|
7741
|
-
* @public
|
|
7742
|
-
* <p>The ARN of the theme associated with a version of the dashboard.</p>
|
|
7743
|
-
*/
|
|
7744
|
-
ThemeArn?: string;
|
|
7745
|
-
/**
|
|
7746
|
-
* @public
|
|
7747
|
-
* <p>A list of the associated sheets with the unique identifier and name of each sheet.</p>
|
|
7748
|
-
*/
|
|
7749
|
-
Sheets?: Sheet[];
|
|
7750
|
-
}
|
|
7751
|
-
/**
|
|
7752
|
-
* @public
|
|
7753
|
-
* <p>Dashboard.</p>
|
|
7754
|
-
*/
|
|
7755
|
-
export interface Dashboard {
|
|
7756
|
-
/**
|
|
7757
|
-
* @public
|
|
7758
|
-
* <p>Dashboard ID.</p>
|
|
7759
|
-
*/
|
|
7760
|
-
DashboardId?: string;
|
|
7761
|
-
/**
|
|
7762
|
-
* @public
|
|
7763
|
-
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
7764
|
-
*/
|
|
7765
|
-
Arn?: string;
|
|
7766
|
-
/**
|
|
7767
|
-
* @public
|
|
7768
|
-
* <p>A display name for the dashboard.</p>
|
|
7769
|
-
*/
|
|
7770
|
-
Name?: string;
|
|
7771
|
-
/**
|
|
7772
|
-
* @public
|
|
7773
|
-
* <p>Version.</p>
|
|
7774
|
-
*/
|
|
7775
|
-
Version?: DashboardVersion;
|
|
7776
|
-
/**
|
|
7777
|
-
* @public
|
|
7778
|
-
* <p>The time that this dashboard was created.</p>
|
|
7779
|
-
*/
|
|
7780
|
-
CreatedTime?: Date;
|
|
7781
|
-
/**
|
|
7782
|
-
* @public
|
|
7783
|
-
* <p>The last time that this dashboard was published.</p>
|
|
7784
|
-
*/
|
|
7785
|
-
LastPublishedTime?: Date;
|
|
7786
|
-
/**
|
|
7787
|
-
* @public
|
|
7788
|
-
* <p>The last time that this dashboard was updated.</p>
|
|
7789
|
-
*/
|
|
7790
|
-
LastUpdatedTime?: Date;
|
|
7791
|
-
}
|
|
7792
|
-
/**
|
|
7793
|
-
* @public
|
|
7794
|
-
* @enum
|
|
7795
|
-
*/
|
|
7796
|
-
export declare const DashboardFilterAttribute: {
|
|
7797
|
-
readonly DASHBOARD_NAME: "DASHBOARD_NAME";
|
|
7798
|
-
readonly DIRECT_QUICKSIGHT_OWNER: "DIRECT_QUICKSIGHT_OWNER";
|
|
7799
|
-
readonly DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER";
|
|
7800
|
-
readonly DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER";
|
|
7801
|
-
readonly QUICKSIGHT_OWNER: "QUICKSIGHT_OWNER";
|
|
7802
|
-
readonly QUICKSIGHT_USER: "QUICKSIGHT_USER";
|
|
7803
|
-
readonly QUICKSIGHT_VIEWER_OR_OWNER: "QUICKSIGHT_VIEWER_OR_OWNER";
|
|
7804
|
-
};
|
|
7805
|
-
/**
|
|
7806
|
-
* @public
|
|
7807
|
-
*/
|
|
7808
|
-
export type DashboardFilterAttribute = (typeof DashboardFilterAttribute)[keyof typeof DashboardFilterAttribute];
|
|
7809
|
-
/**
|
|
7810
|
-
* @public
|
|
7811
|
-
* <p>A filter that you apply when searching for dashboards. </p>
|
|
7812
|
-
*/
|
|
7813
|
-
export interface DashboardSearchFilter {
|
|
7814
|
-
/**
|
|
7815
|
-
* @public
|
|
7816
|
-
* <p>The comparison operator that you want to use as a filter, for example <code>"Operator": "StringEquals"</code>. Valid values are <code>"StringEquals"</code> and <code>"StringLike"</code>.</p>
|
|
7817
|
-
* <p>If you set the operator value to <code>"StringEquals"</code>, you need to provide an ownership related filter in the <code>"NAME"</code> field and the arn of the user or group whose folders you want to search in the <code>"Value"</code> field. For example, <code>"Name":"DIRECT_QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1"</code>.</p>
|
|
7818
|
-
* <p>If you set the value to <code>"StringLike"</code>, you need to provide the name of the folders you are searching for. For example, <code>"Name":"DASHBOARD_NAME", "Operator": "StringLike", "Value": "Test"</code>. The <code>"StringLike"</code> operator only supports the <code>NAME</code> value <code>DASHBOARD_NAME</code>.</p>
|
|
7819
|
-
*/
|
|
7820
|
-
Operator: FilterOperator | undefined;
|
|
7821
|
-
/**
|
|
7822
|
-
* @public
|
|
7823
|
-
* <p>The name of the value that you want to use as a filter, for example, <code>"Name":
|
|
7824
|
-
* "QUICKSIGHT_OWNER"</code>.</p>
|
|
7825
|
-
* <p>Valid values are defined as follows:</p>
|
|
7826
|
-
* <ul>
|
|
7827
|
-
* <li>
|
|
7828
|
-
* <p>
|
|
7829
|
-
* <code>QUICKSIGHT_VIEWER_OR_OWNER</code>: Provide an ARN of a user or group, and any dashboards with that ARN listed as one of the dashboards's owners or viewers are returned. Implicit permissions from folders or groups are considered.</p>
|
|
7830
|
-
* </li>
|
|
7831
|
-
* <li>
|
|
7832
|
-
* <p>
|
|
7833
|
-
* <code>QUICKSIGHT_OWNER</code>: Provide an ARN of a user or group, and any dashboards with that ARN listed as one of the owners of the dashboards are returned. Implicit permissions from folders or groups are considered.</p>
|
|
7834
|
-
* </li>
|
|
7835
|
-
* <li>
|
|
7836
|
-
* <p>
|
|
7837
|
-
* <code>DIRECT_QUICKSIGHT_SOLE_OWNER</code>: Provide an ARN of a user or group, and any dashboards with that ARN listed as the only owner of the dashboard are returned. Implicit permissions from folders or groups are not considered.</p>
|
|
7838
|
-
* </li>
|
|
7839
|
-
* <li>
|
|
7840
|
-
* <p>
|
|
7841
|
-
* <code>DIRECT_QUICKSIGHT_OWNER</code>: Provide an ARN of a user or group, and any dashboards with that ARN listed as one of the owners of the dashboards are returned. Implicit permissions from folders or groups are not considered.</p>
|
|
7842
|
-
* </li>
|
|
7843
|
-
* <li>
|
|
7844
|
-
* <p>
|
|
7845
|
-
* <code>DIRECT_QUICKSIGHT_VIEWER_OR_OWNER</code>: Provide an ARN of a user or group, and any dashboards with that ARN listed as one of the owners or viewers of the dashboards are returned. Implicit permissions from folders or groups are not considered.</p>
|
|
7846
|
-
* </li>
|
|
7847
|
-
* <li>
|
|
7848
|
-
* <p>
|
|
7849
|
-
* <code>DASHBOARD_NAME</code>: Any dashboards whose names have a substring match to this value will be returned.</p>
|
|
7850
|
-
* </li>
|
|
7851
|
-
* </ul>
|
|
7852
|
-
*/
|
|
7853
|
-
Name?: DashboardFilterAttribute;
|
|
7854
|
-
/**
|
|
7855
|
-
* @public
|
|
7856
|
-
* <p>The value of the named item, in this case <code>QUICKSIGHT_USER</code>, that you want
|
|
7857
|
-
* to use as a filter, for example, <code>"Value":
|
|
7858
|
-
* "arn:aws:quicksight:us-east-1:1:user/default/UserName1"</code>. </p>
|
|
7859
|
-
*/
|
|
7860
|
-
Value?: string;
|
|
7861
|
-
}
|
|
7862
|
-
/**
|
|
7863
|
-
* @public
|
|
7864
|
-
* <p>Dashboard summary.</p>
|
|
7865
|
-
*/
|
|
7866
|
-
export interface DashboardSummary {
|
|
7867
|
-
/**
|
|
7868
|
-
* @public
|
|
7869
|
-
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
7870
|
-
*/
|
|
7871
|
-
Arn?: string;
|
|
7872
|
-
/**
|
|
7873
|
-
* @public
|
|
7874
|
-
* <p>Dashboard ID.</p>
|
|
7875
|
-
*/
|
|
7876
|
-
DashboardId?: string;
|
|
7877
|
-
/**
|
|
7878
|
-
* @public
|
|
7879
|
-
* <p>A display name for the dashboard.</p>
|
|
7880
|
-
*/
|
|
7881
|
-
Name?: string;
|
|
7882
|
-
/**
|
|
7883
|
-
* @public
|
|
7884
|
-
* <p>The time that this dashboard was created.</p>
|
|
7885
|
-
*/
|
|
7886
|
-
CreatedTime?: Date;
|
|
7887
|
-
/**
|
|
7888
|
-
* @public
|
|
7889
|
-
* <p>The last time that this dashboard was updated.</p>
|
|
7890
|
-
*/
|
|
7891
|
-
LastUpdatedTime?: Date;
|
|
7892
|
-
/**
|
|
7893
|
-
* @public
|
|
7894
|
-
* <p>Published version number.</p>
|
|
7895
|
-
*/
|
|
7896
|
-
PublishedVersionNumber?: number;
|
|
7897
|
-
/**
|
|
7898
|
-
* @public
|
|
7899
|
-
* <p>The last time that this dashboard was published.</p>
|
|
7900
|
-
*/
|
|
7901
|
-
LastPublishedTime?: Date;
|
|
7902
|
-
}
|
|
7903
|
-
/**
|
|
7904
|
-
* @public
|
|
7905
|
-
* <p>Dashboard version summary.</p>
|
|
7906
|
-
*/
|
|
7907
|
-
export interface DashboardVersionSummary {
|
|
7908
|
-
/**
|
|
7909
|
-
* @public
|
|
7910
|
-
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
7911
|
-
*/
|
|
7912
|
-
Arn?: string;
|
|
7913
|
-
/**
|
|
7914
|
-
* @public
|
|
7915
|
-
* <p>The time that this dashboard version was created.</p>
|
|
7916
|
-
*/
|
|
7917
|
-
CreatedTime?: Date;
|
|
7918
|
-
/**
|
|
7919
|
-
* @public
|
|
7920
|
-
* <p>Version number.</p>
|
|
7921
|
-
*/
|
|
7922
|
-
VersionNumber?: number;
|
|
7923
|
-
/**
|
|
7924
|
-
* @public
|
|
7925
|
-
* <p>The HTTP status of the request.</p>
|
|
7926
|
-
*/
|
|
7927
|
-
Status?: ResourceStatus;
|
|
7928
|
-
/**
|
|
7929
|
-
* @public
|
|
7930
|
-
* <p>Source entity ARN.</p>
|
|
7931
|
-
*/
|
|
7932
|
-
SourceEntityArn?: string;
|
|
7933
|
-
/**
|
|
7934
|
-
* @public
|
|
7935
|
-
* <p>Description.</p>
|
|
7936
|
-
*/
|
|
7937
|
-
Description?: string;
|
|
7938
|
-
}
|
|
7939
|
-
/**
|
|
7940
|
-
* @public
|
|
7941
|
-
* <p>Output column.</p>
|
|
7967
|
+
* @internal
|
|
7942
7968
|
*/
|
|
7943
|
-
export
|
|
7944
|
-
/**
|
|
7945
|
-
* @public
|
|
7946
|
-
* <p>A display name for the dataset.</p>
|
|
7947
|
-
*/
|
|
7948
|
-
Name?: string;
|
|
7949
|
-
/**
|
|
7950
|
-
* @public
|
|
7951
|
-
* <p>A description for a column.</p>
|
|
7952
|
-
*/
|
|
7953
|
-
Description?: string;
|
|
7954
|
-
/**
|
|
7955
|
-
* @public
|
|
7956
|
-
* <p>The type.</p>
|
|
7957
|
-
*/
|
|
7958
|
-
Type?: ColumnDataType;
|
|
7959
|
-
}
|
|
7969
|
+
export declare const SnapshotJobS3ResultFilterSensitiveLog: (obj: SnapshotJobS3Result) => any;
|
|
7960
7970
|
/**
|
|
7961
7971
|
* @internal
|
|
7962
7972
|
*/
|