@aws-sdk/client-quicksight 3.1048.0 → 3.1050.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/schemas/schemas_0.js +142 -50
- package/dist-es/schemas/schemas_0.js +106 -14
- package/dist-types/commands/CreateDataSetCommand.d.ts +39 -0
- package/dist-types/commands/DescribeDataSetCommand.d.ts +39 -0
- package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeQuickSightQSearchConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRefreshScheduleCommand.d.ts +1 -2
- package/dist-types/commands/UpdateDataSetCommand.d.ts +39 -0
- package/dist-types/commands/UpdateTemplatePermissionsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateThemeAliasCommand.d.ts +1 -1
- package/dist-types/commands/UpdateThemeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateThemePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTopicCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTopicPermissionsCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +12 -37
- package/dist-types/models/models_1.d.ts +38 -18
- package/dist-types/models/models_2.d.ts +50 -70
- package/dist-types/models/models_3.d.ts +172 -212
- package/dist-types/models/models_4.d.ts +213 -288
- package/dist-types/models/models_5.d.ts +287 -2
- package/dist-types/schemas/schemas_0.d.ts +10 -0
- package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeQuickSightQSearchConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRefreshScheduleCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateTemplatePermissionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateThemeAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateThemePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTopicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTopicPermissionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +3 -7
- package/dist-types/ts3.4/models/models_1.d.ts +9 -5
- package/dist-types/ts3.4/models/models_2.d.ts +13 -17
- package/dist-types/ts3.4/models/models_3.d.ts +48 -56
- package/dist-types/ts3.4/models/models_4.d.ts +57 -69
- package/dist-types/ts3.4/models/models_5.d.ts +74 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
- package/package.json +3 -3
|
@@ -1,7 +1,292 @@
|
|
|
1
|
-
import type { UserRole, VisualRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./enums";
|
|
1
|
+
import type { ResourceStatus, UserRole, VisualRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./enums";
|
|
2
2
|
import type { ResourcePermission, TopicIR, TopicTemplate } from "./models_2";
|
|
3
|
-
import type { TopicRefreshSchedule } from "./models_3";
|
|
3
|
+
import type { CustomInstructions, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule } from "./models_3";
|
|
4
4
|
import type { User } from "./models_4";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface UpdateTemplatePermissionsResponse {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The ID for the template.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
TemplateId?: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The Amazon Resource Name (ARN) of the template.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
TemplateArn?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>A list of resource permissions to be set on the template.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
RequestId?: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The HTTP status of the request.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
Status?: number | undefined;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export interface UpdateThemeRequest {
|
|
39
|
+
/**
|
|
40
|
+
* <p>The ID of the Amazon Web Services account that contains the theme that you're updating.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
AwsAccountId: string | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The ID for the theme.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
ThemeId: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The name for the theme.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
Name?: string | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The theme ID, defined by Amazon Quick Sight, that a custom theme inherits from.
|
|
56
|
+
* All themes initially inherit from a default Quick Sight theme.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
BaseThemeId: string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* <p>A description of the theme version that you're updating Every time that you call
|
|
62
|
+
* <code>UpdateTheme</code>, you create a new version of the theme. Each version of the
|
|
63
|
+
* theme maintains a description of the version in <code>VersionDescription</code>.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
VersionDescription?: string | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The theme configuration, which contains the theme display properties.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
Configuration?: ThemeConfiguration | undefined;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export interface UpdateThemeResponse {
|
|
77
|
+
/**
|
|
78
|
+
* <p>The ID for the theme.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
ThemeId?: string | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* <p>The Amazon Resource Name (ARN) for the theme.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
Arn?: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The Amazon Resource Name (ARN) for the new version of the theme.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
VersionArn?: string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The creation status of the theme.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* <p>The HTTP status of the request.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
Status?: number | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
RequestId?: string | undefined;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export interface UpdateThemeAliasRequest {
|
|
112
|
+
/**
|
|
113
|
+
* <p>The ID of the Amazon Web Services account that contains the theme alias that you're updating.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
AwsAccountId: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The ID for the theme.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
ThemeId: string | undefined;
|
|
122
|
+
/**
|
|
123
|
+
* <p>The name of the theme alias that you want to update.</p>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
AliasName: string | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* <p>The version number of the theme that the alias should reference.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
ThemeVersionNumber: number | undefined;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
export interface UpdateThemeAliasResponse {
|
|
137
|
+
/**
|
|
138
|
+
* <p>Information about the theme alias.</p>
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
ThemeAlias?: ThemeAlias | undefined;
|
|
142
|
+
/**
|
|
143
|
+
* <p>The HTTP status of the request.</p>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
Status?: number | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
RequestId?: string | undefined;
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
export interface UpdateThemePermissionsRequest {
|
|
157
|
+
/**
|
|
158
|
+
* <p>The ID of the Amazon Web Services account that contains the theme.</p>
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
AwsAccountId: string | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* <p>The ID for the theme.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
ThemeId: string | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* <p>A list of resource permissions to be granted for the theme.</p>
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
172
|
+
/**
|
|
173
|
+
* <p>A list of resource permissions to be revoked from the theme.</p>
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* @public
|
|
180
|
+
*/
|
|
181
|
+
export interface UpdateThemePermissionsResponse {
|
|
182
|
+
/**
|
|
183
|
+
* <p>The ID for the theme.</p>
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
ThemeId?: string | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* <p>The Amazon Resource Name (ARN) of the theme.</p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
ThemeArn?: string | undefined;
|
|
192
|
+
/**
|
|
193
|
+
* <p>The resulting list of resource permissions for the theme.</p>
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
197
|
+
/**
|
|
198
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
RequestId?: string | undefined;
|
|
202
|
+
/**
|
|
203
|
+
* <p>The HTTP status of the request.</p>
|
|
204
|
+
* @public
|
|
205
|
+
*/
|
|
206
|
+
Status?: number | undefined;
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
export interface UpdateTopicRequest {
|
|
212
|
+
/**
|
|
213
|
+
* <p>The ID of the Amazon Web Services account that contains the topic that you want to
|
|
214
|
+
* update.</p>
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
217
|
+
AwsAccountId: string | undefined;
|
|
218
|
+
/**
|
|
219
|
+
* <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
TopicId: string | undefined;
|
|
223
|
+
/**
|
|
224
|
+
* <p>The definition of the topic that you want to update.</p>
|
|
225
|
+
* @public
|
|
226
|
+
*/
|
|
227
|
+
Topic: TopicDetails | undefined;
|
|
228
|
+
/**
|
|
229
|
+
* <p>Custom instructions for the topic.</p>
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
CustomInstructions?: CustomInstructions | undefined;
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export interface UpdateTopicResponse {
|
|
238
|
+
/**
|
|
239
|
+
* <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
|
|
240
|
+
* @public
|
|
241
|
+
*/
|
|
242
|
+
TopicId?: string | undefined;
|
|
243
|
+
/**
|
|
244
|
+
* <p>The Amazon Resource Name (ARN) of the topic.</p>
|
|
245
|
+
* @public
|
|
246
|
+
*/
|
|
247
|
+
Arn?: string | undefined;
|
|
248
|
+
/**
|
|
249
|
+
* <p>The Amazon Resource Name (ARN) of the topic refresh.</p>
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
RefreshArn?: string | undefined;
|
|
253
|
+
/**
|
|
254
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
RequestId?: string | undefined;
|
|
258
|
+
/**
|
|
259
|
+
* <p>The HTTP status of the request.</p>
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
262
|
+
Status?: number | undefined;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* @public
|
|
266
|
+
*/
|
|
267
|
+
export interface UpdateTopicPermissionsRequest {
|
|
268
|
+
/**
|
|
269
|
+
* <p>The ID of the Amazon Web Services account that contains the topic that you want to update
|
|
270
|
+
* the permissions for.</p>
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
273
|
+
AwsAccountId: string | undefined;
|
|
274
|
+
/**
|
|
275
|
+
* <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
TopicId: string | undefined;
|
|
279
|
+
/**
|
|
280
|
+
* <p>The resource permissions that you want to grant to the topic.</p>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
284
|
+
/**
|
|
285
|
+
* <p>The resource permissions that you want to revoke from the topic.</p>
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
289
|
+
}
|
|
5
290
|
/**
|
|
6
291
|
* @public
|
|
7
292
|
*/
|
|
@@ -38,6 +38,7 @@ export declare var ActionConnectorError$: StaticStructureSchema;
|
|
|
38
38
|
export declare var ActionConnectorSearchFilter$: StaticStructureSchema;
|
|
39
39
|
export declare var ActionConnectorSummary$: StaticStructureSchema;
|
|
40
40
|
export declare var ActiveIAMPolicyAssignment$: StaticStructureSchema;
|
|
41
|
+
export declare var AdditionalNotes$: StaticStructureSchema;
|
|
41
42
|
export declare var AdHocFilteringOption$: StaticStructureSchema;
|
|
42
43
|
export declare var AggFunction$: StaticStructureSchema;
|
|
43
44
|
export declare var AggregateOperation$: StaticStructureSchema;
|
|
@@ -218,6 +219,8 @@ export declare var ColumnHierarchy$: StaticStructureSchema;
|
|
|
218
219
|
export declare var ColumnIdentifier$: StaticStructureSchema;
|
|
219
220
|
export declare var ColumnLevelPermissionRule$: StaticStructureSchema;
|
|
220
221
|
export declare var ColumnSchema$: StaticStructureSchema;
|
|
222
|
+
export declare var ColumnSemanticProperty$: StaticStructureSchema;
|
|
223
|
+
export declare var ColumnSemanticType$: StaticStructureSchema;
|
|
221
224
|
export declare var ColumnSort$: StaticStructureSchema;
|
|
222
225
|
export declare var ColumnTag$: StaticStructureSchema;
|
|
223
226
|
export declare var ColumnTooltipItem$: StaticStructureSchema;
|
|
@@ -316,6 +319,7 @@ export declare var CustomContentConfiguration$: StaticStructureSchema;
|
|
|
316
319
|
export declare var CustomContentVisual$: StaticStructureSchema;
|
|
317
320
|
export declare var CustomFilterConfiguration$: StaticStructureSchema;
|
|
318
321
|
export declare var CustomFilterListConfiguration$: StaticStructureSchema;
|
|
322
|
+
export declare var CustomInstruction$: StaticStructureSchema;
|
|
319
323
|
export declare var CustomInstructions$: StaticStructureSchema;
|
|
320
324
|
export declare var CustomNarrativeOptions$: StaticStructureSchema;
|
|
321
325
|
export declare var CustomParameterValues$: StaticStructureSchema;
|
|
@@ -379,6 +383,8 @@ export declare var DataSetReference$: StaticStructureSchema;
|
|
|
379
383
|
export declare var DataSetRefreshProperties$: StaticStructureSchema;
|
|
380
384
|
export declare var DataSetSchema$: StaticStructureSchema;
|
|
381
385
|
export declare var DataSetSearchFilter$: StaticStructureSchema;
|
|
386
|
+
export declare var DataSetSemanticDescription$: StaticStructureSchema;
|
|
387
|
+
export declare var DataSetSemanticMetadata$: StaticStructureSchema;
|
|
382
388
|
export declare var DataSetStringComparisonFilterCondition$: StaticStructureSchema;
|
|
383
389
|
export declare var DataSetStringFilterCondition$: StaticStructureSchema;
|
|
384
390
|
export declare var DataSetStringFilterValue$: StaticStructureSchema;
|
|
@@ -805,6 +811,7 @@ export declare var ImportTableOperation$: StaticStructureSchema;
|
|
|
805
811
|
export declare var ImportTableOperationSource$: StaticStructureSchema;
|
|
806
812
|
export declare var IncrementalRefresh$: StaticStructureSchema;
|
|
807
813
|
export declare var Ingestion$: StaticStructureSchema;
|
|
814
|
+
export declare var InlineCustomInstruction$: StaticStructureSchema;
|
|
808
815
|
export declare var InnerFilter$: StaticStructureSchema;
|
|
809
816
|
export declare var InputColumn$: StaticStructureSchema;
|
|
810
817
|
export declare var InsightConfiguration$: StaticStructureSchema;
|
|
@@ -1184,6 +1191,7 @@ export declare var ServiceNowParameters$: StaticStructureSchema;
|
|
|
1184
1191
|
export declare var SessionTag$: StaticStructureSchema;
|
|
1185
1192
|
export declare var SetParameterValueConfiguration$: StaticStructureSchema;
|
|
1186
1193
|
export declare var ShapeConditionalFormat$: StaticStructureSchema;
|
|
1194
|
+
export declare var SharedColumnSemanticMetadata$: StaticStructureSchema;
|
|
1187
1195
|
export declare var SharedViewConfigurations$: StaticStructureSchema;
|
|
1188
1196
|
export declare var Sheet$: StaticStructureSchema;
|
|
1189
1197
|
export declare var SheetBackgroundStyle$: StaticStructureSchema;
|
|
@@ -1287,6 +1295,7 @@ export declare var TablePaginatedReportOptions$: StaticStructureSchema;
|
|
|
1287
1295
|
export declare var TablePathElement$: StaticStructureSchema;
|
|
1288
1296
|
export declare var TablePinnedFieldOptions$: StaticStructureSchema;
|
|
1289
1297
|
export declare var TableRowConditionalFormatting$: StaticStructureSchema;
|
|
1298
|
+
export declare var TableSemanticMetadata$: StaticStructureSchema;
|
|
1290
1299
|
export declare var TableSideBorderOptions$: StaticStructureSchema;
|
|
1291
1300
|
export declare var TableSortConfiguration$: StaticStructureSchema;
|
|
1292
1301
|
export declare var TableStyleTarget$: StaticStructureSchema;
|
|
@@ -1490,6 +1499,7 @@ export declare var UpdateUserRequest$: StaticStructureSchema;
|
|
|
1490
1499
|
export declare var UpdateUserResponse$: StaticStructureSchema;
|
|
1491
1500
|
export declare var UpdateVPCConnectionRequest$: StaticStructureSchema;
|
|
1492
1501
|
export declare var UpdateVPCConnectionResponse$: StaticStructureSchema;
|
|
1502
|
+
export declare var UploadedDocumentMetadata$: StaticStructureSchema;
|
|
1493
1503
|
export declare var UploadSettings$: StaticStructureSchema;
|
|
1494
1504
|
export declare var User$: StaticStructureSchema;
|
|
1495
1505
|
export declare var ValidationStrategy$: StaticStructureSchema;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
DescribeKeyRegistrationResponse,
|
|
6
|
-
} from "../models/models_3";
|
|
3
|
+
import { DescribeKeyRegistrationRequest } from "../models/models_3";
|
|
4
|
+
import { DescribeKeyRegistrationResponse } from "../models/models_4";
|
|
7
5
|
import {
|
|
8
6
|
QuickSightClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
DescribeQPersonalizationConfigurationRequest,
|
|
5
5
|
DescribeQPersonalizationConfigurationResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_4";
|
|
7
7
|
import {
|
|
8
8
|
QuickSightClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
DescribeQuickSightQSearchConfigurationRequest,
|
|
5
5
|
DescribeQuickSightQSearchConfigurationResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_4";
|
|
7
7
|
import {
|
|
8
8
|
QuickSightClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
DescribeRefreshScheduleRequest,
|
|
5
|
+
DescribeRefreshScheduleResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
5
7
|
import {
|
|
6
8
|
QuickSightClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
UpdateTemplatePermissionsResponse,
|
|
6
|
-
} from "../models/models_4";
|
|
3
|
+
import { UpdateTemplatePermissionsRequest } from "../models/models_4";
|
|
4
|
+
import { UpdateTemplatePermissionsResponse } from "../models/models_5";
|
|
7
5
|
import {
|
|
8
6
|
QuickSightClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { UpdateThemeRequest, UpdateThemeResponse } from "../models/
|
|
3
|
+
import { UpdateThemeRequest, UpdateThemeResponse } from "../models/models_5";
|
|
4
4
|
import {
|
|
5
5
|
QuickSightClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
UpdateThemePermissionsRequest,
|
|
5
5
|
UpdateThemePermissionsResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_5";
|
|
7
7
|
import {
|
|
8
8
|
QuickSightClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { UpdateTopicRequest, UpdateTopicResponse } from "../models/
|
|
3
|
+
import { UpdateTopicRequest, UpdateTopicResponse } from "../models/models_5";
|
|
4
4
|
import {
|
|
5
5
|
QuickSightClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
UpdateTopicPermissionsRequest,
|
|
5
|
+
UpdateTopicPermissionsResponse,
|
|
6
|
+
} from "../models/models_5";
|
|
5
7
|
import {
|
|
6
8
|
QuickSightClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -61,7 +61,6 @@ import {
|
|
|
61
61
|
SectionPageBreakStatus,
|
|
62
62
|
SelectAllValueOptions,
|
|
63
63
|
SelectedFieldOptions,
|
|
64
|
-
SelectedTooltipType,
|
|
65
64
|
SheetContentType,
|
|
66
65
|
SheetControlDateTimePickerType,
|
|
67
66
|
SheetControlListType,
|
|
@@ -310,6 +309,9 @@ export interface ActiveIAMPolicyAssignment {
|
|
|
310
309
|
AssignmentName?: string | undefined;
|
|
311
310
|
PolicyArn?: string | undefined;
|
|
312
311
|
}
|
|
312
|
+
export interface AdditionalNotes {
|
|
313
|
+
Text?: string | undefined;
|
|
314
|
+
}
|
|
313
315
|
export interface AdHocFilteringOption {
|
|
314
316
|
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
315
317
|
}
|
|
@@ -1767,9 +1769,3 @@ export interface FieldBasedTooltip {
|
|
|
1767
1769
|
export interface SheetTooltip {
|
|
1768
1770
|
SheetId?: string | undefined;
|
|
1769
1771
|
}
|
|
1770
|
-
export interface TooltipOptions {
|
|
1771
|
-
TooltipVisibility?: Visibility | undefined;
|
|
1772
|
-
SelectedTooltipType?: SelectedTooltipType | undefined;
|
|
1773
|
-
FieldBasedTooltip?: FieldBasedTooltip | undefined;
|
|
1774
|
-
SheetTooltip?: SheetTooltip | undefined;
|
|
1775
|
-
}
|
|
@@ -43,6 +43,7 @@ import {
|
|
|
43
43
|
PrimaryValueDisplayType,
|
|
44
44
|
RadarChartAxesRangeScale,
|
|
45
45
|
RadarChartShape,
|
|
46
|
+
SelectedTooltipType,
|
|
46
47
|
SimpleTotalAggregationFunction,
|
|
47
48
|
SingleYAxisOption,
|
|
48
49
|
SortDirection,
|
|
@@ -83,6 +84,7 @@ import {
|
|
|
83
84
|
DataLabelOptions,
|
|
84
85
|
DecalSettings,
|
|
85
86
|
DimensionField,
|
|
87
|
+
FieldBasedTooltip,
|
|
86
88
|
FieldSort,
|
|
87
89
|
FieldSortOptions,
|
|
88
90
|
FontConfiguration,
|
|
@@ -93,11 +95,17 @@ import {
|
|
|
93
95
|
NumberDisplayFormatConfiguration,
|
|
94
96
|
PercentageDisplayFormatConfiguration,
|
|
95
97
|
ReferenceLine,
|
|
98
|
+
SheetTooltip,
|
|
96
99
|
SmallMultiplesOptions,
|
|
97
|
-
TooltipOptions,
|
|
98
100
|
VisualCustomAction,
|
|
99
101
|
VisualInteractionOptions,
|
|
100
102
|
} from "./models_0";
|
|
103
|
+
export interface TooltipOptions {
|
|
104
|
+
TooltipVisibility?: Visibility | undefined;
|
|
105
|
+
SelectedTooltipType?: SelectedTooltipType | undefined;
|
|
106
|
+
FieldBasedTooltip?: FieldBasedTooltip | undefined;
|
|
107
|
+
SheetTooltip?: SheetTooltip | undefined;
|
|
108
|
+
}
|
|
101
109
|
export interface DataPathType {
|
|
102
110
|
PivotTableDataPathType?: PivotTableDataPathType | undefined;
|
|
103
111
|
}
|
|
@@ -1771,7 +1779,3 @@ export interface WaterfallChartFieldWells {
|
|
|
1771
1779
|
| WaterfallChartAggregatedFieldWells
|
|
1772
1780
|
| undefined;
|
|
1773
1781
|
}
|
|
1774
|
-
export interface WaterfallChartSortConfiguration {
|
|
1775
|
-
CategorySort?: FieldSortOptions[] | undefined;
|
|
1776
|
-
BreakdownItemsLimit?: ItemsLimitConfiguration | undefined;
|
|
1777
|
-
}
|
|
@@ -76,6 +76,7 @@ import {
|
|
|
76
76
|
} from "./enums";
|
|
77
77
|
import {
|
|
78
78
|
AccountCustomization,
|
|
79
|
+
AdditionalNotes,
|
|
79
80
|
AdHocFilteringOption,
|
|
80
81
|
AggFunction,
|
|
81
82
|
AggregateOperation,
|
|
@@ -143,8 +144,11 @@ import {
|
|
|
143
144
|
VisualTitleLabelOptions,
|
|
144
145
|
WaterfallChartColorConfiguration,
|
|
145
146
|
WaterfallChartFieldWells,
|
|
146
|
-
WaterfallChartSortConfiguration,
|
|
147
147
|
} from "./models_1";
|
|
148
|
+
export interface WaterfallChartSortConfiguration {
|
|
149
|
+
CategorySort?: FieldSortOptions[] | undefined;
|
|
150
|
+
BreakdownItemsLimit?: ItemsLimitConfiguration | undefined;
|
|
151
|
+
}
|
|
148
152
|
export interface WaterfallChartOptions {
|
|
149
153
|
TotalBarLabel?: string | undefined;
|
|
150
154
|
}
|
|
@@ -2892,6 +2896,14 @@ export interface ColumnSchema {
|
|
|
2892
2896
|
DataType?: string | undefined;
|
|
2893
2897
|
GeographicRole?: string | undefined;
|
|
2894
2898
|
}
|
|
2899
|
+
export interface ColumnSemanticType {
|
|
2900
|
+
GeographicalRole?: GeoSpatialDataRole | undefined;
|
|
2901
|
+
}
|
|
2902
|
+
export interface ColumnSemanticProperty {
|
|
2903
|
+
Description?: ColumnDescription | undefined;
|
|
2904
|
+
AdditionalNotes?: AdditionalNotes | undefined;
|
|
2905
|
+
SemanticType?: ColumnSemanticType | undefined;
|
|
2906
|
+
}
|
|
2895
2907
|
export interface ColumnTag {
|
|
2896
2908
|
ColumnGeographicRole?: GeoSpatialDataRole | undefined;
|
|
2897
2909
|
ColumnDescription?: ColumnDescription | undefined;
|
|
@@ -3363,19 +3375,3 @@ export interface IntegerDatasetParameter {
|
|
|
3363
3375
|
export interface StringDatasetParameterDefaultValues {
|
|
3364
3376
|
StaticValues?: string[] | undefined;
|
|
3365
3377
|
}
|
|
3366
|
-
export interface StringDatasetParameter {
|
|
3367
|
-
Id: string | undefined;
|
|
3368
|
-
Name: string | undefined;
|
|
3369
|
-
ValueType: DatasetParameterValueType | undefined;
|
|
3370
|
-
DefaultValues?: StringDatasetParameterDefaultValues | undefined;
|
|
3371
|
-
}
|
|
3372
|
-
export interface DatasetParameter {
|
|
3373
|
-
StringDatasetParameter?: StringDatasetParameter | undefined;
|
|
3374
|
-
DecimalDatasetParameter?: DecimalDatasetParameter | undefined;
|
|
3375
|
-
IntegerDatasetParameter?: IntegerDatasetParameter | undefined;
|
|
3376
|
-
DateTimeDatasetParameter?: DateTimeDatasetParameter | undefined;
|
|
3377
|
-
}
|
|
3378
|
-
export interface DataSetUsageConfiguration {
|
|
3379
|
-
DisableUseAsDirectQuerySource?: boolean | undefined;
|
|
3380
|
-
DisableUseAsImportedSource?: boolean | undefined;
|
|
3381
|
-
}
|