@aws-sdk/client-quicksight 3.507.0 → 3.510.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 +68 -24
- package/dist-es/models/models_2.js +0 -19
- package/dist-es/models/models_3.js +20 -1
- package/dist-es/protocols/Aws_restJson1.js +44 -0
- package/dist-types/commands/CreateAnalysisCommand.d.ts +64 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +62 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +64 -0
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +64 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +65 -3
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +64 -0
- package/dist-types/commands/ListRefreshSchedulesCommand.d.ts +1 -1
- package/dist-types/commands/ListRoleMembershipsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +64 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +62 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +64 -0
- package/dist-types/models/models_0.d.ts +43 -54
- package/dist-types/models/models_1.d.ts +197 -93
- package/dist-types/models/models_2.d.ts +94 -264
- package/dist-types/models/models_3.d.ts +249 -88
- package/dist-types/models/models_4.d.ts +94 -4
- package/dist-types/ts3.4/commands/ListRefreshSchedulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListRoleMembershipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +11 -13
- package/dist-types/ts3.4/models/models_1.d.ts +47 -25
- package/dist-types/ts3.4/models/models_2.d.ts +24 -68
- package/dist-types/ts3.4/models/models_3.d.ts +67 -31
- package/dist-types/ts3.4/models/models_4.d.ts +24 -5
- package/package.json +2 -2
|
@@ -1,8 +1,251 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { AccountCustomization, AccountInfo, AccountSettings, ActiveIAMPolicyAssignment, Analysis, AnalysisError, Entity, ResourceStatus, Sheet } from "./models_0";
|
|
3
|
-
import { AnalysisDefinition,
|
|
4
|
-
import { _Parameters, AnonymousUserEmbeddingExperienceConfiguration, AnonymousUserSnapshotJobResult, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobError, AssetBundleExportJobStatus, AssetBundleExportJobSummary, AssetBundleExportJobValidationStrategy, AssetBundleExportJobWarning, AssetBundleImportFailureAction, AssetBundleImportJobError, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportJobStatus, AssetBundleImportJobSummary, AssetBundleImportSourceDescription, AssignmentStatus, AuthorizedTargetsByService, BookmarksConfigurations, CategoryFilterFunction, CategoryFilterType, CollectiveConstant, ColumnDataSubType, ColumnDataType, ColumnGroup, ColumnLevelPermissionRule, ConstantType, DashboardPublishOptions, DashboardVersionDefinition, DashboardVisualId,
|
|
3
|
+
import { AnalysisDefinition, FilterOperator } from "./models_1";
|
|
4
|
+
import { _Parameters, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AnonymousUserSnapshotJobResult, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobError, AssetBundleExportJobStatus, AssetBundleExportJobSummary, AssetBundleExportJobValidationStrategy, AssetBundleExportJobWarning, AssetBundleImportFailureAction, AssetBundleImportJobError, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportJobStatus, AssetBundleImportJobSummary, AssetBundleImportSourceDescription, AssignmentStatus, AuthorizedTargetsByService, AuthorSpecifiedAggregation, BookmarksConfigurations, CategoryFilterFunction, CategoryFilterType, CellValueSynonym, CollectiveConstant, ColumnDataRole, ColumnDataSubType, ColumnDataType, ColumnGroup, ColumnLevelPermissionRule, ComparativeOrder, ConstantType, DashboardPublishOptions, DashboardVersionDefinition, DashboardVisualId, DataSetConfiguration, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceParameters, DataSourceType, DefaultAggregation, DefaultFormatting, FieldFolder, FolderType, Group, GroupMember, IdentityStore, IngestionStatus, LinkSharingConfiguration, LogicalTable, MemberType, NamespaceStatus, PhysicalTable, RefreshSchedule, ResourcePermission, Role, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SemanticType, ServiceType, SharingModel, SnapshotFile, SnapshotS3DestinationConfiguration, SslProperties, Tag, TemplateAlias, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, VpcConnectionProperties } from "./models_2";
|
|
5
5
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
* @enum
|
|
9
|
+
*/
|
|
10
|
+
export declare const TopicTimeGranularity: {
|
|
11
|
+
readonly DAY: "DAY";
|
|
12
|
+
readonly HOUR: "HOUR";
|
|
13
|
+
readonly MINUTE: "MINUTE";
|
|
14
|
+
readonly MONTH: "MONTH";
|
|
15
|
+
readonly QUARTER: "QUARTER";
|
|
16
|
+
readonly SECOND: "SECOND";
|
|
17
|
+
readonly WEEK: "WEEK";
|
|
18
|
+
readonly YEAR: "YEAR";
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export type TopicTimeGranularity = (typeof TopicTimeGranularity)[keyof typeof TopicTimeGranularity];
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>A structure that represents a calculated field.</p>
|
|
27
|
+
*/
|
|
28
|
+
export interface TopicCalculatedField {
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* <p>The calculated field name.</p>
|
|
32
|
+
*/
|
|
33
|
+
CalculatedFieldName: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
* <p>The calculated field description.</p>
|
|
37
|
+
*/
|
|
38
|
+
CalculatedFieldDescription?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* <p>The calculated field expression.</p>
|
|
42
|
+
*/
|
|
43
|
+
Expression: string | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
* <p>The other names or aliases for the calculated field.</p>
|
|
47
|
+
*/
|
|
48
|
+
CalculatedFieldSynonyms?: string[];
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
* <p>A boolean value that indicates if a calculated field is included in the topic.</p>
|
|
52
|
+
*/
|
|
53
|
+
IsIncludedInTopic?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* <p>A Boolean value that indicates if a calculated field is visible in the autocomplete.</p>
|
|
57
|
+
*/
|
|
58
|
+
DisableIndexing?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
* <p>The column data role for a calculated field. Valid values for this structure are <code>DIMENSION</code> and <code>MEASURE</code>.</p>
|
|
62
|
+
*/
|
|
63
|
+
ColumnDataRole?: ColumnDataRole;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
* <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
|
|
67
|
+
*/
|
|
68
|
+
TimeGranularity?: TopicTimeGranularity;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
* <p>The default formatting definition.</p>
|
|
72
|
+
*/
|
|
73
|
+
DefaultFormatting?: DefaultFormatting;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* <p>The default aggregation. Valid values for this structure are <code>SUM</code>,
|
|
77
|
+
* <code>MAX</code>, <code>MIN</code>, <code>COUNT</code>,
|
|
78
|
+
* <code>DISTINCT_COUNT</code>,
|
|
79
|
+
* and <code>AVERAGE</code>.</p>
|
|
80
|
+
*/
|
|
81
|
+
Aggregation?: DefaultAggregation;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
* <p>The order in which data is displayed for the calculated field when
|
|
85
|
+
* it's used in a comparative context.</p>
|
|
86
|
+
*/
|
|
87
|
+
ComparativeOrder?: ComparativeOrder;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
* <p>The semantic type.</p>
|
|
91
|
+
*/
|
|
92
|
+
SemanticType?: SemanticType;
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
* <p>The list of aggregation types that are allowed for the calculated field. Valid values
|
|
96
|
+
* for this structure are <code>COUNT</code>, <code>DISTINCT_COUNT</code>, <code>MIN</code>,
|
|
97
|
+
* <code>MAX</code>, <code>MEDIAN</code>, <code>SUM</code>, <code>AVERAGE</code>,
|
|
98
|
+
* <code>STDEV</code>, <code>STDEVP</code>, <code>VAR</code>,
|
|
99
|
+
* <code>VARP</code>, and <code>PERCENTILE</code>.</p>
|
|
100
|
+
*/
|
|
101
|
+
AllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
* <p>The list of aggregation types that are not allowed for the calculated field. Valid
|
|
105
|
+
* values for this structure are <code>COUNT</code>, <code>DISTINCT_COUNT</code>,
|
|
106
|
+
* <code>MIN</code>, <code>MAX</code>, <code>MEDIAN</code>, <code>SUM</code>,
|
|
107
|
+
* <code>AVERAGE</code>, <code>STDEV</code>, <code>STDEVP</code>, <code>VAR</code>,
|
|
108
|
+
* <code>VARP</code>, and <code>PERCENTILE</code>.</p>
|
|
109
|
+
*/
|
|
110
|
+
NotAllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* <p>A Boolean value that indicates whether to never aggregate calculated field in filters.</p>
|
|
114
|
+
*/
|
|
115
|
+
NeverAggregateInFilter?: boolean;
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
* <p>The other
|
|
119
|
+
* names or aliases for the calculated field cell value.</p>
|
|
120
|
+
*/
|
|
121
|
+
CellValueSynonyms?: CellValueSynonym[];
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
* <p>The non additive for the table style target.</p>
|
|
125
|
+
*/
|
|
126
|
+
NonAdditive?: boolean;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
* <p>Represents a column in a dataset.</p>
|
|
131
|
+
*/
|
|
132
|
+
export interface TopicColumn {
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
* <p>The name of the column.</p>
|
|
136
|
+
*/
|
|
137
|
+
ColumnName: string | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
* <p>A user-friendly name for the column.</p>
|
|
141
|
+
*/
|
|
142
|
+
ColumnFriendlyName?: string;
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
* <p>A description of the column and its contents.</p>
|
|
146
|
+
*/
|
|
147
|
+
ColumnDescription?: string;
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
* <p>The other names or aliases for the column.</p>
|
|
151
|
+
*/
|
|
152
|
+
ColumnSynonyms?: string[];
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
* <p>The role of the column in the data. Valid values are <code>DIMENSION</code> and <code>MEASURE</code>.</p>
|
|
156
|
+
*/
|
|
157
|
+
ColumnDataRole?: ColumnDataRole;
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
* <p>The type of aggregation that is performed on the column data when
|
|
161
|
+
* it's queried.</p>
|
|
162
|
+
*/
|
|
163
|
+
Aggregation?: DefaultAggregation;
|
|
164
|
+
/**
|
|
165
|
+
* @public
|
|
166
|
+
* <p>A Boolean value that indicates whether the column is included in the query results.</p>
|
|
167
|
+
*/
|
|
168
|
+
IsIncludedInTopic?: boolean;
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
* <p>A Boolean value that indicates whether the column shows in the autocomplete functionality.</p>
|
|
172
|
+
*/
|
|
173
|
+
DisableIndexing?: boolean;
|
|
174
|
+
/**
|
|
175
|
+
* @public
|
|
176
|
+
* <p>The order in which data is displayed for the column when
|
|
177
|
+
* it's used in a comparative context.</p>
|
|
178
|
+
*/
|
|
179
|
+
ComparativeOrder?: ComparativeOrder;
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
* <p>The semantic type of data contained in the column.</p>
|
|
183
|
+
*/
|
|
184
|
+
SemanticType?: SemanticType;
|
|
185
|
+
/**
|
|
186
|
+
* @public
|
|
187
|
+
* <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
|
|
188
|
+
*/
|
|
189
|
+
TimeGranularity?: TopicTimeGranularity;
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
* <p>The list of aggregation types that are allowed for the column. Valid values for this
|
|
193
|
+
* structure are <code>COUNT</code>, <code>DISTINCT_COUNT</code>, <code>MIN</code>,
|
|
194
|
+
* <code>MAX</code>, <code>MEDIAN</code>, <code>SUM</code>, <code>AVERAGE</code>,
|
|
195
|
+
* <code>STDEV</code>, <code>STDEVP</code>, <code>VAR</code>,
|
|
196
|
+
* <code>VARP</code>,
|
|
197
|
+
* and <code>PERCENTILE</code>.</p>
|
|
198
|
+
*/
|
|
199
|
+
AllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
* <p>The list of aggregation types that are not allowed for the column. Valid values for this
|
|
203
|
+
* structure are <code>COUNT</code>, <code>DISTINCT_COUNT</code>, <code>MIN</code>,
|
|
204
|
+
* <code>MAX</code>, <code>MEDIAN</code>, <code>SUM</code>, <code>AVERAGE</code>,
|
|
205
|
+
* <code>STDEV</code>, <code>STDEVP</code>, <code>VAR</code>,
|
|
206
|
+
* <code>VARP</code>,
|
|
207
|
+
* and <code>PERCENTILE</code>.</p>
|
|
208
|
+
*/
|
|
209
|
+
NotAllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
* <p>The default formatting used for values in the column.</p>
|
|
213
|
+
*/
|
|
214
|
+
DefaultFormatting?: DefaultFormatting;
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
* <p>A Boolean
|
|
218
|
+
* value that indicates whether to aggregate the column data when
|
|
219
|
+
* it's used in a filter context.</p>
|
|
220
|
+
*/
|
|
221
|
+
NeverAggregateInFilter?: boolean;
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
* <p>The other names or aliases for the column cell value.</p>
|
|
225
|
+
*/
|
|
226
|
+
CellValueSynonyms?: CellValueSynonym[];
|
|
227
|
+
/**
|
|
228
|
+
* @public
|
|
229
|
+
* <p>The non additive value for the column.</p>
|
|
230
|
+
*/
|
|
231
|
+
NonAdditive?: boolean;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* @public
|
|
235
|
+
* <p>A structure that represents a data aggregation.</p>
|
|
236
|
+
*/
|
|
237
|
+
export interface DataAggregation {
|
|
238
|
+
/**
|
|
239
|
+
* @public
|
|
240
|
+
* <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
|
|
241
|
+
*/
|
|
242
|
+
DatasetRowDateGranularity?: TopicTimeGranularity;
|
|
243
|
+
/**
|
|
244
|
+
* @public
|
|
245
|
+
* <p>The column name for the default date.</p>
|
|
246
|
+
*/
|
|
247
|
+
DefaultDateColumnName?: string;
|
|
248
|
+
}
|
|
6
249
|
/**
|
|
7
250
|
* @public
|
|
8
251
|
* <p>A constant used in a category filter.</p>
|
|
@@ -7757,95 +8000,13 @@ export interface ListNamespacesResponse {
|
|
|
7757
8000
|
Status?: number;
|
|
7758
8001
|
}
|
|
7759
8002
|
/**
|
|
7760
|
-
* @
|
|
7761
|
-
*/
|
|
7762
|
-
export interface ListRefreshSchedulesRequest {
|
|
7763
|
-
/**
|
|
7764
|
-
* @public
|
|
7765
|
-
* <p>The Amazon Web Services account ID.</p>
|
|
7766
|
-
*/
|
|
7767
|
-
AwsAccountId: string | undefined;
|
|
7768
|
-
/**
|
|
7769
|
-
* @public
|
|
7770
|
-
* <p>The ID of the dataset.</p>
|
|
7771
|
-
*/
|
|
7772
|
-
DataSetId: string | undefined;
|
|
7773
|
-
}
|
|
7774
|
-
/**
|
|
7775
|
-
* @public
|
|
7776
|
-
*/
|
|
7777
|
-
export interface ListRefreshSchedulesResponse {
|
|
7778
|
-
/**
|
|
7779
|
-
* @public
|
|
7780
|
-
* <p>The list of refresh schedules for the dataset.</p>
|
|
7781
|
-
*/
|
|
7782
|
-
RefreshSchedules?: RefreshSchedule[];
|
|
7783
|
-
/**
|
|
7784
|
-
* @public
|
|
7785
|
-
* <p>The HTTP status of the request.</p>
|
|
7786
|
-
*/
|
|
7787
|
-
Status?: number;
|
|
7788
|
-
/**
|
|
7789
|
-
* @public
|
|
7790
|
-
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
7791
|
-
*/
|
|
7792
|
-
RequestId?: string;
|
|
7793
|
-
}
|
|
7794
|
-
/**
|
|
7795
|
-
* @public
|
|
8003
|
+
* @internal
|
|
7796
8004
|
*/
|
|
7797
|
-
export
|
|
7798
|
-
/**
|
|
7799
|
-
* @public
|
|
7800
|
-
* <p>The name of the role.</p>
|
|
7801
|
-
*/
|
|
7802
|
-
Role: Role | undefined;
|
|
7803
|
-
/**
|
|
7804
|
-
* @public
|
|
7805
|
-
* <p>A pagination token that can be used in a subsequent request.</p>
|
|
7806
|
-
*/
|
|
7807
|
-
NextToken?: string;
|
|
7808
|
-
/**
|
|
7809
|
-
* @public
|
|
7810
|
-
* <p>The maximum number of results to return.</p>
|
|
7811
|
-
*/
|
|
7812
|
-
MaxResults?: number;
|
|
7813
|
-
/**
|
|
7814
|
-
* @public
|
|
7815
|
-
* <p>The ID for the Amazon Web Services account that you want to create a group in. The Amazon Web Services account ID that you provide must be the same Amazon Web Services account that contains your Amazon QuickSight account.</p>
|
|
7816
|
-
*/
|
|
7817
|
-
AwsAccountId: string | undefined;
|
|
7818
|
-
/**
|
|
7819
|
-
* @public
|
|
7820
|
-
* <p>The namespace that includes the role.</p>
|
|
7821
|
-
*/
|
|
7822
|
-
Namespace: string | undefined;
|
|
7823
|
-
}
|
|
8005
|
+
export declare const TopicCalculatedFieldFilterSensitiveLog: (obj: TopicCalculatedField) => any;
|
|
7824
8006
|
/**
|
|
7825
|
-
* @
|
|
8007
|
+
* @internal
|
|
7826
8008
|
*/
|
|
7827
|
-
export
|
|
7828
|
-
/**
|
|
7829
|
-
* @public
|
|
7830
|
-
* <p>The list of groups associated with a role</p>
|
|
7831
|
-
*/
|
|
7832
|
-
MembersList?: string[];
|
|
7833
|
-
/**
|
|
7834
|
-
* @public
|
|
7835
|
-
* <p>A pagination token that can be used in a subsequent request.</p>
|
|
7836
|
-
*/
|
|
7837
|
-
NextToken?: string;
|
|
7838
|
-
/**
|
|
7839
|
-
* @public
|
|
7840
|
-
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
7841
|
-
*/
|
|
7842
|
-
RequestId?: string;
|
|
7843
|
-
/**
|
|
7844
|
-
* @public
|
|
7845
|
-
* <p>The HTTP status of the request.</p>
|
|
7846
|
-
*/
|
|
7847
|
-
Status?: number;
|
|
7848
|
-
}
|
|
8009
|
+
export declare const TopicColumnFilterSensitiveLog: (obj: TopicColumn) => any;
|
|
7849
8010
|
/**
|
|
7850
8011
|
* @internal
|
|
7851
8012
|
*/
|
|
@@ -1,7 +1,97 @@
|
|
|
1
1
|
import { AccountCustomization, ResourceStatus } from "./models_0";
|
|
2
|
-
import { AnalysisDefinition, AnalysisSearchFilter
|
|
3
|
-
import { _Parameters, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobValidationStrategy, AssetBundleImportFailureAction, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportSource, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, FieldFolder, Group, LinkSharingConfiguration, LogicalTable, PhysicalTable, RefreshSchedule, ResourcePermission, Role, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, ServiceType, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ValidationStrategy, VpcConnectionProperties } from "./models_2";
|
|
2
|
+
import { AnalysisDefinition, AnalysisSearchFilter } from "./models_1";
|
|
3
|
+
import { _Parameters, AnalysisSourceEntity, AnalysisSummary, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobValidationStrategy, AssetBundleImportFailureAction, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportSource, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, FieldFolder, Group, LinkSharingConfiguration, LogicalTable, PhysicalTable, RefreshSchedule, ResourcePermission, Role, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, ServiceType, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ValidationStrategy, VpcConnectionProperties } from "./models_2";
|
|
4
4
|
import { DashboardSearchFilter, DashboardSummary, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSourceSearchFilter, DataSourceSummary, FolderSearchFilter, FolderSummary, GroupSearchFilter, IdentityType, NetworkInterface, SessionTag, SnapshotConfiguration, ThemeType, TopicDetails, TopicRefreshSchedule, User, UserRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface ListRefreshSchedulesRequest {
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
* <p>The Amazon Web Services account ID.</p>
|
|
12
|
+
*/
|
|
13
|
+
AwsAccountId: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* <p>The ID of the dataset.</p>
|
|
17
|
+
*/
|
|
18
|
+
DataSetId: string | undefined;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface ListRefreshSchedulesResponse {
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>The list of refresh schedules for the dataset.</p>
|
|
27
|
+
*/
|
|
28
|
+
RefreshSchedules?: RefreshSchedule[];
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* <p>The HTTP status of the request.</p>
|
|
32
|
+
*/
|
|
33
|
+
Status?: number;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
37
|
+
*/
|
|
38
|
+
RequestId?: string;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export interface ListRoleMembershipsRequest {
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
* <p>The name of the role.</p>
|
|
47
|
+
*/
|
|
48
|
+
Role: Role | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
* <p>A pagination token that can be used in a subsequent request.</p>
|
|
52
|
+
*/
|
|
53
|
+
NextToken?: string;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* <p>The maximum number of results to return.</p>
|
|
57
|
+
*/
|
|
58
|
+
MaxResults?: number;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
* <p>The ID for the Amazon Web Services account that you want to create a group in. The Amazon Web Services account ID that you provide must be the same Amazon Web Services account that contains your Amazon QuickSight account.</p>
|
|
62
|
+
*/
|
|
63
|
+
AwsAccountId: string | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
* <p>The namespace that includes the role.</p>
|
|
67
|
+
*/
|
|
68
|
+
Namespace: string | undefined;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export interface ListRoleMembershipsResponse {
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* <p>The list of groups associated with a role</p>
|
|
77
|
+
*/
|
|
78
|
+
MembersList?: string[];
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
* <p>A pagination token that can be used in a subsequent request.</p>
|
|
82
|
+
*/
|
|
83
|
+
NextToken?: string;
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
87
|
+
*/
|
|
88
|
+
RequestId?: string;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
* <p>The HTTP status of the request.</p>
|
|
92
|
+
*/
|
|
93
|
+
Status?: number;
|
|
94
|
+
}
|
|
5
95
|
/**
|
|
6
96
|
* @public
|
|
7
97
|
*/
|
|
@@ -2633,12 +2723,12 @@ export interface UpdateFolderPermissionsRequest {
|
|
|
2633
2723
|
FolderId: string | undefined;
|
|
2634
2724
|
/**
|
|
2635
2725
|
* @public
|
|
2636
|
-
* <p>The permissions that you want to grant on a resource.</p>
|
|
2726
|
+
* <p>The permissions that you want to grant on a resource. Namespace ARNs are not supported <code>Principal</code> values for folder permissions.</p>
|
|
2637
2727
|
*/
|
|
2638
2728
|
GrantPermissions?: ResourcePermission[];
|
|
2639
2729
|
/**
|
|
2640
2730
|
* @public
|
|
2641
|
-
* <p>The permissions that you want to revoke from a resource.</p>
|
|
2731
|
+
* <p>The permissions that you want to revoke from a resource. Namespace ARNs are not supported <code>Principal</code> values for folder permissions.</p>
|
|
2642
2732
|
*/
|
|
2643
2733
|
RevokePermissions?: ResourcePermission[];
|
|
2644
2734
|
}
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
ListRefreshSchedulesRequest,
|
|
5
5
|
ListRefreshSchedulesResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_4";
|
|
7
7
|
import {
|
|
8
8
|
QuickSightClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1347,6 +1347,16 @@ export interface BarChartAggregatedFieldWells {
|
|
|
1347
1347
|
export interface BarChartFieldWells {
|
|
1348
1348
|
BarChartAggregatedFieldWells?: BarChartAggregatedFieldWells;
|
|
1349
1349
|
}
|
|
1350
|
+
export interface ContextMenuOption {
|
|
1351
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
1352
|
+
}
|
|
1353
|
+
export interface VisualMenuOption {
|
|
1354
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
1355
|
+
}
|
|
1356
|
+
export interface VisualInteractionOptions {
|
|
1357
|
+
VisualMenuOption?: VisualMenuOption;
|
|
1358
|
+
ContextMenuOption?: ContextMenuOption;
|
|
1359
|
+
}
|
|
1350
1360
|
export declare const LegendPosition: {
|
|
1351
1361
|
readonly AUTO: "AUTO";
|
|
1352
1362
|
readonly BOTTOM: "BOTTOM";
|
|
@@ -1608,6 +1618,7 @@ export interface BarChartConfiguration {
|
|
|
1608
1618
|
Tooltip?: TooltipOptions;
|
|
1609
1619
|
ReferenceLines?: ReferenceLine[];
|
|
1610
1620
|
ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
|
|
1621
|
+
Interactions?: VisualInteractionOptions;
|
|
1611
1622
|
}
|
|
1612
1623
|
export interface CategoryDrillDownFilter {
|
|
1613
1624
|
Column: ColumnIdentifier | undefined;
|
|
@@ -1642,19 +1653,6 @@ export interface PredefinedHierarchy {
|
|
|
1642
1653
|
Columns: ColumnIdentifier[] | undefined;
|
|
1643
1654
|
DrillDownFilters?: DrillDownFilter[];
|
|
1644
1655
|
}
|
|
1645
|
-
export interface ColumnHierarchy {
|
|
1646
|
-
ExplicitHierarchy?: ExplicitHierarchy;
|
|
1647
|
-
DateTimeHierarchy?: DateTimeHierarchy;
|
|
1648
|
-
PredefinedHierarchy?: PredefinedHierarchy;
|
|
1649
|
-
}
|
|
1650
|
-
export interface LongFormatText {
|
|
1651
|
-
PlainText?: string;
|
|
1652
|
-
RichText?: string;
|
|
1653
|
-
}
|
|
1654
|
-
export interface VisualSubtitleLabelOptions {
|
|
1655
|
-
Visibility?: Visibility;
|
|
1656
|
-
FormatText?: LongFormatText;
|
|
1657
|
-
}
|
|
1658
1656
|
export declare const CalculatedFieldFilterSensitiveLog: (
|
|
1659
1657
|
obj: CalculatedField
|
|
1660
1658
|
) => any;
|