types-boto3-quicksight 1.36.0__py3-none-any.whl
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.
- types_boto3_quicksight/__init__.py +171 -0
- types_boto3_quicksight/__init__.pyi +170 -0
- types_boto3_quicksight/__main__.py +43 -0
- types_boto3_quicksight/client.py +3081 -0
- types_boto3_quicksight/client.pyi +3078 -0
- types_boto3_quicksight/literals.py +1521 -0
- types_boto3_quicksight/literals.pyi +1519 -0
- types_boto3_quicksight/paginator.py +954 -0
- types_boto3_quicksight/paginator.pyi +848 -0
- types_boto3_quicksight/py.typed +0 -0
- types_boto3_quicksight/type_defs.py +15574 -0
- types_boto3_quicksight/type_defs.pyi +13676 -0
- types_boto3_quicksight/version.py +7 -0
- types_boto3_quicksight-1.36.0.dist-info/LICENSE +21 -0
- types_boto3_quicksight-1.36.0.dist-info/METADATA +581 -0
- types_boto3_quicksight-1.36.0.dist-info/RECORD +18 -0
- types_boto3_quicksight-1.36.0.dist-info/WHEEL +5 -0
- types_boto3_quicksight-1.36.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,3081 @@
|
|
1
|
+
"""
|
2
|
+
Type annotations for quicksight service Client.
|
3
|
+
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/)
|
5
|
+
|
6
|
+
Usage::
|
7
|
+
|
8
|
+
```python
|
9
|
+
from boto3.session import Session
|
10
|
+
from types_boto3_quicksight.client import QuickSightClient
|
11
|
+
|
12
|
+
session = Session()
|
13
|
+
client: QuickSightClient = session.client("quicksight")
|
14
|
+
```
|
15
|
+
|
16
|
+
Copyright 2025 Vlad Emelianov
|
17
|
+
"""
|
18
|
+
|
19
|
+
from __future__ import annotations
|
20
|
+
|
21
|
+
import sys
|
22
|
+
from typing import Any, overload
|
23
|
+
|
24
|
+
from botocore.client import BaseClient, ClientMeta
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
27
|
+
|
28
|
+
from .paginator import (
|
29
|
+
DescribeFolderPermissionsPaginator,
|
30
|
+
DescribeFolderResolvedPermissionsPaginator,
|
31
|
+
ListAnalysesPaginator,
|
32
|
+
ListAssetBundleExportJobsPaginator,
|
33
|
+
ListAssetBundleImportJobsPaginator,
|
34
|
+
ListBrandsPaginator,
|
35
|
+
ListCustomPermissionsPaginator,
|
36
|
+
ListDashboardsPaginator,
|
37
|
+
ListDashboardVersionsPaginator,
|
38
|
+
ListDataSetsPaginator,
|
39
|
+
ListDataSourcesPaginator,
|
40
|
+
ListFolderMembersPaginator,
|
41
|
+
ListFoldersForResourcePaginator,
|
42
|
+
ListFoldersPaginator,
|
43
|
+
ListGroupMembershipsPaginator,
|
44
|
+
ListGroupsPaginator,
|
45
|
+
ListIAMPolicyAssignmentsForUserPaginator,
|
46
|
+
ListIAMPolicyAssignmentsPaginator,
|
47
|
+
ListIngestionsPaginator,
|
48
|
+
ListNamespacesPaginator,
|
49
|
+
ListRoleMembershipsPaginator,
|
50
|
+
ListTemplateAliasesPaginator,
|
51
|
+
ListTemplatesPaginator,
|
52
|
+
ListTemplateVersionsPaginator,
|
53
|
+
ListThemesPaginator,
|
54
|
+
ListThemeVersionsPaginator,
|
55
|
+
ListUserGroupsPaginator,
|
56
|
+
ListUsersPaginator,
|
57
|
+
SearchAnalysesPaginator,
|
58
|
+
SearchDashboardsPaginator,
|
59
|
+
SearchDataSetsPaginator,
|
60
|
+
SearchDataSourcesPaginator,
|
61
|
+
SearchFoldersPaginator,
|
62
|
+
SearchGroupsPaginator,
|
63
|
+
SearchTopicsPaginator,
|
64
|
+
)
|
65
|
+
from .type_defs import (
|
66
|
+
BatchCreateTopicReviewedAnswerRequestRequestTypeDef,
|
67
|
+
BatchCreateTopicReviewedAnswerResponseTypeDef,
|
68
|
+
BatchDeleteTopicReviewedAnswerRequestRequestTypeDef,
|
69
|
+
BatchDeleteTopicReviewedAnswerResponseTypeDef,
|
70
|
+
CancelIngestionRequestRequestTypeDef,
|
71
|
+
CancelIngestionResponseTypeDef,
|
72
|
+
CreateAccountCustomizationRequestRequestTypeDef,
|
73
|
+
CreateAccountCustomizationResponseTypeDef,
|
74
|
+
CreateAccountSubscriptionRequestRequestTypeDef,
|
75
|
+
CreateAccountSubscriptionResponseTypeDef,
|
76
|
+
CreateAnalysisRequestRequestTypeDef,
|
77
|
+
CreateAnalysisResponseTypeDef,
|
78
|
+
CreateBrandRequestRequestTypeDef,
|
79
|
+
CreateBrandResponseTypeDef,
|
80
|
+
CreateCustomPermissionsRequestRequestTypeDef,
|
81
|
+
CreateCustomPermissionsResponseTypeDef,
|
82
|
+
CreateDashboardRequestRequestTypeDef,
|
83
|
+
CreateDashboardResponseTypeDef,
|
84
|
+
CreateDataSetRequestRequestTypeDef,
|
85
|
+
CreateDataSetResponseTypeDef,
|
86
|
+
CreateDataSourceRequestRequestTypeDef,
|
87
|
+
CreateDataSourceResponseTypeDef,
|
88
|
+
CreateFolderMembershipRequestRequestTypeDef,
|
89
|
+
CreateFolderMembershipResponseTypeDef,
|
90
|
+
CreateFolderRequestRequestTypeDef,
|
91
|
+
CreateFolderResponseTypeDef,
|
92
|
+
CreateGroupMembershipRequestRequestTypeDef,
|
93
|
+
CreateGroupMembershipResponseTypeDef,
|
94
|
+
CreateGroupRequestRequestTypeDef,
|
95
|
+
CreateGroupResponseTypeDef,
|
96
|
+
CreateIAMPolicyAssignmentRequestRequestTypeDef,
|
97
|
+
CreateIAMPolicyAssignmentResponseTypeDef,
|
98
|
+
CreateIngestionRequestRequestTypeDef,
|
99
|
+
CreateIngestionResponseTypeDef,
|
100
|
+
CreateNamespaceRequestRequestTypeDef,
|
101
|
+
CreateNamespaceResponseTypeDef,
|
102
|
+
CreateRefreshScheduleRequestRequestTypeDef,
|
103
|
+
CreateRefreshScheduleResponseTypeDef,
|
104
|
+
CreateRoleMembershipRequestRequestTypeDef,
|
105
|
+
CreateRoleMembershipResponseTypeDef,
|
106
|
+
CreateTemplateAliasRequestRequestTypeDef,
|
107
|
+
CreateTemplateAliasResponseTypeDef,
|
108
|
+
CreateTemplateRequestRequestTypeDef,
|
109
|
+
CreateTemplateResponseTypeDef,
|
110
|
+
CreateThemeAliasRequestRequestTypeDef,
|
111
|
+
CreateThemeAliasResponseTypeDef,
|
112
|
+
CreateThemeRequestRequestTypeDef,
|
113
|
+
CreateThemeResponseTypeDef,
|
114
|
+
CreateTopicRefreshScheduleRequestRequestTypeDef,
|
115
|
+
CreateTopicRefreshScheduleResponseTypeDef,
|
116
|
+
CreateTopicRequestRequestTypeDef,
|
117
|
+
CreateTopicResponseTypeDef,
|
118
|
+
CreateVPCConnectionRequestRequestTypeDef,
|
119
|
+
CreateVPCConnectionResponseTypeDef,
|
120
|
+
DeleteAccountCustomizationRequestRequestTypeDef,
|
121
|
+
DeleteAccountCustomizationResponseTypeDef,
|
122
|
+
DeleteAccountSubscriptionRequestRequestTypeDef,
|
123
|
+
DeleteAccountSubscriptionResponseTypeDef,
|
124
|
+
DeleteAnalysisRequestRequestTypeDef,
|
125
|
+
DeleteAnalysisResponseTypeDef,
|
126
|
+
DeleteBrandAssignmentRequestRequestTypeDef,
|
127
|
+
DeleteBrandAssignmentResponseTypeDef,
|
128
|
+
DeleteBrandRequestRequestTypeDef,
|
129
|
+
DeleteBrandResponseTypeDef,
|
130
|
+
DeleteCustomPermissionsRequestRequestTypeDef,
|
131
|
+
DeleteCustomPermissionsResponseTypeDef,
|
132
|
+
DeleteDashboardRequestRequestTypeDef,
|
133
|
+
DeleteDashboardResponseTypeDef,
|
134
|
+
DeleteDataSetRefreshPropertiesRequestRequestTypeDef,
|
135
|
+
DeleteDataSetRefreshPropertiesResponseTypeDef,
|
136
|
+
DeleteDataSetRequestRequestTypeDef,
|
137
|
+
DeleteDataSetResponseTypeDef,
|
138
|
+
DeleteDataSourceRequestRequestTypeDef,
|
139
|
+
DeleteDataSourceResponseTypeDef,
|
140
|
+
DeleteDefaultQBusinessApplicationRequestRequestTypeDef,
|
141
|
+
DeleteDefaultQBusinessApplicationResponseTypeDef,
|
142
|
+
DeleteFolderMembershipRequestRequestTypeDef,
|
143
|
+
DeleteFolderMembershipResponseTypeDef,
|
144
|
+
DeleteFolderRequestRequestTypeDef,
|
145
|
+
DeleteFolderResponseTypeDef,
|
146
|
+
DeleteGroupMembershipRequestRequestTypeDef,
|
147
|
+
DeleteGroupMembershipResponseTypeDef,
|
148
|
+
DeleteGroupRequestRequestTypeDef,
|
149
|
+
DeleteGroupResponseTypeDef,
|
150
|
+
DeleteIAMPolicyAssignmentRequestRequestTypeDef,
|
151
|
+
DeleteIAMPolicyAssignmentResponseTypeDef,
|
152
|
+
DeleteIdentityPropagationConfigRequestRequestTypeDef,
|
153
|
+
DeleteIdentityPropagationConfigResponseTypeDef,
|
154
|
+
DeleteNamespaceRequestRequestTypeDef,
|
155
|
+
DeleteNamespaceResponseTypeDef,
|
156
|
+
DeleteRefreshScheduleRequestRequestTypeDef,
|
157
|
+
DeleteRefreshScheduleResponseTypeDef,
|
158
|
+
DeleteRoleCustomPermissionRequestRequestTypeDef,
|
159
|
+
DeleteRoleCustomPermissionResponseTypeDef,
|
160
|
+
DeleteRoleMembershipRequestRequestTypeDef,
|
161
|
+
DeleteRoleMembershipResponseTypeDef,
|
162
|
+
DeleteTemplateAliasRequestRequestTypeDef,
|
163
|
+
DeleteTemplateAliasResponseTypeDef,
|
164
|
+
DeleteTemplateRequestRequestTypeDef,
|
165
|
+
DeleteTemplateResponseTypeDef,
|
166
|
+
DeleteThemeAliasRequestRequestTypeDef,
|
167
|
+
DeleteThemeAliasResponseTypeDef,
|
168
|
+
DeleteThemeRequestRequestTypeDef,
|
169
|
+
DeleteThemeResponseTypeDef,
|
170
|
+
DeleteTopicRefreshScheduleRequestRequestTypeDef,
|
171
|
+
DeleteTopicRefreshScheduleResponseTypeDef,
|
172
|
+
DeleteTopicRequestRequestTypeDef,
|
173
|
+
DeleteTopicResponseTypeDef,
|
174
|
+
DeleteUserByPrincipalIdRequestRequestTypeDef,
|
175
|
+
DeleteUserByPrincipalIdResponseTypeDef,
|
176
|
+
DeleteUserCustomPermissionRequestRequestTypeDef,
|
177
|
+
DeleteUserCustomPermissionResponseTypeDef,
|
178
|
+
DeleteUserRequestRequestTypeDef,
|
179
|
+
DeleteUserResponseTypeDef,
|
180
|
+
DeleteVPCConnectionRequestRequestTypeDef,
|
181
|
+
DeleteVPCConnectionResponseTypeDef,
|
182
|
+
DescribeAccountCustomizationRequestRequestTypeDef,
|
183
|
+
DescribeAccountCustomizationResponseTypeDef,
|
184
|
+
DescribeAccountSettingsRequestRequestTypeDef,
|
185
|
+
DescribeAccountSettingsResponseTypeDef,
|
186
|
+
DescribeAccountSubscriptionRequestRequestTypeDef,
|
187
|
+
DescribeAccountSubscriptionResponseTypeDef,
|
188
|
+
DescribeAnalysisDefinitionRequestRequestTypeDef,
|
189
|
+
DescribeAnalysisDefinitionResponseTypeDef,
|
190
|
+
DescribeAnalysisPermissionsRequestRequestTypeDef,
|
191
|
+
DescribeAnalysisPermissionsResponseTypeDef,
|
192
|
+
DescribeAnalysisRequestRequestTypeDef,
|
193
|
+
DescribeAnalysisResponseTypeDef,
|
194
|
+
DescribeAssetBundleExportJobRequestRequestTypeDef,
|
195
|
+
DescribeAssetBundleExportJobResponseTypeDef,
|
196
|
+
DescribeAssetBundleImportJobRequestRequestTypeDef,
|
197
|
+
DescribeAssetBundleImportJobResponseTypeDef,
|
198
|
+
DescribeBrandAssignmentRequestRequestTypeDef,
|
199
|
+
DescribeBrandAssignmentResponseTypeDef,
|
200
|
+
DescribeBrandPublishedVersionRequestRequestTypeDef,
|
201
|
+
DescribeBrandPublishedVersionResponseTypeDef,
|
202
|
+
DescribeBrandRequestRequestTypeDef,
|
203
|
+
DescribeBrandResponseTypeDef,
|
204
|
+
DescribeCustomPermissionsRequestRequestTypeDef,
|
205
|
+
DescribeCustomPermissionsResponseTypeDef,
|
206
|
+
DescribeDashboardDefinitionRequestRequestTypeDef,
|
207
|
+
DescribeDashboardDefinitionResponseTypeDef,
|
208
|
+
DescribeDashboardPermissionsRequestRequestTypeDef,
|
209
|
+
DescribeDashboardPermissionsResponseTypeDef,
|
210
|
+
DescribeDashboardRequestRequestTypeDef,
|
211
|
+
DescribeDashboardResponseTypeDef,
|
212
|
+
DescribeDashboardSnapshotJobRequestRequestTypeDef,
|
213
|
+
DescribeDashboardSnapshotJobResponseTypeDef,
|
214
|
+
DescribeDashboardSnapshotJobResultRequestRequestTypeDef,
|
215
|
+
DescribeDashboardSnapshotJobResultResponseTypeDef,
|
216
|
+
DescribeDashboardsQAConfigurationRequestRequestTypeDef,
|
217
|
+
DescribeDashboardsQAConfigurationResponseTypeDef,
|
218
|
+
DescribeDataSetPermissionsRequestRequestTypeDef,
|
219
|
+
DescribeDataSetPermissionsResponseTypeDef,
|
220
|
+
DescribeDataSetRefreshPropertiesRequestRequestTypeDef,
|
221
|
+
DescribeDataSetRefreshPropertiesResponseTypeDef,
|
222
|
+
DescribeDataSetRequestRequestTypeDef,
|
223
|
+
DescribeDataSetResponseTypeDef,
|
224
|
+
DescribeDataSourcePermissionsRequestRequestTypeDef,
|
225
|
+
DescribeDataSourcePermissionsResponseTypeDef,
|
226
|
+
DescribeDataSourceRequestRequestTypeDef,
|
227
|
+
DescribeDataSourceResponseTypeDef,
|
228
|
+
DescribeDefaultQBusinessApplicationRequestRequestTypeDef,
|
229
|
+
DescribeDefaultQBusinessApplicationResponseTypeDef,
|
230
|
+
DescribeFolderPermissionsRequestRequestTypeDef,
|
231
|
+
DescribeFolderPermissionsResponseTypeDef,
|
232
|
+
DescribeFolderRequestRequestTypeDef,
|
233
|
+
DescribeFolderResolvedPermissionsRequestRequestTypeDef,
|
234
|
+
DescribeFolderResolvedPermissionsResponseTypeDef,
|
235
|
+
DescribeFolderResponseTypeDef,
|
236
|
+
DescribeGroupMembershipRequestRequestTypeDef,
|
237
|
+
DescribeGroupMembershipResponseTypeDef,
|
238
|
+
DescribeGroupRequestRequestTypeDef,
|
239
|
+
DescribeGroupResponseTypeDef,
|
240
|
+
DescribeIAMPolicyAssignmentRequestRequestTypeDef,
|
241
|
+
DescribeIAMPolicyAssignmentResponseTypeDef,
|
242
|
+
DescribeIngestionRequestRequestTypeDef,
|
243
|
+
DescribeIngestionResponseTypeDef,
|
244
|
+
DescribeIpRestrictionRequestRequestTypeDef,
|
245
|
+
DescribeIpRestrictionResponseTypeDef,
|
246
|
+
DescribeKeyRegistrationRequestRequestTypeDef,
|
247
|
+
DescribeKeyRegistrationResponseTypeDef,
|
248
|
+
DescribeNamespaceRequestRequestTypeDef,
|
249
|
+
DescribeNamespaceResponseTypeDef,
|
250
|
+
DescribeQPersonalizationConfigurationRequestRequestTypeDef,
|
251
|
+
DescribeQPersonalizationConfigurationResponseTypeDef,
|
252
|
+
DescribeQuickSightQSearchConfigurationRequestRequestTypeDef,
|
253
|
+
DescribeQuickSightQSearchConfigurationResponseTypeDef,
|
254
|
+
DescribeRefreshScheduleRequestRequestTypeDef,
|
255
|
+
DescribeRefreshScheduleResponseTypeDef,
|
256
|
+
DescribeRoleCustomPermissionRequestRequestTypeDef,
|
257
|
+
DescribeRoleCustomPermissionResponseTypeDef,
|
258
|
+
DescribeTemplateAliasRequestRequestTypeDef,
|
259
|
+
DescribeTemplateAliasResponseTypeDef,
|
260
|
+
DescribeTemplateDefinitionRequestRequestTypeDef,
|
261
|
+
DescribeTemplateDefinitionResponseTypeDef,
|
262
|
+
DescribeTemplatePermissionsRequestRequestTypeDef,
|
263
|
+
DescribeTemplatePermissionsResponseTypeDef,
|
264
|
+
DescribeTemplateRequestRequestTypeDef,
|
265
|
+
DescribeTemplateResponseTypeDef,
|
266
|
+
DescribeThemeAliasRequestRequestTypeDef,
|
267
|
+
DescribeThemeAliasResponseTypeDef,
|
268
|
+
DescribeThemePermissionsRequestRequestTypeDef,
|
269
|
+
DescribeThemePermissionsResponseTypeDef,
|
270
|
+
DescribeThemeRequestRequestTypeDef,
|
271
|
+
DescribeThemeResponseTypeDef,
|
272
|
+
DescribeTopicPermissionsRequestRequestTypeDef,
|
273
|
+
DescribeTopicPermissionsResponseTypeDef,
|
274
|
+
DescribeTopicRefreshRequestRequestTypeDef,
|
275
|
+
DescribeTopicRefreshResponseTypeDef,
|
276
|
+
DescribeTopicRefreshScheduleRequestRequestTypeDef,
|
277
|
+
DescribeTopicRefreshScheduleResponseTypeDef,
|
278
|
+
DescribeTopicRequestRequestTypeDef,
|
279
|
+
DescribeTopicResponseTypeDef,
|
280
|
+
DescribeUserRequestRequestTypeDef,
|
281
|
+
DescribeUserResponseTypeDef,
|
282
|
+
DescribeVPCConnectionRequestRequestTypeDef,
|
283
|
+
DescribeVPCConnectionResponseTypeDef,
|
284
|
+
GenerateEmbedUrlForAnonymousUserRequestRequestTypeDef,
|
285
|
+
GenerateEmbedUrlForAnonymousUserResponseTypeDef,
|
286
|
+
GenerateEmbedUrlForRegisteredUserRequestRequestTypeDef,
|
287
|
+
GenerateEmbedUrlForRegisteredUserResponseTypeDef,
|
288
|
+
GenerateEmbedUrlForRegisteredUserWithIdentityRequestRequestTypeDef,
|
289
|
+
GenerateEmbedUrlForRegisteredUserWithIdentityResponseTypeDef,
|
290
|
+
GetDashboardEmbedUrlRequestRequestTypeDef,
|
291
|
+
GetDashboardEmbedUrlResponseTypeDef,
|
292
|
+
GetSessionEmbedUrlRequestRequestTypeDef,
|
293
|
+
GetSessionEmbedUrlResponseTypeDef,
|
294
|
+
ListAnalysesRequestRequestTypeDef,
|
295
|
+
ListAnalysesResponseTypeDef,
|
296
|
+
ListAssetBundleExportJobsRequestRequestTypeDef,
|
297
|
+
ListAssetBundleExportJobsResponseTypeDef,
|
298
|
+
ListAssetBundleImportJobsRequestRequestTypeDef,
|
299
|
+
ListAssetBundleImportJobsResponseTypeDef,
|
300
|
+
ListBrandsRequestRequestTypeDef,
|
301
|
+
ListBrandsResponseTypeDef,
|
302
|
+
ListCustomPermissionsRequestRequestTypeDef,
|
303
|
+
ListCustomPermissionsResponseTypeDef,
|
304
|
+
ListDashboardsRequestRequestTypeDef,
|
305
|
+
ListDashboardsResponseTypeDef,
|
306
|
+
ListDashboardVersionsRequestRequestTypeDef,
|
307
|
+
ListDashboardVersionsResponseTypeDef,
|
308
|
+
ListDataSetsRequestRequestTypeDef,
|
309
|
+
ListDataSetsResponseTypeDef,
|
310
|
+
ListDataSourcesRequestRequestTypeDef,
|
311
|
+
ListDataSourcesResponseTypeDef,
|
312
|
+
ListFolderMembersRequestRequestTypeDef,
|
313
|
+
ListFolderMembersResponseTypeDef,
|
314
|
+
ListFoldersForResourceRequestRequestTypeDef,
|
315
|
+
ListFoldersForResourceResponseTypeDef,
|
316
|
+
ListFoldersRequestRequestTypeDef,
|
317
|
+
ListFoldersResponseTypeDef,
|
318
|
+
ListGroupMembershipsRequestRequestTypeDef,
|
319
|
+
ListGroupMembershipsResponseTypeDef,
|
320
|
+
ListGroupsRequestRequestTypeDef,
|
321
|
+
ListGroupsResponseTypeDef,
|
322
|
+
ListIAMPolicyAssignmentsForUserRequestRequestTypeDef,
|
323
|
+
ListIAMPolicyAssignmentsForUserResponseTypeDef,
|
324
|
+
ListIAMPolicyAssignmentsRequestRequestTypeDef,
|
325
|
+
ListIAMPolicyAssignmentsResponseTypeDef,
|
326
|
+
ListIdentityPropagationConfigsRequestRequestTypeDef,
|
327
|
+
ListIdentityPropagationConfigsResponseTypeDef,
|
328
|
+
ListIngestionsRequestRequestTypeDef,
|
329
|
+
ListIngestionsResponseTypeDef,
|
330
|
+
ListNamespacesRequestRequestTypeDef,
|
331
|
+
ListNamespacesResponseTypeDef,
|
332
|
+
ListRefreshSchedulesRequestRequestTypeDef,
|
333
|
+
ListRefreshSchedulesResponseTypeDef,
|
334
|
+
ListRoleMembershipsRequestRequestTypeDef,
|
335
|
+
ListRoleMembershipsResponseTypeDef,
|
336
|
+
ListTagsForResourceRequestRequestTypeDef,
|
337
|
+
ListTagsForResourceResponseTypeDef,
|
338
|
+
ListTemplateAliasesRequestRequestTypeDef,
|
339
|
+
ListTemplateAliasesResponseTypeDef,
|
340
|
+
ListTemplatesRequestRequestTypeDef,
|
341
|
+
ListTemplatesResponseTypeDef,
|
342
|
+
ListTemplateVersionsRequestRequestTypeDef,
|
343
|
+
ListTemplateVersionsResponseTypeDef,
|
344
|
+
ListThemeAliasesRequestRequestTypeDef,
|
345
|
+
ListThemeAliasesResponseTypeDef,
|
346
|
+
ListThemesRequestRequestTypeDef,
|
347
|
+
ListThemesResponseTypeDef,
|
348
|
+
ListThemeVersionsRequestRequestTypeDef,
|
349
|
+
ListThemeVersionsResponseTypeDef,
|
350
|
+
ListTopicRefreshSchedulesRequestRequestTypeDef,
|
351
|
+
ListTopicRefreshSchedulesResponseTypeDef,
|
352
|
+
ListTopicReviewedAnswersRequestRequestTypeDef,
|
353
|
+
ListTopicReviewedAnswersResponseTypeDef,
|
354
|
+
ListTopicsRequestRequestTypeDef,
|
355
|
+
ListTopicsResponseTypeDef,
|
356
|
+
ListUserGroupsRequestRequestTypeDef,
|
357
|
+
ListUserGroupsResponseTypeDef,
|
358
|
+
ListUsersRequestRequestTypeDef,
|
359
|
+
ListUsersResponseTypeDef,
|
360
|
+
ListVPCConnectionsRequestRequestTypeDef,
|
361
|
+
ListVPCConnectionsResponseTypeDef,
|
362
|
+
PredictQAResultsRequestRequestTypeDef,
|
363
|
+
PredictQAResultsResponseTypeDef,
|
364
|
+
PutDataSetRefreshPropertiesRequestRequestTypeDef,
|
365
|
+
PutDataSetRefreshPropertiesResponseTypeDef,
|
366
|
+
RegisterUserRequestRequestTypeDef,
|
367
|
+
RegisterUserResponseTypeDef,
|
368
|
+
RestoreAnalysisRequestRequestTypeDef,
|
369
|
+
RestoreAnalysisResponseTypeDef,
|
370
|
+
SearchAnalysesRequestRequestTypeDef,
|
371
|
+
SearchAnalysesResponseTypeDef,
|
372
|
+
SearchDashboardsRequestRequestTypeDef,
|
373
|
+
SearchDashboardsResponseTypeDef,
|
374
|
+
SearchDataSetsRequestRequestTypeDef,
|
375
|
+
SearchDataSetsResponseTypeDef,
|
376
|
+
SearchDataSourcesRequestRequestTypeDef,
|
377
|
+
SearchDataSourcesResponseTypeDef,
|
378
|
+
SearchFoldersRequestRequestTypeDef,
|
379
|
+
SearchFoldersResponseTypeDef,
|
380
|
+
SearchGroupsRequestRequestTypeDef,
|
381
|
+
SearchGroupsResponseTypeDef,
|
382
|
+
SearchTopicsRequestRequestTypeDef,
|
383
|
+
SearchTopicsResponseTypeDef,
|
384
|
+
StartAssetBundleExportJobRequestRequestTypeDef,
|
385
|
+
StartAssetBundleExportJobResponseTypeDef,
|
386
|
+
StartAssetBundleImportJobRequestRequestTypeDef,
|
387
|
+
StartAssetBundleImportJobResponseTypeDef,
|
388
|
+
StartDashboardSnapshotJobRequestRequestTypeDef,
|
389
|
+
StartDashboardSnapshotJobResponseTypeDef,
|
390
|
+
StartDashboardSnapshotJobScheduleRequestRequestTypeDef,
|
391
|
+
StartDashboardSnapshotJobScheduleResponseTypeDef,
|
392
|
+
TagResourceRequestRequestTypeDef,
|
393
|
+
TagResourceResponseTypeDef,
|
394
|
+
UntagResourceRequestRequestTypeDef,
|
395
|
+
UntagResourceResponseTypeDef,
|
396
|
+
UpdateAccountCustomizationRequestRequestTypeDef,
|
397
|
+
UpdateAccountCustomizationResponseTypeDef,
|
398
|
+
UpdateAccountSettingsRequestRequestTypeDef,
|
399
|
+
UpdateAccountSettingsResponseTypeDef,
|
400
|
+
UpdateAnalysisPermissionsRequestRequestTypeDef,
|
401
|
+
UpdateAnalysisPermissionsResponseTypeDef,
|
402
|
+
UpdateAnalysisRequestRequestTypeDef,
|
403
|
+
UpdateAnalysisResponseTypeDef,
|
404
|
+
UpdateApplicationWithTokenExchangeGrantRequestRequestTypeDef,
|
405
|
+
UpdateApplicationWithTokenExchangeGrantResponseTypeDef,
|
406
|
+
UpdateBrandAssignmentRequestRequestTypeDef,
|
407
|
+
UpdateBrandAssignmentResponseTypeDef,
|
408
|
+
UpdateBrandPublishedVersionRequestRequestTypeDef,
|
409
|
+
UpdateBrandPublishedVersionResponseTypeDef,
|
410
|
+
UpdateBrandRequestRequestTypeDef,
|
411
|
+
UpdateBrandResponseTypeDef,
|
412
|
+
UpdateCustomPermissionsRequestRequestTypeDef,
|
413
|
+
UpdateCustomPermissionsResponseTypeDef,
|
414
|
+
UpdateDashboardLinksRequestRequestTypeDef,
|
415
|
+
UpdateDashboardLinksResponseTypeDef,
|
416
|
+
UpdateDashboardPermissionsRequestRequestTypeDef,
|
417
|
+
UpdateDashboardPermissionsResponseTypeDef,
|
418
|
+
UpdateDashboardPublishedVersionRequestRequestTypeDef,
|
419
|
+
UpdateDashboardPublishedVersionResponseTypeDef,
|
420
|
+
UpdateDashboardRequestRequestTypeDef,
|
421
|
+
UpdateDashboardResponseTypeDef,
|
422
|
+
UpdateDashboardsQAConfigurationRequestRequestTypeDef,
|
423
|
+
UpdateDashboardsQAConfigurationResponseTypeDef,
|
424
|
+
UpdateDataSetPermissionsRequestRequestTypeDef,
|
425
|
+
UpdateDataSetPermissionsResponseTypeDef,
|
426
|
+
UpdateDataSetRequestRequestTypeDef,
|
427
|
+
UpdateDataSetResponseTypeDef,
|
428
|
+
UpdateDataSourcePermissionsRequestRequestTypeDef,
|
429
|
+
UpdateDataSourcePermissionsResponseTypeDef,
|
430
|
+
UpdateDataSourceRequestRequestTypeDef,
|
431
|
+
UpdateDataSourceResponseTypeDef,
|
432
|
+
UpdateDefaultQBusinessApplicationRequestRequestTypeDef,
|
433
|
+
UpdateDefaultQBusinessApplicationResponseTypeDef,
|
434
|
+
UpdateFolderPermissionsRequestRequestTypeDef,
|
435
|
+
UpdateFolderPermissionsResponseTypeDef,
|
436
|
+
UpdateFolderRequestRequestTypeDef,
|
437
|
+
UpdateFolderResponseTypeDef,
|
438
|
+
UpdateGroupRequestRequestTypeDef,
|
439
|
+
UpdateGroupResponseTypeDef,
|
440
|
+
UpdateIAMPolicyAssignmentRequestRequestTypeDef,
|
441
|
+
UpdateIAMPolicyAssignmentResponseTypeDef,
|
442
|
+
UpdateIdentityPropagationConfigRequestRequestTypeDef,
|
443
|
+
UpdateIdentityPropagationConfigResponseTypeDef,
|
444
|
+
UpdateIpRestrictionRequestRequestTypeDef,
|
445
|
+
UpdateIpRestrictionResponseTypeDef,
|
446
|
+
UpdateKeyRegistrationRequestRequestTypeDef,
|
447
|
+
UpdateKeyRegistrationResponseTypeDef,
|
448
|
+
UpdatePublicSharingSettingsRequestRequestTypeDef,
|
449
|
+
UpdatePublicSharingSettingsResponseTypeDef,
|
450
|
+
UpdateQPersonalizationConfigurationRequestRequestTypeDef,
|
451
|
+
UpdateQPersonalizationConfigurationResponseTypeDef,
|
452
|
+
UpdateQuickSightQSearchConfigurationRequestRequestTypeDef,
|
453
|
+
UpdateQuickSightQSearchConfigurationResponseTypeDef,
|
454
|
+
UpdateRefreshScheduleRequestRequestTypeDef,
|
455
|
+
UpdateRefreshScheduleResponseTypeDef,
|
456
|
+
UpdateRoleCustomPermissionRequestRequestTypeDef,
|
457
|
+
UpdateRoleCustomPermissionResponseTypeDef,
|
458
|
+
UpdateSPICECapacityConfigurationRequestRequestTypeDef,
|
459
|
+
UpdateSPICECapacityConfigurationResponseTypeDef,
|
460
|
+
UpdateTemplateAliasRequestRequestTypeDef,
|
461
|
+
UpdateTemplateAliasResponseTypeDef,
|
462
|
+
UpdateTemplatePermissionsRequestRequestTypeDef,
|
463
|
+
UpdateTemplatePermissionsResponseTypeDef,
|
464
|
+
UpdateTemplateRequestRequestTypeDef,
|
465
|
+
UpdateTemplateResponseTypeDef,
|
466
|
+
UpdateThemeAliasRequestRequestTypeDef,
|
467
|
+
UpdateThemeAliasResponseTypeDef,
|
468
|
+
UpdateThemePermissionsRequestRequestTypeDef,
|
469
|
+
UpdateThemePermissionsResponseTypeDef,
|
470
|
+
UpdateThemeRequestRequestTypeDef,
|
471
|
+
UpdateThemeResponseTypeDef,
|
472
|
+
UpdateTopicPermissionsRequestRequestTypeDef,
|
473
|
+
UpdateTopicPermissionsResponseTypeDef,
|
474
|
+
UpdateTopicRefreshScheduleRequestRequestTypeDef,
|
475
|
+
UpdateTopicRefreshScheduleResponseTypeDef,
|
476
|
+
UpdateTopicRequestRequestTypeDef,
|
477
|
+
UpdateTopicResponseTypeDef,
|
478
|
+
UpdateUserCustomPermissionRequestRequestTypeDef,
|
479
|
+
UpdateUserCustomPermissionResponseTypeDef,
|
480
|
+
UpdateUserRequestRequestTypeDef,
|
481
|
+
UpdateUserResponseTypeDef,
|
482
|
+
UpdateVPCConnectionRequestRequestTypeDef,
|
483
|
+
UpdateVPCConnectionResponseTypeDef,
|
484
|
+
)
|
485
|
+
|
486
|
+
if sys.version_info >= (3, 9):
|
487
|
+
from builtins import type as Type
|
488
|
+
from collections.abc import Mapping
|
489
|
+
else:
|
490
|
+
from typing import Mapping, Type
|
491
|
+
if sys.version_info >= (3, 12):
|
492
|
+
from typing import Literal, Unpack
|
493
|
+
else:
|
494
|
+
from typing_extensions import Literal, Unpack
|
495
|
+
|
496
|
+
|
497
|
+
__all__ = ("QuickSightClient",)
|
498
|
+
|
499
|
+
|
500
|
+
class Exceptions(BaseClientExceptions):
|
501
|
+
AccessDeniedException: Type[BotocoreClientError]
|
502
|
+
ClientError: Type[BotocoreClientError]
|
503
|
+
ConcurrentUpdatingException: Type[BotocoreClientError]
|
504
|
+
ConflictException: Type[BotocoreClientError]
|
505
|
+
CustomerManagedKeyUnavailableException: Type[BotocoreClientError]
|
506
|
+
DomainNotWhitelistedException: Type[BotocoreClientError]
|
507
|
+
IdentityTypeNotSupportedException: Type[BotocoreClientError]
|
508
|
+
InternalFailureException: Type[BotocoreClientError]
|
509
|
+
InternalServerException: Type[BotocoreClientError]
|
510
|
+
InvalidNextTokenException: Type[BotocoreClientError]
|
511
|
+
InvalidParameterValueException: Type[BotocoreClientError]
|
512
|
+
InvalidRequestException: Type[BotocoreClientError]
|
513
|
+
LimitExceededException: Type[BotocoreClientError]
|
514
|
+
PreconditionNotMetException: Type[BotocoreClientError]
|
515
|
+
QuickSightUserNotFoundException: Type[BotocoreClientError]
|
516
|
+
ResourceExistsException: Type[BotocoreClientError]
|
517
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
518
|
+
ResourceUnavailableException: Type[BotocoreClientError]
|
519
|
+
SessionLifetimeInMinutesInvalidException: Type[BotocoreClientError]
|
520
|
+
ThrottlingException: Type[BotocoreClientError]
|
521
|
+
UnsupportedPricingPlanException: Type[BotocoreClientError]
|
522
|
+
UnsupportedUserEditionException: Type[BotocoreClientError]
|
523
|
+
|
524
|
+
|
525
|
+
class QuickSightClient(BaseClient):
|
526
|
+
"""
|
527
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight.html#QuickSight.Client)
|
528
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/)
|
529
|
+
"""
|
530
|
+
|
531
|
+
meta: ClientMeta
|
532
|
+
|
533
|
+
@property
|
534
|
+
def exceptions(self) -> Exceptions:
|
535
|
+
"""
|
536
|
+
QuickSightClient exceptions.
|
537
|
+
|
538
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight.html#QuickSight.Client)
|
539
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#exceptions)
|
540
|
+
"""
|
541
|
+
|
542
|
+
def can_paginate(self, operation_name: str) -> bool:
|
543
|
+
"""
|
544
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/can_paginate.html)
|
545
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#can_paginate)
|
546
|
+
"""
|
547
|
+
|
548
|
+
def generate_presigned_url(
|
549
|
+
self,
|
550
|
+
ClientMethod: str,
|
551
|
+
Params: Mapping[str, Any] = ...,
|
552
|
+
ExpiresIn: int = 3600,
|
553
|
+
HttpMethod: str = ...,
|
554
|
+
) -> str:
|
555
|
+
"""
|
556
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/generate_presigned_url.html)
|
557
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#generate_presigned_url)
|
558
|
+
"""
|
559
|
+
|
560
|
+
def batch_create_topic_reviewed_answer(
|
561
|
+
self, **kwargs: Unpack[BatchCreateTopicReviewedAnswerRequestRequestTypeDef]
|
562
|
+
) -> BatchCreateTopicReviewedAnswerResponseTypeDef:
|
563
|
+
"""
|
564
|
+
Creates new reviewed answers for a Q Topic.
|
565
|
+
|
566
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/batch_create_topic_reviewed_answer.html)
|
567
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#batch_create_topic_reviewed_answer)
|
568
|
+
"""
|
569
|
+
|
570
|
+
def batch_delete_topic_reviewed_answer(
|
571
|
+
self, **kwargs: Unpack[BatchDeleteTopicReviewedAnswerRequestRequestTypeDef]
|
572
|
+
) -> BatchDeleteTopicReviewedAnswerResponseTypeDef:
|
573
|
+
"""
|
574
|
+
Deletes reviewed answers for Q Topic.
|
575
|
+
|
576
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/batch_delete_topic_reviewed_answer.html)
|
577
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#batch_delete_topic_reviewed_answer)
|
578
|
+
"""
|
579
|
+
|
580
|
+
def cancel_ingestion(
|
581
|
+
self, **kwargs: Unpack[CancelIngestionRequestRequestTypeDef]
|
582
|
+
) -> CancelIngestionResponseTypeDef:
|
583
|
+
"""
|
584
|
+
Cancels an ongoing ingestion of data into SPICE.
|
585
|
+
|
586
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/cancel_ingestion.html)
|
587
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#cancel_ingestion)
|
588
|
+
"""
|
589
|
+
|
590
|
+
def create_account_customization(
|
591
|
+
self, **kwargs: Unpack[CreateAccountCustomizationRequestRequestTypeDef]
|
592
|
+
) -> CreateAccountCustomizationResponseTypeDef:
|
593
|
+
"""
|
594
|
+
Creates Amazon QuickSight customizations for the current Amazon Web Services
|
595
|
+
Region.
|
596
|
+
|
597
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_account_customization.html)
|
598
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_account_customization)
|
599
|
+
"""
|
600
|
+
|
601
|
+
def create_account_subscription(
|
602
|
+
self, **kwargs: Unpack[CreateAccountSubscriptionRequestRequestTypeDef]
|
603
|
+
) -> CreateAccountSubscriptionResponseTypeDef:
|
604
|
+
"""
|
605
|
+
Creates an Amazon QuickSight account, or subscribes to Amazon QuickSight Q.
|
606
|
+
|
607
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_account_subscription.html)
|
608
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_account_subscription)
|
609
|
+
"""
|
610
|
+
|
611
|
+
def create_analysis(
|
612
|
+
self, **kwargs: Unpack[CreateAnalysisRequestRequestTypeDef]
|
613
|
+
) -> CreateAnalysisResponseTypeDef:
|
614
|
+
"""
|
615
|
+
Creates an analysis in Amazon QuickSight.
|
616
|
+
|
617
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_analysis.html)
|
618
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_analysis)
|
619
|
+
"""
|
620
|
+
|
621
|
+
def create_brand(
|
622
|
+
self, **kwargs: Unpack[CreateBrandRequestRequestTypeDef]
|
623
|
+
) -> CreateBrandResponseTypeDef:
|
624
|
+
"""
|
625
|
+
Creates an Amazon QuickSight brand.
|
626
|
+
|
627
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_brand.html)
|
628
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_brand)
|
629
|
+
"""
|
630
|
+
|
631
|
+
def create_custom_permissions(
|
632
|
+
self, **kwargs: Unpack[CreateCustomPermissionsRequestRequestTypeDef]
|
633
|
+
) -> CreateCustomPermissionsResponseTypeDef:
|
634
|
+
"""
|
635
|
+
Creates a custom permissions profile.
|
636
|
+
|
637
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_custom_permissions.html)
|
638
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_custom_permissions)
|
639
|
+
"""
|
640
|
+
|
641
|
+
def create_dashboard(
|
642
|
+
self, **kwargs: Unpack[CreateDashboardRequestRequestTypeDef]
|
643
|
+
) -> CreateDashboardResponseTypeDef:
|
644
|
+
"""
|
645
|
+
Creates a dashboard from either a template or directly with a
|
646
|
+
<code>DashboardDefinition</code>.
|
647
|
+
|
648
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_dashboard.html)
|
649
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_dashboard)
|
650
|
+
"""
|
651
|
+
|
652
|
+
def create_data_set(
|
653
|
+
self, **kwargs: Unpack[CreateDataSetRequestRequestTypeDef]
|
654
|
+
) -> CreateDataSetResponseTypeDef:
|
655
|
+
"""
|
656
|
+
Creates a dataset.
|
657
|
+
|
658
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_data_set.html)
|
659
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_data_set)
|
660
|
+
"""
|
661
|
+
|
662
|
+
def create_data_source(
|
663
|
+
self, **kwargs: Unpack[CreateDataSourceRequestRequestTypeDef]
|
664
|
+
) -> CreateDataSourceResponseTypeDef:
|
665
|
+
"""
|
666
|
+
Creates a data source.
|
667
|
+
|
668
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_data_source.html)
|
669
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_data_source)
|
670
|
+
"""
|
671
|
+
|
672
|
+
def create_folder(
|
673
|
+
self, **kwargs: Unpack[CreateFolderRequestRequestTypeDef]
|
674
|
+
) -> CreateFolderResponseTypeDef:
|
675
|
+
"""
|
676
|
+
Creates an empty shared folder.
|
677
|
+
|
678
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_folder.html)
|
679
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_folder)
|
680
|
+
"""
|
681
|
+
|
682
|
+
def create_folder_membership(
|
683
|
+
self, **kwargs: Unpack[CreateFolderMembershipRequestRequestTypeDef]
|
684
|
+
) -> CreateFolderMembershipResponseTypeDef:
|
685
|
+
"""
|
686
|
+
Adds an asset, such as a dashboard, analysis, or dataset into a folder.
|
687
|
+
|
688
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_folder_membership.html)
|
689
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_folder_membership)
|
690
|
+
"""
|
691
|
+
|
692
|
+
def create_group(
|
693
|
+
self, **kwargs: Unpack[CreateGroupRequestRequestTypeDef]
|
694
|
+
) -> CreateGroupResponseTypeDef:
|
695
|
+
"""
|
696
|
+
Use the <code>CreateGroup</code> operation to create a group in Amazon
|
697
|
+
QuickSight.
|
698
|
+
|
699
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_group.html)
|
700
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_group)
|
701
|
+
"""
|
702
|
+
|
703
|
+
def create_group_membership(
|
704
|
+
self, **kwargs: Unpack[CreateGroupMembershipRequestRequestTypeDef]
|
705
|
+
) -> CreateGroupMembershipResponseTypeDef:
|
706
|
+
"""
|
707
|
+
Adds an Amazon QuickSight user to an Amazon QuickSight group.
|
708
|
+
|
709
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_group_membership.html)
|
710
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_group_membership)
|
711
|
+
"""
|
712
|
+
|
713
|
+
def create_iam_policy_assignment(
|
714
|
+
self, **kwargs: Unpack[CreateIAMPolicyAssignmentRequestRequestTypeDef]
|
715
|
+
) -> CreateIAMPolicyAssignmentResponseTypeDef:
|
716
|
+
"""
|
717
|
+
Creates an assignment with one specified IAM policy, identified by its Amazon
|
718
|
+
Resource Name (ARN).
|
719
|
+
|
720
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_iam_policy_assignment.html)
|
721
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_iam_policy_assignment)
|
722
|
+
"""
|
723
|
+
|
724
|
+
def create_ingestion(
|
725
|
+
self, **kwargs: Unpack[CreateIngestionRequestRequestTypeDef]
|
726
|
+
) -> CreateIngestionResponseTypeDef:
|
727
|
+
"""
|
728
|
+
Creates and starts a new SPICE ingestion for a dataset.
|
729
|
+
|
730
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_ingestion.html)
|
731
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_ingestion)
|
732
|
+
"""
|
733
|
+
|
734
|
+
def create_namespace(
|
735
|
+
self, **kwargs: Unpack[CreateNamespaceRequestRequestTypeDef]
|
736
|
+
) -> CreateNamespaceResponseTypeDef:
|
737
|
+
"""
|
738
|
+
(Enterprise edition only) Creates a new namespace for you to use with Amazon
|
739
|
+
QuickSight.
|
740
|
+
|
741
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_namespace.html)
|
742
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_namespace)
|
743
|
+
"""
|
744
|
+
|
745
|
+
def create_refresh_schedule(
|
746
|
+
self, **kwargs: Unpack[CreateRefreshScheduleRequestRequestTypeDef]
|
747
|
+
) -> CreateRefreshScheduleResponseTypeDef:
|
748
|
+
"""
|
749
|
+
Creates a refresh schedule for a dataset.
|
750
|
+
|
751
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_refresh_schedule.html)
|
752
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_refresh_schedule)
|
753
|
+
"""
|
754
|
+
|
755
|
+
def create_role_membership(
|
756
|
+
self, **kwargs: Unpack[CreateRoleMembershipRequestRequestTypeDef]
|
757
|
+
) -> CreateRoleMembershipResponseTypeDef:
|
758
|
+
"""
|
759
|
+
Use <code>CreateRoleMembership</code> to add an existing Amazon QuickSight
|
760
|
+
group to an existing role.
|
761
|
+
|
762
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_role_membership.html)
|
763
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_role_membership)
|
764
|
+
"""
|
765
|
+
|
766
|
+
def create_template(
|
767
|
+
self, **kwargs: Unpack[CreateTemplateRequestRequestTypeDef]
|
768
|
+
) -> CreateTemplateResponseTypeDef:
|
769
|
+
"""
|
770
|
+
Creates a template either from a <code>TemplateDefinition</code> or from an
|
771
|
+
existing Amazon QuickSight analysis or template.
|
772
|
+
|
773
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_template.html)
|
774
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_template)
|
775
|
+
"""
|
776
|
+
|
777
|
+
def create_template_alias(
|
778
|
+
self, **kwargs: Unpack[CreateTemplateAliasRequestRequestTypeDef]
|
779
|
+
) -> CreateTemplateAliasResponseTypeDef:
|
780
|
+
"""
|
781
|
+
Creates a template alias for a template.
|
782
|
+
|
783
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_template_alias.html)
|
784
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_template_alias)
|
785
|
+
"""
|
786
|
+
|
787
|
+
def create_theme(
|
788
|
+
self, **kwargs: Unpack[CreateThemeRequestRequestTypeDef]
|
789
|
+
) -> CreateThemeResponseTypeDef:
|
790
|
+
"""
|
791
|
+
Creates a theme.
|
792
|
+
|
793
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_theme.html)
|
794
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_theme)
|
795
|
+
"""
|
796
|
+
|
797
|
+
def create_theme_alias(
|
798
|
+
self, **kwargs: Unpack[CreateThemeAliasRequestRequestTypeDef]
|
799
|
+
) -> CreateThemeAliasResponseTypeDef:
|
800
|
+
"""
|
801
|
+
Creates a theme alias for a theme.
|
802
|
+
|
803
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_theme_alias.html)
|
804
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_theme_alias)
|
805
|
+
"""
|
806
|
+
|
807
|
+
def create_topic(
|
808
|
+
self, **kwargs: Unpack[CreateTopicRequestRequestTypeDef]
|
809
|
+
) -> CreateTopicResponseTypeDef:
|
810
|
+
"""
|
811
|
+
Creates a new Q topic.
|
812
|
+
|
813
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_topic.html)
|
814
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_topic)
|
815
|
+
"""
|
816
|
+
|
817
|
+
def create_topic_refresh_schedule(
|
818
|
+
self, **kwargs: Unpack[CreateTopicRefreshScheduleRequestRequestTypeDef]
|
819
|
+
) -> CreateTopicRefreshScheduleResponseTypeDef:
|
820
|
+
"""
|
821
|
+
Creates a topic refresh schedule.
|
822
|
+
|
823
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_topic_refresh_schedule.html)
|
824
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_topic_refresh_schedule)
|
825
|
+
"""
|
826
|
+
|
827
|
+
def create_vpc_connection(
|
828
|
+
self, **kwargs: Unpack[CreateVPCConnectionRequestRequestTypeDef]
|
829
|
+
) -> CreateVPCConnectionResponseTypeDef:
|
830
|
+
"""
|
831
|
+
Creates a new VPC connection.
|
832
|
+
|
833
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_vpc_connection.html)
|
834
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#create_vpc_connection)
|
835
|
+
"""
|
836
|
+
|
837
|
+
def delete_account_customization(
|
838
|
+
self, **kwargs: Unpack[DeleteAccountCustomizationRequestRequestTypeDef]
|
839
|
+
) -> DeleteAccountCustomizationResponseTypeDef:
|
840
|
+
"""
|
841
|
+
Deletes all Amazon QuickSight customizations in this Amazon Web Services Region
|
842
|
+
for the specified Amazon Web Services account and Amazon QuickSight namespace.
|
843
|
+
|
844
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_account_customization.html)
|
845
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_account_customization)
|
846
|
+
"""
|
847
|
+
|
848
|
+
def delete_account_subscription(
|
849
|
+
self, **kwargs: Unpack[DeleteAccountSubscriptionRequestRequestTypeDef]
|
850
|
+
) -> DeleteAccountSubscriptionResponseTypeDef:
|
851
|
+
"""
|
852
|
+
Use the <code>DeleteAccountSubscription</code> operation to delete an Amazon
|
853
|
+
QuickSight account.
|
854
|
+
|
855
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_account_subscription.html)
|
856
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_account_subscription)
|
857
|
+
"""
|
858
|
+
|
859
|
+
def delete_analysis(
|
860
|
+
self, **kwargs: Unpack[DeleteAnalysisRequestRequestTypeDef]
|
861
|
+
) -> DeleteAnalysisResponseTypeDef:
|
862
|
+
"""
|
863
|
+
Deletes an analysis from Amazon QuickSight.
|
864
|
+
|
865
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_analysis.html)
|
866
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_analysis)
|
867
|
+
"""
|
868
|
+
|
869
|
+
def delete_brand(
|
870
|
+
self, **kwargs: Unpack[DeleteBrandRequestRequestTypeDef]
|
871
|
+
) -> DeleteBrandResponseTypeDef:
|
872
|
+
"""
|
873
|
+
Deletes an Amazon QuickSight brand.
|
874
|
+
|
875
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_brand.html)
|
876
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_brand)
|
877
|
+
"""
|
878
|
+
|
879
|
+
def delete_brand_assignment(
|
880
|
+
self, **kwargs: Unpack[DeleteBrandAssignmentRequestRequestTypeDef]
|
881
|
+
) -> DeleteBrandAssignmentResponseTypeDef:
|
882
|
+
"""
|
883
|
+
Deletes a brand assignment.
|
884
|
+
|
885
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_brand_assignment.html)
|
886
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_brand_assignment)
|
887
|
+
"""
|
888
|
+
|
889
|
+
def delete_custom_permissions(
|
890
|
+
self, **kwargs: Unpack[DeleteCustomPermissionsRequestRequestTypeDef]
|
891
|
+
) -> DeleteCustomPermissionsResponseTypeDef:
|
892
|
+
"""
|
893
|
+
Deletes a custom permissions profile.
|
894
|
+
|
895
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_custom_permissions.html)
|
896
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_custom_permissions)
|
897
|
+
"""
|
898
|
+
|
899
|
+
def delete_dashboard(
|
900
|
+
self, **kwargs: Unpack[DeleteDashboardRequestRequestTypeDef]
|
901
|
+
) -> DeleteDashboardResponseTypeDef:
|
902
|
+
"""
|
903
|
+
Deletes a dashboard.
|
904
|
+
|
905
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_dashboard.html)
|
906
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_dashboard)
|
907
|
+
"""
|
908
|
+
|
909
|
+
def delete_data_set(
|
910
|
+
self, **kwargs: Unpack[DeleteDataSetRequestRequestTypeDef]
|
911
|
+
) -> DeleteDataSetResponseTypeDef:
|
912
|
+
"""
|
913
|
+
Deletes a dataset.
|
914
|
+
|
915
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_data_set.html)
|
916
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_data_set)
|
917
|
+
"""
|
918
|
+
|
919
|
+
def delete_data_set_refresh_properties(
|
920
|
+
self, **kwargs: Unpack[DeleteDataSetRefreshPropertiesRequestRequestTypeDef]
|
921
|
+
) -> DeleteDataSetRefreshPropertiesResponseTypeDef:
|
922
|
+
"""
|
923
|
+
Deletes the dataset refresh properties of the dataset.
|
924
|
+
|
925
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_data_set_refresh_properties.html)
|
926
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_data_set_refresh_properties)
|
927
|
+
"""
|
928
|
+
|
929
|
+
def delete_data_source(
|
930
|
+
self, **kwargs: Unpack[DeleteDataSourceRequestRequestTypeDef]
|
931
|
+
) -> DeleteDataSourceResponseTypeDef:
|
932
|
+
"""
|
933
|
+
Deletes the data source permanently.
|
934
|
+
|
935
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_data_source.html)
|
936
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_data_source)
|
937
|
+
"""
|
938
|
+
|
939
|
+
def delete_default_q_business_application(
|
940
|
+
self, **kwargs: Unpack[DeleteDefaultQBusinessApplicationRequestRequestTypeDef]
|
941
|
+
) -> DeleteDefaultQBusinessApplicationResponseTypeDef:
|
942
|
+
"""
|
943
|
+
Deletes a linked Amazon Q Business application from an Amazon QuickSight
|
944
|
+
account.
|
945
|
+
|
946
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_default_q_business_application.html)
|
947
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_default_q_business_application)
|
948
|
+
"""
|
949
|
+
|
950
|
+
def delete_folder(
|
951
|
+
self, **kwargs: Unpack[DeleteFolderRequestRequestTypeDef]
|
952
|
+
) -> DeleteFolderResponseTypeDef:
|
953
|
+
"""
|
954
|
+
Deletes an empty folder.
|
955
|
+
|
956
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_folder.html)
|
957
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_folder)
|
958
|
+
"""
|
959
|
+
|
960
|
+
def delete_folder_membership(
|
961
|
+
self, **kwargs: Unpack[DeleteFolderMembershipRequestRequestTypeDef]
|
962
|
+
) -> DeleteFolderMembershipResponseTypeDef:
|
963
|
+
"""
|
964
|
+
Removes an asset, such as a dashboard, analysis, or dataset, from a folder.
|
965
|
+
|
966
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_folder_membership.html)
|
967
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_folder_membership)
|
968
|
+
"""
|
969
|
+
|
970
|
+
def delete_group(
|
971
|
+
self, **kwargs: Unpack[DeleteGroupRequestRequestTypeDef]
|
972
|
+
) -> DeleteGroupResponseTypeDef:
|
973
|
+
"""
|
974
|
+
Removes a user group from Amazon QuickSight.
|
975
|
+
|
976
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_group.html)
|
977
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_group)
|
978
|
+
"""
|
979
|
+
|
980
|
+
def delete_group_membership(
|
981
|
+
self, **kwargs: Unpack[DeleteGroupMembershipRequestRequestTypeDef]
|
982
|
+
) -> DeleteGroupMembershipResponseTypeDef:
|
983
|
+
"""
|
984
|
+
Removes a user from a group so that the user is no longer a member of the group.
|
985
|
+
|
986
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_group_membership.html)
|
987
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_group_membership)
|
988
|
+
"""
|
989
|
+
|
990
|
+
def delete_iam_policy_assignment(
|
991
|
+
self, **kwargs: Unpack[DeleteIAMPolicyAssignmentRequestRequestTypeDef]
|
992
|
+
) -> DeleteIAMPolicyAssignmentResponseTypeDef:
|
993
|
+
"""
|
994
|
+
Deletes an existing IAM policy assignment.
|
995
|
+
|
996
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_iam_policy_assignment.html)
|
997
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_iam_policy_assignment)
|
998
|
+
"""
|
999
|
+
|
1000
|
+
def delete_identity_propagation_config(
|
1001
|
+
self, **kwargs: Unpack[DeleteIdentityPropagationConfigRequestRequestTypeDef]
|
1002
|
+
) -> DeleteIdentityPropagationConfigResponseTypeDef:
|
1003
|
+
"""
|
1004
|
+
Deletes all access scopes and authorized targets that are associated with a
|
1005
|
+
service from the Amazon QuickSight IAM Identity Center application.
|
1006
|
+
|
1007
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_identity_propagation_config.html)
|
1008
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_identity_propagation_config)
|
1009
|
+
"""
|
1010
|
+
|
1011
|
+
def delete_namespace(
|
1012
|
+
self, **kwargs: Unpack[DeleteNamespaceRequestRequestTypeDef]
|
1013
|
+
) -> DeleteNamespaceResponseTypeDef:
|
1014
|
+
"""
|
1015
|
+
Deletes a namespace and the users and groups that are associated with the
|
1016
|
+
namespace.
|
1017
|
+
|
1018
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_namespace.html)
|
1019
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_namespace)
|
1020
|
+
"""
|
1021
|
+
|
1022
|
+
def delete_refresh_schedule(
|
1023
|
+
self, **kwargs: Unpack[DeleteRefreshScheduleRequestRequestTypeDef]
|
1024
|
+
) -> DeleteRefreshScheduleResponseTypeDef:
|
1025
|
+
"""
|
1026
|
+
Deletes a refresh schedule from a dataset.
|
1027
|
+
|
1028
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_refresh_schedule.html)
|
1029
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_refresh_schedule)
|
1030
|
+
"""
|
1031
|
+
|
1032
|
+
def delete_role_custom_permission(
|
1033
|
+
self, **kwargs: Unpack[DeleteRoleCustomPermissionRequestRequestTypeDef]
|
1034
|
+
) -> DeleteRoleCustomPermissionResponseTypeDef:
|
1035
|
+
"""
|
1036
|
+
Removes custom permissions from the role.
|
1037
|
+
|
1038
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_role_custom_permission.html)
|
1039
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_role_custom_permission)
|
1040
|
+
"""
|
1041
|
+
|
1042
|
+
def delete_role_membership(
|
1043
|
+
self, **kwargs: Unpack[DeleteRoleMembershipRequestRequestTypeDef]
|
1044
|
+
) -> DeleteRoleMembershipResponseTypeDef:
|
1045
|
+
"""
|
1046
|
+
Removes a group from a role.
|
1047
|
+
|
1048
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_role_membership.html)
|
1049
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_role_membership)
|
1050
|
+
"""
|
1051
|
+
|
1052
|
+
def delete_template(
|
1053
|
+
self, **kwargs: Unpack[DeleteTemplateRequestRequestTypeDef]
|
1054
|
+
) -> DeleteTemplateResponseTypeDef:
|
1055
|
+
"""
|
1056
|
+
Deletes a template.
|
1057
|
+
|
1058
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_template.html)
|
1059
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_template)
|
1060
|
+
"""
|
1061
|
+
|
1062
|
+
def delete_template_alias(
|
1063
|
+
self, **kwargs: Unpack[DeleteTemplateAliasRequestRequestTypeDef]
|
1064
|
+
) -> DeleteTemplateAliasResponseTypeDef:
|
1065
|
+
"""
|
1066
|
+
Deletes the item that the specified template alias points to.
|
1067
|
+
|
1068
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_template_alias.html)
|
1069
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_template_alias)
|
1070
|
+
"""
|
1071
|
+
|
1072
|
+
def delete_theme(
|
1073
|
+
self, **kwargs: Unpack[DeleteThemeRequestRequestTypeDef]
|
1074
|
+
) -> DeleteThemeResponseTypeDef:
|
1075
|
+
"""
|
1076
|
+
Deletes a theme.
|
1077
|
+
|
1078
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_theme.html)
|
1079
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_theme)
|
1080
|
+
"""
|
1081
|
+
|
1082
|
+
def delete_theme_alias(
|
1083
|
+
self, **kwargs: Unpack[DeleteThemeAliasRequestRequestTypeDef]
|
1084
|
+
) -> DeleteThemeAliasResponseTypeDef:
|
1085
|
+
"""
|
1086
|
+
Deletes the version of the theme that the specified theme alias points to.
|
1087
|
+
|
1088
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_theme_alias.html)
|
1089
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_theme_alias)
|
1090
|
+
"""
|
1091
|
+
|
1092
|
+
def delete_topic(
|
1093
|
+
self, **kwargs: Unpack[DeleteTopicRequestRequestTypeDef]
|
1094
|
+
) -> DeleteTopicResponseTypeDef:
|
1095
|
+
"""
|
1096
|
+
Deletes a topic.
|
1097
|
+
|
1098
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_topic.html)
|
1099
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_topic)
|
1100
|
+
"""
|
1101
|
+
|
1102
|
+
def delete_topic_refresh_schedule(
|
1103
|
+
self, **kwargs: Unpack[DeleteTopicRefreshScheduleRequestRequestTypeDef]
|
1104
|
+
) -> DeleteTopicRefreshScheduleResponseTypeDef:
|
1105
|
+
"""
|
1106
|
+
Deletes a topic refresh schedule.
|
1107
|
+
|
1108
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_topic_refresh_schedule.html)
|
1109
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_topic_refresh_schedule)
|
1110
|
+
"""
|
1111
|
+
|
1112
|
+
def delete_user(
|
1113
|
+
self, **kwargs: Unpack[DeleteUserRequestRequestTypeDef]
|
1114
|
+
) -> DeleteUserResponseTypeDef:
|
1115
|
+
"""
|
1116
|
+
Deletes the Amazon QuickSight user that is associated with the identity of the
|
1117
|
+
IAM user or role that's making the call.
|
1118
|
+
|
1119
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_user.html)
|
1120
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_user)
|
1121
|
+
"""
|
1122
|
+
|
1123
|
+
def delete_user_by_principal_id(
|
1124
|
+
self, **kwargs: Unpack[DeleteUserByPrincipalIdRequestRequestTypeDef]
|
1125
|
+
) -> DeleteUserByPrincipalIdResponseTypeDef:
|
1126
|
+
"""
|
1127
|
+
Deletes a user identified by its principal ID.
|
1128
|
+
|
1129
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_user_by_principal_id.html)
|
1130
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_user_by_principal_id)
|
1131
|
+
"""
|
1132
|
+
|
1133
|
+
def delete_user_custom_permission(
|
1134
|
+
self, **kwargs: Unpack[DeleteUserCustomPermissionRequestRequestTypeDef]
|
1135
|
+
) -> DeleteUserCustomPermissionResponseTypeDef:
|
1136
|
+
"""
|
1137
|
+
Deletes a custom permissions profile from a user.
|
1138
|
+
|
1139
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_user_custom_permission.html)
|
1140
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_user_custom_permission)
|
1141
|
+
"""
|
1142
|
+
|
1143
|
+
def delete_vpc_connection(
|
1144
|
+
self, **kwargs: Unpack[DeleteVPCConnectionRequestRequestTypeDef]
|
1145
|
+
) -> DeleteVPCConnectionResponseTypeDef:
|
1146
|
+
"""
|
1147
|
+
Deletes a VPC connection.
|
1148
|
+
|
1149
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/delete_vpc_connection.html)
|
1150
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#delete_vpc_connection)
|
1151
|
+
"""
|
1152
|
+
|
1153
|
+
def describe_account_customization(
|
1154
|
+
self, **kwargs: Unpack[DescribeAccountCustomizationRequestRequestTypeDef]
|
1155
|
+
) -> DescribeAccountCustomizationResponseTypeDef:
|
1156
|
+
"""
|
1157
|
+
Describes the customizations associated with the provided Amazon Web Services
|
1158
|
+
account and Amazon Amazon QuickSight namespace in an Amazon Web Services
|
1159
|
+
Region.
|
1160
|
+
|
1161
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_account_customization.html)
|
1162
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_account_customization)
|
1163
|
+
"""
|
1164
|
+
|
1165
|
+
def describe_account_settings(
|
1166
|
+
self, **kwargs: Unpack[DescribeAccountSettingsRequestRequestTypeDef]
|
1167
|
+
) -> DescribeAccountSettingsResponseTypeDef:
|
1168
|
+
"""
|
1169
|
+
Describes the settings that were used when your Amazon QuickSight subscription
|
1170
|
+
was first created in this Amazon Web Services account.
|
1171
|
+
|
1172
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_account_settings.html)
|
1173
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_account_settings)
|
1174
|
+
"""
|
1175
|
+
|
1176
|
+
def describe_account_subscription(
|
1177
|
+
self, **kwargs: Unpack[DescribeAccountSubscriptionRequestRequestTypeDef]
|
1178
|
+
) -> DescribeAccountSubscriptionResponseTypeDef:
|
1179
|
+
"""
|
1180
|
+
Use the DescribeAccountSubscription operation to receive a description of an
|
1181
|
+
Amazon QuickSight account's subscription.
|
1182
|
+
|
1183
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_account_subscription.html)
|
1184
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_account_subscription)
|
1185
|
+
"""
|
1186
|
+
|
1187
|
+
def describe_analysis(
|
1188
|
+
self, **kwargs: Unpack[DescribeAnalysisRequestRequestTypeDef]
|
1189
|
+
) -> DescribeAnalysisResponseTypeDef:
|
1190
|
+
"""
|
1191
|
+
Provides a summary of the metadata for an analysis.
|
1192
|
+
|
1193
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_analysis.html)
|
1194
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_analysis)
|
1195
|
+
"""
|
1196
|
+
|
1197
|
+
def describe_analysis_definition(
|
1198
|
+
self, **kwargs: Unpack[DescribeAnalysisDefinitionRequestRequestTypeDef]
|
1199
|
+
) -> DescribeAnalysisDefinitionResponseTypeDef:
|
1200
|
+
"""
|
1201
|
+
Provides a detailed description of the definition of an analysis.
|
1202
|
+
|
1203
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_analysis_definition.html)
|
1204
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_analysis_definition)
|
1205
|
+
"""
|
1206
|
+
|
1207
|
+
def describe_analysis_permissions(
|
1208
|
+
self, **kwargs: Unpack[DescribeAnalysisPermissionsRequestRequestTypeDef]
|
1209
|
+
) -> DescribeAnalysisPermissionsResponseTypeDef:
|
1210
|
+
"""
|
1211
|
+
Provides the read and write permissions for an analysis.
|
1212
|
+
|
1213
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_analysis_permissions.html)
|
1214
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_analysis_permissions)
|
1215
|
+
"""
|
1216
|
+
|
1217
|
+
def describe_asset_bundle_export_job(
|
1218
|
+
self, **kwargs: Unpack[DescribeAssetBundleExportJobRequestRequestTypeDef]
|
1219
|
+
) -> DescribeAssetBundleExportJobResponseTypeDef:
|
1220
|
+
"""
|
1221
|
+
Describes an existing export job.
|
1222
|
+
|
1223
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_asset_bundle_export_job.html)
|
1224
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_asset_bundle_export_job)
|
1225
|
+
"""
|
1226
|
+
|
1227
|
+
def describe_asset_bundle_import_job(
|
1228
|
+
self, **kwargs: Unpack[DescribeAssetBundleImportJobRequestRequestTypeDef]
|
1229
|
+
) -> DescribeAssetBundleImportJobResponseTypeDef:
|
1230
|
+
"""
|
1231
|
+
Describes an existing import job.
|
1232
|
+
|
1233
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_asset_bundle_import_job.html)
|
1234
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_asset_bundle_import_job)
|
1235
|
+
"""
|
1236
|
+
|
1237
|
+
def describe_brand(
|
1238
|
+
self, **kwargs: Unpack[DescribeBrandRequestRequestTypeDef]
|
1239
|
+
) -> DescribeBrandResponseTypeDef:
|
1240
|
+
"""
|
1241
|
+
Describes a brand.
|
1242
|
+
|
1243
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_brand.html)
|
1244
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_brand)
|
1245
|
+
"""
|
1246
|
+
|
1247
|
+
def describe_brand_assignment(
|
1248
|
+
self, **kwargs: Unpack[DescribeBrandAssignmentRequestRequestTypeDef]
|
1249
|
+
) -> DescribeBrandAssignmentResponseTypeDef:
|
1250
|
+
"""
|
1251
|
+
Describes a brand assignment.
|
1252
|
+
|
1253
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_brand_assignment.html)
|
1254
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_brand_assignment)
|
1255
|
+
"""
|
1256
|
+
|
1257
|
+
def describe_brand_published_version(
|
1258
|
+
self, **kwargs: Unpack[DescribeBrandPublishedVersionRequestRequestTypeDef]
|
1259
|
+
) -> DescribeBrandPublishedVersionResponseTypeDef:
|
1260
|
+
"""
|
1261
|
+
Describes the published version of the brand.
|
1262
|
+
|
1263
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_brand_published_version.html)
|
1264
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_brand_published_version)
|
1265
|
+
"""
|
1266
|
+
|
1267
|
+
def describe_custom_permissions(
|
1268
|
+
self, **kwargs: Unpack[DescribeCustomPermissionsRequestRequestTypeDef]
|
1269
|
+
) -> DescribeCustomPermissionsResponseTypeDef:
|
1270
|
+
"""
|
1271
|
+
Describes a custom permissions profile.
|
1272
|
+
|
1273
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_custom_permissions.html)
|
1274
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_custom_permissions)
|
1275
|
+
"""
|
1276
|
+
|
1277
|
+
def describe_dashboard(
|
1278
|
+
self, **kwargs: Unpack[DescribeDashboardRequestRequestTypeDef]
|
1279
|
+
) -> DescribeDashboardResponseTypeDef:
|
1280
|
+
"""
|
1281
|
+
Provides a summary for a dashboard.
|
1282
|
+
|
1283
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_dashboard.html)
|
1284
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_dashboard)
|
1285
|
+
"""
|
1286
|
+
|
1287
|
+
def describe_dashboard_definition(
|
1288
|
+
self, **kwargs: Unpack[DescribeDashboardDefinitionRequestRequestTypeDef]
|
1289
|
+
) -> DescribeDashboardDefinitionResponseTypeDef:
|
1290
|
+
"""
|
1291
|
+
Provides a detailed description of the definition of a dashboard.
|
1292
|
+
|
1293
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_dashboard_definition.html)
|
1294
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_dashboard_definition)
|
1295
|
+
"""
|
1296
|
+
|
1297
|
+
def describe_dashboard_permissions(
|
1298
|
+
self, **kwargs: Unpack[DescribeDashboardPermissionsRequestRequestTypeDef]
|
1299
|
+
) -> DescribeDashboardPermissionsResponseTypeDef:
|
1300
|
+
"""
|
1301
|
+
Describes read and write permissions for a dashboard.
|
1302
|
+
|
1303
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_dashboard_permissions.html)
|
1304
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_dashboard_permissions)
|
1305
|
+
"""
|
1306
|
+
|
1307
|
+
def describe_dashboard_snapshot_job(
|
1308
|
+
self, **kwargs: Unpack[DescribeDashboardSnapshotJobRequestRequestTypeDef]
|
1309
|
+
) -> DescribeDashboardSnapshotJobResponseTypeDef:
|
1310
|
+
"""
|
1311
|
+
Describes an existing snapshot job.
|
1312
|
+
|
1313
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_dashboard_snapshot_job.html)
|
1314
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_dashboard_snapshot_job)
|
1315
|
+
"""
|
1316
|
+
|
1317
|
+
def describe_dashboard_snapshot_job_result(
|
1318
|
+
self, **kwargs: Unpack[DescribeDashboardSnapshotJobResultRequestRequestTypeDef]
|
1319
|
+
) -> DescribeDashboardSnapshotJobResultResponseTypeDef:
|
1320
|
+
"""
|
1321
|
+
Describes the result of an existing snapshot job that has finished running.
|
1322
|
+
|
1323
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_dashboard_snapshot_job_result.html)
|
1324
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_dashboard_snapshot_job_result)
|
1325
|
+
"""
|
1326
|
+
|
1327
|
+
def describe_dashboards_qa_configuration(
|
1328
|
+
self, **kwargs: Unpack[DescribeDashboardsQAConfigurationRequestRequestTypeDef]
|
1329
|
+
) -> DescribeDashboardsQAConfigurationResponseTypeDef:
|
1330
|
+
"""
|
1331
|
+
Describes an existing dashboard QA configuration.
|
1332
|
+
|
1333
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_dashboards_qa_configuration.html)
|
1334
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_dashboards_qa_configuration)
|
1335
|
+
"""
|
1336
|
+
|
1337
|
+
def describe_data_set(
|
1338
|
+
self, **kwargs: Unpack[DescribeDataSetRequestRequestTypeDef]
|
1339
|
+
) -> DescribeDataSetResponseTypeDef:
|
1340
|
+
"""
|
1341
|
+
Describes a dataset.
|
1342
|
+
|
1343
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_data_set.html)
|
1344
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_data_set)
|
1345
|
+
"""
|
1346
|
+
|
1347
|
+
def describe_data_set_permissions(
|
1348
|
+
self, **kwargs: Unpack[DescribeDataSetPermissionsRequestRequestTypeDef]
|
1349
|
+
) -> DescribeDataSetPermissionsResponseTypeDef:
|
1350
|
+
"""
|
1351
|
+
Describes the permissions on a dataset.
|
1352
|
+
|
1353
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_data_set_permissions.html)
|
1354
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_data_set_permissions)
|
1355
|
+
"""
|
1356
|
+
|
1357
|
+
def describe_data_set_refresh_properties(
|
1358
|
+
self, **kwargs: Unpack[DescribeDataSetRefreshPropertiesRequestRequestTypeDef]
|
1359
|
+
) -> DescribeDataSetRefreshPropertiesResponseTypeDef:
|
1360
|
+
"""
|
1361
|
+
Describes the refresh properties of a dataset.
|
1362
|
+
|
1363
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_data_set_refresh_properties.html)
|
1364
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_data_set_refresh_properties)
|
1365
|
+
"""
|
1366
|
+
|
1367
|
+
def describe_data_source(
|
1368
|
+
self, **kwargs: Unpack[DescribeDataSourceRequestRequestTypeDef]
|
1369
|
+
) -> DescribeDataSourceResponseTypeDef:
|
1370
|
+
"""
|
1371
|
+
Describes a data source.
|
1372
|
+
|
1373
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_data_source.html)
|
1374
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_data_source)
|
1375
|
+
"""
|
1376
|
+
|
1377
|
+
def describe_data_source_permissions(
|
1378
|
+
self, **kwargs: Unpack[DescribeDataSourcePermissionsRequestRequestTypeDef]
|
1379
|
+
) -> DescribeDataSourcePermissionsResponseTypeDef:
|
1380
|
+
"""
|
1381
|
+
Describes the resource permissions for a data source.
|
1382
|
+
|
1383
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_data_source_permissions.html)
|
1384
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_data_source_permissions)
|
1385
|
+
"""
|
1386
|
+
|
1387
|
+
def describe_default_q_business_application(
|
1388
|
+
self, **kwargs: Unpack[DescribeDefaultQBusinessApplicationRequestRequestTypeDef]
|
1389
|
+
) -> DescribeDefaultQBusinessApplicationResponseTypeDef:
|
1390
|
+
"""
|
1391
|
+
Describes a Amazon Q Business application that is linked to an Amazon
|
1392
|
+
QuickSight account.
|
1393
|
+
|
1394
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_default_q_business_application.html)
|
1395
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_default_q_business_application)
|
1396
|
+
"""
|
1397
|
+
|
1398
|
+
def describe_folder(
|
1399
|
+
self, **kwargs: Unpack[DescribeFolderRequestRequestTypeDef]
|
1400
|
+
) -> DescribeFolderResponseTypeDef:
|
1401
|
+
"""
|
1402
|
+
Describes a folder.
|
1403
|
+
|
1404
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_folder.html)
|
1405
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_folder)
|
1406
|
+
"""
|
1407
|
+
|
1408
|
+
def describe_folder_permissions(
|
1409
|
+
self, **kwargs: Unpack[DescribeFolderPermissionsRequestRequestTypeDef]
|
1410
|
+
) -> DescribeFolderPermissionsResponseTypeDef:
|
1411
|
+
"""
|
1412
|
+
Describes permissions for a folder.
|
1413
|
+
|
1414
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_folder_permissions.html)
|
1415
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_folder_permissions)
|
1416
|
+
"""
|
1417
|
+
|
1418
|
+
def describe_folder_resolved_permissions(
|
1419
|
+
self, **kwargs: Unpack[DescribeFolderResolvedPermissionsRequestRequestTypeDef]
|
1420
|
+
) -> DescribeFolderResolvedPermissionsResponseTypeDef:
|
1421
|
+
"""
|
1422
|
+
Describes the folder resolved permissions.
|
1423
|
+
|
1424
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_folder_resolved_permissions.html)
|
1425
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_folder_resolved_permissions)
|
1426
|
+
"""
|
1427
|
+
|
1428
|
+
def describe_group(
|
1429
|
+
self, **kwargs: Unpack[DescribeGroupRequestRequestTypeDef]
|
1430
|
+
) -> DescribeGroupResponseTypeDef:
|
1431
|
+
"""
|
1432
|
+
Returns an Amazon QuickSight group's description and Amazon Resource Name (ARN).
|
1433
|
+
|
1434
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_group.html)
|
1435
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_group)
|
1436
|
+
"""
|
1437
|
+
|
1438
|
+
def describe_group_membership(
|
1439
|
+
self, **kwargs: Unpack[DescribeGroupMembershipRequestRequestTypeDef]
|
1440
|
+
) -> DescribeGroupMembershipResponseTypeDef:
|
1441
|
+
"""
|
1442
|
+
Use the <code>DescribeGroupMembership</code> operation to determine if a user
|
1443
|
+
is a member of the specified group.
|
1444
|
+
|
1445
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_group_membership.html)
|
1446
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_group_membership)
|
1447
|
+
"""
|
1448
|
+
|
1449
|
+
def describe_iam_policy_assignment(
|
1450
|
+
self, **kwargs: Unpack[DescribeIAMPolicyAssignmentRequestRequestTypeDef]
|
1451
|
+
) -> DescribeIAMPolicyAssignmentResponseTypeDef:
|
1452
|
+
"""
|
1453
|
+
Describes an existing IAM policy assignment, as specified by the assignment
|
1454
|
+
name.
|
1455
|
+
|
1456
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_iam_policy_assignment.html)
|
1457
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_iam_policy_assignment)
|
1458
|
+
"""
|
1459
|
+
|
1460
|
+
def describe_ingestion(
|
1461
|
+
self, **kwargs: Unpack[DescribeIngestionRequestRequestTypeDef]
|
1462
|
+
) -> DescribeIngestionResponseTypeDef:
|
1463
|
+
"""
|
1464
|
+
Describes a SPICE ingestion.
|
1465
|
+
|
1466
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_ingestion.html)
|
1467
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_ingestion)
|
1468
|
+
"""
|
1469
|
+
|
1470
|
+
def describe_ip_restriction(
|
1471
|
+
self, **kwargs: Unpack[DescribeIpRestrictionRequestRequestTypeDef]
|
1472
|
+
) -> DescribeIpRestrictionResponseTypeDef:
|
1473
|
+
"""
|
1474
|
+
Provides a summary and status of IP rules.
|
1475
|
+
|
1476
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_ip_restriction.html)
|
1477
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_ip_restriction)
|
1478
|
+
"""
|
1479
|
+
|
1480
|
+
def describe_key_registration(
|
1481
|
+
self, **kwargs: Unpack[DescribeKeyRegistrationRequestRequestTypeDef]
|
1482
|
+
) -> DescribeKeyRegistrationResponseTypeDef:
|
1483
|
+
"""
|
1484
|
+
Describes all customer managed key registrations in a Amazon QuickSight account.
|
1485
|
+
|
1486
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_key_registration.html)
|
1487
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_key_registration)
|
1488
|
+
"""
|
1489
|
+
|
1490
|
+
def describe_namespace(
|
1491
|
+
self, **kwargs: Unpack[DescribeNamespaceRequestRequestTypeDef]
|
1492
|
+
) -> DescribeNamespaceResponseTypeDef:
|
1493
|
+
"""
|
1494
|
+
Describes the current namespace.
|
1495
|
+
|
1496
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_namespace.html)
|
1497
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_namespace)
|
1498
|
+
"""
|
1499
|
+
|
1500
|
+
def describe_q_personalization_configuration(
|
1501
|
+
self, **kwargs: Unpack[DescribeQPersonalizationConfigurationRequestRequestTypeDef]
|
1502
|
+
) -> DescribeQPersonalizationConfigurationResponseTypeDef:
|
1503
|
+
"""
|
1504
|
+
Describes a personalization configuration.
|
1505
|
+
|
1506
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_q_personalization_configuration.html)
|
1507
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_q_personalization_configuration)
|
1508
|
+
"""
|
1509
|
+
|
1510
|
+
def describe_quick_sight_q_search_configuration(
|
1511
|
+
self, **kwargs: Unpack[DescribeQuickSightQSearchConfigurationRequestRequestTypeDef]
|
1512
|
+
) -> DescribeQuickSightQSearchConfigurationResponseTypeDef:
|
1513
|
+
"""
|
1514
|
+
Describes the state of a Amazon QuickSight Q Search configuration.
|
1515
|
+
|
1516
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_quick_sight_q_search_configuration.html)
|
1517
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_quick_sight_q_search_configuration)
|
1518
|
+
"""
|
1519
|
+
|
1520
|
+
def describe_refresh_schedule(
|
1521
|
+
self, **kwargs: Unpack[DescribeRefreshScheduleRequestRequestTypeDef]
|
1522
|
+
) -> DescribeRefreshScheduleResponseTypeDef:
|
1523
|
+
"""
|
1524
|
+
Provides a summary of a refresh schedule.
|
1525
|
+
|
1526
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_refresh_schedule.html)
|
1527
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_refresh_schedule)
|
1528
|
+
"""
|
1529
|
+
|
1530
|
+
def describe_role_custom_permission(
|
1531
|
+
self, **kwargs: Unpack[DescribeRoleCustomPermissionRequestRequestTypeDef]
|
1532
|
+
) -> DescribeRoleCustomPermissionResponseTypeDef:
|
1533
|
+
"""
|
1534
|
+
Describes all custom permissions that are mapped to a role.
|
1535
|
+
|
1536
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_role_custom_permission.html)
|
1537
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_role_custom_permission)
|
1538
|
+
"""
|
1539
|
+
|
1540
|
+
def describe_template(
|
1541
|
+
self, **kwargs: Unpack[DescribeTemplateRequestRequestTypeDef]
|
1542
|
+
) -> DescribeTemplateResponseTypeDef:
|
1543
|
+
"""
|
1544
|
+
Describes a template's metadata.
|
1545
|
+
|
1546
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_template.html)
|
1547
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_template)
|
1548
|
+
"""
|
1549
|
+
|
1550
|
+
def describe_template_alias(
|
1551
|
+
self, **kwargs: Unpack[DescribeTemplateAliasRequestRequestTypeDef]
|
1552
|
+
) -> DescribeTemplateAliasResponseTypeDef:
|
1553
|
+
"""
|
1554
|
+
Describes the template alias for a template.
|
1555
|
+
|
1556
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_template_alias.html)
|
1557
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_template_alias)
|
1558
|
+
"""
|
1559
|
+
|
1560
|
+
def describe_template_definition(
|
1561
|
+
self, **kwargs: Unpack[DescribeTemplateDefinitionRequestRequestTypeDef]
|
1562
|
+
) -> DescribeTemplateDefinitionResponseTypeDef:
|
1563
|
+
"""
|
1564
|
+
Provides a detailed description of the definition of a template.
|
1565
|
+
|
1566
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_template_definition.html)
|
1567
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_template_definition)
|
1568
|
+
"""
|
1569
|
+
|
1570
|
+
def describe_template_permissions(
|
1571
|
+
self, **kwargs: Unpack[DescribeTemplatePermissionsRequestRequestTypeDef]
|
1572
|
+
) -> DescribeTemplatePermissionsResponseTypeDef:
|
1573
|
+
"""
|
1574
|
+
Describes read and write permissions on a template.
|
1575
|
+
|
1576
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_template_permissions.html)
|
1577
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_template_permissions)
|
1578
|
+
"""
|
1579
|
+
|
1580
|
+
def describe_theme(
|
1581
|
+
self, **kwargs: Unpack[DescribeThemeRequestRequestTypeDef]
|
1582
|
+
) -> DescribeThemeResponseTypeDef:
|
1583
|
+
"""
|
1584
|
+
Describes a theme.
|
1585
|
+
|
1586
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_theme.html)
|
1587
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_theme)
|
1588
|
+
"""
|
1589
|
+
|
1590
|
+
def describe_theme_alias(
|
1591
|
+
self, **kwargs: Unpack[DescribeThemeAliasRequestRequestTypeDef]
|
1592
|
+
) -> DescribeThemeAliasResponseTypeDef:
|
1593
|
+
"""
|
1594
|
+
Describes the alias for a theme.
|
1595
|
+
|
1596
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_theme_alias.html)
|
1597
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_theme_alias)
|
1598
|
+
"""
|
1599
|
+
|
1600
|
+
def describe_theme_permissions(
|
1601
|
+
self, **kwargs: Unpack[DescribeThemePermissionsRequestRequestTypeDef]
|
1602
|
+
) -> DescribeThemePermissionsResponseTypeDef:
|
1603
|
+
"""
|
1604
|
+
Describes the read and write permissions for a theme.
|
1605
|
+
|
1606
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_theme_permissions.html)
|
1607
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_theme_permissions)
|
1608
|
+
"""
|
1609
|
+
|
1610
|
+
def describe_topic(
|
1611
|
+
self, **kwargs: Unpack[DescribeTopicRequestRequestTypeDef]
|
1612
|
+
) -> DescribeTopicResponseTypeDef:
|
1613
|
+
"""
|
1614
|
+
Describes a topic.
|
1615
|
+
|
1616
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_topic.html)
|
1617
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_topic)
|
1618
|
+
"""
|
1619
|
+
|
1620
|
+
def describe_topic_permissions(
|
1621
|
+
self, **kwargs: Unpack[DescribeTopicPermissionsRequestRequestTypeDef]
|
1622
|
+
) -> DescribeTopicPermissionsResponseTypeDef:
|
1623
|
+
"""
|
1624
|
+
Describes the permissions of a topic.
|
1625
|
+
|
1626
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_topic_permissions.html)
|
1627
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_topic_permissions)
|
1628
|
+
"""
|
1629
|
+
|
1630
|
+
def describe_topic_refresh(
|
1631
|
+
self, **kwargs: Unpack[DescribeTopicRefreshRequestRequestTypeDef]
|
1632
|
+
) -> DescribeTopicRefreshResponseTypeDef:
|
1633
|
+
"""
|
1634
|
+
Describes the status of a topic refresh.
|
1635
|
+
|
1636
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_topic_refresh.html)
|
1637
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_topic_refresh)
|
1638
|
+
"""
|
1639
|
+
|
1640
|
+
def describe_topic_refresh_schedule(
|
1641
|
+
self, **kwargs: Unpack[DescribeTopicRefreshScheduleRequestRequestTypeDef]
|
1642
|
+
) -> DescribeTopicRefreshScheduleResponseTypeDef:
|
1643
|
+
"""
|
1644
|
+
Deletes a topic refresh schedule.
|
1645
|
+
|
1646
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_topic_refresh_schedule.html)
|
1647
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_topic_refresh_schedule)
|
1648
|
+
"""
|
1649
|
+
|
1650
|
+
def describe_user(
|
1651
|
+
self, **kwargs: Unpack[DescribeUserRequestRequestTypeDef]
|
1652
|
+
) -> DescribeUserResponseTypeDef:
|
1653
|
+
"""
|
1654
|
+
Returns information about a user, given the user name.
|
1655
|
+
|
1656
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_user.html)
|
1657
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_user)
|
1658
|
+
"""
|
1659
|
+
|
1660
|
+
def describe_vpc_connection(
|
1661
|
+
self, **kwargs: Unpack[DescribeVPCConnectionRequestRequestTypeDef]
|
1662
|
+
) -> DescribeVPCConnectionResponseTypeDef:
|
1663
|
+
"""
|
1664
|
+
Describes a VPC connection.
|
1665
|
+
|
1666
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_vpc_connection.html)
|
1667
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#describe_vpc_connection)
|
1668
|
+
"""
|
1669
|
+
|
1670
|
+
def generate_embed_url_for_anonymous_user(
|
1671
|
+
self, **kwargs: Unpack[GenerateEmbedUrlForAnonymousUserRequestRequestTypeDef]
|
1672
|
+
) -> GenerateEmbedUrlForAnonymousUserResponseTypeDef:
|
1673
|
+
"""
|
1674
|
+
Generates an embed URL that you can use to embed an Amazon QuickSight dashboard
|
1675
|
+
or visual in your website, without having to register any reader users.
|
1676
|
+
|
1677
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/generate_embed_url_for_anonymous_user.html)
|
1678
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#generate_embed_url_for_anonymous_user)
|
1679
|
+
"""
|
1680
|
+
|
1681
|
+
def generate_embed_url_for_registered_user(
|
1682
|
+
self, **kwargs: Unpack[GenerateEmbedUrlForRegisteredUserRequestRequestTypeDef]
|
1683
|
+
) -> GenerateEmbedUrlForRegisteredUserResponseTypeDef:
|
1684
|
+
"""
|
1685
|
+
Generates an embed URL that you can use to embed an Amazon QuickSight
|
1686
|
+
experience in your website.
|
1687
|
+
|
1688
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/generate_embed_url_for_registered_user.html)
|
1689
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#generate_embed_url_for_registered_user)
|
1690
|
+
"""
|
1691
|
+
|
1692
|
+
def generate_embed_url_for_registered_user_with_identity(
|
1693
|
+
self, **kwargs: Unpack[GenerateEmbedUrlForRegisteredUserWithIdentityRequestRequestTypeDef]
|
1694
|
+
) -> GenerateEmbedUrlForRegisteredUserWithIdentityResponseTypeDef:
|
1695
|
+
"""
|
1696
|
+
Generates an embed URL that you can use to embed an Amazon QuickSight
|
1697
|
+
experience in your website.
|
1698
|
+
|
1699
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/generate_embed_url_for_registered_user_with_identity.html)
|
1700
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#generate_embed_url_for_registered_user_with_identity)
|
1701
|
+
"""
|
1702
|
+
|
1703
|
+
def get_dashboard_embed_url(
|
1704
|
+
self, **kwargs: Unpack[GetDashboardEmbedUrlRequestRequestTypeDef]
|
1705
|
+
) -> GetDashboardEmbedUrlResponseTypeDef:
|
1706
|
+
"""
|
1707
|
+
Generates a temporary session URL and authorization code(bearer token) that you
|
1708
|
+
can use to embed an Amazon QuickSight read-only dashboard in your website or
|
1709
|
+
application.
|
1710
|
+
|
1711
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_dashboard_embed_url.html)
|
1712
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_dashboard_embed_url)
|
1713
|
+
"""
|
1714
|
+
|
1715
|
+
def get_session_embed_url(
|
1716
|
+
self, **kwargs: Unpack[GetSessionEmbedUrlRequestRequestTypeDef]
|
1717
|
+
) -> GetSessionEmbedUrlResponseTypeDef:
|
1718
|
+
"""
|
1719
|
+
Generates a session URL and authorization code that you can use to embed the
|
1720
|
+
Amazon Amazon QuickSight console in your web server code.
|
1721
|
+
|
1722
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_session_embed_url.html)
|
1723
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_session_embed_url)
|
1724
|
+
"""
|
1725
|
+
|
1726
|
+
def list_analyses(
|
1727
|
+
self, **kwargs: Unpack[ListAnalysesRequestRequestTypeDef]
|
1728
|
+
) -> ListAnalysesResponseTypeDef:
|
1729
|
+
"""
|
1730
|
+
Lists Amazon QuickSight analyses that exist in the specified Amazon Web
|
1731
|
+
Services account.
|
1732
|
+
|
1733
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_analyses.html)
|
1734
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_analyses)
|
1735
|
+
"""
|
1736
|
+
|
1737
|
+
def list_asset_bundle_export_jobs(
|
1738
|
+
self, **kwargs: Unpack[ListAssetBundleExportJobsRequestRequestTypeDef]
|
1739
|
+
) -> ListAssetBundleExportJobsResponseTypeDef:
|
1740
|
+
"""
|
1741
|
+
Lists all asset bundle export jobs that have been taken place in the last 14
|
1742
|
+
days.
|
1743
|
+
|
1744
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_asset_bundle_export_jobs.html)
|
1745
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_asset_bundle_export_jobs)
|
1746
|
+
"""
|
1747
|
+
|
1748
|
+
def list_asset_bundle_import_jobs(
|
1749
|
+
self, **kwargs: Unpack[ListAssetBundleImportJobsRequestRequestTypeDef]
|
1750
|
+
) -> ListAssetBundleImportJobsResponseTypeDef:
|
1751
|
+
"""
|
1752
|
+
Lists all asset bundle import jobs that have taken place in the last 14 days.
|
1753
|
+
|
1754
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_asset_bundle_import_jobs.html)
|
1755
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_asset_bundle_import_jobs)
|
1756
|
+
"""
|
1757
|
+
|
1758
|
+
def list_brands(
|
1759
|
+
self, **kwargs: Unpack[ListBrandsRequestRequestTypeDef]
|
1760
|
+
) -> ListBrandsResponseTypeDef:
|
1761
|
+
"""
|
1762
|
+
Lists all brands in an Amazon QuickSight account.
|
1763
|
+
|
1764
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_brands.html)
|
1765
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_brands)
|
1766
|
+
"""
|
1767
|
+
|
1768
|
+
def list_custom_permissions(
|
1769
|
+
self, **kwargs: Unpack[ListCustomPermissionsRequestRequestTypeDef]
|
1770
|
+
) -> ListCustomPermissionsResponseTypeDef:
|
1771
|
+
"""
|
1772
|
+
Returns a list of all the custom permissions profiles.
|
1773
|
+
|
1774
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_custom_permissions.html)
|
1775
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_custom_permissions)
|
1776
|
+
"""
|
1777
|
+
|
1778
|
+
def list_dashboard_versions(
|
1779
|
+
self, **kwargs: Unpack[ListDashboardVersionsRequestRequestTypeDef]
|
1780
|
+
) -> ListDashboardVersionsResponseTypeDef:
|
1781
|
+
"""
|
1782
|
+
Lists all the versions of the dashboards in the Amazon QuickSight subscription.
|
1783
|
+
|
1784
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_dashboard_versions.html)
|
1785
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_dashboard_versions)
|
1786
|
+
"""
|
1787
|
+
|
1788
|
+
def list_dashboards(
|
1789
|
+
self, **kwargs: Unpack[ListDashboardsRequestRequestTypeDef]
|
1790
|
+
) -> ListDashboardsResponseTypeDef:
|
1791
|
+
"""
|
1792
|
+
Lists dashboards in an Amazon Web Services account.
|
1793
|
+
|
1794
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_dashboards.html)
|
1795
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_dashboards)
|
1796
|
+
"""
|
1797
|
+
|
1798
|
+
def list_data_sets(
|
1799
|
+
self, **kwargs: Unpack[ListDataSetsRequestRequestTypeDef]
|
1800
|
+
) -> ListDataSetsResponseTypeDef:
|
1801
|
+
"""
|
1802
|
+
Lists all of the datasets belonging to the current Amazon Web Services account
|
1803
|
+
in an Amazon Web Services Region.
|
1804
|
+
|
1805
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_data_sets.html)
|
1806
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_data_sets)
|
1807
|
+
"""
|
1808
|
+
|
1809
|
+
def list_data_sources(
|
1810
|
+
self, **kwargs: Unpack[ListDataSourcesRequestRequestTypeDef]
|
1811
|
+
) -> ListDataSourcesResponseTypeDef:
|
1812
|
+
"""
|
1813
|
+
Lists data sources in current Amazon Web Services Region that belong to this
|
1814
|
+
Amazon Web Services account.
|
1815
|
+
|
1816
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_data_sources.html)
|
1817
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_data_sources)
|
1818
|
+
"""
|
1819
|
+
|
1820
|
+
def list_folder_members(
|
1821
|
+
self, **kwargs: Unpack[ListFolderMembersRequestRequestTypeDef]
|
1822
|
+
) -> ListFolderMembersResponseTypeDef:
|
1823
|
+
"""
|
1824
|
+
List all assets (<code>DASHBOARD</code>, <code>ANALYSIS</code>, and
|
1825
|
+
<code>DATASET</code>) in a folder.
|
1826
|
+
|
1827
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_folder_members.html)
|
1828
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_folder_members)
|
1829
|
+
"""
|
1830
|
+
|
1831
|
+
def list_folders(
|
1832
|
+
self, **kwargs: Unpack[ListFoldersRequestRequestTypeDef]
|
1833
|
+
) -> ListFoldersResponseTypeDef:
|
1834
|
+
"""
|
1835
|
+
Lists all folders in an account.
|
1836
|
+
|
1837
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_folders.html)
|
1838
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_folders)
|
1839
|
+
"""
|
1840
|
+
|
1841
|
+
def list_folders_for_resource(
|
1842
|
+
self, **kwargs: Unpack[ListFoldersForResourceRequestRequestTypeDef]
|
1843
|
+
) -> ListFoldersForResourceResponseTypeDef:
|
1844
|
+
"""
|
1845
|
+
List all folders that a resource is a member of.
|
1846
|
+
|
1847
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_folders_for_resource.html)
|
1848
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_folders_for_resource)
|
1849
|
+
"""
|
1850
|
+
|
1851
|
+
def list_group_memberships(
|
1852
|
+
self, **kwargs: Unpack[ListGroupMembershipsRequestRequestTypeDef]
|
1853
|
+
) -> ListGroupMembershipsResponseTypeDef:
|
1854
|
+
"""
|
1855
|
+
Lists member users in a group.
|
1856
|
+
|
1857
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_group_memberships.html)
|
1858
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_group_memberships)
|
1859
|
+
"""
|
1860
|
+
|
1861
|
+
def list_groups(
|
1862
|
+
self, **kwargs: Unpack[ListGroupsRequestRequestTypeDef]
|
1863
|
+
) -> ListGroupsResponseTypeDef:
|
1864
|
+
"""
|
1865
|
+
Lists all user groups in Amazon QuickSight.
|
1866
|
+
|
1867
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_groups.html)
|
1868
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_groups)
|
1869
|
+
"""
|
1870
|
+
|
1871
|
+
def list_iam_policy_assignments(
|
1872
|
+
self, **kwargs: Unpack[ListIAMPolicyAssignmentsRequestRequestTypeDef]
|
1873
|
+
) -> ListIAMPolicyAssignmentsResponseTypeDef:
|
1874
|
+
"""
|
1875
|
+
Lists the IAM policy assignments in the current Amazon QuickSight account.
|
1876
|
+
|
1877
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_iam_policy_assignments.html)
|
1878
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_iam_policy_assignments)
|
1879
|
+
"""
|
1880
|
+
|
1881
|
+
def list_iam_policy_assignments_for_user(
|
1882
|
+
self, **kwargs: Unpack[ListIAMPolicyAssignmentsForUserRequestRequestTypeDef]
|
1883
|
+
) -> ListIAMPolicyAssignmentsForUserResponseTypeDef:
|
1884
|
+
"""
|
1885
|
+
Lists all of the IAM policy assignments, including the Amazon Resource Names
|
1886
|
+
(ARNs), for the IAM policies assigned to the specified user and group, or
|
1887
|
+
groups that the user belongs to.
|
1888
|
+
|
1889
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_iam_policy_assignments_for_user.html)
|
1890
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_iam_policy_assignments_for_user)
|
1891
|
+
"""
|
1892
|
+
|
1893
|
+
def list_identity_propagation_configs(
|
1894
|
+
self, **kwargs: Unpack[ListIdentityPropagationConfigsRequestRequestTypeDef]
|
1895
|
+
) -> ListIdentityPropagationConfigsResponseTypeDef:
|
1896
|
+
"""
|
1897
|
+
Lists all services and authorized targets that the Amazon QuickSight IAM
|
1898
|
+
Identity Center application can access.
|
1899
|
+
|
1900
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_identity_propagation_configs.html)
|
1901
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_identity_propagation_configs)
|
1902
|
+
"""
|
1903
|
+
|
1904
|
+
def list_ingestions(
|
1905
|
+
self, **kwargs: Unpack[ListIngestionsRequestRequestTypeDef]
|
1906
|
+
) -> ListIngestionsResponseTypeDef:
|
1907
|
+
"""
|
1908
|
+
Lists the history of SPICE ingestions for a dataset.
|
1909
|
+
|
1910
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_ingestions.html)
|
1911
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_ingestions)
|
1912
|
+
"""
|
1913
|
+
|
1914
|
+
def list_namespaces(
|
1915
|
+
self, **kwargs: Unpack[ListNamespacesRequestRequestTypeDef]
|
1916
|
+
) -> ListNamespacesResponseTypeDef:
|
1917
|
+
"""
|
1918
|
+
Lists the namespaces for the specified Amazon Web Services account.
|
1919
|
+
|
1920
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_namespaces.html)
|
1921
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_namespaces)
|
1922
|
+
"""
|
1923
|
+
|
1924
|
+
def list_refresh_schedules(
|
1925
|
+
self, **kwargs: Unpack[ListRefreshSchedulesRequestRequestTypeDef]
|
1926
|
+
) -> ListRefreshSchedulesResponseTypeDef:
|
1927
|
+
"""
|
1928
|
+
Lists the refresh schedules of a dataset.
|
1929
|
+
|
1930
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_refresh_schedules.html)
|
1931
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_refresh_schedules)
|
1932
|
+
"""
|
1933
|
+
|
1934
|
+
def list_role_memberships(
|
1935
|
+
self, **kwargs: Unpack[ListRoleMembershipsRequestRequestTypeDef]
|
1936
|
+
) -> ListRoleMembershipsResponseTypeDef:
|
1937
|
+
"""
|
1938
|
+
Lists all groups that are associated with a role.
|
1939
|
+
|
1940
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_role_memberships.html)
|
1941
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_role_memberships)
|
1942
|
+
"""
|
1943
|
+
|
1944
|
+
def list_tags_for_resource(
|
1945
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestRequestTypeDef]
|
1946
|
+
) -> ListTagsForResourceResponseTypeDef:
|
1947
|
+
"""
|
1948
|
+
Lists the tags assigned to a resource.
|
1949
|
+
|
1950
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_tags_for_resource.html)
|
1951
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_tags_for_resource)
|
1952
|
+
"""
|
1953
|
+
|
1954
|
+
def list_template_aliases(
|
1955
|
+
self, **kwargs: Unpack[ListTemplateAliasesRequestRequestTypeDef]
|
1956
|
+
) -> ListTemplateAliasesResponseTypeDef:
|
1957
|
+
"""
|
1958
|
+
Lists all the aliases of a template.
|
1959
|
+
|
1960
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_template_aliases.html)
|
1961
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_template_aliases)
|
1962
|
+
"""
|
1963
|
+
|
1964
|
+
def list_template_versions(
|
1965
|
+
self, **kwargs: Unpack[ListTemplateVersionsRequestRequestTypeDef]
|
1966
|
+
) -> ListTemplateVersionsResponseTypeDef:
|
1967
|
+
"""
|
1968
|
+
Lists all the versions of the templates in the current Amazon QuickSight
|
1969
|
+
account.
|
1970
|
+
|
1971
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_template_versions.html)
|
1972
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_template_versions)
|
1973
|
+
"""
|
1974
|
+
|
1975
|
+
def list_templates(
|
1976
|
+
self, **kwargs: Unpack[ListTemplatesRequestRequestTypeDef]
|
1977
|
+
) -> ListTemplatesResponseTypeDef:
|
1978
|
+
"""
|
1979
|
+
Lists all the templates in the current Amazon QuickSight account.
|
1980
|
+
|
1981
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_templates.html)
|
1982
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_templates)
|
1983
|
+
"""
|
1984
|
+
|
1985
|
+
def list_theme_aliases(
|
1986
|
+
self, **kwargs: Unpack[ListThemeAliasesRequestRequestTypeDef]
|
1987
|
+
) -> ListThemeAliasesResponseTypeDef:
|
1988
|
+
"""
|
1989
|
+
Lists all the aliases of a theme.
|
1990
|
+
|
1991
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_theme_aliases.html)
|
1992
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_theme_aliases)
|
1993
|
+
"""
|
1994
|
+
|
1995
|
+
def list_theme_versions(
|
1996
|
+
self, **kwargs: Unpack[ListThemeVersionsRequestRequestTypeDef]
|
1997
|
+
) -> ListThemeVersionsResponseTypeDef:
|
1998
|
+
"""
|
1999
|
+
Lists all the versions of the themes in the current Amazon Web Services account.
|
2000
|
+
|
2001
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_theme_versions.html)
|
2002
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_theme_versions)
|
2003
|
+
"""
|
2004
|
+
|
2005
|
+
def list_themes(
|
2006
|
+
self, **kwargs: Unpack[ListThemesRequestRequestTypeDef]
|
2007
|
+
) -> ListThemesResponseTypeDef:
|
2008
|
+
"""
|
2009
|
+
Lists all the themes in the current Amazon Web Services account.
|
2010
|
+
|
2011
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_themes.html)
|
2012
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_themes)
|
2013
|
+
"""
|
2014
|
+
|
2015
|
+
def list_topic_refresh_schedules(
|
2016
|
+
self, **kwargs: Unpack[ListTopicRefreshSchedulesRequestRequestTypeDef]
|
2017
|
+
) -> ListTopicRefreshSchedulesResponseTypeDef:
|
2018
|
+
"""
|
2019
|
+
Lists all of the refresh schedules for a topic.
|
2020
|
+
|
2021
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_topic_refresh_schedules.html)
|
2022
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_topic_refresh_schedules)
|
2023
|
+
"""
|
2024
|
+
|
2025
|
+
def list_topic_reviewed_answers(
|
2026
|
+
self, **kwargs: Unpack[ListTopicReviewedAnswersRequestRequestTypeDef]
|
2027
|
+
) -> ListTopicReviewedAnswersResponseTypeDef:
|
2028
|
+
"""
|
2029
|
+
Lists all reviewed answers for a Q Topic.
|
2030
|
+
|
2031
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_topic_reviewed_answers.html)
|
2032
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_topic_reviewed_answers)
|
2033
|
+
"""
|
2034
|
+
|
2035
|
+
def list_topics(
|
2036
|
+
self, **kwargs: Unpack[ListTopicsRequestRequestTypeDef]
|
2037
|
+
) -> ListTopicsResponseTypeDef:
|
2038
|
+
"""
|
2039
|
+
Lists all of the topics within an account.
|
2040
|
+
|
2041
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_topics.html)
|
2042
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_topics)
|
2043
|
+
"""
|
2044
|
+
|
2045
|
+
def list_user_groups(
|
2046
|
+
self, **kwargs: Unpack[ListUserGroupsRequestRequestTypeDef]
|
2047
|
+
) -> ListUserGroupsResponseTypeDef:
|
2048
|
+
"""
|
2049
|
+
Lists the Amazon QuickSight groups that an Amazon QuickSight user is a member
|
2050
|
+
of.
|
2051
|
+
|
2052
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_user_groups.html)
|
2053
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_user_groups)
|
2054
|
+
"""
|
2055
|
+
|
2056
|
+
def list_users(
|
2057
|
+
self, **kwargs: Unpack[ListUsersRequestRequestTypeDef]
|
2058
|
+
) -> ListUsersResponseTypeDef:
|
2059
|
+
"""
|
2060
|
+
Returns a list of all of the Amazon QuickSight users belonging to this account.
|
2061
|
+
|
2062
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_users.html)
|
2063
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_users)
|
2064
|
+
"""
|
2065
|
+
|
2066
|
+
def list_vpc_connections(
|
2067
|
+
self, **kwargs: Unpack[ListVPCConnectionsRequestRequestTypeDef]
|
2068
|
+
) -> ListVPCConnectionsResponseTypeDef:
|
2069
|
+
"""
|
2070
|
+
Lists all of the VPC connections in the current set Amazon Web Services Region
|
2071
|
+
of an Amazon Web Services account.
|
2072
|
+
|
2073
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_vpc_connections.html)
|
2074
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#list_vpc_connections)
|
2075
|
+
"""
|
2076
|
+
|
2077
|
+
def predict_qa_results(
|
2078
|
+
self, **kwargs: Unpack[PredictQAResultsRequestRequestTypeDef]
|
2079
|
+
) -> PredictQAResultsResponseTypeDef:
|
2080
|
+
"""
|
2081
|
+
Predicts existing visuals or generates new visuals to answer a given query.
|
2082
|
+
|
2083
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/predict_qa_results.html)
|
2084
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#predict_qa_results)
|
2085
|
+
"""
|
2086
|
+
|
2087
|
+
def put_data_set_refresh_properties(
|
2088
|
+
self, **kwargs: Unpack[PutDataSetRefreshPropertiesRequestRequestTypeDef]
|
2089
|
+
) -> PutDataSetRefreshPropertiesResponseTypeDef:
|
2090
|
+
"""
|
2091
|
+
Creates or updates the dataset refresh properties for the dataset.
|
2092
|
+
|
2093
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/put_data_set_refresh_properties.html)
|
2094
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#put_data_set_refresh_properties)
|
2095
|
+
"""
|
2096
|
+
|
2097
|
+
def register_user(
|
2098
|
+
self, **kwargs: Unpack[RegisterUserRequestRequestTypeDef]
|
2099
|
+
) -> RegisterUserResponseTypeDef:
|
2100
|
+
"""
|
2101
|
+
Creates an Amazon QuickSight user whose identity is associated with the
|
2102
|
+
Identity and Access Management (IAM) identity or role specified in the request.
|
2103
|
+
|
2104
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/register_user.html)
|
2105
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#register_user)
|
2106
|
+
"""
|
2107
|
+
|
2108
|
+
def restore_analysis(
|
2109
|
+
self, **kwargs: Unpack[RestoreAnalysisRequestRequestTypeDef]
|
2110
|
+
) -> RestoreAnalysisResponseTypeDef:
|
2111
|
+
"""
|
2112
|
+
Restores an analysis.
|
2113
|
+
|
2114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/restore_analysis.html)
|
2115
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#restore_analysis)
|
2116
|
+
"""
|
2117
|
+
|
2118
|
+
def search_analyses(
|
2119
|
+
self, **kwargs: Unpack[SearchAnalysesRequestRequestTypeDef]
|
2120
|
+
) -> SearchAnalysesResponseTypeDef:
|
2121
|
+
"""
|
2122
|
+
Searches for analyses that belong to the user specified in the filter.
|
2123
|
+
|
2124
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/search_analyses.html)
|
2125
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#search_analyses)
|
2126
|
+
"""
|
2127
|
+
|
2128
|
+
def search_dashboards(
|
2129
|
+
self, **kwargs: Unpack[SearchDashboardsRequestRequestTypeDef]
|
2130
|
+
) -> SearchDashboardsResponseTypeDef:
|
2131
|
+
"""
|
2132
|
+
Searches for dashboards that belong to a user.
|
2133
|
+
|
2134
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/search_dashboards.html)
|
2135
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#search_dashboards)
|
2136
|
+
"""
|
2137
|
+
|
2138
|
+
def search_data_sets(
|
2139
|
+
self, **kwargs: Unpack[SearchDataSetsRequestRequestTypeDef]
|
2140
|
+
) -> SearchDataSetsResponseTypeDef:
|
2141
|
+
"""
|
2142
|
+
Use the <code>SearchDataSets</code> operation to search for datasets that
|
2143
|
+
belong to an account.
|
2144
|
+
|
2145
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/search_data_sets.html)
|
2146
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#search_data_sets)
|
2147
|
+
"""
|
2148
|
+
|
2149
|
+
def search_data_sources(
|
2150
|
+
self, **kwargs: Unpack[SearchDataSourcesRequestRequestTypeDef]
|
2151
|
+
) -> SearchDataSourcesResponseTypeDef:
|
2152
|
+
"""
|
2153
|
+
Use the <code>SearchDataSources</code> operation to search for data sources
|
2154
|
+
that belong to an account.
|
2155
|
+
|
2156
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/search_data_sources.html)
|
2157
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#search_data_sources)
|
2158
|
+
"""
|
2159
|
+
|
2160
|
+
def search_folders(
|
2161
|
+
self, **kwargs: Unpack[SearchFoldersRequestRequestTypeDef]
|
2162
|
+
) -> SearchFoldersResponseTypeDef:
|
2163
|
+
"""
|
2164
|
+
Searches the subfolders in a folder.
|
2165
|
+
|
2166
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/search_folders.html)
|
2167
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#search_folders)
|
2168
|
+
"""
|
2169
|
+
|
2170
|
+
def search_groups(
|
2171
|
+
self, **kwargs: Unpack[SearchGroupsRequestRequestTypeDef]
|
2172
|
+
) -> SearchGroupsResponseTypeDef:
|
2173
|
+
"""
|
2174
|
+
Use the <code>SearchGroups</code> operation to search groups in a specified
|
2175
|
+
Amazon QuickSight namespace using the supplied filters.
|
2176
|
+
|
2177
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/search_groups.html)
|
2178
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#search_groups)
|
2179
|
+
"""
|
2180
|
+
|
2181
|
+
def search_topics(
|
2182
|
+
self, **kwargs: Unpack[SearchTopicsRequestRequestTypeDef]
|
2183
|
+
) -> SearchTopicsResponseTypeDef:
|
2184
|
+
"""
|
2185
|
+
Searches for any Q topic that exists in an Amazon QuickSight account.
|
2186
|
+
|
2187
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/search_topics.html)
|
2188
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#search_topics)
|
2189
|
+
"""
|
2190
|
+
|
2191
|
+
def start_asset_bundle_export_job(
|
2192
|
+
self, **kwargs: Unpack[StartAssetBundleExportJobRequestRequestTypeDef]
|
2193
|
+
) -> StartAssetBundleExportJobResponseTypeDef:
|
2194
|
+
"""
|
2195
|
+
Starts an Asset Bundle export job.
|
2196
|
+
|
2197
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/start_asset_bundle_export_job.html)
|
2198
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#start_asset_bundle_export_job)
|
2199
|
+
"""
|
2200
|
+
|
2201
|
+
def start_asset_bundle_import_job(
|
2202
|
+
self, **kwargs: Unpack[StartAssetBundleImportJobRequestRequestTypeDef]
|
2203
|
+
) -> StartAssetBundleImportJobResponseTypeDef:
|
2204
|
+
"""
|
2205
|
+
Starts an Asset Bundle import job.
|
2206
|
+
|
2207
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/start_asset_bundle_import_job.html)
|
2208
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#start_asset_bundle_import_job)
|
2209
|
+
"""
|
2210
|
+
|
2211
|
+
def start_dashboard_snapshot_job(
|
2212
|
+
self, **kwargs: Unpack[StartDashboardSnapshotJobRequestRequestTypeDef]
|
2213
|
+
) -> StartDashboardSnapshotJobResponseTypeDef:
|
2214
|
+
"""
|
2215
|
+
Starts an asynchronous job that generates a snapshot of a dashboard's output.
|
2216
|
+
|
2217
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/start_dashboard_snapshot_job.html)
|
2218
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#start_dashboard_snapshot_job)
|
2219
|
+
"""
|
2220
|
+
|
2221
|
+
def start_dashboard_snapshot_job_schedule(
|
2222
|
+
self, **kwargs: Unpack[StartDashboardSnapshotJobScheduleRequestRequestTypeDef]
|
2223
|
+
) -> StartDashboardSnapshotJobScheduleResponseTypeDef:
|
2224
|
+
"""
|
2225
|
+
Starts an asynchronous job that runs an existing dashboard schedule and sends
|
2226
|
+
the dashboard snapshot through email.
|
2227
|
+
|
2228
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/start_dashboard_snapshot_job_schedule.html)
|
2229
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#start_dashboard_snapshot_job_schedule)
|
2230
|
+
"""
|
2231
|
+
|
2232
|
+
def tag_resource(
|
2233
|
+
self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]
|
2234
|
+
) -> TagResourceResponseTypeDef:
|
2235
|
+
"""
|
2236
|
+
Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight
|
2237
|
+
resource.
|
2238
|
+
|
2239
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/tag_resource.html)
|
2240
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#tag_resource)
|
2241
|
+
"""
|
2242
|
+
|
2243
|
+
def untag_resource(
|
2244
|
+
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
2245
|
+
) -> UntagResourceResponseTypeDef:
|
2246
|
+
"""
|
2247
|
+
Removes a tag or tags from a resource.
|
2248
|
+
|
2249
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/untag_resource.html)
|
2250
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#untag_resource)
|
2251
|
+
"""
|
2252
|
+
|
2253
|
+
def update_account_customization(
|
2254
|
+
self, **kwargs: Unpack[UpdateAccountCustomizationRequestRequestTypeDef]
|
2255
|
+
) -> UpdateAccountCustomizationResponseTypeDef:
|
2256
|
+
"""
|
2257
|
+
Updates Amazon QuickSight customizations for the current Amazon Web Services
|
2258
|
+
Region.
|
2259
|
+
|
2260
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_account_customization.html)
|
2261
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_account_customization)
|
2262
|
+
"""
|
2263
|
+
|
2264
|
+
def update_account_settings(
|
2265
|
+
self, **kwargs: Unpack[UpdateAccountSettingsRequestRequestTypeDef]
|
2266
|
+
) -> UpdateAccountSettingsResponseTypeDef:
|
2267
|
+
"""
|
2268
|
+
Updates the Amazon QuickSight settings in your Amazon Web Services account.
|
2269
|
+
|
2270
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_account_settings.html)
|
2271
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_account_settings)
|
2272
|
+
"""
|
2273
|
+
|
2274
|
+
def update_analysis(
|
2275
|
+
self, **kwargs: Unpack[UpdateAnalysisRequestRequestTypeDef]
|
2276
|
+
) -> UpdateAnalysisResponseTypeDef:
|
2277
|
+
"""
|
2278
|
+
Updates an analysis in Amazon QuickSight.
|
2279
|
+
|
2280
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_analysis.html)
|
2281
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_analysis)
|
2282
|
+
"""
|
2283
|
+
|
2284
|
+
def update_analysis_permissions(
|
2285
|
+
self, **kwargs: Unpack[UpdateAnalysisPermissionsRequestRequestTypeDef]
|
2286
|
+
) -> UpdateAnalysisPermissionsResponseTypeDef:
|
2287
|
+
"""
|
2288
|
+
Updates the read and write permissions for an analysis.
|
2289
|
+
|
2290
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_analysis_permissions.html)
|
2291
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_analysis_permissions)
|
2292
|
+
"""
|
2293
|
+
|
2294
|
+
def update_application_with_token_exchange_grant(
|
2295
|
+
self, **kwargs: Unpack[UpdateApplicationWithTokenExchangeGrantRequestRequestTypeDef]
|
2296
|
+
) -> UpdateApplicationWithTokenExchangeGrantResponseTypeDef:
|
2297
|
+
"""
|
2298
|
+
Updates an Amazon QuickSight application with a token exchange grant.
|
2299
|
+
|
2300
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_application_with_token_exchange_grant.html)
|
2301
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_application_with_token_exchange_grant)
|
2302
|
+
"""
|
2303
|
+
|
2304
|
+
def update_brand(
|
2305
|
+
self, **kwargs: Unpack[UpdateBrandRequestRequestTypeDef]
|
2306
|
+
) -> UpdateBrandResponseTypeDef:
|
2307
|
+
"""
|
2308
|
+
Updates a brand.
|
2309
|
+
|
2310
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_brand.html)
|
2311
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_brand)
|
2312
|
+
"""
|
2313
|
+
|
2314
|
+
def update_brand_assignment(
|
2315
|
+
self, **kwargs: Unpack[UpdateBrandAssignmentRequestRequestTypeDef]
|
2316
|
+
) -> UpdateBrandAssignmentResponseTypeDef:
|
2317
|
+
"""
|
2318
|
+
Updates a brand assignment.
|
2319
|
+
|
2320
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_brand_assignment.html)
|
2321
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_brand_assignment)
|
2322
|
+
"""
|
2323
|
+
|
2324
|
+
def update_brand_published_version(
|
2325
|
+
self, **kwargs: Unpack[UpdateBrandPublishedVersionRequestRequestTypeDef]
|
2326
|
+
) -> UpdateBrandPublishedVersionResponseTypeDef:
|
2327
|
+
"""
|
2328
|
+
Updates the published version of a brand.
|
2329
|
+
|
2330
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_brand_published_version.html)
|
2331
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_brand_published_version)
|
2332
|
+
"""
|
2333
|
+
|
2334
|
+
def update_custom_permissions(
|
2335
|
+
self, **kwargs: Unpack[UpdateCustomPermissionsRequestRequestTypeDef]
|
2336
|
+
) -> UpdateCustomPermissionsResponseTypeDef:
|
2337
|
+
"""
|
2338
|
+
Updates a custom permissions profile.
|
2339
|
+
|
2340
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_custom_permissions.html)
|
2341
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_custom_permissions)
|
2342
|
+
"""
|
2343
|
+
|
2344
|
+
def update_dashboard(
|
2345
|
+
self, **kwargs: Unpack[UpdateDashboardRequestRequestTypeDef]
|
2346
|
+
) -> UpdateDashboardResponseTypeDef:
|
2347
|
+
"""
|
2348
|
+
Updates a dashboard in an Amazon Web Services account.
|
2349
|
+
|
2350
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_dashboard.html)
|
2351
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_dashboard)
|
2352
|
+
"""
|
2353
|
+
|
2354
|
+
def update_dashboard_links(
|
2355
|
+
self, **kwargs: Unpack[UpdateDashboardLinksRequestRequestTypeDef]
|
2356
|
+
) -> UpdateDashboardLinksResponseTypeDef:
|
2357
|
+
"""
|
2358
|
+
Updates the linked analyses on a dashboard.
|
2359
|
+
|
2360
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_dashboard_links.html)
|
2361
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_dashboard_links)
|
2362
|
+
"""
|
2363
|
+
|
2364
|
+
def update_dashboard_permissions(
|
2365
|
+
self, **kwargs: Unpack[UpdateDashboardPermissionsRequestRequestTypeDef]
|
2366
|
+
) -> UpdateDashboardPermissionsResponseTypeDef:
|
2367
|
+
"""
|
2368
|
+
Updates read and write permissions on a dashboard.
|
2369
|
+
|
2370
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_dashboard_permissions.html)
|
2371
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_dashboard_permissions)
|
2372
|
+
"""
|
2373
|
+
|
2374
|
+
def update_dashboard_published_version(
|
2375
|
+
self, **kwargs: Unpack[UpdateDashboardPublishedVersionRequestRequestTypeDef]
|
2376
|
+
) -> UpdateDashboardPublishedVersionResponseTypeDef:
|
2377
|
+
"""
|
2378
|
+
Updates the published version of a dashboard.
|
2379
|
+
|
2380
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_dashboard_published_version.html)
|
2381
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_dashboard_published_version)
|
2382
|
+
"""
|
2383
|
+
|
2384
|
+
def update_dashboards_qa_configuration(
|
2385
|
+
self, **kwargs: Unpack[UpdateDashboardsQAConfigurationRequestRequestTypeDef]
|
2386
|
+
) -> UpdateDashboardsQAConfigurationResponseTypeDef:
|
2387
|
+
"""
|
2388
|
+
Updates a Dashboard QA configuration.
|
2389
|
+
|
2390
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_dashboards_qa_configuration.html)
|
2391
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_dashboards_qa_configuration)
|
2392
|
+
"""
|
2393
|
+
|
2394
|
+
def update_data_set(
|
2395
|
+
self, **kwargs: Unpack[UpdateDataSetRequestRequestTypeDef]
|
2396
|
+
) -> UpdateDataSetResponseTypeDef:
|
2397
|
+
"""
|
2398
|
+
Updates a dataset.
|
2399
|
+
|
2400
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_data_set.html)
|
2401
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_data_set)
|
2402
|
+
"""
|
2403
|
+
|
2404
|
+
def update_data_set_permissions(
|
2405
|
+
self, **kwargs: Unpack[UpdateDataSetPermissionsRequestRequestTypeDef]
|
2406
|
+
) -> UpdateDataSetPermissionsResponseTypeDef:
|
2407
|
+
"""
|
2408
|
+
Updates the permissions on a dataset.
|
2409
|
+
|
2410
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_data_set_permissions.html)
|
2411
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_data_set_permissions)
|
2412
|
+
"""
|
2413
|
+
|
2414
|
+
def update_data_source(
|
2415
|
+
self, **kwargs: Unpack[UpdateDataSourceRequestRequestTypeDef]
|
2416
|
+
) -> UpdateDataSourceResponseTypeDef:
|
2417
|
+
"""
|
2418
|
+
Updates a data source.
|
2419
|
+
|
2420
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_data_source.html)
|
2421
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_data_source)
|
2422
|
+
"""
|
2423
|
+
|
2424
|
+
def update_data_source_permissions(
|
2425
|
+
self, **kwargs: Unpack[UpdateDataSourcePermissionsRequestRequestTypeDef]
|
2426
|
+
) -> UpdateDataSourcePermissionsResponseTypeDef:
|
2427
|
+
"""
|
2428
|
+
Updates the permissions to a data source.
|
2429
|
+
|
2430
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_data_source_permissions.html)
|
2431
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_data_source_permissions)
|
2432
|
+
"""
|
2433
|
+
|
2434
|
+
def update_default_q_business_application(
|
2435
|
+
self, **kwargs: Unpack[UpdateDefaultQBusinessApplicationRequestRequestTypeDef]
|
2436
|
+
) -> UpdateDefaultQBusinessApplicationResponseTypeDef:
|
2437
|
+
"""
|
2438
|
+
Updates a Amazon Q Business application that is linked to a Amazon QuickSight
|
2439
|
+
account.
|
2440
|
+
|
2441
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_default_q_business_application.html)
|
2442
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_default_q_business_application)
|
2443
|
+
"""
|
2444
|
+
|
2445
|
+
def update_folder(
|
2446
|
+
self, **kwargs: Unpack[UpdateFolderRequestRequestTypeDef]
|
2447
|
+
) -> UpdateFolderResponseTypeDef:
|
2448
|
+
"""
|
2449
|
+
Updates the name of a folder.
|
2450
|
+
|
2451
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_folder.html)
|
2452
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_folder)
|
2453
|
+
"""
|
2454
|
+
|
2455
|
+
def update_folder_permissions(
|
2456
|
+
self, **kwargs: Unpack[UpdateFolderPermissionsRequestRequestTypeDef]
|
2457
|
+
) -> UpdateFolderPermissionsResponseTypeDef:
|
2458
|
+
"""
|
2459
|
+
Updates permissions of a folder.
|
2460
|
+
|
2461
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_folder_permissions.html)
|
2462
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_folder_permissions)
|
2463
|
+
"""
|
2464
|
+
|
2465
|
+
def update_group(
|
2466
|
+
self, **kwargs: Unpack[UpdateGroupRequestRequestTypeDef]
|
2467
|
+
) -> UpdateGroupResponseTypeDef:
|
2468
|
+
"""
|
2469
|
+
Changes a group description.
|
2470
|
+
|
2471
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_group.html)
|
2472
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_group)
|
2473
|
+
"""
|
2474
|
+
|
2475
|
+
def update_iam_policy_assignment(
|
2476
|
+
self, **kwargs: Unpack[UpdateIAMPolicyAssignmentRequestRequestTypeDef]
|
2477
|
+
) -> UpdateIAMPolicyAssignmentResponseTypeDef:
|
2478
|
+
"""
|
2479
|
+
Updates an existing IAM policy assignment.
|
2480
|
+
|
2481
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_iam_policy_assignment.html)
|
2482
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_iam_policy_assignment)
|
2483
|
+
"""
|
2484
|
+
|
2485
|
+
def update_identity_propagation_config(
|
2486
|
+
self, **kwargs: Unpack[UpdateIdentityPropagationConfigRequestRequestTypeDef]
|
2487
|
+
) -> UpdateIdentityPropagationConfigResponseTypeDef:
|
2488
|
+
"""
|
2489
|
+
Adds or updates services and authorized targets to configure what the Amazon
|
2490
|
+
QuickSight IAM Identity Center application can access.
|
2491
|
+
|
2492
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_identity_propagation_config.html)
|
2493
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_identity_propagation_config)
|
2494
|
+
"""
|
2495
|
+
|
2496
|
+
def update_ip_restriction(
|
2497
|
+
self, **kwargs: Unpack[UpdateIpRestrictionRequestRequestTypeDef]
|
2498
|
+
) -> UpdateIpRestrictionResponseTypeDef:
|
2499
|
+
"""
|
2500
|
+
Updates the content and status of IP rules.
|
2501
|
+
|
2502
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_ip_restriction.html)
|
2503
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_ip_restriction)
|
2504
|
+
"""
|
2505
|
+
|
2506
|
+
def update_key_registration(
|
2507
|
+
self, **kwargs: Unpack[UpdateKeyRegistrationRequestRequestTypeDef]
|
2508
|
+
) -> UpdateKeyRegistrationResponseTypeDef:
|
2509
|
+
"""
|
2510
|
+
Updates a customer managed key in a Amazon QuickSight account.
|
2511
|
+
|
2512
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_key_registration.html)
|
2513
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_key_registration)
|
2514
|
+
"""
|
2515
|
+
|
2516
|
+
def update_public_sharing_settings(
|
2517
|
+
self, **kwargs: Unpack[UpdatePublicSharingSettingsRequestRequestTypeDef]
|
2518
|
+
) -> UpdatePublicSharingSettingsResponseTypeDef:
|
2519
|
+
"""
|
2520
|
+
Use the <code>UpdatePublicSharingSettings</code> operation to turn on or turn
|
2521
|
+
off the public sharing settings of an Amazon QuickSight dashboard.
|
2522
|
+
|
2523
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_public_sharing_settings.html)
|
2524
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_public_sharing_settings)
|
2525
|
+
"""
|
2526
|
+
|
2527
|
+
def update_q_personalization_configuration(
|
2528
|
+
self, **kwargs: Unpack[UpdateQPersonalizationConfigurationRequestRequestTypeDef]
|
2529
|
+
) -> UpdateQPersonalizationConfigurationResponseTypeDef:
|
2530
|
+
"""
|
2531
|
+
Updates a personalization configuration.
|
2532
|
+
|
2533
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_q_personalization_configuration.html)
|
2534
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_q_personalization_configuration)
|
2535
|
+
"""
|
2536
|
+
|
2537
|
+
def update_quick_sight_q_search_configuration(
|
2538
|
+
self, **kwargs: Unpack[UpdateQuickSightQSearchConfigurationRequestRequestTypeDef]
|
2539
|
+
) -> UpdateQuickSightQSearchConfigurationResponseTypeDef:
|
2540
|
+
"""
|
2541
|
+
Updates the state of a Amazon QuickSight Q Search configuration.
|
2542
|
+
|
2543
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_quick_sight_q_search_configuration.html)
|
2544
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_quick_sight_q_search_configuration)
|
2545
|
+
"""
|
2546
|
+
|
2547
|
+
def update_refresh_schedule(
|
2548
|
+
self, **kwargs: Unpack[UpdateRefreshScheduleRequestRequestTypeDef]
|
2549
|
+
) -> UpdateRefreshScheduleResponseTypeDef:
|
2550
|
+
"""
|
2551
|
+
Updates a refresh schedule for a dataset.
|
2552
|
+
|
2553
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_refresh_schedule.html)
|
2554
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_refresh_schedule)
|
2555
|
+
"""
|
2556
|
+
|
2557
|
+
def update_role_custom_permission(
|
2558
|
+
self, **kwargs: Unpack[UpdateRoleCustomPermissionRequestRequestTypeDef]
|
2559
|
+
) -> UpdateRoleCustomPermissionResponseTypeDef:
|
2560
|
+
"""
|
2561
|
+
Updates the custom permissions that are associated with a role.
|
2562
|
+
|
2563
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_role_custom_permission.html)
|
2564
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_role_custom_permission)
|
2565
|
+
"""
|
2566
|
+
|
2567
|
+
def update_spice_capacity_configuration(
|
2568
|
+
self, **kwargs: Unpack[UpdateSPICECapacityConfigurationRequestRequestTypeDef]
|
2569
|
+
) -> UpdateSPICECapacityConfigurationResponseTypeDef:
|
2570
|
+
"""
|
2571
|
+
Updates the SPICE capacity configuration for a Amazon QuickSight account.
|
2572
|
+
|
2573
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_spice_capacity_configuration.html)
|
2574
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_spice_capacity_configuration)
|
2575
|
+
"""
|
2576
|
+
|
2577
|
+
def update_template(
|
2578
|
+
self, **kwargs: Unpack[UpdateTemplateRequestRequestTypeDef]
|
2579
|
+
) -> UpdateTemplateResponseTypeDef:
|
2580
|
+
"""
|
2581
|
+
Updates a template from an existing Amazon QuickSight analysis or another
|
2582
|
+
template.
|
2583
|
+
|
2584
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_template.html)
|
2585
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_template)
|
2586
|
+
"""
|
2587
|
+
|
2588
|
+
def update_template_alias(
|
2589
|
+
self, **kwargs: Unpack[UpdateTemplateAliasRequestRequestTypeDef]
|
2590
|
+
) -> UpdateTemplateAliasResponseTypeDef:
|
2591
|
+
"""
|
2592
|
+
Updates the template alias of a template.
|
2593
|
+
|
2594
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_template_alias.html)
|
2595
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_template_alias)
|
2596
|
+
"""
|
2597
|
+
|
2598
|
+
def update_template_permissions(
|
2599
|
+
self, **kwargs: Unpack[UpdateTemplatePermissionsRequestRequestTypeDef]
|
2600
|
+
) -> UpdateTemplatePermissionsResponseTypeDef:
|
2601
|
+
"""
|
2602
|
+
Updates the resource permissions for a template.
|
2603
|
+
|
2604
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_template_permissions.html)
|
2605
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_template_permissions)
|
2606
|
+
"""
|
2607
|
+
|
2608
|
+
def update_theme(
|
2609
|
+
self, **kwargs: Unpack[UpdateThemeRequestRequestTypeDef]
|
2610
|
+
) -> UpdateThemeResponseTypeDef:
|
2611
|
+
"""
|
2612
|
+
Updates a theme.
|
2613
|
+
|
2614
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_theme.html)
|
2615
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_theme)
|
2616
|
+
"""
|
2617
|
+
|
2618
|
+
def update_theme_alias(
|
2619
|
+
self, **kwargs: Unpack[UpdateThemeAliasRequestRequestTypeDef]
|
2620
|
+
) -> UpdateThemeAliasResponseTypeDef:
|
2621
|
+
"""
|
2622
|
+
Updates an alias of a theme.
|
2623
|
+
|
2624
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_theme_alias.html)
|
2625
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_theme_alias)
|
2626
|
+
"""
|
2627
|
+
|
2628
|
+
def update_theme_permissions(
|
2629
|
+
self, **kwargs: Unpack[UpdateThemePermissionsRequestRequestTypeDef]
|
2630
|
+
) -> UpdateThemePermissionsResponseTypeDef:
|
2631
|
+
"""
|
2632
|
+
Updates the resource permissions for a theme.
|
2633
|
+
|
2634
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_theme_permissions.html)
|
2635
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_theme_permissions)
|
2636
|
+
"""
|
2637
|
+
|
2638
|
+
def update_topic(
|
2639
|
+
self, **kwargs: Unpack[UpdateTopicRequestRequestTypeDef]
|
2640
|
+
) -> UpdateTopicResponseTypeDef:
|
2641
|
+
"""
|
2642
|
+
Updates a topic.
|
2643
|
+
|
2644
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_topic.html)
|
2645
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_topic)
|
2646
|
+
"""
|
2647
|
+
|
2648
|
+
def update_topic_permissions(
|
2649
|
+
self, **kwargs: Unpack[UpdateTopicPermissionsRequestRequestTypeDef]
|
2650
|
+
) -> UpdateTopicPermissionsResponseTypeDef:
|
2651
|
+
"""
|
2652
|
+
Updates the permissions of a topic.
|
2653
|
+
|
2654
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_topic_permissions.html)
|
2655
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_topic_permissions)
|
2656
|
+
"""
|
2657
|
+
|
2658
|
+
def update_topic_refresh_schedule(
|
2659
|
+
self, **kwargs: Unpack[UpdateTopicRefreshScheduleRequestRequestTypeDef]
|
2660
|
+
) -> UpdateTopicRefreshScheduleResponseTypeDef:
|
2661
|
+
"""
|
2662
|
+
Updates a topic refresh schedule.
|
2663
|
+
|
2664
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_topic_refresh_schedule.html)
|
2665
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_topic_refresh_schedule)
|
2666
|
+
"""
|
2667
|
+
|
2668
|
+
def update_user(
|
2669
|
+
self, **kwargs: Unpack[UpdateUserRequestRequestTypeDef]
|
2670
|
+
) -> UpdateUserResponseTypeDef:
|
2671
|
+
"""
|
2672
|
+
Updates an Amazon QuickSight user.
|
2673
|
+
|
2674
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_user.html)
|
2675
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_user)
|
2676
|
+
"""
|
2677
|
+
|
2678
|
+
def update_user_custom_permission(
|
2679
|
+
self, **kwargs: Unpack[UpdateUserCustomPermissionRequestRequestTypeDef]
|
2680
|
+
) -> UpdateUserCustomPermissionResponseTypeDef:
|
2681
|
+
"""
|
2682
|
+
Updates a custom permissions profile for a user.
|
2683
|
+
|
2684
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_user_custom_permission.html)
|
2685
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_user_custom_permission)
|
2686
|
+
"""
|
2687
|
+
|
2688
|
+
def update_vpc_connection(
|
2689
|
+
self, **kwargs: Unpack[UpdateVPCConnectionRequestRequestTypeDef]
|
2690
|
+
) -> UpdateVPCConnectionResponseTypeDef:
|
2691
|
+
"""
|
2692
|
+
Updates a VPC connection.
|
2693
|
+
|
2694
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/update_vpc_connection.html)
|
2695
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#update_vpc_connection)
|
2696
|
+
"""
|
2697
|
+
|
2698
|
+
@overload # type: ignore[override]
|
2699
|
+
def get_paginator( # type: ignore[override]
|
2700
|
+
self, operation_name: Literal["describe_folder_permissions"]
|
2701
|
+
) -> DescribeFolderPermissionsPaginator:
|
2702
|
+
"""
|
2703
|
+
Create a paginator for an operation.
|
2704
|
+
|
2705
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2706
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2707
|
+
"""
|
2708
|
+
|
2709
|
+
@overload # type: ignore[override]
|
2710
|
+
def get_paginator( # type: ignore[override]
|
2711
|
+
self, operation_name: Literal["describe_folder_resolved_permissions"]
|
2712
|
+
) -> DescribeFolderResolvedPermissionsPaginator:
|
2713
|
+
"""
|
2714
|
+
Create a paginator for an operation.
|
2715
|
+
|
2716
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2717
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2718
|
+
"""
|
2719
|
+
|
2720
|
+
@overload # type: ignore[override]
|
2721
|
+
def get_paginator( # type: ignore[override]
|
2722
|
+
self, operation_name: Literal["list_analyses"]
|
2723
|
+
) -> ListAnalysesPaginator:
|
2724
|
+
"""
|
2725
|
+
Create a paginator for an operation.
|
2726
|
+
|
2727
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2728
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2729
|
+
"""
|
2730
|
+
|
2731
|
+
@overload # type: ignore[override]
|
2732
|
+
def get_paginator( # type: ignore[override]
|
2733
|
+
self, operation_name: Literal["list_asset_bundle_export_jobs"]
|
2734
|
+
) -> ListAssetBundleExportJobsPaginator:
|
2735
|
+
"""
|
2736
|
+
Create a paginator for an operation.
|
2737
|
+
|
2738
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2739
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2740
|
+
"""
|
2741
|
+
|
2742
|
+
@overload # type: ignore[override]
|
2743
|
+
def get_paginator( # type: ignore[override]
|
2744
|
+
self, operation_name: Literal["list_asset_bundle_import_jobs"]
|
2745
|
+
) -> ListAssetBundleImportJobsPaginator:
|
2746
|
+
"""
|
2747
|
+
Create a paginator for an operation.
|
2748
|
+
|
2749
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2750
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2751
|
+
"""
|
2752
|
+
|
2753
|
+
@overload # type: ignore[override]
|
2754
|
+
def get_paginator( # type: ignore[override]
|
2755
|
+
self, operation_name: Literal["list_brands"]
|
2756
|
+
) -> ListBrandsPaginator:
|
2757
|
+
"""
|
2758
|
+
Create a paginator for an operation.
|
2759
|
+
|
2760
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2761
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2762
|
+
"""
|
2763
|
+
|
2764
|
+
@overload # type: ignore[override]
|
2765
|
+
def get_paginator( # type: ignore[override]
|
2766
|
+
self, operation_name: Literal["list_custom_permissions"]
|
2767
|
+
) -> ListCustomPermissionsPaginator:
|
2768
|
+
"""
|
2769
|
+
Create a paginator for an operation.
|
2770
|
+
|
2771
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2772
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2773
|
+
"""
|
2774
|
+
|
2775
|
+
@overload # type: ignore[override]
|
2776
|
+
def get_paginator( # type: ignore[override]
|
2777
|
+
self, operation_name: Literal["list_dashboard_versions"]
|
2778
|
+
) -> ListDashboardVersionsPaginator:
|
2779
|
+
"""
|
2780
|
+
Create a paginator for an operation.
|
2781
|
+
|
2782
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2783
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2784
|
+
"""
|
2785
|
+
|
2786
|
+
@overload # type: ignore[override]
|
2787
|
+
def get_paginator( # type: ignore[override]
|
2788
|
+
self, operation_name: Literal["list_dashboards"]
|
2789
|
+
) -> ListDashboardsPaginator:
|
2790
|
+
"""
|
2791
|
+
Create a paginator for an operation.
|
2792
|
+
|
2793
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2794
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2795
|
+
"""
|
2796
|
+
|
2797
|
+
@overload # type: ignore[override]
|
2798
|
+
def get_paginator( # type: ignore[override]
|
2799
|
+
self, operation_name: Literal["list_data_sets"]
|
2800
|
+
) -> ListDataSetsPaginator:
|
2801
|
+
"""
|
2802
|
+
Create a paginator for an operation.
|
2803
|
+
|
2804
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2805
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2806
|
+
"""
|
2807
|
+
|
2808
|
+
@overload # type: ignore[override]
|
2809
|
+
def get_paginator( # type: ignore[override]
|
2810
|
+
self, operation_name: Literal["list_data_sources"]
|
2811
|
+
) -> ListDataSourcesPaginator:
|
2812
|
+
"""
|
2813
|
+
Create a paginator for an operation.
|
2814
|
+
|
2815
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2816
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2817
|
+
"""
|
2818
|
+
|
2819
|
+
@overload # type: ignore[override]
|
2820
|
+
def get_paginator( # type: ignore[override]
|
2821
|
+
self, operation_name: Literal["list_folder_members"]
|
2822
|
+
) -> ListFolderMembersPaginator:
|
2823
|
+
"""
|
2824
|
+
Create a paginator for an operation.
|
2825
|
+
|
2826
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2827
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2828
|
+
"""
|
2829
|
+
|
2830
|
+
@overload # type: ignore[override]
|
2831
|
+
def get_paginator( # type: ignore[override]
|
2832
|
+
self, operation_name: Literal["list_folders_for_resource"]
|
2833
|
+
) -> ListFoldersForResourcePaginator:
|
2834
|
+
"""
|
2835
|
+
Create a paginator for an operation.
|
2836
|
+
|
2837
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2838
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2839
|
+
"""
|
2840
|
+
|
2841
|
+
@overload # type: ignore[override]
|
2842
|
+
def get_paginator( # type: ignore[override]
|
2843
|
+
self, operation_name: Literal["list_folders"]
|
2844
|
+
) -> ListFoldersPaginator:
|
2845
|
+
"""
|
2846
|
+
Create a paginator for an operation.
|
2847
|
+
|
2848
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2849
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2850
|
+
"""
|
2851
|
+
|
2852
|
+
@overload # type: ignore[override]
|
2853
|
+
def get_paginator( # type: ignore[override]
|
2854
|
+
self, operation_name: Literal["list_group_memberships"]
|
2855
|
+
) -> ListGroupMembershipsPaginator:
|
2856
|
+
"""
|
2857
|
+
Create a paginator for an operation.
|
2858
|
+
|
2859
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2860
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2861
|
+
"""
|
2862
|
+
|
2863
|
+
@overload # type: ignore[override]
|
2864
|
+
def get_paginator( # type: ignore[override]
|
2865
|
+
self, operation_name: Literal["list_groups"]
|
2866
|
+
) -> ListGroupsPaginator:
|
2867
|
+
"""
|
2868
|
+
Create a paginator for an operation.
|
2869
|
+
|
2870
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2871
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2872
|
+
"""
|
2873
|
+
|
2874
|
+
@overload # type: ignore[override]
|
2875
|
+
def get_paginator( # type: ignore[override]
|
2876
|
+
self, operation_name: Literal["list_iam_policy_assignments_for_user"]
|
2877
|
+
) -> ListIAMPolicyAssignmentsForUserPaginator:
|
2878
|
+
"""
|
2879
|
+
Create a paginator for an operation.
|
2880
|
+
|
2881
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2882
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2883
|
+
"""
|
2884
|
+
|
2885
|
+
@overload # type: ignore[override]
|
2886
|
+
def get_paginator( # type: ignore[override]
|
2887
|
+
self, operation_name: Literal["list_iam_policy_assignments"]
|
2888
|
+
) -> ListIAMPolicyAssignmentsPaginator:
|
2889
|
+
"""
|
2890
|
+
Create a paginator for an operation.
|
2891
|
+
|
2892
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2893
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2894
|
+
"""
|
2895
|
+
|
2896
|
+
@overload # type: ignore[override]
|
2897
|
+
def get_paginator( # type: ignore[override]
|
2898
|
+
self, operation_name: Literal["list_ingestions"]
|
2899
|
+
) -> ListIngestionsPaginator:
|
2900
|
+
"""
|
2901
|
+
Create a paginator for an operation.
|
2902
|
+
|
2903
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2904
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2905
|
+
"""
|
2906
|
+
|
2907
|
+
@overload # type: ignore[override]
|
2908
|
+
def get_paginator( # type: ignore[override]
|
2909
|
+
self, operation_name: Literal["list_namespaces"]
|
2910
|
+
) -> ListNamespacesPaginator:
|
2911
|
+
"""
|
2912
|
+
Create a paginator for an operation.
|
2913
|
+
|
2914
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2915
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2916
|
+
"""
|
2917
|
+
|
2918
|
+
@overload # type: ignore[override]
|
2919
|
+
def get_paginator( # type: ignore[override]
|
2920
|
+
self, operation_name: Literal["list_role_memberships"]
|
2921
|
+
) -> ListRoleMembershipsPaginator:
|
2922
|
+
"""
|
2923
|
+
Create a paginator for an operation.
|
2924
|
+
|
2925
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2926
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2927
|
+
"""
|
2928
|
+
|
2929
|
+
@overload # type: ignore[override]
|
2930
|
+
def get_paginator( # type: ignore[override]
|
2931
|
+
self, operation_name: Literal["list_template_aliases"]
|
2932
|
+
) -> ListTemplateAliasesPaginator:
|
2933
|
+
"""
|
2934
|
+
Create a paginator for an operation.
|
2935
|
+
|
2936
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2937
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2938
|
+
"""
|
2939
|
+
|
2940
|
+
@overload # type: ignore[override]
|
2941
|
+
def get_paginator( # type: ignore[override]
|
2942
|
+
self, operation_name: Literal["list_template_versions"]
|
2943
|
+
) -> ListTemplateVersionsPaginator:
|
2944
|
+
"""
|
2945
|
+
Create a paginator for an operation.
|
2946
|
+
|
2947
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2948
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2949
|
+
"""
|
2950
|
+
|
2951
|
+
@overload # type: ignore[override]
|
2952
|
+
def get_paginator( # type: ignore[override]
|
2953
|
+
self, operation_name: Literal["list_templates"]
|
2954
|
+
) -> ListTemplatesPaginator:
|
2955
|
+
"""
|
2956
|
+
Create a paginator for an operation.
|
2957
|
+
|
2958
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2959
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2960
|
+
"""
|
2961
|
+
|
2962
|
+
@overload # type: ignore[override]
|
2963
|
+
def get_paginator( # type: ignore[override]
|
2964
|
+
self, operation_name: Literal["list_theme_versions"]
|
2965
|
+
) -> ListThemeVersionsPaginator:
|
2966
|
+
"""
|
2967
|
+
Create a paginator for an operation.
|
2968
|
+
|
2969
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2970
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2971
|
+
"""
|
2972
|
+
|
2973
|
+
@overload # type: ignore[override]
|
2974
|
+
def get_paginator( # type: ignore[override]
|
2975
|
+
self, operation_name: Literal["list_themes"]
|
2976
|
+
) -> ListThemesPaginator:
|
2977
|
+
"""
|
2978
|
+
Create a paginator for an operation.
|
2979
|
+
|
2980
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2981
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2982
|
+
"""
|
2983
|
+
|
2984
|
+
@overload # type: ignore[override]
|
2985
|
+
def get_paginator( # type: ignore[override]
|
2986
|
+
self, operation_name: Literal["list_user_groups"]
|
2987
|
+
) -> ListUserGroupsPaginator:
|
2988
|
+
"""
|
2989
|
+
Create a paginator for an operation.
|
2990
|
+
|
2991
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
2992
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
2993
|
+
"""
|
2994
|
+
|
2995
|
+
@overload # type: ignore[override]
|
2996
|
+
def get_paginator( # type: ignore[override]
|
2997
|
+
self, operation_name: Literal["list_users"]
|
2998
|
+
) -> ListUsersPaginator:
|
2999
|
+
"""
|
3000
|
+
Create a paginator for an operation.
|
3001
|
+
|
3002
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
3003
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
3004
|
+
"""
|
3005
|
+
|
3006
|
+
@overload # type: ignore[override]
|
3007
|
+
def get_paginator( # type: ignore[override]
|
3008
|
+
self, operation_name: Literal["search_analyses"]
|
3009
|
+
) -> SearchAnalysesPaginator:
|
3010
|
+
"""
|
3011
|
+
Create a paginator for an operation.
|
3012
|
+
|
3013
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
3014
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
3015
|
+
"""
|
3016
|
+
|
3017
|
+
@overload # type: ignore[override]
|
3018
|
+
def get_paginator( # type: ignore[override]
|
3019
|
+
self, operation_name: Literal["search_dashboards"]
|
3020
|
+
) -> SearchDashboardsPaginator:
|
3021
|
+
"""
|
3022
|
+
Create a paginator for an operation.
|
3023
|
+
|
3024
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
3025
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
3026
|
+
"""
|
3027
|
+
|
3028
|
+
@overload # type: ignore[override]
|
3029
|
+
def get_paginator( # type: ignore[override]
|
3030
|
+
self, operation_name: Literal["search_data_sets"]
|
3031
|
+
) -> SearchDataSetsPaginator:
|
3032
|
+
"""
|
3033
|
+
Create a paginator for an operation.
|
3034
|
+
|
3035
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
3036
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
3037
|
+
"""
|
3038
|
+
|
3039
|
+
@overload # type: ignore[override]
|
3040
|
+
def get_paginator( # type: ignore[override]
|
3041
|
+
self, operation_name: Literal["search_data_sources"]
|
3042
|
+
) -> SearchDataSourcesPaginator:
|
3043
|
+
"""
|
3044
|
+
Create a paginator for an operation.
|
3045
|
+
|
3046
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
3047
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
3048
|
+
"""
|
3049
|
+
|
3050
|
+
@overload # type: ignore[override]
|
3051
|
+
def get_paginator( # type: ignore[override]
|
3052
|
+
self, operation_name: Literal["search_folders"]
|
3053
|
+
) -> SearchFoldersPaginator:
|
3054
|
+
"""
|
3055
|
+
Create a paginator for an operation.
|
3056
|
+
|
3057
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
3058
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
3059
|
+
"""
|
3060
|
+
|
3061
|
+
@overload # type: ignore[override]
|
3062
|
+
def get_paginator( # type: ignore[override]
|
3063
|
+
self, operation_name: Literal["search_groups"]
|
3064
|
+
) -> SearchGroupsPaginator:
|
3065
|
+
"""
|
3066
|
+
Create a paginator for an operation.
|
3067
|
+
|
3068
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
3069
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
3070
|
+
"""
|
3071
|
+
|
3072
|
+
@overload # type: ignore[override]
|
3073
|
+
def get_paginator( # type: ignore[override]
|
3074
|
+
self, operation_name: Literal["search_topics"]
|
3075
|
+
) -> SearchTopicsPaginator:
|
3076
|
+
"""
|
3077
|
+
Create a paginator for an operation.
|
3078
|
+
|
3079
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/get_paginator.html)
|
3080
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/client/#get_paginator)
|
3081
|
+
"""
|