types-boto3-quicksight 1.35.71__py3-none-any.whl → 1.35.93__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 +1 -1
- types_boto3_quicksight/__init__.pyi +1 -1
- types_boto3_quicksight/__main__.py +9 -8
- types_boto3_quicksight/client.py +218 -89
- types_boto3_quicksight/client.pyi +218 -88
- types_boto3_quicksight/literals.py +21 -3
- types_boto3_quicksight/literals.pyi +21 -3
- types_boto3_quicksight/paginator.py +392 -196
- types_boto3_quicksight/paginator.pyi +358 -195
- types_boto3_quicksight/type_defs.py +319 -134
- types_boto3_quicksight/type_defs.pyi +294 -132
- types_boto3_quicksight/version.py +2 -2
- {types_boto3_quicksight-1.35.71.dist-info → types_boto3_quicksight-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_quicksight-1.35.71.dist-info → types_boto3_quicksight-1.35.93.dist-info}/METADATA +50 -10
- types_boto3_quicksight-1.35.93.dist-info/RECORD +18 -0
- {types_boto3_quicksight-1.35.71.dist-info → types_boto3_quicksight-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_quicksight-1.35.71.dist-info/RECORD +0 -18
- {types_boto3_quicksight-1.35.71.dist-info → types_boto3_quicksight-1.35.93.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
"""
|
2
2
|
Type annotations for quicksight service type definitions.
|
3
3
|
|
4
|
-
[
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/type_defs/)
|
5
5
|
|
6
6
|
Usage::
|
7
7
|
|
@@ -11,12 +11,14 @@ Usage::
|
|
11
11
|
data: AccountCustomizationTypeDef = ...
|
12
12
|
```
|
13
13
|
|
14
|
-
Copyright
|
14
|
+
Copyright 2025 Vlad Emelianov
|
15
15
|
"""
|
16
16
|
|
17
|
+
from __future__ import annotations
|
18
|
+
|
17
19
|
import sys
|
18
20
|
from datetime import datetime
|
19
|
-
from typing import IO, Any,
|
21
|
+
from typing import IO, Any, Union
|
20
22
|
|
21
23
|
from botocore.response import StreamingBody
|
22
24
|
|
@@ -98,6 +100,7 @@ from .literals import (
|
|
98
100
|
FontWeightNameType,
|
99
101
|
ForecastComputationSeasonalityType,
|
100
102
|
FunnelChartMeasureDataLabelStyleType,
|
103
|
+
GeneratedAnswerStatusType,
|
101
104
|
GeospatialColorStateType,
|
102
105
|
GeoSpatialDataRoleType,
|
103
106
|
GeospatialLayerTypeType,
|
@@ -109,6 +112,8 @@ from .literals import (
|
|
109
112
|
IdentityTypeType,
|
110
113
|
ImageCustomActionTriggerType,
|
111
114
|
IncludeFolderMembersType,
|
115
|
+
IncludeGeneratedAnswerType,
|
116
|
+
IncludeQuickSightQIndexType,
|
112
117
|
IngestionErrorTypeType,
|
113
118
|
IngestionRequestSourceType,
|
114
119
|
IngestionRequestTypeType,
|
@@ -158,6 +163,8 @@ from .literals import (
|
|
158
163
|
PropertyRoleType,
|
159
164
|
PropertyUsageType,
|
160
165
|
PurchaseModeType,
|
166
|
+
QAResultTypeType,
|
167
|
+
QSearchStatusType,
|
161
168
|
QueryExecutionModeType,
|
162
169
|
RadarChartAxesRangeScaleType,
|
163
170
|
RadarChartShapeType,
|
@@ -177,6 +184,7 @@ from .literals import (
|
|
177
184
|
RowLevelPermissionPolicyType,
|
178
185
|
SectionPageBreakStatusType,
|
179
186
|
SelectedTooltipTypeType,
|
187
|
+
ServiceTypeType,
|
180
188
|
SharingModelType,
|
181
189
|
SheetContentTypeType,
|
182
190
|
SheetControlDateTimePickerTypeType,
|
@@ -239,6 +247,12 @@ from .literals import (
|
|
239
247
|
WordCloudWordScalingType,
|
240
248
|
)
|
241
249
|
|
250
|
+
if sys.version_info >= (3, 9):
|
251
|
+
from builtins import dict as Dict
|
252
|
+
from builtins import list as List
|
253
|
+
from collections.abc import Mapping, Sequence
|
254
|
+
else:
|
255
|
+
from typing import Dict, List, Mapping, Sequence
|
242
256
|
if sys.version_info >= (3, 12):
|
243
257
|
from typing import Literal, NotRequired, TypedDict
|
244
258
|
else:
|
@@ -677,6 +691,7 @@ __all__ = (
|
|
677
691
|
"DashboardVersionTypeDef",
|
678
692
|
"DashboardVisualIdTypeDef",
|
679
693
|
"DashboardVisualPublishOptionsTypeDef",
|
694
|
+
"DashboardVisualResultTypeDef",
|
680
695
|
"DataAggregationTypeDef",
|
681
696
|
"DataBarsOptionsTypeDef",
|
682
697
|
"DataColorPaletteOutputTypeDef",
|
@@ -813,6 +828,8 @@ __all__ = (
|
|
813
828
|
"DeleteDataSetResponseTypeDef",
|
814
829
|
"DeleteDataSourceRequestRequestTypeDef",
|
815
830
|
"DeleteDataSourceResponseTypeDef",
|
831
|
+
"DeleteDefaultQBusinessApplicationRequestRequestTypeDef",
|
832
|
+
"DeleteDefaultQBusinessApplicationResponseTypeDef",
|
816
833
|
"DeleteFolderMembershipRequestRequestTypeDef",
|
817
834
|
"DeleteFolderMembershipResponseTypeDef",
|
818
835
|
"DeleteFolderRequestRequestTypeDef",
|
@@ -899,11 +916,13 @@ __all__ = (
|
|
899
916
|
"DescribeDataSourcePermissionsResponseTypeDef",
|
900
917
|
"DescribeDataSourceRequestRequestTypeDef",
|
901
918
|
"DescribeDataSourceResponseTypeDef",
|
902
|
-
"
|
919
|
+
"DescribeDefaultQBusinessApplicationRequestRequestTypeDef",
|
920
|
+
"DescribeDefaultQBusinessApplicationResponseTypeDef",
|
921
|
+
"DescribeFolderPermissionsRequestPaginateTypeDef",
|
903
922
|
"DescribeFolderPermissionsRequestRequestTypeDef",
|
904
923
|
"DescribeFolderPermissionsResponseTypeDef",
|
905
924
|
"DescribeFolderRequestRequestTypeDef",
|
906
|
-
"
|
925
|
+
"DescribeFolderResolvedPermissionsRequestPaginateTypeDef",
|
907
926
|
"DescribeFolderResolvedPermissionsRequestRequestTypeDef",
|
908
927
|
"DescribeFolderResolvedPermissionsResponseTypeDef",
|
909
928
|
"DescribeFolderResponseTypeDef",
|
@@ -923,6 +942,8 @@ __all__ = (
|
|
923
942
|
"DescribeNamespaceResponseTypeDef",
|
924
943
|
"DescribeQPersonalizationConfigurationRequestRequestTypeDef",
|
925
944
|
"DescribeQPersonalizationConfigurationResponseTypeDef",
|
945
|
+
"DescribeQuickSightQSearchConfigurationRequestRequestTypeDef",
|
946
|
+
"DescribeQuickSightQSearchConfigurationResponseTypeDef",
|
926
947
|
"DescribeRefreshScheduleRequestRequestTypeDef",
|
927
948
|
"DescribeRefreshScheduleResponseTypeDef",
|
928
949
|
"DescribeRoleCustomPermissionRequestRequestTypeDef",
|
@@ -1126,6 +1147,9 @@ __all__ = (
|
|
1126
1147
|
"GenerateEmbedUrlForAnonymousUserResponseTypeDef",
|
1127
1148
|
"GenerateEmbedUrlForRegisteredUserRequestRequestTypeDef",
|
1128
1149
|
"GenerateEmbedUrlForRegisteredUserResponseTypeDef",
|
1150
|
+
"GenerateEmbedUrlForRegisteredUserWithIdentityRequestRequestTypeDef",
|
1151
|
+
"GenerateEmbedUrlForRegisteredUserWithIdentityResponseTypeDef",
|
1152
|
+
"GeneratedAnswerResultTypeDef",
|
1129
1153
|
"GeoSpatialColumnGroupOutputTypeDef",
|
1130
1154
|
"GeoSpatialColumnGroupTypeDef",
|
1131
1155
|
"GeoSpatialColumnGroupUnionTypeDef",
|
@@ -1393,87 +1417,87 @@ __all__ = (
|
|
1393
1417
|
"LineSeriesAxisDisplayOptionsUnionTypeDef",
|
1394
1418
|
"LinkSharingConfigurationOutputTypeDef",
|
1395
1419
|
"LinkSharingConfigurationTypeDef",
|
1396
|
-
"
|
1420
|
+
"ListAnalysesRequestPaginateTypeDef",
|
1397
1421
|
"ListAnalysesRequestRequestTypeDef",
|
1398
1422
|
"ListAnalysesResponseTypeDef",
|
1399
|
-
"
|
1423
|
+
"ListAssetBundleExportJobsRequestPaginateTypeDef",
|
1400
1424
|
"ListAssetBundleExportJobsRequestRequestTypeDef",
|
1401
1425
|
"ListAssetBundleExportJobsResponseTypeDef",
|
1402
|
-
"
|
1426
|
+
"ListAssetBundleImportJobsRequestPaginateTypeDef",
|
1403
1427
|
"ListAssetBundleImportJobsRequestRequestTypeDef",
|
1404
1428
|
"ListAssetBundleImportJobsResponseTypeDef",
|
1405
|
-
"
|
1429
|
+
"ListBrandsRequestPaginateTypeDef",
|
1406
1430
|
"ListBrandsRequestRequestTypeDef",
|
1407
1431
|
"ListBrandsResponseTypeDef",
|
1408
1432
|
"ListControlDisplayOptionsTypeDef",
|
1409
1433
|
"ListControlSearchOptionsTypeDef",
|
1410
1434
|
"ListControlSelectAllOptionsTypeDef",
|
1411
|
-
"
|
1435
|
+
"ListCustomPermissionsRequestPaginateTypeDef",
|
1412
1436
|
"ListCustomPermissionsRequestRequestTypeDef",
|
1413
1437
|
"ListCustomPermissionsResponseTypeDef",
|
1414
|
-
"
|
1438
|
+
"ListDashboardVersionsRequestPaginateTypeDef",
|
1415
1439
|
"ListDashboardVersionsRequestRequestTypeDef",
|
1416
1440
|
"ListDashboardVersionsResponseTypeDef",
|
1417
|
-
"
|
1441
|
+
"ListDashboardsRequestPaginateTypeDef",
|
1418
1442
|
"ListDashboardsRequestRequestTypeDef",
|
1419
1443
|
"ListDashboardsResponseTypeDef",
|
1420
|
-
"
|
1444
|
+
"ListDataSetsRequestPaginateTypeDef",
|
1421
1445
|
"ListDataSetsRequestRequestTypeDef",
|
1422
1446
|
"ListDataSetsResponseTypeDef",
|
1423
|
-
"
|
1447
|
+
"ListDataSourcesRequestPaginateTypeDef",
|
1424
1448
|
"ListDataSourcesRequestRequestTypeDef",
|
1425
1449
|
"ListDataSourcesResponseTypeDef",
|
1426
|
-
"
|
1450
|
+
"ListFolderMembersRequestPaginateTypeDef",
|
1427
1451
|
"ListFolderMembersRequestRequestTypeDef",
|
1428
1452
|
"ListFolderMembersResponseTypeDef",
|
1429
|
-
"
|
1453
|
+
"ListFoldersForResourceRequestPaginateTypeDef",
|
1430
1454
|
"ListFoldersForResourceRequestRequestTypeDef",
|
1431
1455
|
"ListFoldersForResourceResponseTypeDef",
|
1432
|
-
"
|
1456
|
+
"ListFoldersRequestPaginateTypeDef",
|
1433
1457
|
"ListFoldersRequestRequestTypeDef",
|
1434
1458
|
"ListFoldersResponseTypeDef",
|
1435
|
-
"
|
1459
|
+
"ListGroupMembershipsRequestPaginateTypeDef",
|
1436
1460
|
"ListGroupMembershipsRequestRequestTypeDef",
|
1437
1461
|
"ListGroupMembershipsResponseTypeDef",
|
1438
|
-
"
|
1462
|
+
"ListGroupsRequestPaginateTypeDef",
|
1439
1463
|
"ListGroupsRequestRequestTypeDef",
|
1440
1464
|
"ListGroupsResponseTypeDef",
|
1441
|
-
"
|
1465
|
+
"ListIAMPolicyAssignmentsForUserRequestPaginateTypeDef",
|
1442
1466
|
"ListIAMPolicyAssignmentsForUserRequestRequestTypeDef",
|
1443
1467
|
"ListIAMPolicyAssignmentsForUserResponseTypeDef",
|
1444
|
-
"
|
1468
|
+
"ListIAMPolicyAssignmentsRequestPaginateTypeDef",
|
1445
1469
|
"ListIAMPolicyAssignmentsRequestRequestTypeDef",
|
1446
1470
|
"ListIAMPolicyAssignmentsResponseTypeDef",
|
1447
1471
|
"ListIdentityPropagationConfigsRequestRequestTypeDef",
|
1448
1472
|
"ListIdentityPropagationConfigsResponseTypeDef",
|
1449
|
-
"
|
1473
|
+
"ListIngestionsRequestPaginateTypeDef",
|
1450
1474
|
"ListIngestionsRequestRequestTypeDef",
|
1451
1475
|
"ListIngestionsResponseTypeDef",
|
1452
|
-
"
|
1476
|
+
"ListNamespacesRequestPaginateTypeDef",
|
1453
1477
|
"ListNamespacesRequestRequestTypeDef",
|
1454
1478
|
"ListNamespacesResponseTypeDef",
|
1455
1479
|
"ListRefreshSchedulesRequestRequestTypeDef",
|
1456
1480
|
"ListRefreshSchedulesResponseTypeDef",
|
1457
|
-
"
|
1481
|
+
"ListRoleMembershipsRequestPaginateTypeDef",
|
1458
1482
|
"ListRoleMembershipsRequestRequestTypeDef",
|
1459
1483
|
"ListRoleMembershipsResponseTypeDef",
|
1460
1484
|
"ListTagsForResourceRequestRequestTypeDef",
|
1461
1485
|
"ListTagsForResourceResponseTypeDef",
|
1462
|
-
"
|
1486
|
+
"ListTemplateAliasesRequestPaginateTypeDef",
|
1463
1487
|
"ListTemplateAliasesRequestRequestTypeDef",
|
1464
1488
|
"ListTemplateAliasesResponseTypeDef",
|
1465
|
-
"
|
1489
|
+
"ListTemplateVersionsRequestPaginateTypeDef",
|
1466
1490
|
"ListTemplateVersionsRequestRequestTypeDef",
|
1467
1491
|
"ListTemplateVersionsResponseTypeDef",
|
1468
|
-
"
|
1492
|
+
"ListTemplatesRequestPaginateTypeDef",
|
1469
1493
|
"ListTemplatesRequestRequestTypeDef",
|
1470
1494
|
"ListTemplatesResponseTypeDef",
|
1471
1495
|
"ListThemeAliasesRequestRequestTypeDef",
|
1472
1496
|
"ListThemeAliasesResponseTypeDef",
|
1473
|
-
"
|
1497
|
+
"ListThemeVersionsRequestPaginateTypeDef",
|
1474
1498
|
"ListThemeVersionsRequestRequestTypeDef",
|
1475
1499
|
"ListThemeVersionsResponseTypeDef",
|
1476
|
-
"
|
1500
|
+
"ListThemesRequestPaginateTypeDef",
|
1477
1501
|
"ListThemesRequestRequestTypeDef",
|
1478
1502
|
"ListThemesResponseTypeDef",
|
1479
1503
|
"ListTopicRefreshSchedulesRequestRequestTypeDef",
|
@@ -1482,10 +1506,10 @@ __all__ = (
|
|
1482
1506
|
"ListTopicReviewedAnswersResponseTypeDef",
|
1483
1507
|
"ListTopicsRequestRequestTypeDef",
|
1484
1508
|
"ListTopicsResponseTypeDef",
|
1485
|
-
"
|
1509
|
+
"ListUserGroupsRequestPaginateTypeDef",
|
1486
1510
|
"ListUserGroupsRequestRequestTypeDef",
|
1487
1511
|
"ListUserGroupsResponseTypeDef",
|
1488
|
-
"
|
1512
|
+
"ListUsersRequestPaginateTypeDef",
|
1489
1513
|
"ListUsersRequestRequestTypeDef",
|
1490
1514
|
"ListUsersResponseTypeDef",
|
1491
1515
|
"ListVPCConnectionsRequestRequestTypeDef",
|
@@ -1588,6 +1612,8 @@ __all__ = (
|
|
1588
1612
|
"PercentVisibleRangeTypeDef",
|
1589
1613
|
"PercentageDisplayFormatConfigurationTypeDef",
|
1590
1614
|
"PercentileAggregationTypeDef",
|
1615
|
+
"PerformanceConfigurationOutputTypeDef",
|
1616
|
+
"PerformanceConfigurationTypeDef",
|
1591
1617
|
"PeriodOverPeriodComputationTypeDef",
|
1592
1618
|
"PeriodToDateComputationTypeDef",
|
1593
1619
|
"PhysicalTableOutputTypeDef",
|
@@ -1688,6 +1714,8 @@ __all__ = (
|
|
1688
1714
|
"PredefinedHierarchyOutputTypeDef",
|
1689
1715
|
"PredefinedHierarchyTypeDef",
|
1690
1716
|
"PredefinedHierarchyUnionTypeDef",
|
1717
|
+
"PredictQAResultsRequestRequestTypeDef",
|
1718
|
+
"PredictQAResultsResponseTypeDef",
|
1691
1719
|
"PrestoParametersTypeDef",
|
1692
1720
|
"ProgressBarOptionsTypeDef",
|
1693
1721
|
"ProjectOperationOutputTypeDef",
|
@@ -1695,6 +1723,7 @@ __all__ = (
|
|
1695
1723
|
"ProjectOperationUnionTypeDef",
|
1696
1724
|
"PutDataSetRefreshPropertiesRequestRequestTypeDef",
|
1697
1725
|
"PutDataSetRefreshPropertiesResponseTypeDef",
|
1726
|
+
"QAResultTypeDef",
|
1698
1727
|
"QueryExecutionOptionsTypeDef",
|
1699
1728
|
"QueueInfoTypeDef",
|
1700
1729
|
"RadarChartAggregatedFieldWellsOutputTypeDef",
|
@@ -1810,26 +1839,26 @@ __all__ = (
|
|
1810
1839
|
"ScatterPlotVisualUnionTypeDef",
|
1811
1840
|
"ScheduleRefreshOnEntityTypeDef",
|
1812
1841
|
"ScrollBarOptionsTypeDef",
|
1842
|
+
"SearchAnalysesRequestPaginateTypeDef",
|
1813
1843
|
"SearchAnalysesRequestRequestTypeDef",
|
1814
|
-
"SearchAnalysesRequestSearchAnalysesPaginateTypeDef",
|
1815
1844
|
"SearchAnalysesResponseTypeDef",
|
1845
|
+
"SearchDashboardsRequestPaginateTypeDef",
|
1816
1846
|
"SearchDashboardsRequestRequestTypeDef",
|
1817
|
-
"SearchDashboardsRequestSearchDashboardsPaginateTypeDef",
|
1818
1847
|
"SearchDashboardsResponseTypeDef",
|
1848
|
+
"SearchDataSetsRequestPaginateTypeDef",
|
1819
1849
|
"SearchDataSetsRequestRequestTypeDef",
|
1820
|
-
"SearchDataSetsRequestSearchDataSetsPaginateTypeDef",
|
1821
1850
|
"SearchDataSetsResponseTypeDef",
|
1851
|
+
"SearchDataSourcesRequestPaginateTypeDef",
|
1822
1852
|
"SearchDataSourcesRequestRequestTypeDef",
|
1823
|
-
"SearchDataSourcesRequestSearchDataSourcesPaginateTypeDef",
|
1824
1853
|
"SearchDataSourcesResponseTypeDef",
|
1854
|
+
"SearchFoldersRequestPaginateTypeDef",
|
1825
1855
|
"SearchFoldersRequestRequestTypeDef",
|
1826
|
-
"SearchFoldersRequestSearchFoldersPaginateTypeDef",
|
1827
1856
|
"SearchFoldersResponseTypeDef",
|
1857
|
+
"SearchGroupsRequestPaginateTypeDef",
|
1828
1858
|
"SearchGroupsRequestRequestTypeDef",
|
1829
|
-
"SearchGroupsRequestSearchGroupsPaginateTypeDef",
|
1830
1859
|
"SearchGroupsResponseTypeDef",
|
1860
|
+
"SearchTopicsRequestPaginateTypeDef",
|
1831
1861
|
"SearchTopicsRequestRequestTypeDef",
|
1832
|
-
"SearchTopicsRequestSearchTopicsPaginateTypeDef",
|
1833
1862
|
"SearchTopicsResponseTypeDef",
|
1834
1863
|
"SecondaryValueOptionsTypeDef",
|
1835
1864
|
"SectionAfterPageBreakTypeDef",
|
@@ -2165,6 +2194,9 @@ __all__ = (
|
|
2165
2194
|
"TypographyUnionTypeDef",
|
2166
2195
|
"UIColorPaletteTypeDef",
|
2167
2196
|
"UnaggregatedFieldTypeDef",
|
2197
|
+
"UniqueKeyOutputTypeDef",
|
2198
|
+
"UniqueKeyTypeDef",
|
2199
|
+
"UniqueKeyUnionTypeDef",
|
2168
2200
|
"UniqueValuesComputationTypeDef",
|
2169
2201
|
"UntagColumnOperationOutputTypeDef",
|
2170
2202
|
"UntagColumnOperationTypeDef",
|
@@ -2179,6 +2211,8 @@ __all__ = (
|
|
2179
2211
|
"UpdateAnalysisPermissionsResponseTypeDef",
|
2180
2212
|
"UpdateAnalysisRequestRequestTypeDef",
|
2181
2213
|
"UpdateAnalysisResponseTypeDef",
|
2214
|
+
"UpdateApplicationWithTokenExchangeGrantRequestRequestTypeDef",
|
2215
|
+
"UpdateApplicationWithTokenExchangeGrantResponseTypeDef",
|
2182
2216
|
"UpdateBrandAssignmentRequestRequestTypeDef",
|
2183
2217
|
"UpdateBrandAssignmentResponseTypeDef",
|
2184
2218
|
"UpdateBrandPublishedVersionRequestRequestTypeDef",
|
@@ -2205,6 +2239,8 @@ __all__ = (
|
|
2205
2239
|
"UpdateDataSourcePermissionsResponseTypeDef",
|
2206
2240
|
"UpdateDataSourceRequestRequestTypeDef",
|
2207
2241
|
"UpdateDataSourceResponseTypeDef",
|
2242
|
+
"UpdateDefaultQBusinessApplicationRequestRequestTypeDef",
|
2243
|
+
"UpdateDefaultQBusinessApplicationResponseTypeDef",
|
2208
2244
|
"UpdateFolderPermissionsRequestRequestTypeDef",
|
2209
2245
|
"UpdateFolderPermissionsResponseTypeDef",
|
2210
2246
|
"UpdateFolderRequestRequestTypeDef",
|
@@ -2223,6 +2259,8 @@ __all__ = (
|
|
2223
2259
|
"UpdatePublicSharingSettingsResponseTypeDef",
|
2224
2260
|
"UpdateQPersonalizationConfigurationRequestRequestTypeDef",
|
2225
2261
|
"UpdateQPersonalizationConfigurationResponseTypeDef",
|
2262
|
+
"UpdateQuickSightQSearchConfigurationRequestRequestTypeDef",
|
2263
|
+
"UpdateQuickSightQSearchConfigurationResponseTypeDef",
|
2226
2264
|
"UpdateRefreshScheduleRequestRequestTypeDef",
|
2227
2265
|
"UpdateRefreshScheduleResponseTypeDef",
|
2228
2266
|
"UpdateRoleCustomPermissionRequestRequestTypeDef",
|
@@ -2730,7 +2768,7 @@ class AuroraPostgreSqlParametersTypeDef(TypedDict):
|
|
2730
2768
|
|
2731
2769
|
|
2732
2770
|
class AuthorizedTargetsByServiceTypeDef(TypedDict):
|
2733
|
-
Service: NotRequired[
|
2771
|
+
Service: NotRequired[ServiceTypeType]
|
2734
2772
|
AuthorizedTargets: NotRequired[List[str]]
|
2735
2773
|
|
2736
2774
|
|
@@ -3263,6 +3301,17 @@ class ExportHiddenFieldsOptionTypeDef(TypedDict):
|
|
3263
3301
|
AvailabilityStatus: NotRequired[DashboardBehaviorType]
|
3264
3302
|
|
3265
3303
|
|
3304
|
+
class DashboardVisualResultTypeDef(TypedDict):
|
3305
|
+
DashboardId: NotRequired[str]
|
3306
|
+
DashboardName: NotRequired[str]
|
3307
|
+
SheetId: NotRequired[str]
|
3308
|
+
SheetName: NotRequired[str]
|
3309
|
+
VisualId: NotRequired[str]
|
3310
|
+
VisualTitle: NotRequired[str]
|
3311
|
+
VisualSubtitle: NotRequired[str]
|
3312
|
+
DashboardUrl: NotRequired[str]
|
3313
|
+
|
3314
|
+
|
3266
3315
|
class DataAggregationTypeDef(TypedDict):
|
3267
3316
|
DatasetRowDateGranularity: NotRequired[TopicTimeGranularityType]
|
3268
3317
|
DefaultDateColumnName: NotRequired[str]
|
@@ -3550,6 +3599,11 @@ class DeleteDataSourceRequestRequestTypeDef(TypedDict):
|
|
3550
3599
|
DataSourceId: str
|
3551
3600
|
|
3552
3601
|
|
3602
|
+
class DeleteDefaultQBusinessApplicationRequestRequestTypeDef(TypedDict):
|
3603
|
+
AwsAccountId: str
|
3604
|
+
Namespace: NotRequired[str]
|
3605
|
+
|
3606
|
+
|
3553
3607
|
class DeleteFolderMembershipRequestRequestTypeDef(TypedDict):
|
3554
3608
|
AwsAccountId: str
|
3555
3609
|
FolderId: str
|
@@ -3583,7 +3637,7 @@ class DeleteIAMPolicyAssignmentRequestRequestTypeDef(TypedDict):
|
|
3583
3637
|
|
3584
3638
|
class DeleteIdentityPropagationConfigRequestRequestTypeDef(TypedDict):
|
3585
3639
|
AwsAccountId: str
|
3586
|
-
Service:
|
3640
|
+
Service: ServiceTypeType
|
3587
3641
|
|
3588
3642
|
|
3589
3643
|
class DeleteNamespaceRequestRequestTypeDef(TypedDict):
|
@@ -3797,6 +3851,11 @@ class DescribeDataSourceRequestRequestTypeDef(TypedDict):
|
|
3797
3851
|
DataSourceId: str
|
3798
3852
|
|
3799
3853
|
|
3854
|
+
class DescribeDefaultQBusinessApplicationRequestRequestTypeDef(TypedDict):
|
3855
|
+
AwsAccountId: str
|
3856
|
+
Namespace: NotRequired[str]
|
3857
|
+
|
3858
|
+
|
3800
3859
|
class PaginatorConfigTypeDef(TypedDict):
|
3801
3860
|
MaxItems: NotRequired[int]
|
3802
3861
|
PageSize: NotRequired[int]
|
@@ -3892,6 +3951,10 @@ class DescribeQPersonalizationConfigurationRequestRequestTypeDef(TypedDict):
|
|
3892
3951
|
AwsAccountId: str
|
3893
3952
|
|
3894
3953
|
|
3954
|
+
class DescribeQuickSightQSearchConfigurationRequestRequestTypeDef(TypedDict):
|
3955
|
+
AwsAccountId: str
|
3956
|
+
|
3957
|
+
|
3895
3958
|
class DescribeRefreshScheduleRequestRequestTypeDef(TypedDict):
|
3896
3959
|
AwsAccountId: str
|
3897
3960
|
DataSetId: str
|
@@ -4166,6 +4229,17 @@ class SessionTagTypeDef(TypedDict):
|
|
4166
4229
|
Value: str
|
4167
4230
|
|
4168
4231
|
|
4232
|
+
class GeneratedAnswerResultTypeDef(TypedDict):
|
4233
|
+
QuestionText: NotRequired[str]
|
4234
|
+
AnswerStatus: NotRequired[GeneratedAnswerStatusType]
|
4235
|
+
TopicId: NotRequired[str]
|
4236
|
+
TopicName: NotRequired[str]
|
4237
|
+
Restatement: NotRequired[str]
|
4238
|
+
QuestionId: NotRequired[str]
|
4239
|
+
AnswerId: NotRequired[str]
|
4240
|
+
QuestionUrl: NotRequired[str]
|
4241
|
+
|
4242
|
+
|
4169
4243
|
class GeoSpatialColumnGroupTypeDef(TypedDict):
|
4170
4244
|
Name: str
|
4171
4245
|
Columns: Sequence[str]
|
@@ -4739,6 +4813,10 @@ class PercentVisibleRangeTypeDef(TypedDict):
|
|
4739
4813
|
To: NotRequired[float]
|
4740
4814
|
|
4741
4815
|
|
4816
|
+
class UniqueKeyOutputTypeDef(TypedDict):
|
4817
|
+
ColumnNames: List[str]
|
4818
|
+
|
4819
|
+
|
4742
4820
|
class PivotTableConditionalFormattingScopeTypeDef(TypedDict):
|
4743
4821
|
Role: NotRequired[PivotTableConditionalFormattingScopeRoleType]
|
4744
4822
|
|
@@ -4778,6 +4856,14 @@ class PluginVisualPropertyTypeDef(TypedDict):
|
|
4778
4856
|
Value: NotRequired[str]
|
4779
4857
|
|
4780
4858
|
|
4859
|
+
class PredictQAResultsRequestRequestTypeDef(TypedDict):
|
4860
|
+
AwsAccountId: str
|
4861
|
+
QueryText: str
|
4862
|
+
IncludeQuickSightQIndex: NotRequired[IncludeQuickSightQIndexType]
|
4863
|
+
IncludeGeneratedAnswer: NotRequired[IncludeGeneratedAnswerType]
|
4864
|
+
MaxTopicsToConsider: NotRequired[int]
|
4865
|
+
|
4866
|
+
|
4781
4867
|
class ProjectOperationOutputTypeDef(TypedDict):
|
4782
4868
|
ProjectedColumns: List[str]
|
4783
4869
|
|
@@ -4817,9 +4903,13 @@ class ReferenceLineStaticDataConfigurationTypeDef(TypedDict):
|
|
4817
4903
|
Value: float
|
4818
4904
|
|
4819
4905
|
|
4820
|
-
|
4821
|
-
|
4822
|
-
|
4906
|
+
ReferenceLineStyleConfigurationTypeDef = TypedDict(
|
4907
|
+
"ReferenceLineStyleConfigurationTypeDef",
|
4908
|
+
{
|
4909
|
+
"Pattern": NotRequired[ReferenceLinePatternTypeType],
|
4910
|
+
"Color": NotRequired[str],
|
4911
|
+
},
|
4912
|
+
)
|
4823
4913
|
|
4824
4914
|
|
4825
4915
|
class ScheduleRefreshOnEntityTypeDef(TypedDict):
|
@@ -5136,6 +5226,10 @@ class UntagColumnOperationOutputTypeDef(TypedDict):
|
|
5136
5226
|
TagNames: List[ColumnTagNameType]
|
5137
5227
|
|
5138
5228
|
|
5229
|
+
class UniqueKeyTypeDef(TypedDict):
|
5230
|
+
ColumnNames: Sequence[str]
|
5231
|
+
|
5232
|
+
|
5139
5233
|
class UntagColumnOperationTypeDef(TypedDict):
|
5140
5234
|
ColumnName: str
|
5141
5235
|
TagNames: Sequence[ColumnTagNameType]
|
@@ -5153,6 +5247,11 @@ class UpdateAccountSettingsRequestRequestTypeDef(TypedDict):
|
|
5153
5247
|
TerminationProtectionEnabled: NotRequired[bool]
|
5154
5248
|
|
5155
5249
|
|
5250
|
+
class UpdateApplicationWithTokenExchangeGrantRequestRequestTypeDef(TypedDict):
|
5251
|
+
AwsAccountId: str
|
5252
|
+
Namespace: str
|
5253
|
+
|
5254
|
+
|
5156
5255
|
class UpdateBrandAssignmentRequestRequestTypeDef(TypedDict):
|
5157
5256
|
AwsAccountId: str
|
5158
5257
|
BrandArn: str
|
@@ -5181,6 +5280,12 @@ class UpdateDashboardsQAConfigurationRequestRequestTypeDef(TypedDict):
|
|
5181
5280
|
DashboardsQAStatus: DashboardsQAStatusType
|
5182
5281
|
|
5183
5282
|
|
5283
|
+
class UpdateDefaultQBusinessApplicationRequestRequestTypeDef(TypedDict):
|
5284
|
+
AwsAccountId: str
|
5285
|
+
ApplicationId: str
|
5286
|
+
Namespace: NotRequired[str]
|
5287
|
+
|
5288
|
+
|
5184
5289
|
class UpdateFolderRequestRequestTypeDef(TypedDict):
|
5185
5290
|
AwsAccountId: str
|
5186
5291
|
FolderId: str
|
@@ -5205,7 +5310,7 @@ class UpdateIAMPolicyAssignmentRequestRequestTypeDef(TypedDict):
|
|
5205
5310
|
|
5206
5311
|
class UpdateIdentityPropagationConfigRequestRequestTypeDef(TypedDict):
|
5207
5312
|
AwsAccountId: str
|
5208
|
-
Service:
|
5313
|
+
Service: ServiceTypeType
|
5209
5314
|
AuthorizedTargets: NotRequired[Sequence[str]]
|
5210
5315
|
|
5211
5316
|
|
@@ -5227,6 +5332,11 @@ class UpdateQPersonalizationConfigurationRequestRequestTypeDef(TypedDict):
|
|
5227
5332
|
PersonalizationMode: PersonalizationModeType
|
5228
5333
|
|
5229
5334
|
|
5335
|
+
class UpdateQuickSightQSearchConfigurationRequestRequestTypeDef(TypedDict):
|
5336
|
+
AwsAccountId: str
|
5337
|
+
QSearchStatus: QSearchStatusType
|
5338
|
+
|
5339
|
+
|
5230
5340
|
class UpdateRoleCustomPermissionRequestRequestTypeDef(TypedDict):
|
5231
5341
|
CustomPermissionsName: str
|
5232
5342
|
Role: RoleType
|
@@ -5983,6 +6093,12 @@ class DeleteDataSourceResponseTypeDef(TypedDict):
|
|
5983
6093
|
ResponseMetadata: ResponseMetadataTypeDef
|
5984
6094
|
|
5985
6095
|
|
6096
|
+
class DeleteDefaultQBusinessApplicationResponseTypeDef(TypedDict):
|
6097
|
+
RequestId: str
|
6098
|
+
Status: int
|
6099
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
6100
|
+
|
6101
|
+
|
5986
6102
|
class DeleteFolderMembershipResponseTypeDef(TypedDict):
|
5987
6103
|
Status: int
|
5988
6104
|
RequestId: str
|
@@ -6164,6 +6280,13 @@ class DescribeDashboardsQAConfigurationResponseTypeDef(TypedDict):
|
|
6164
6280
|
ResponseMetadata: ResponseMetadataTypeDef
|
6165
6281
|
|
6166
6282
|
|
6283
|
+
class DescribeDefaultQBusinessApplicationResponseTypeDef(TypedDict):
|
6284
|
+
RequestId: str
|
6285
|
+
Status: int
|
6286
|
+
ApplicationId: str
|
6287
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
6288
|
+
|
6289
|
+
|
6167
6290
|
class DescribeIpRestrictionResponseTypeDef(TypedDict):
|
6168
6291
|
AwsAccountId: str
|
6169
6292
|
IpRestrictionRuleMap: Dict[str, str]
|
@@ -6182,6 +6305,13 @@ class DescribeQPersonalizationConfigurationResponseTypeDef(TypedDict):
|
|
6182
6305
|
ResponseMetadata: ResponseMetadataTypeDef
|
6183
6306
|
|
6184
6307
|
|
6308
|
+
class DescribeQuickSightQSearchConfigurationResponseTypeDef(TypedDict):
|
6309
|
+
QSearchStatus: QSearchStatusType
|
6310
|
+
RequestId: str
|
6311
|
+
Status: int
|
6312
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
6313
|
+
|
6314
|
+
|
6185
6315
|
class DescribeRoleCustomPermissionResponseTypeDef(TypedDict):
|
6186
6316
|
CustomPermissionsName: str
|
6187
6317
|
RequestId: str
|
@@ -6204,6 +6334,13 @@ class GenerateEmbedUrlForRegisteredUserResponseTypeDef(TypedDict):
|
|
6204
6334
|
ResponseMetadata: ResponseMetadataTypeDef
|
6205
6335
|
|
6206
6336
|
|
6337
|
+
class GenerateEmbedUrlForRegisteredUserWithIdentityResponseTypeDef(TypedDict):
|
6338
|
+
EmbedUrl: str
|
6339
|
+
Status: int
|
6340
|
+
RequestId: str
|
6341
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
6342
|
+
|
6343
|
+
|
6207
6344
|
class GetDashboardEmbedUrlResponseTypeDef(TypedDict):
|
6208
6345
|
EmbedUrl: str
|
6209
6346
|
Status: int
|
@@ -6371,6 +6508,12 @@ class UpdateAnalysisResponseTypeDef(TypedDict):
|
|
6371
6508
|
ResponseMetadata: ResponseMetadataTypeDef
|
6372
6509
|
|
6373
6510
|
|
6511
|
+
class UpdateApplicationWithTokenExchangeGrantResponseTypeDef(TypedDict):
|
6512
|
+
Status: int
|
6513
|
+
RequestId: str
|
6514
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
6515
|
+
|
6516
|
+
|
6374
6517
|
class UpdateBrandAssignmentResponseTypeDef(TypedDict):
|
6375
6518
|
RequestId: str
|
6376
6519
|
BrandArn: str
|
@@ -6458,6 +6601,12 @@ class UpdateDataSourceResponseTypeDef(TypedDict):
|
|
6458
6601
|
ResponseMetadata: ResponseMetadataTypeDef
|
6459
6602
|
|
6460
6603
|
|
6604
|
+
class UpdateDefaultQBusinessApplicationResponseTypeDef(TypedDict):
|
6605
|
+
RequestId: str
|
6606
|
+
Status: int
|
6607
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
6608
|
+
|
6609
|
+
|
6461
6610
|
class UpdateFolderResponseTypeDef(TypedDict):
|
6462
6611
|
Status: int
|
6463
6612
|
Arn: str
|
@@ -6503,6 +6652,13 @@ class UpdateQPersonalizationConfigurationResponseTypeDef(TypedDict):
|
|
6503
6652
|
ResponseMetadata: ResponseMetadataTypeDef
|
6504
6653
|
|
6505
6654
|
|
6655
|
+
class UpdateQuickSightQSearchConfigurationResponseTypeDef(TypedDict):
|
6656
|
+
QSearchStatus: QSearchStatusType
|
6657
|
+
RequestId: str
|
6658
|
+
Status: int
|
6659
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
6660
|
+
|
6661
|
+
|
6506
6662
|
class UpdateRefreshScheduleResponseTypeDef(TypedDict):
|
6507
6663
|
Status: int
|
6508
6664
|
RequestId: str
|
@@ -7282,157 +7438,153 @@ class UpdateTopicPermissionsResponseTypeDef(TypedDict):
|
|
7282
7438
|
ResponseMetadata: ResponseMetadataTypeDef
|
7283
7439
|
|
7284
7440
|
|
7285
|
-
class
|
7441
|
+
class DescribeFolderPermissionsRequestPaginateTypeDef(TypedDict):
|
7286
7442
|
AwsAccountId: str
|
7287
7443
|
FolderId: str
|
7288
7444
|
Namespace: NotRequired[str]
|
7289
7445
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7290
7446
|
|
7291
7447
|
|
7292
|
-
class
|
7293
|
-
TypedDict
|
7294
|
-
):
|
7448
|
+
class DescribeFolderResolvedPermissionsRequestPaginateTypeDef(TypedDict):
|
7295
7449
|
AwsAccountId: str
|
7296
7450
|
FolderId: str
|
7297
7451
|
Namespace: NotRequired[str]
|
7298
7452
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7299
7453
|
|
7300
7454
|
|
7301
|
-
class
|
7455
|
+
class ListAnalysesRequestPaginateTypeDef(TypedDict):
|
7302
7456
|
AwsAccountId: str
|
7303
7457
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7304
7458
|
|
7305
7459
|
|
7306
|
-
class
|
7460
|
+
class ListAssetBundleExportJobsRequestPaginateTypeDef(TypedDict):
|
7307
7461
|
AwsAccountId: str
|
7308
7462
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7309
7463
|
|
7310
7464
|
|
7311
|
-
class
|
7465
|
+
class ListAssetBundleImportJobsRequestPaginateTypeDef(TypedDict):
|
7312
7466
|
AwsAccountId: str
|
7313
7467
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7314
7468
|
|
7315
7469
|
|
7316
|
-
class
|
7470
|
+
class ListBrandsRequestPaginateTypeDef(TypedDict):
|
7317
7471
|
AwsAccountId: str
|
7318
7472
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7319
7473
|
|
7320
7474
|
|
7321
|
-
class
|
7475
|
+
class ListCustomPermissionsRequestPaginateTypeDef(TypedDict):
|
7322
7476
|
AwsAccountId: str
|
7323
7477
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7324
7478
|
|
7325
7479
|
|
7326
|
-
class
|
7480
|
+
class ListDashboardVersionsRequestPaginateTypeDef(TypedDict):
|
7327
7481
|
AwsAccountId: str
|
7328
7482
|
DashboardId: str
|
7329
7483
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7330
7484
|
|
7331
7485
|
|
7332
|
-
class
|
7486
|
+
class ListDashboardsRequestPaginateTypeDef(TypedDict):
|
7333
7487
|
AwsAccountId: str
|
7334
7488
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7335
7489
|
|
7336
7490
|
|
7337
|
-
class
|
7491
|
+
class ListDataSetsRequestPaginateTypeDef(TypedDict):
|
7338
7492
|
AwsAccountId: str
|
7339
7493
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7340
7494
|
|
7341
7495
|
|
7342
|
-
class
|
7496
|
+
class ListDataSourcesRequestPaginateTypeDef(TypedDict):
|
7343
7497
|
AwsAccountId: str
|
7344
7498
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7345
7499
|
|
7346
7500
|
|
7347
|
-
class
|
7501
|
+
class ListFolderMembersRequestPaginateTypeDef(TypedDict):
|
7348
7502
|
AwsAccountId: str
|
7349
7503
|
FolderId: str
|
7350
7504
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7351
7505
|
|
7352
7506
|
|
7353
|
-
class
|
7507
|
+
class ListFoldersForResourceRequestPaginateTypeDef(TypedDict):
|
7354
7508
|
AwsAccountId: str
|
7355
7509
|
ResourceArn: str
|
7356
7510
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7357
7511
|
|
7358
7512
|
|
7359
|
-
class
|
7513
|
+
class ListFoldersRequestPaginateTypeDef(TypedDict):
|
7360
7514
|
AwsAccountId: str
|
7361
7515
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7362
7516
|
|
7363
7517
|
|
7364
|
-
class
|
7518
|
+
class ListGroupMembershipsRequestPaginateTypeDef(TypedDict):
|
7365
7519
|
GroupName: str
|
7366
7520
|
AwsAccountId: str
|
7367
7521
|
Namespace: str
|
7368
7522
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7369
7523
|
|
7370
7524
|
|
7371
|
-
class
|
7525
|
+
class ListGroupsRequestPaginateTypeDef(TypedDict):
|
7372
7526
|
AwsAccountId: str
|
7373
7527
|
Namespace: str
|
7374
7528
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7375
7529
|
|
7376
7530
|
|
7377
|
-
class
|
7378
|
-
TypedDict
|
7379
|
-
):
|
7531
|
+
class ListIAMPolicyAssignmentsForUserRequestPaginateTypeDef(TypedDict):
|
7380
7532
|
AwsAccountId: str
|
7381
7533
|
UserName: str
|
7382
7534
|
Namespace: str
|
7383
7535
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7384
7536
|
|
7385
7537
|
|
7386
|
-
class
|
7538
|
+
class ListIAMPolicyAssignmentsRequestPaginateTypeDef(TypedDict):
|
7387
7539
|
AwsAccountId: str
|
7388
7540
|
Namespace: str
|
7389
7541
|
AssignmentStatus: NotRequired[AssignmentStatusType]
|
7390
7542
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7391
7543
|
|
7392
7544
|
|
7393
|
-
class
|
7545
|
+
class ListIngestionsRequestPaginateTypeDef(TypedDict):
|
7394
7546
|
DataSetId: str
|
7395
7547
|
AwsAccountId: str
|
7396
7548
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7397
7549
|
|
7398
7550
|
|
7399
|
-
class
|
7551
|
+
class ListNamespacesRequestPaginateTypeDef(TypedDict):
|
7400
7552
|
AwsAccountId: str
|
7401
7553
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7402
7554
|
|
7403
7555
|
|
7404
|
-
class
|
7556
|
+
class ListRoleMembershipsRequestPaginateTypeDef(TypedDict):
|
7405
7557
|
Role: RoleType
|
7406
7558
|
AwsAccountId: str
|
7407
7559
|
Namespace: str
|
7408
7560
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7409
7561
|
|
7410
7562
|
|
7411
|
-
class
|
7563
|
+
class ListTemplateAliasesRequestPaginateTypeDef(TypedDict):
|
7412
7564
|
AwsAccountId: str
|
7413
7565
|
TemplateId: str
|
7414
7566
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7415
7567
|
|
7416
7568
|
|
7417
|
-
class
|
7569
|
+
class ListTemplateVersionsRequestPaginateTypeDef(TypedDict):
|
7418
7570
|
AwsAccountId: str
|
7419
7571
|
TemplateId: str
|
7420
7572
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7421
7573
|
|
7422
7574
|
|
7423
|
-
class
|
7575
|
+
class ListTemplatesRequestPaginateTypeDef(TypedDict):
|
7424
7576
|
AwsAccountId: str
|
7425
7577
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7426
7578
|
|
7427
7579
|
|
7428
|
-
class
|
7580
|
+
class ListThemeVersionsRequestPaginateTypeDef(TypedDict):
|
7429
7581
|
AwsAccountId: str
|
7430
7582
|
ThemeId: str
|
7431
7583
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7432
7584
|
|
7433
7585
|
|
7434
|
-
|
7435
|
-
"
|
7586
|
+
ListThemesRequestPaginateTypeDef = TypedDict(
|
7587
|
+
"ListThemesRequestPaginateTypeDef",
|
7436
7588
|
{
|
7437
7589
|
"AwsAccountId": str,
|
7438
7590
|
"Type": NotRequired[ThemeTypeType],
|
@@ -7441,38 +7593,38 @@ ListThemesRequestListThemesPaginateTypeDef = TypedDict(
|
|
7441
7593
|
)
|
7442
7594
|
|
7443
7595
|
|
7444
|
-
class
|
7596
|
+
class ListUserGroupsRequestPaginateTypeDef(TypedDict):
|
7445
7597
|
UserName: str
|
7446
7598
|
AwsAccountId: str
|
7447
7599
|
Namespace: str
|
7448
7600
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7449
7601
|
|
7450
7602
|
|
7451
|
-
class
|
7603
|
+
class ListUsersRequestPaginateTypeDef(TypedDict):
|
7452
7604
|
AwsAccountId: str
|
7453
7605
|
Namespace: str
|
7454
7606
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7455
7607
|
|
7456
7608
|
|
7457
|
-
class
|
7609
|
+
class SearchAnalysesRequestPaginateTypeDef(TypedDict):
|
7458
7610
|
AwsAccountId: str
|
7459
7611
|
Filters: Sequence[AnalysisSearchFilterTypeDef]
|
7460
7612
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7461
7613
|
|
7462
7614
|
|
7463
|
-
class
|
7615
|
+
class SearchDashboardsRequestPaginateTypeDef(TypedDict):
|
7464
7616
|
AwsAccountId: str
|
7465
7617
|
Filters: Sequence[DashboardSearchFilterTypeDef]
|
7466
7618
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7467
7619
|
|
7468
7620
|
|
7469
|
-
class
|
7621
|
+
class SearchDataSetsRequestPaginateTypeDef(TypedDict):
|
7470
7622
|
AwsAccountId: str
|
7471
7623
|
Filters: Sequence[DataSetSearchFilterTypeDef]
|
7472
7624
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7473
7625
|
|
7474
7626
|
|
7475
|
-
class
|
7627
|
+
class SearchDataSourcesRequestPaginateTypeDef(TypedDict):
|
7476
7628
|
AwsAccountId: str
|
7477
7629
|
Filters: Sequence[DataSourceSearchFilterTypeDef]
|
7478
7630
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
@@ -7607,17 +7759,17 @@ FilterSelectableValuesUnionTypeDef = Union[
|
|
7607
7759
|
]
|
7608
7760
|
|
7609
7761
|
|
7610
|
-
class
|
7762
|
+
class SearchFoldersRequestPaginateTypeDef(TypedDict):
|
7611
7763
|
AwsAccountId: str
|
7612
7764
|
Filters: Sequence[FolderSearchFilterTypeDef]
|
7613
|
-
|
7614
|
-
MaxResults: NotRequired[int]
|
7765
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7615
7766
|
|
7616
7767
|
|
7617
|
-
class
|
7768
|
+
class SearchFoldersRequestRequestTypeDef(TypedDict):
|
7618
7769
|
AwsAccountId: str
|
7619
7770
|
Filters: Sequence[FolderSearchFilterTypeDef]
|
7620
|
-
|
7771
|
+
NextToken: NotRequired[str]
|
7772
|
+
MaxResults: NotRequired[int]
|
7621
7773
|
|
7622
7774
|
|
7623
7775
|
class ListFoldersResponseTypeDef(TypedDict):
|
@@ -7666,6 +7818,12 @@ class SnapshotAnonymousUserTypeDef(TypedDict):
|
|
7666
7818
|
RowLevelPermissionTags: NotRequired[Sequence[SessionTagTypeDef]]
|
7667
7819
|
|
7668
7820
|
|
7821
|
+
class QAResultTypeDef(TypedDict):
|
7822
|
+
ResultType: NotRequired[QAResultTypeType]
|
7823
|
+
DashboardVisual: NotRequired[DashboardVisualResultTypeDef]
|
7824
|
+
GeneratedAnswer: NotRequired[GeneratedAnswerResultTypeDef]
|
7825
|
+
|
7826
|
+
|
7669
7827
|
GeoSpatialColumnGroupUnionTypeDef = Union[
|
7670
7828
|
GeoSpatialColumnGroupTypeDef, GeoSpatialColumnGroupOutputTypeDef
|
7671
7829
|
]
|
@@ -7718,19 +7876,19 @@ class GridLayoutCanvasSizeOptionsTypeDef(TypedDict):
|
|
7718
7876
|
ScreenCanvasSizeOptions: NotRequired[GridLayoutScreenCanvasSizeOptionsTypeDef]
|
7719
7877
|
|
7720
7878
|
|
7721
|
-
class
|
7879
|
+
class SearchGroupsRequestPaginateTypeDef(TypedDict):
|
7722
7880
|
AwsAccountId: str
|
7723
7881
|
Namespace: str
|
7724
7882
|
Filters: Sequence[GroupSearchFilterTypeDef]
|
7725
|
-
|
7726
|
-
MaxResults: NotRequired[int]
|
7883
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7727
7884
|
|
7728
7885
|
|
7729
|
-
class
|
7886
|
+
class SearchGroupsRequestRequestTypeDef(TypedDict):
|
7730
7887
|
AwsAccountId: str
|
7731
7888
|
Namespace: str
|
7732
7889
|
Filters: Sequence[GroupSearchFilterTypeDef]
|
7733
|
-
|
7890
|
+
NextToken: NotRequired[str]
|
7891
|
+
MaxResults: NotRequired[int]
|
7734
7892
|
|
7735
7893
|
|
7736
7894
|
class ListIAMPolicyAssignmentsResponseTypeDef(TypedDict):
|
@@ -7963,6 +8121,10 @@ class VisibleRangeOptionsTypeDef(TypedDict):
|
|
7963
8121
|
PercentRange: NotRequired[PercentVisibleRangeTypeDef]
|
7964
8122
|
|
7965
8123
|
|
8124
|
+
class PerformanceConfigurationOutputTypeDef(TypedDict):
|
8125
|
+
UniqueKeys: NotRequired[List[UniqueKeyOutputTypeDef]]
|
8126
|
+
|
8127
|
+
|
7966
8128
|
class PluginVisualOptionsOutputTypeDef(TypedDict):
|
7967
8129
|
VisualProperties: NotRequired[List[PluginVisualPropertyTypeDef]]
|
7968
8130
|
|
@@ -8053,17 +8215,17 @@ SameSheetTargetVisualConfigurationUnionTypeDef = Union[
|
|
8053
8215
|
]
|
8054
8216
|
|
8055
8217
|
|
8056
|
-
class
|
8218
|
+
class SearchTopicsRequestPaginateTypeDef(TypedDict):
|
8057
8219
|
AwsAccountId: str
|
8058
8220
|
Filters: Sequence[TopicSearchFilterTypeDef]
|
8059
|
-
|
8060
|
-
MaxResults: NotRequired[int]
|
8221
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
8061
8222
|
|
8062
8223
|
|
8063
|
-
class
|
8224
|
+
class SearchTopicsRequestRequestTypeDef(TypedDict):
|
8064
8225
|
AwsAccountId: str
|
8065
8226
|
Filters: Sequence[TopicSearchFilterTypeDef]
|
8066
|
-
|
8227
|
+
NextToken: NotRequired[str]
|
8228
|
+
MaxResults: NotRequired[int]
|
8067
8229
|
|
8068
8230
|
|
8069
8231
|
class SectionBasedLayoutPaperCanvasSizeOptionsTypeDef(TypedDict):
|
@@ -8189,6 +8351,7 @@ class TotalAggregationOptionTypeDef(TypedDict):
|
|
8189
8351
|
TotalAggregationFunction: TotalAggregationFunctionTypeDef
|
8190
8352
|
|
8191
8353
|
|
8354
|
+
UniqueKeyUnionTypeDef = Union[UniqueKeyTypeDef, UniqueKeyOutputTypeDef]
|
8192
8355
|
UntagColumnOperationUnionTypeDef = Union[
|
8193
8356
|
UntagColumnOperationTypeDef, UntagColumnOperationOutputTypeDef
|
8194
8357
|
]
|
@@ -8832,6 +8995,14 @@ class SnapshotUserConfigurationTypeDef(TypedDict):
|
|
8832
8995
|
AnonymousUsers: NotRequired[Sequence[SnapshotAnonymousUserTypeDef]]
|
8833
8996
|
|
8834
8997
|
|
8998
|
+
class PredictQAResultsResponseTypeDef(TypedDict):
|
8999
|
+
PrimaryResult: QAResultTypeDef
|
9000
|
+
AdditionalResults: List[QAResultTypeDef]
|
9001
|
+
RequestId: str
|
9002
|
+
Status: int
|
9003
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
9004
|
+
|
9005
|
+
|
8835
9006
|
class ColumnGroupTypeDef(TypedDict):
|
8836
9007
|
GeoSpatialColumnGroup: NotRequired[GeoSpatialColumnGroupUnionTypeDef]
|
8837
9008
|
|
@@ -9207,6 +9378,10 @@ class StringDatasetParameterTypeDef(TypedDict):
|
|
9207
9378
|
DefaultValues: NotRequired[StringDatasetParameterDefaultValuesUnionTypeDef]
|
9208
9379
|
|
9209
9380
|
|
9381
|
+
class PerformanceConfigurationTypeDef(TypedDict):
|
9382
|
+
UniqueKeys: NotRequired[Sequence[UniqueKeyUnionTypeDef]]
|
9383
|
+
|
9384
|
+
|
9210
9385
|
class FilterCrossSheetControlOutputTypeDef(TypedDict):
|
9211
9386
|
FilterControlId: str
|
9212
9387
|
SourceFilterId: str
|
@@ -9552,7 +9727,7 @@ class TopicCalculatedFieldTypeDef(TypedDict):
|
|
9552
9727
|
AllowedAggregations: NotRequired[Sequence[AuthorSpecifiedAggregationType]]
|
9553
9728
|
NotAllowedAggregations: NotRequired[Sequence[AuthorSpecifiedAggregationType]]
|
9554
9729
|
NeverAggregateInFilter: NotRequired[bool]
|
9555
|
-
CellValueSynonyms: NotRequired[Sequence[
|
9730
|
+
CellValueSynonyms: NotRequired[Sequence[CellValueSynonymUnionTypeDef]]
|
9556
9731
|
NonAdditive: NotRequired[bool]
|
9557
9732
|
|
9558
9733
|
|
@@ -9592,7 +9767,7 @@ class TopicColumnTypeDef(TypedDict):
|
|
9592
9767
|
NotAllowedAggregations: NotRequired[Sequence[AuthorSpecifiedAggregationType]]
|
9593
9768
|
DefaultFormatting: NotRequired[DefaultFormattingTypeDef]
|
9594
9769
|
NeverAggregateInFilter: NotRequired[bool]
|
9595
|
-
CellValueSynonyms: NotRequired[Sequence[
|
9770
|
+
CellValueSynonyms: NotRequired[Sequence[CellValueSynonymTypeDef]]
|
9596
9771
|
NonAdditive: NotRequired[bool]
|
9597
9772
|
|
9598
9773
|
|
@@ -10780,6 +10955,13 @@ class GenerateEmbedUrlForRegisteredUserRequestRequestTypeDef(TypedDict):
|
|
10780
10955
|
AllowedDomains: NotRequired[Sequence[str]]
|
10781
10956
|
|
10782
10957
|
|
10958
|
+
class GenerateEmbedUrlForRegisteredUserWithIdentityRequestRequestTypeDef(TypedDict):
|
10959
|
+
AwsAccountId: str
|
10960
|
+
ExperienceConfiguration: RegisteredUserEmbeddingExperienceConfigurationTypeDef
|
10961
|
+
SessionLifetimeInMinutes: NotRequired[int]
|
10962
|
+
AllowedDomains: NotRequired[Sequence[str]]
|
10963
|
+
|
10964
|
+
|
10783
10965
|
class AnonymousUserSnapshotJobResultTypeDef(TypedDict):
|
10784
10966
|
FileGroups: NotRequired[List[SnapshotJobResultFileGroupTypeDef]]
|
10785
10967
|
|
@@ -10970,6 +11152,7 @@ class DataSetTypeDef(TypedDict):
|
|
10970
11152
|
ColumnLevelPermissionRules: NotRequired[List[ColumnLevelPermissionRuleOutputTypeDef]]
|
10971
11153
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
10972
11154
|
DatasetParameters: NotRequired[List[DatasetParameterOutputTypeDef]]
|
11155
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationOutputTypeDef]
|
10973
11156
|
|
10974
11157
|
|
10975
11158
|
class ImageCustomActionOperationOutputTypeDef(TypedDict):
|
@@ -12725,6 +12908,7 @@ class UpdateDataSetRequestRequestTypeDef(TypedDict):
|
|
12725
12908
|
ColumnLevelPermissionRules: NotRequired[Sequence[ColumnLevelPermissionRuleTypeDef]]
|
12726
12909
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
12727
12910
|
DatasetParameters: NotRequired[Sequence[DatasetParameterTypeDef]]
|
12911
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationTypeDef]
|
12728
12912
|
|
12729
12913
|
|
12730
12914
|
ColumnHierarchyUnionTypeDef = Union[ColumnHierarchyTypeDef, ColumnHierarchyOutputTypeDef]
|
@@ -13152,6 +13336,7 @@ class CreateDataSetRequestRequestTypeDef(TypedDict):
|
|
13152
13336
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
13153
13337
|
DatasetParameters: NotRequired[Sequence[DatasetParameterUnionTypeDef]]
|
13154
13338
|
FolderArns: NotRequired[Sequence[str]]
|
13339
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationTypeDef]
|
13155
13340
|
|
13156
13341
|
|
13157
13342
|
class LineSeriesAxisDisplayOptionsTypeDef(TypedDict):
|
@@ -14772,42 +14957,36 @@ ImageCustomActionUnionTypeDef = Union[ImageCustomActionTypeDef, ImageCustomActio
|
|
14772
14957
|
LayerCustomActionUnionTypeDef = Union[LayerCustomActionTypeDef, LayerCustomActionOutputTypeDef]
|
14773
14958
|
|
14774
14959
|
|
14775
|
-
class
|
14960
|
+
class BarChartVisualTypeDef(TypedDict):
|
14776
14961
|
VisualId: str
|
14777
14962
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
14778
14963
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
14779
|
-
ChartConfiguration: NotRequired[
|
14964
|
+
ChartConfiguration: NotRequired[BarChartConfigurationUnionTypeDef]
|
14780
14965
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
14781
14966
|
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
14782
14967
|
VisualContentAltText: NotRequired[str]
|
14783
14968
|
|
14784
14969
|
|
14785
|
-
class
|
14970
|
+
class BoxPlotVisualTypeDef(TypedDict):
|
14786
14971
|
VisualId: str
|
14787
14972
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
14788
14973
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
14789
|
-
ChartConfiguration: NotRequired[
|
14974
|
+
ChartConfiguration: NotRequired[BoxPlotChartConfigurationUnionTypeDef]
|
14790
14975
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
14791
14976
|
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
14792
14977
|
VisualContentAltText: NotRequired[str]
|
14793
14978
|
|
14794
14979
|
|
14795
|
-
class
|
14980
|
+
class ComboChartVisualTypeDef(TypedDict):
|
14796
14981
|
VisualId: str
|
14797
|
-
DataSetIdentifier: str
|
14798
14982
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
14799
14983
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
14800
|
-
ChartConfiguration: NotRequired[
|
14984
|
+
ChartConfiguration: NotRequired[ComboChartConfigurationUnionTypeDef]
|
14801
14985
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
14986
|
+
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
14802
14987
|
VisualContentAltText: NotRequired[str]
|
14803
14988
|
|
14804
14989
|
|
14805
|
-
class EmptyVisualTypeDef(TypedDict):
|
14806
|
-
VisualId: str
|
14807
|
-
DataSetIdentifier: str
|
14808
|
-
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
14809
|
-
|
14810
|
-
|
14811
14990
|
class FunnelChartVisualTypeDef(TypedDict):
|
14812
14991
|
VisualId: str
|
14813
14992
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
@@ -14874,7 +15053,7 @@ class KPIVisualTypeDef(TypedDict):
|
|
14874
15053
|
ChartConfiguration: NotRequired[KPIConfigurationUnionTypeDef]
|
14875
15054
|
ConditionalFormatting: NotRequired[KPIConditionalFormattingUnionTypeDef]
|
14876
15055
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
14877
|
-
ColumnHierarchies: NotRequired[Sequence[
|
15056
|
+
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
14878
15057
|
VisualContentAltText: NotRequired[str]
|
14879
15058
|
|
14880
15059
|
|
@@ -14894,16 +15073,6 @@ class PieChartVisualTypeDef(TypedDict):
|
|
14894
15073
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
14895
15074
|
ChartConfiguration: NotRequired[PieChartConfigurationUnionTypeDef]
|
14896
15075
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
14897
|
-
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyUnionTypeDef]]
|
14898
|
-
VisualContentAltText: NotRequired[str]
|
14899
|
-
|
14900
|
-
|
14901
|
-
class RadarChartVisualTypeDef(TypedDict):
|
14902
|
-
VisualId: str
|
14903
|
-
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
14904
|
-
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
14905
|
-
ChartConfiguration: NotRequired[RadarChartConfigurationUnionTypeDef]
|
14906
|
-
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
14907
15076
|
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
14908
15077
|
VisualContentAltText: NotRequired[str]
|
14909
15078
|
|
@@ -14946,7 +15115,7 @@ class WaterfallVisualTypeDef(TypedDict):
|
|
14946
15115
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
14947
15116
|
ChartConfiguration: NotRequired[WaterfallChartConfigurationUnionTypeDef]
|
14948
15117
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
14949
|
-
ColumnHierarchies: NotRequired[Sequence[
|
15118
|
+
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyUnionTypeDef]]
|
14950
15119
|
VisualContentAltText: NotRequired[str]
|
14951
15120
|
|
14952
15121
|
|
@@ -14956,7 +15125,7 @@ class WordCloudVisualTypeDef(TypedDict):
|
|
14956
15125
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
14957
15126
|
ChartConfiguration: NotRequired[WordCloudChartConfigurationUnionTypeDef]
|
14958
15127
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
14959
|
-
ColumnHierarchies: NotRequired[Sequence[
|
15128
|
+
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyUnionTypeDef]]
|
14960
15129
|
VisualContentAltText: NotRequired[str]
|
14961
15130
|
|
14962
15131
|
|
@@ -15050,12 +15219,9 @@ class GeospatialLayerItemTypeDef(TypedDict):
|
|
15050
15219
|
Actions: NotRequired[Sequence[LayerCustomActionUnionTypeDef]]
|
15051
15220
|
|
15052
15221
|
|
15222
|
+
BarChartVisualUnionTypeDef = Union[BarChartVisualTypeDef, BarChartVisualOutputTypeDef]
|
15053
15223
|
BoxPlotVisualUnionTypeDef = Union[BoxPlotVisualTypeDef, BoxPlotVisualOutputTypeDef]
|
15054
15224
|
ComboChartVisualUnionTypeDef = Union[ComboChartVisualTypeDef, ComboChartVisualOutputTypeDef]
|
15055
|
-
CustomContentVisualUnionTypeDef = Union[
|
15056
|
-
CustomContentVisualTypeDef, CustomContentVisualOutputTypeDef
|
15057
|
-
]
|
15058
|
-
EmptyVisualUnionTypeDef = Union[EmptyVisualTypeDef, EmptyVisualOutputTypeDef]
|
15059
15225
|
FunnelChartVisualUnionTypeDef = Union[FunnelChartVisualTypeDef, FunnelChartVisualOutputTypeDef]
|
15060
15226
|
GaugeChartVisualUnionTypeDef = Union[GaugeChartVisualTypeDef, GaugeChartVisualOutputTypeDef]
|
15061
15227
|
GeospatialMapVisualUnionTypeDef = Union[
|
@@ -15067,7 +15233,6 @@ InsightVisualUnionTypeDef = Union[InsightVisualTypeDef, InsightVisualOutputTypeD
|
|
15067
15233
|
KPIVisualUnionTypeDef = Union[KPIVisualTypeDef, KPIVisualOutputTypeDef]
|
15068
15234
|
LineChartVisualUnionTypeDef = Union[LineChartVisualTypeDef, LineChartVisualOutputTypeDef]
|
15069
15235
|
PieChartVisualUnionTypeDef = Union[PieChartVisualTypeDef, PieChartVisualOutputTypeDef]
|
15070
|
-
RadarChartVisualUnionTypeDef = Union[RadarChartVisualTypeDef, RadarChartVisualOutputTypeDef]
|
15071
15236
|
SankeyDiagramVisualUnionTypeDef = Union[
|
15072
15237
|
SankeyDiagramVisualTypeDef, SankeyDiagramVisualOutputTypeDef
|
15073
15238
|
]
|
@@ -15075,11 +15240,27 @@ ScatterPlotVisualUnionTypeDef = Union[ScatterPlotVisualTypeDef, ScatterPlotVisua
|
|
15075
15240
|
TreeMapVisualUnionTypeDef = Union[TreeMapVisualTypeDef, TreeMapVisualOutputTypeDef]
|
15076
15241
|
|
15077
15242
|
|
15078
|
-
class
|
15243
|
+
class CustomContentVisualTypeDef(TypedDict):
|
15079
15244
|
VisualId: str
|
15245
|
+
DataSetIdentifier: str
|
15080
15246
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
15081
15247
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
15082
|
-
ChartConfiguration: NotRequired[
|
15248
|
+
ChartConfiguration: NotRequired[CustomContentConfigurationTypeDef]
|
15249
|
+
Actions: NotRequired[Sequence[VisualCustomActionUnionTypeDef]]
|
15250
|
+
VisualContentAltText: NotRequired[str]
|
15251
|
+
|
15252
|
+
|
15253
|
+
class EmptyVisualTypeDef(TypedDict):
|
15254
|
+
VisualId: str
|
15255
|
+
DataSetIdentifier: str
|
15256
|
+
Actions: NotRequired[Sequence[VisualCustomActionUnionTypeDef]]
|
15257
|
+
|
15258
|
+
|
15259
|
+
class RadarChartVisualTypeDef(TypedDict):
|
15260
|
+
VisualId: str
|
15261
|
+
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
15262
|
+
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
15263
|
+
ChartConfiguration: NotRequired[RadarChartConfigurationUnionTypeDef]
|
15083
15264
|
Actions: NotRequired[Sequence[VisualCustomActionUnionTypeDef]]
|
15084
15265
|
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyUnionTypeDef]]
|
15085
15266
|
VisualContentAltText: NotRequired[str]
|
@@ -15107,7 +15288,7 @@ class PivotTableVisualTypeDef(TypedDict):
|
|
15107
15288
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
15108
15289
|
ChartConfiguration: NotRequired[PivotTableConfigurationUnionTypeDef]
|
15109
15290
|
ConditionalFormatting: NotRequired[PivotTableConditionalFormattingUnionTypeDef]
|
15110
|
-
Actions: NotRequired[Sequence[
|
15291
|
+
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
15111
15292
|
VisualContentAltText: NotRequired[str]
|
15112
15293
|
|
15113
15294
|
|
@@ -15117,7 +15298,7 @@ class TableVisualTypeDef(TypedDict):
|
|
15117
15298
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
15118
15299
|
ChartConfiguration: NotRequired[TableConfigurationUnionTypeDef]
|
15119
15300
|
ConditionalFormatting: NotRequired[TableConditionalFormattingUnionTypeDef]
|
15120
|
-
Actions: NotRequired[Sequence[
|
15301
|
+
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
15121
15302
|
VisualContentAltText: NotRequired[str]
|
15122
15303
|
|
15123
15304
|
|
@@ -15165,7 +15346,11 @@ SheetImageUnionTypeDef = Union[SheetImageTypeDef, SheetImageOutputTypeDef]
|
|
15165
15346
|
GeospatialLayerItemUnionTypeDef = Union[
|
15166
15347
|
GeospatialLayerItemTypeDef, GeospatialLayerItemOutputTypeDef
|
15167
15348
|
]
|
15168
|
-
|
15349
|
+
CustomContentVisualUnionTypeDef = Union[
|
15350
|
+
CustomContentVisualTypeDef, CustomContentVisualOutputTypeDef
|
15351
|
+
]
|
15352
|
+
EmptyVisualUnionTypeDef = Union[EmptyVisualTypeDef, EmptyVisualOutputTypeDef]
|
15353
|
+
RadarChartVisualUnionTypeDef = Union[RadarChartVisualTypeDef, RadarChartVisualOutputTypeDef]
|
15169
15354
|
|
15170
15355
|
|
15171
15356
|
class FilterTypeDef(TypedDict):
|