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:
|
@@ -676,6 +690,7 @@ __all__ = (
|
|
676
690
|
"DashboardVersionTypeDef",
|
677
691
|
"DashboardVisualIdTypeDef",
|
678
692
|
"DashboardVisualPublishOptionsTypeDef",
|
693
|
+
"DashboardVisualResultTypeDef",
|
679
694
|
"DataAggregationTypeDef",
|
680
695
|
"DataBarsOptionsTypeDef",
|
681
696
|
"DataColorPaletteOutputTypeDef",
|
@@ -812,6 +827,8 @@ __all__ = (
|
|
812
827
|
"DeleteDataSetResponseTypeDef",
|
813
828
|
"DeleteDataSourceRequestRequestTypeDef",
|
814
829
|
"DeleteDataSourceResponseTypeDef",
|
830
|
+
"DeleteDefaultQBusinessApplicationRequestRequestTypeDef",
|
831
|
+
"DeleteDefaultQBusinessApplicationResponseTypeDef",
|
815
832
|
"DeleteFolderMembershipRequestRequestTypeDef",
|
816
833
|
"DeleteFolderMembershipResponseTypeDef",
|
817
834
|
"DeleteFolderRequestRequestTypeDef",
|
@@ -898,11 +915,13 @@ __all__ = (
|
|
898
915
|
"DescribeDataSourcePermissionsResponseTypeDef",
|
899
916
|
"DescribeDataSourceRequestRequestTypeDef",
|
900
917
|
"DescribeDataSourceResponseTypeDef",
|
901
|
-
"
|
918
|
+
"DescribeDefaultQBusinessApplicationRequestRequestTypeDef",
|
919
|
+
"DescribeDefaultQBusinessApplicationResponseTypeDef",
|
920
|
+
"DescribeFolderPermissionsRequestPaginateTypeDef",
|
902
921
|
"DescribeFolderPermissionsRequestRequestTypeDef",
|
903
922
|
"DescribeFolderPermissionsResponseTypeDef",
|
904
923
|
"DescribeFolderRequestRequestTypeDef",
|
905
|
-
"
|
924
|
+
"DescribeFolderResolvedPermissionsRequestPaginateTypeDef",
|
906
925
|
"DescribeFolderResolvedPermissionsRequestRequestTypeDef",
|
907
926
|
"DescribeFolderResolvedPermissionsResponseTypeDef",
|
908
927
|
"DescribeFolderResponseTypeDef",
|
@@ -922,6 +941,8 @@ __all__ = (
|
|
922
941
|
"DescribeNamespaceResponseTypeDef",
|
923
942
|
"DescribeQPersonalizationConfigurationRequestRequestTypeDef",
|
924
943
|
"DescribeQPersonalizationConfigurationResponseTypeDef",
|
944
|
+
"DescribeQuickSightQSearchConfigurationRequestRequestTypeDef",
|
945
|
+
"DescribeQuickSightQSearchConfigurationResponseTypeDef",
|
925
946
|
"DescribeRefreshScheduleRequestRequestTypeDef",
|
926
947
|
"DescribeRefreshScheduleResponseTypeDef",
|
927
948
|
"DescribeRoleCustomPermissionRequestRequestTypeDef",
|
@@ -1125,6 +1146,9 @@ __all__ = (
|
|
1125
1146
|
"GenerateEmbedUrlForAnonymousUserResponseTypeDef",
|
1126
1147
|
"GenerateEmbedUrlForRegisteredUserRequestRequestTypeDef",
|
1127
1148
|
"GenerateEmbedUrlForRegisteredUserResponseTypeDef",
|
1149
|
+
"GenerateEmbedUrlForRegisteredUserWithIdentityRequestRequestTypeDef",
|
1150
|
+
"GenerateEmbedUrlForRegisteredUserWithIdentityResponseTypeDef",
|
1151
|
+
"GeneratedAnswerResultTypeDef",
|
1128
1152
|
"GeoSpatialColumnGroupOutputTypeDef",
|
1129
1153
|
"GeoSpatialColumnGroupTypeDef",
|
1130
1154
|
"GeoSpatialColumnGroupUnionTypeDef",
|
@@ -1392,87 +1416,87 @@ __all__ = (
|
|
1392
1416
|
"LineSeriesAxisDisplayOptionsUnionTypeDef",
|
1393
1417
|
"LinkSharingConfigurationOutputTypeDef",
|
1394
1418
|
"LinkSharingConfigurationTypeDef",
|
1395
|
-
"
|
1419
|
+
"ListAnalysesRequestPaginateTypeDef",
|
1396
1420
|
"ListAnalysesRequestRequestTypeDef",
|
1397
1421
|
"ListAnalysesResponseTypeDef",
|
1398
|
-
"
|
1422
|
+
"ListAssetBundleExportJobsRequestPaginateTypeDef",
|
1399
1423
|
"ListAssetBundleExportJobsRequestRequestTypeDef",
|
1400
1424
|
"ListAssetBundleExportJobsResponseTypeDef",
|
1401
|
-
"
|
1425
|
+
"ListAssetBundleImportJobsRequestPaginateTypeDef",
|
1402
1426
|
"ListAssetBundleImportJobsRequestRequestTypeDef",
|
1403
1427
|
"ListAssetBundleImportJobsResponseTypeDef",
|
1404
|
-
"
|
1428
|
+
"ListBrandsRequestPaginateTypeDef",
|
1405
1429
|
"ListBrandsRequestRequestTypeDef",
|
1406
1430
|
"ListBrandsResponseTypeDef",
|
1407
1431
|
"ListControlDisplayOptionsTypeDef",
|
1408
1432
|
"ListControlSearchOptionsTypeDef",
|
1409
1433
|
"ListControlSelectAllOptionsTypeDef",
|
1410
|
-
"
|
1434
|
+
"ListCustomPermissionsRequestPaginateTypeDef",
|
1411
1435
|
"ListCustomPermissionsRequestRequestTypeDef",
|
1412
1436
|
"ListCustomPermissionsResponseTypeDef",
|
1413
|
-
"
|
1437
|
+
"ListDashboardVersionsRequestPaginateTypeDef",
|
1414
1438
|
"ListDashboardVersionsRequestRequestTypeDef",
|
1415
1439
|
"ListDashboardVersionsResponseTypeDef",
|
1416
|
-
"
|
1440
|
+
"ListDashboardsRequestPaginateTypeDef",
|
1417
1441
|
"ListDashboardsRequestRequestTypeDef",
|
1418
1442
|
"ListDashboardsResponseTypeDef",
|
1419
|
-
"
|
1443
|
+
"ListDataSetsRequestPaginateTypeDef",
|
1420
1444
|
"ListDataSetsRequestRequestTypeDef",
|
1421
1445
|
"ListDataSetsResponseTypeDef",
|
1422
|
-
"
|
1446
|
+
"ListDataSourcesRequestPaginateTypeDef",
|
1423
1447
|
"ListDataSourcesRequestRequestTypeDef",
|
1424
1448
|
"ListDataSourcesResponseTypeDef",
|
1425
|
-
"
|
1449
|
+
"ListFolderMembersRequestPaginateTypeDef",
|
1426
1450
|
"ListFolderMembersRequestRequestTypeDef",
|
1427
1451
|
"ListFolderMembersResponseTypeDef",
|
1428
|
-
"
|
1452
|
+
"ListFoldersForResourceRequestPaginateTypeDef",
|
1429
1453
|
"ListFoldersForResourceRequestRequestTypeDef",
|
1430
1454
|
"ListFoldersForResourceResponseTypeDef",
|
1431
|
-
"
|
1455
|
+
"ListFoldersRequestPaginateTypeDef",
|
1432
1456
|
"ListFoldersRequestRequestTypeDef",
|
1433
1457
|
"ListFoldersResponseTypeDef",
|
1434
|
-
"
|
1458
|
+
"ListGroupMembershipsRequestPaginateTypeDef",
|
1435
1459
|
"ListGroupMembershipsRequestRequestTypeDef",
|
1436
1460
|
"ListGroupMembershipsResponseTypeDef",
|
1437
|
-
"
|
1461
|
+
"ListGroupsRequestPaginateTypeDef",
|
1438
1462
|
"ListGroupsRequestRequestTypeDef",
|
1439
1463
|
"ListGroupsResponseTypeDef",
|
1440
|
-
"
|
1464
|
+
"ListIAMPolicyAssignmentsForUserRequestPaginateTypeDef",
|
1441
1465
|
"ListIAMPolicyAssignmentsForUserRequestRequestTypeDef",
|
1442
1466
|
"ListIAMPolicyAssignmentsForUserResponseTypeDef",
|
1443
|
-
"
|
1467
|
+
"ListIAMPolicyAssignmentsRequestPaginateTypeDef",
|
1444
1468
|
"ListIAMPolicyAssignmentsRequestRequestTypeDef",
|
1445
1469
|
"ListIAMPolicyAssignmentsResponseTypeDef",
|
1446
1470
|
"ListIdentityPropagationConfigsRequestRequestTypeDef",
|
1447
1471
|
"ListIdentityPropagationConfigsResponseTypeDef",
|
1448
|
-
"
|
1472
|
+
"ListIngestionsRequestPaginateTypeDef",
|
1449
1473
|
"ListIngestionsRequestRequestTypeDef",
|
1450
1474
|
"ListIngestionsResponseTypeDef",
|
1451
|
-
"
|
1475
|
+
"ListNamespacesRequestPaginateTypeDef",
|
1452
1476
|
"ListNamespacesRequestRequestTypeDef",
|
1453
1477
|
"ListNamespacesResponseTypeDef",
|
1454
1478
|
"ListRefreshSchedulesRequestRequestTypeDef",
|
1455
1479
|
"ListRefreshSchedulesResponseTypeDef",
|
1456
|
-
"
|
1480
|
+
"ListRoleMembershipsRequestPaginateTypeDef",
|
1457
1481
|
"ListRoleMembershipsRequestRequestTypeDef",
|
1458
1482
|
"ListRoleMembershipsResponseTypeDef",
|
1459
1483
|
"ListTagsForResourceRequestRequestTypeDef",
|
1460
1484
|
"ListTagsForResourceResponseTypeDef",
|
1461
|
-
"
|
1485
|
+
"ListTemplateAliasesRequestPaginateTypeDef",
|
1462
1486
|
"ListTemplateAliasesRequestRequestTypeDef",
|
1463
1487
|
"ListTemplateAliasesResponseTypeDef",
|
1464
|
-
"
|
1488
|
+
"ListTemplateVersionsRequestPaginateTypeDef",
|
1465
1489
|
"ListTemplateVersionsRequestRequestTypeDef",
|
1466
1490
|
"ListTemplateVersionsResponseTypeDef",
|
1467
|
-
"
|
1491
|
+
"ListTemplatesRequestPaginateTypeDef",
|
1468
1492
|
"ListTemplatesRequestRequestTypeDef",
|
1469
1493
|
"ListTemplatesResponseTypeDef",
|
1470
1494
|
"ListThemeAliasesRequestRequestTypeDef",
|
1471
1495
|
"ListThemeAliasesResponseTypeDef",
|
1472
|
-
"
|
1496
|
+
"ListThemeVersionsRequestPaginateTypeDef",
|
1473
1497
|
"ListThemeVersionsRequestRequestTypeDef",
|
1474
1498
|
"ListThemeVersionsResponseTypeDef",
|
1475
|
-
"
|
1499
|
+
"ListThemesRequestPaginateTypeDef",
|
1476
1500
|
"ListThemesRequestRequestTypeDef",
|
1477
1501
|
"ListThemesResponseTypeDef",
|
1478
1502
|
"ListTopicRefreshSchedulesRequestRequestTypeDef",
|
@@ -1481,10 +1505,10 @@ __all__ = (
|
|
1481
1505
|
"ListTopicReviewedAnswersResponseTypeDef",
|
1482
1506
|
"ListTopicsRequestRequestTypeDef",
|
1483
1507
|
"ListTopicsResponseTypeDef",
|
1484
|
-
"
|
1508
|
+
"ListUserGroupsRequestPaginateTypeDef",
|
1485
1509
|
"ListUserGroupsRequestRequestTypeDef",
|
1486
1510
|
"ListUserGroupsResponseTypeDef",
|
1487
|
-
"
|
1511
|
+
"ListUsersRequestPaginateTypeDef",
|
1488
1512
|
"ListUsersRequestRequestTypeDef",
|
1489
1513
|
"ListUsersResponseTypeDef",
|
1490
1514
|
"ListVPCConnectionsRequestRequestTypeDef",
|
@@ -1587,6 +1611,8 @@ __all__ = (
|
|
1587
1611
|
"PercentVisibleRangeTypeDef",
|
1588
1612
|
"PercentageDisplayFormatConfigurationTypeDef",
|
1589
1613
|
"PercentileAggregationTypeDef",
|
1614
|
+
"PerformanceConfigurationOutputTypeDef",
|
1615
|
+
"PerformanceConfigurationTypeDef",
|
1590
1616
|
"PeriodOverPeriodComputationTypeDef",
|
1591
1617
|
"PeriodToDateComputationTypeDef",
|
1592
1618
|
"PhysicalTableOutputTypeDef",
|
@@ -1687,6 +1713,8 @@ __all__ = (
|
|
1687
1713
|
"PredefinedHierarchyOutputTypeDef",
|
1688
1714
|
"PredefinedHierarchyTypeDef",
|
1689
1715
|
"PredefinedHierarchyUnionTypeDef",
|
1716
|
+
"PredictQAResultsRequestRequestTypeDef",
|
1717
|
+
"PredictQAResultsResponseTypeDef",
|
1690
1718
|
"PrestoParametersTypeDef",
|
1691
1719
|
"ProgressBarOptionsTypeDef",
|
1692
1720
|
"ProjectOperationOutputTypeDef",
|
@@ -1694,6 +1722,7 @@ __all__ = (
|
|
1694
1722
|
"ProjectOperationUnionTypeDef",
|
1695
1723
|
"PutDataSetRefreshPropertiesRequestRequestTypeDef",
|
1696
1724
|
"PutDataSetRefreshPropertiesResponseTypeDef",
|
1725
|
+
"QAResultTypeDef",
|
1697
1726
|
"QueryExecutionOptionsTypeDef",
|
1698
1727
|
"QueueInfoTypeDef",
|
1699
1728
|
"RadarChartAggregatedFieldWellsOutputTypeDef",
|
@@ -1809,26 +1838,26 @@ __all__ = (
|
|
1809
1838
|
"ScatterPlotVisualUnionTypeDef",
|
1810
1839
|
"ScheduleRefreshOnEntityTypeDef",
|
1811
1840
|
"ScrollBarOptionsTypeDef",
|
1841
|
+
"SearchAnalysesRequestPaginateTypeDef",
|
1812
1842
|
"SearchAnalysesRequestRequestTypeDef",
|
1813
|
-
"SearchAnalysesRequestSearchAnalysesPaginateTypeDef",
|
1814
1843
|
"SearchAnalysesResponseTypeDef",
|
1844
|
+
"SearchDashboardsRequestPaginateTypeDef",
|
1815
1845
|
"SearchDashboardsRequestRequestTypeDef",
|
1816
|
-
"SearchDashboardsRequestSearchDashboardsPaginateTypeDef",
|
1817
1846
|
"SearchDashboardsResponseTypeDef",
|
1847
|
+
"SearchDataSetsRequestPaginateTypeDef",
|
1818
1848
|
"SearchDataSetsRequestRequestTypeDef",
|
1819
|
-
"SearchDataSetsRequestSearchDataSetsPaginateTypeDef",
|
1820
1849
|
"SearchDataSetsResponseTypeDef",
|
1850
|
+
"SearchDataSourcesRequestPaginateTypeDef",
|
1821
1851
|
"SearchDataSourcesRequestRequestTypeDef",
|
1822
|
-
"SearchDataSourcesRequestSearchDataSourcesPaginateTypeDef",
|
1823
1852
|
"SearchDataSourcesResponseTypeDef",
|
1853
|
+
"SearchFoldersRequestPaginateTypeDef",
|
1824
1854
|
"SearchFoldersRequestRequestTypeDef",
|
1825
|
-
"SearchFoldersRequestSearchFoldersPaginateTypeDef",
|
1826
1855
|
"SearchFoldersResponseTypeDef",
|
1856
|
+
"SearchGroupsRequestPaginateTypeDef",
|
1827
1857
|
"SearchGroupsRequestRequestTypeDef",
|
1828
|
-
"SearchGroupsRequestSearchGroupsPaginateTypeDef",
|
1829
1858
|
"SearchGroupsResponseTypeDef",
|
1859
|
+
"SearchTopicsRequestPaginateTypeDef",
|
1830
1860
|
"SearchTopicsRequestRequestTypeDef",
|
1831
|
-
"SearchTopicsRequestSearchTopicsPaginateTypeDef",
|
1832
1861
|
"SearchTopicsResponseTypeDef",
|
1833
1862
|
"SecondaryValueOptionsTypeDef",
|
1834
1863
|
"SectionAfterPageBreakTypeDef",
|
@@ -2164,6 +2193,9 @@ __all__ = (
|
|
2164
2193
|
"TypographyUnionTypeDef",
|
2165
2194
|
"UIColorPaletteTypeDef",
|
2166
2195
|
"UnaggregatedFieldTypeDef",
|
2196
|
+
"UniqueKeyOutputTypeDef",
|
2197
|
+
"UniqueKeyTypeDef",
|
2198
|
+
"UniqueKeyUnionTypeDef",
|
2167
2199
|
"UniqueValuesComputationTypeDef",
|
2168
2200
|
"UntagColumnOperationOutputTypeDef",
|
2169
2201
|
"UntagColumnOperationTypeDef",
|
@@ -2178,6 +2210,8 @@ __all__ = (
|
|
2178
2210
|
"UpdateAnalysisPermissionsResponseTypeDef",
|
2179
2211
|
"UpdateAnalysisRequestRequestTypeDef",
|
2180
2212
|
"UpdateAnalysisResponseTypeDef",
|
2213
|
+
"UpdateApplicationWithTokenExchangeGrantRequestRequestTypeDef",
|
2214
|
+
"UpdateApplicationWithTokenExchangeGrantResponseTypeDef",
|
2181
2215
|
"UpdateBrandAssignmentRequestRequestTypeDef",
|
2182
2216
|
"UpdateBrandAssignmentResponseTypeDef",
|
2183
2217
|
"UpdateBrandPublishedVersionRequestRequestTypeDef",
|
@@ -2204,6 +2238,8 @@ __all__ = (
|
|
2204
2238
|
"UpdateDataSourcePermissionsResponseTypeDef",
|
2205
2239
|
"UpdateDataSourceRequestRequestTypeDef",
|
2206
2240
|
"UpdateDataSourceResponseTypeDef",
|
2241
|
+
"UpdateDefaultQBusinessApplicationRequestRequestTypeDef",
|
2242
|
+
"UpdateDefaultQBusinessApplicationResponseTypeDef",
|
2207
2243
|
"UpdateFolderPermissionsRequestRequestTypeDef",
|
2208
2244
|
"UpdateFolderPermissionsResponseTypeDef",
|
2209
2245
|
"UpdateFolderRequestRequestTypeDef",
|
@@ -2222,6 +2258,8 @@ __all__ = (
|
|
2222
2258
|
"UpdatePublicSharingSettingsResponseTypeDef",
|
2223
2259
|
"UpdateQPersonalizationConfigurationRequestRequestTypeDef",
|
2224
2260
|
"UpdateQPersonalizationConfigurationResponseTypeDef",
|
2261
|
+
"UpdateQuickSightQSearchConfigurationRequestRequestTypeDef",
|
2262
|
+
"UpdateQuickSightQSearchConfigurationResponseTypeDef",
|
2225
2263
|
"UpdateRefreshScheduleRequestRequestTypeDef",
|
2226
2264
|
"UpdateRefreshScheduleResponseTypeDef",
|
2227
2265
|
"UpdateRoleCustomPermissionRequestRequestTypeDef",
|
@@ -2653,7 +2691,7 @@ class AuroraPostgreSqlParametersTypeDef(TypedDict):
|
|
2653
2691
|
Database: str
|
2654
2692
|
|
2655
2693
|
class AuthorizedTargetsByServiceTypeDef(TypedDict):
|
2656
|
-
Service: NotRequired[
|
2694
|
+
Service: NotRequired[ServiceTypeType]
|
2657
2695
|
AuthorizedTargets: NotRequired[List[str]]
|
2658
2696
|
|
2659
2697
|
class AwsIotAnalyticsParametersTypeDef(TypedDict):
|
@@ -3094,6 +3132,16 @@ class DashboardVersionSummaryTypeDef(TypedDict):
|
|
3094
3132
|
class ExportHiddenFieldsOptionTypeDef(TypedDict):
|
3095
3133
|
AvailabilityStatus: NotRequired[DashboardBehaviorType]
|
3096
3134
|
|
3135
|
+
class DashboardVisualResultTypeDef(TypedDict):
|
3136
|
+
DashboardId: NotRequired[str]
|
3137
|
+
DashboardName: NotRequired[str]
|
3138
|
+
SheetId: NotRequired[str]
|
3139
|
+
SheetName: NotRequired[str]
|
3140
|
+
VisualId: NotRequired[str]
|
3141
|
+
VisualTitle: NotRequired[str]
|
3142
|
+
VisualSubtitle: NotRequired[str]
|
3143
|
+
DashboardUrl: NotRequired[str]
|
3144
|
+
|
3097
3145
|
class DataAggregationTypeDef(TypedDict):
|
3098
3146
|
DatasetRowDateGranularity: NotRequired[TopicTimeGranularityType]
|
3099
3147
|
DefaultDateColumnName: NotRequired[str]
|
@@ -3329,6 +3377,10 @@ class DeleteDataSourceRequestRequestTypeDef(TypedDict):
|
|
3329
3377
|
AwsAccountId: str
|
3330
3378
|
DataSourceId: str
|
3331
3379
|
|
3380
|
+
class DeleteDefaultQBusinessApplicationRequestRequestTypeDef(TypedDict):
|
3381
|
+
AwsAccountId: str
|
3382
|
+
Namespace: NotRequired[str]
|
3383
|
+
|
3332
3384
|
class DeleteFolderMembershipRequestRequestTypeDef(TypedDict):
|
3333
3385
|
AwsAccountId: str
|
3334
3386
|
FolderId: str
|
@@ -3357,7 +3409,7 @@ class DeleteIAMPolicyAssignmentRequestRequestTypeDef(TypedDict):
|
|
3357
3409
|
|
3358
3410
|
class DeleteIdentityPropagationConfigRequestRequestTypeDef(TypedDict):
|
3359
3411
|
AwsAccountId: str
|
3360
|
-
Service:
|
3412
|
+
Service: ServiceTypeType
|
3361
3413
|
|
3362
3414
|
class DeleteNamespaceRequestRequestTypeDef(TypedDict):
|
3363
3415
|
AwsAccountId: str
|
@@ -3531,6 +3583,10 @@ class DescribeDataSourceRequestRequestTypeDef(TypedDict):
|
|
3531
3583
|
AwsAccountId: str
|
3532
3584
|
DataSourceId: str
|
3533
3585
|
|
3586
|
+
class DescribeDefaultQBusinessApplicationRequestRequestTypeDef(TypedDict):
|
3587
|
+
AwsAccountId: str
|
3588
|
+
Namespace: NotRequired[str]
|
3589
|
+
|
3534
3590
|
class PaginatorConfigTypeDef(TypedDict):
|
3535
3591
|
MaxItems: NotRequired[int]
|
3536
3592
|
PageSize: NotRequired[int]
|
@@ -3611,6 +3667,9 @@ class DescribeNamespaceRequestRequestTypeDef(TypedDict):
|
|
3611
3667
|
class DescribeQPersonalizationConfigurationRequestRequestTypeDef(TypedDict):
|
3612
3668
|
AwsAccountId: str
|
3613
3669
|
|
3670
|
+
class DescribeQuickSightQSearchConfigurationRequestRequestTypeDef(TypedDict):
|
3671
|
+
AwsAccountId: str
|
3672
|
+
|
3614
3673
|
class DescribeRefreshScheduleRequestRequestTypeDef(TypedDict):
|
3615
3674
|
AwsAccountId: str
|
3616
3675
|
DataSetId: str
|
@@ -3838,6 +3897,16 @@ class SessionTagTypeDef(TypedDict):
|
|
3838
3897
|
Key: str
|
3839
3898
|
Value: str
|
3840
3899
|
|
3900
|
+
class GeneratedAnswerResultTypeDef(TypedDict):
|
3901
|
+
QuestionText: NotRequired[str]
|
3902
|
+
AnswerStatus: NotRequired[GeneratedAnswerStatusType]
|
3903
|
+
TopicId: NotRequired[str]
|
3904
|
+
TopicName: NotRequired[str]
|
3905
|
+
Restatement: NotRequired[str]
|
3906
|
+
QuestionId: NotRequired[str]
|
3907
|
+
AnswerId: NotRequired[str]
|
3908
|
+
QuestionUrl: NotRequired[str]
|
3909
|
+
|
3841
3910
|
class GeoSpatialColumnGroupTypeDef(TypedDict):
|
3842
3911
|
Name: str
|
3843
3912
|
Columns: Sequence[str]
|
@@ -4316,6 +4385,9 @@ class PercentVisibleRangeTypeDef(TypedDict):
|
|
4316
4385
|
From: NotRequired[float]
|
4317
4386
|
To: NotRequired[float]
|
4318
4387
|
|
4388
|
+
class UniqueKeyOutputTypeDef(TypedDict):
|
4389
|
+
ColumnNames: List[str]
|
4390
|
+
|
4319
4391
|
class PivotTableConditionalFormattingScopeTypeDef(TypedDict):
|
4320
4392
|
Role: NotRequired[PivotTableConditionalFormattingScopeRoleType]
|
4321
4393
|
|
@@ -4347,6 +4419,13 @@ class PluginVisualPropertyTypeDef(TypedDict):
|
|
4347
4419
|
Name: NotRequired[str]
|
4348
4420
|
Value: NotRequired[str]
|
4349
4421
|
|
4422
|
+
class PredictQAResultsRequestRequestTypeDef(TypedDict):
|
4423
|
+
AwsAccountId: str
|
4424
|
+
QueryText: str
|
4425
|
+
IncludeQuickSightQIndex: NotRequired[IncludeQuickSightQIndexType]
|
4426
|
+
IncludeGeneratedAnswer: NotRequired[IncludeGeneratedAnswerType]
|
4427
|
+
MaxTopicsToConsider: NotRequired[int]
|
4428
|
+
|
4350
4429
|
class ProjectOperationOutputTypeDef(TypedDict):
|
4351
4430
|
ProjectedColumns: List[str]
|
4352
4431
|
|
@@ -4378,9 +4457,13 @@ class ReferenceLineCustomLabelConfigurationTypeDef(TypedDict):
|
|
4378
4457
|
class ReferenceLineStaticDataConfigurationTypeDef(TypedDict):
|
4379
4458
|
Value: float
|
4380
4459
|
|
4381
|
-
|
4382
|
-
|
4383
|
-
|
4460
|
+
ReferenceLineStyleConfigurationTypeDef = TypedDict(
|
4461
|
+
"ReferenceLineStyleConfigurationTypeDef",
|
4462
|
+
{
|
4463
|
+
"Pattern": NotRequired[ReferenceLinePatternTypeType],
|
4464
|
+
"Color": NotRequired[str],
|
4465
|
+
},
|
4466
|
+
)
|
4384
4467
|
|
4385
4468
|
class ScheduleRefreshOnEntityTypeDef(TypedDict):
|
4386
4469
|
DayOfWeek: NotRequired[DayOfWeekType]
|
@@ -4642,6 +4725,9 @@ class UntagColumnOperationOutputTypeDef(TypedDict):
|
|
4642
4725
|
ColumnName: str
|
4643
4726
|
TagNames: List[ColumnTagNameType]
|
4644
4727
|
|
4728
|
+
class UniqueKeyTypeDef(TypedDict):
|
4729
|
+
ColumnNames: Sequence[str]
|
4730
|
+
|
4645
4731
|
class UntagColumnOperationTypeDef(TypedDict):
|
4646
4732
|
ColumnName: str
|
4647
4733
|
TagNames: Sequence[ColumnTagNameType]
|
@@ -4656,6 +4742,10 @@ class UpdateAccountSettingsRequestRequestTypeDef(TypedDict):
|
|
4656
4742
|
NotificationEmail: NotRequired[str]
|
4657
4743
|
TerminationProtectionEnabled: NotRequired[bool]
|
4658
4744
|
|
4745
|
+
class UpdateApplicationWithTokenExchangeGrantRequestRequestTypeDef(TypedDict):
|
4746
|
+
AwsAccountId: str
|
4747
|
+
Namespace: str
|
4748
|
+
|
4659
4749
|
class UpdateBrandAssignmentRequestRequestTypeDef(TypedDict):
|
4660
4750
|
AwsAccountId: str
|
4661
4751
|
BrandArn: str
|
@@ -4679,6 +4769,11 @@ class UpdateDashboardsQAConfigurationRequestRequestTypeDef(TypedDict):
|
|
4679
4769
|
AwsAccountId: str
|
4680
4770
|
DashboardsQAStatus: DashboardsQAStatusType
|
4681
4771
|
|
4772
|
+
class UpdateDefaultQBusinessApplicationRequestRequestTypeDef(TypedDict):
|
4773
|
+
AwsAccountId: str
|
4774
|
+
ApplicationId: str
|
4775
|
+
Namespace: NotRequired[str]
|
4776
|
+
|
4682
4777
|
class UpdateFolderRequestRequestTypeDef(TypedDict):
|
4683
4778
|
AwsAccountId: str
|
4684
4779
|
FolderId: str
|
@@ -4700,7 +4795,7 @@ class UpdateIAMPolicyAssignmentRequestRequestTypeDef(TypedDict):
|
|
4700
4795
|
|
4701
4796
|
class UpdateIdentityPropagationConfigRequestRequestTypeDef(TypedDict):
|
4702
4797
|
AwsAccountId: str
|
4703
|
-
Service:
|
4798
|
+
Service: ServiceTypeType
|
4704
4799
|
AuthorizedTargets: NotRequired[Sequence[str]]
|
4705
4800
|
|
4706
4801
|
class UpdateIpRestrictionRequestRequestTypeDef(TypedDict):
|
@@ -4718,6 +4813,10 @@ class UpdateQPersonalizationConfigurationRequestRequestTypeDef(TypedDict):
|
|
4718
4813
|
AwsAccountId: str
|
4719
4814
|
PersonalizationMode: PersonalizationModeType
|
4720
4815
|
|
4816
|
+
class UpdateQuickSightQSearchConfigurationRequestRequestTypeDef(TypedDict):
|
4817
|
+
AwsAccountId: str
|
4818
|
+
QSearchStatus: QSearchStatusType
|
4819
|
+
|
4721
4820
|
class UpdateRoleCustomPermissionRequestRequestTypeDef(TypedDict):
|
4722
4821
|
CustomPermissionsName: str
|
4723
4822
|
Role: RoleType
|
@@ -5366,6 +5465,11 @@ class DeleteDataSourceResponseTypeDef(TypedDict):
|
|
5366
5465
|
Status: int
|
5367
5466
|
ResponseMetadata: ResponseMetadataTypeDef
|
5368
5467
|
|
5468
|
+
class DeleteDefaultQBusinessApplicationResponseTypeDef(TypedDict):
|
5469
|
+
RequestId: str
|
5470
|
+
Status: int
|
5471
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
5472
|
+
|
5369
5473
|
class DeleteFolderMembershipResponseTypeDef(TypedDict):
|
5370
5474
|
Status: int
|
5371
5475
|
RequestId: str
|
@@ -5522,6 +5626,12 @@ class DescribeDashboardsQAConfigurationResponseTypeDef(TypedDict):
|
|
5522
5626
|
Status: int
|
5523
5627
|
ResponseMetadata: ResponseMetadataTypeDef
|
5524
5628
|
|
5629
|
+
class DescribeDefaultQBusinessApplicationResponseTypeDef(TypedDict):
|
5630
|
+
RequestId: str
|
5631
|
+
Status: int
|
5632
|
+
ApplicationId: str
|
5633
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
5634
|
+
|
5525
5635
|
class DescribeIpRestrictionResponseTypeDef(TypedDict):
|
5526
5636
|
AwsAccountId: str
|
5527
5637
|
IpRestrictionRuleMap: Dict[str, str]
|
@@ -5538,6 +5648,12 @@ class DescribeQPersonalizationConfigurationResponseTypeDef(TypedDict):
|
|
5538
5648
|
Status: int
|
5539
5649
|
ResponseMetadata: ResponseMetadataTypeDef
|
5540
5650
|
|
5651
|
+
class DescribeQuickSightQSearchConfigurationResponseTypeDef(TypedDict):
|
5652
|
+
QSearchStatus: QSearchStatusType
|
5653
|
+
RequestId: str
|
5654
|
+
Status: int
|
5655
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
5656
|
+
|
5541
5657
|
class DescribeRoleCustomPermissionResponseTypeDef(TypedDict):
|
5542
5658
|
CustomPermissionsName: str
|
5543
5659
|
RequestId: str
|
@@ -5557,6 +5673,12 @@ class GenerateEmbedUrlForRegisteredUserResponseTypeDef(TypedDict):
|
|
5557
5673
|
RequestId: str
|
5558
5674
|
ResponseMetadata: ResponseMetadataTypeDef
|
5559
5675
|
|
5676
|
+
class GenerateEmbedUrlForRegisteredUserWithIdentityResponseTypeDef(TypedDict):
|
5677
|
+
EmbedUrl: str
|
5678
|
+
Status: int
|
5679
|
+
RequestId: str
|
5680
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
5681
|
+
|
5560
5682
|
class GetDashboardEmbedUrlResponseTypeDef(TypedDict):
|
5561
5683
|
EmbedUrl: str
|
5562
5684
|
Status: int
|
@@ -5702,6 +5824,11 @@ class UpdateAnalysisResponseTypeDef(TypedDict):
|
|
5702
5824
|
RequestId: str
|
5703
5825
|
ResponseMetadata: ResponseMetadataTypeDef
|
5704
5826
|
|
5827
|
+
class UpdateApplicationWithTokenExchangeGrantResponseTypeDef(TypedDict):
|
5828
|
+
Status: int
|
5829
|
+
RequestId: str
|
5830
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
5831
|
+
|
5705
5832
|
class UpdateBrandAssignmentResponseTypeDef(TypedDict):
|
5706
5833
|
RequestId: str
|
5707
5834
|
BrandArn: str
|
@@ -5778,6 +5905,11 @@ class UpdateDataSourceResponseTypeDef(TypedDict):
|
|
5778
5905
|
Status: int
|
5779
5906
|
ResponseMetadata: ResponseMetadataTypeDef
|
5780
5907
|
|
5908
|
+
class UpdateDefaultQBusinessApplicationResponseTypeDef(TypedDict):
|
5909
|
+
RequestId: str
|
5910
|
+
Status: int
|
5911
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
5912
|
+
|
5781
5913
|
class UpdateFolderResponseTypeDef(TypedDict):
|
5782
5914
|
Status: int
|
5783
5915
|
Arn: str
|
@@ -5817,6 +5949,12 @@ class UpdateQPersonalizationConfigurationResponseTypeDef(TypedDict):
|
|
5817
5949
|
Status: int
|
5818
5950
|
ResponseMetadata: ResponseMetadataTypeDef
|
5819
5951
|
|
5952
|
+
class UpdateQuickSightQSearchConfigurationResponseTypeDef(TypedDict):
|
5953
|
+
QSearchStatus: QSearchStatusType
|
5954
|
+
RequestId: str
|
5955
|
+
Status: int
|
5956
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
5957
|
+
|
5820
5958
|
class UpdateRefreshScheduleResponseTypeDef(TypedDict):
|
5821
5959
|
Status: int
|
5822
5960
|
RequestId: str
|
@@ -6483,132 +6621,128 @@ class UpdateTopicPermissionsResponseTypeDef(TypedDict):
|
|
6483
6621
|
RequestId: str
|
6484
6622
|
ResponseMetadata: ResponseMetadataTypeDef
|
6485
6623
|
|
6486
|
-
class
|
6624
|
+
class DescribeFolderPermissionsRequestPaginateTypeDef(TypedDict):
|
6487
6625
|
AwsAccountId: str
|
6488
6626
|
FolderId: str
|
6489
6627
|
Namespace: NotRequired[str]
|
6490
6628
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6491
6629
|
|
6492
|
-
class
|
6493
|
-
TypedDict
|
6494
|
-
):
|
6630
|
+
class DescribeFolderResolvedPermissionsRequestPaginateTypeDef(TypedDict):
|
6495
6631
|
AwsAccountId: str
|
6496
6632
|
FolderId: str
|
6497
6633
|
Namespace: NotRequired[str]
|
6498
6634
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6499
6635
|
|
6500
|
-
class
|
6636
|
+
class ListAnalysesRequestPaginateTypeDef(TypedDict):
|
6501
6637
|
AwsAccountId: str
|
6502
6638
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6503
6639
|
|
6504
|
-
class
|
6640
|
+
class ListAssetBundleExportJobsRequestPaginateTypeDef(TypedDict):
|
6505
6641
|
AwsAccountId: str
|
6506
6642
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6507
6643
|
|
6508
|
-
class
|
6644
|
+
class ListAssetBundleImportJobsRequestPaginateTypeDef(TypedDict):
|
6509
6645
|
AwsAccountId: str
|
6510
6646
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6511
6647
|
|
6512
|
-
class
|
6648
|
+
class ListBrandsRequestPaginateTypeDef(TypedDict):
|
6513
6649
|
AwsAccountId: str
|
6514
6650
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6515
6651
|
|
6516
|
-
class
|
6652
|
+
class ListCustomPermissionsRequestPaginateTypeDef(TypedDict):
|
6517
6653
|
AwsAccountId: str
|
6518
6654
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6519
6655
|
|
6520
|
-
class
|
6656
|
+
class ListDashboardVersionsRequestPaginateTypeDef(TypedDict):
|
6521
6657
|
AwsAccountId: str
|
6522
6658
|
DashboardId: str
|
6523
6659
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6524
6660
|
|
6525
|
-
class
|
6661
|
+
class ListDashboardsRequestPaginateTypeDef(TypedDict):
|
6526
6662
|
AwsAccountId: str
|
6527
6663
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6528
6664
|
|
6529
|
-
class
|
6665
|
+
class ListDataSetsRequestPaginateTypeDef(TypedDict):
|
6530
6666
|
AwsAccountId: str
|
6531
6667
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6532
6668
|
|
6533
|
-
class
|
6669
|
+
class ListDataSourcesRequestPaginateTypeDef(TypedDict):
|
6534
6670
|
AwsAccountId: str
|
6535
6671
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6536
6672
|
|
6537
|
-
class
|
6673
|
+
class ListFolderMembersRequestPaginateTypeDef(TypedDict):
|
6538
6674
|
AwsAccountId: str
|
6539
6675
|
FolderId: str
|
6540
6676
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6541
6677
|
|
6542
|
-
class
|
6678
|
+
class ListFoldersForResourceRequestPaginateTypeDef(TypedDict):
|
6543
6679
|
AwsAccountId: str
|
6544
6680
|
ResourceArn: str
|
6545
6681
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6546
6682
|
|
6547
|
-
class
|
6683
|
+
class ListFoldersRequestPaginateTypeDef(TypedDict):
|
6548
6684
|
AwsAccountId: str
|
6549
6685
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6550
6686
|
|
6551
|
-
class
|
6687
|
+
class ListGroupMembershipsRequestPaginateTypeDef(TypedDict):
|
6552
6688
|
GroupName: str
|
6553
6689
|
AwsAccountId: str
|
6554
6690
|
Namespace: str
|
6555
6691
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6556
6692
|
|
6557
|
-
class
|
6693
|
+
class ListGroupsRequestPaginateTypeDef(TypedDict):
|
6558
6694
|
AwsAccountId: str
|
6559
6695
|
Namespace: str
|
6560
6696
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6561
6697
|
|
6562
|
-
class
|
6563
|
-
TypedDict
|
6564
|
-
):
|
6698
|
+
class ListIAMPolicyAssignmentsForUserRequestPaginateTypeDef(TypedDict):
|
6565
6699
|
AwsAccountId: str
|
6566
6700
|
UserName: str
|
6567
6701
|
Namespace: str
|
6568
6702
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6569
6703
|
|
6570
|
-
class
|
6704
|
+
class ListIAMPolicyAssignmentsRequestPaginateTypeDef(TypedDict):
|
6571
6705
|
AwsAccountId: str
|
6572
6706
|
Namespace: str
|
6573
6707
|
AssignmentStatus: NotRequired[AssignmentStatusType]
|
6574
6708
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6575
6709
|
|
6576
|
-
class
|
6710
|
+
class ListIngestionsRequestPaginateTypeDef(TypedDict):
|
6577
6711
|
DataSetId: str
|
6578
6712
|
AwsAccountId: str
|
6579
6713
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6580
6714
|
|
6581
|
-
class
|
6715
|
+
class ListNamespacesRequestPaginateTypeDef(TypedDict):
|
6582
6716
|
AwsAccountId: str
|
6583
6717
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6584
6718
|
|
6585
|
-
class
|
6719
|
+
class ListRoleMembershipsRequestPaginateTypeDef(TypedDict):
|
6586
6720
|
Role: RoleType
|
6587
6721
|
AwsAccountId: str
|
6588
6722
|
Namespace: str
|
6589
6723
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6590
6724
|
|
6591
|
-
class
|
6725
|
+
class ListTemplateAliasesRequestPaginateTypeDef(TypedDict):
|
6592
6726
|
AwsAccountId: str
|
6593
6727
|
TemplateId: str
|
6594
6728
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6595
6729
|
|
6596
|
-
class
|
6730
|
+
class ListTemplateVersionsRequestPaginateTypeDef(TypedDict):
|
6597
6731
|
AwsAccountId: str
|
6598
6732
|
TemplateId: str
|
6599
6733
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6600
6734
|
|
6601
|
-
class
|
6735
|
+
class ListTemplatesRequestPaginateTypeDef(TypedDict):
|
6602
6736
|
AwsAccountId: str
|
6603
6737
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6604
6738
|
|
6605
|
-
class
|
6739
|
+
class ListThemeVersionsRequestPaginateTypeDef(TypedDict):
|
6606
6740
|
AwsAccountId: str
|
6607
6741
|
ThemeId: str
|
6608
6742
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6609
6743
|
|
6610
|
-
|
6611
|
-
"
|
6744
|
+
ListThemesRequestPaginateTypeDef = TypedDict(
|
6745
|
+
"ListThemesRequestPaginateTypeDef",
|
6612
6746
|
{
|
6613
6747
|
"AwsAccountId": str,
|
6614
6748
|
"Type": NotRequired[ThemeTypeType],
|
@@ -6616,33 +6750,33 @@ ListThemesRequestListThemesPaginateTypeDef = TypedDict(
|
|
6616
6750
|
},
|
6617
6751
|
)
|
6618
6752
|
|
6619
|
-
class
|
6753
|
+
class ListUserGroupsRequestPaginateTypeDef(TypedDict):
|
6620
6754
|
UserName: str
|
6621
6755
|
AwsAccountId: str
|
6622
6756
|
Namespace: str
|
6623
6757
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6624
6758
|
|
6625
|
-
class
|
6759
|
+
class ListUsersRequestPaginateTypeDef(TypedDict):
|
6626
6760
|
AwsAccountId: str
|
6627
6761
|
Namespace: str
|
6628
6762
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6629
6763
|
|
6630
|
-
class
|
6764
|
+
class SearchAnalysesRequestPaginateTypeDef(TypedDict):
|
6631
6765
|
AwsAccountId: str
|
6632
6766
|
Filters: Sequence[AnalysisSearchFilterTypeDef]
|
6633
6767
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6634
6768
|
|
6635
|
-
class
|
6769
|
+
class SearchDashboardsRequestPaginateTypeDef(TypedDict):
|
6636
6770
|
AwsAccountId: str
|
6637
6771
|
Filters: Sequence[DashboardSearchFilterTypeDef]
|
6638
6772
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6639
6773
|
|
6640
|
-
class
|
6774
|
+
class SearchDataSetsRequestPaginateTypeDef(TypedDict):
|
6641
6775
|
AwsAccountId: str
|
6642
6776
|
Filters: Sequence[DataSetSearchFilterTypeDef]
|
6643
6777
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6644
6778
|
|
6645
|
-
class
|
6779
|
+
class SearchDataSourcesRequestPaginateTypeDef(TypedDict):
|
6646
6780
|
AwsAccountId: str
|
6647
6781
|
Filters: Sequence[DataSourceSearchFilterTypeDef]
|
6648
6782
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
@@ -6757,16 +6891,16 @@ FilterSelectableValuesUnionTypeDef = Union[
|
|
6757
6891
|
FilterSelectableValuesTypeDef, FilterSelectableValuesOutputTypeDef
|
6758
6892
|
]
|
6759
6893
|
|
6760
|
-
class
|
6894
|
+
class SearchFoldersRequestPaginateTypeDef(TypedDict):
|
6761
6895
|
AwsAccountId: str
|
6762
6896
|
Filters: Sequence[FolderSearchFilterTypeDef]
|
6763
|
-
|
6764
|
-
MaxResults: NotRequired[int]
|
6897
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6765
6898
|
|
6766
|
-
class
|
6899
|
+
class SearchFoldersRequestRequestTypeDef(TypedDict):
|
6767
6900
|
AwsAccountId: str
|
6768
6901
|
Filters: Sequence[FolderSearchFilterTypeDef]
|
6769
|
-
|
6902
|
+
NextToken: NotRequired[str]
|
6903
|
+
MaxResults: NotRequired[int]
|
6770
6904
|
|
6771
6905
|
class ListFoldersResponseTypeDef(TypedDict):
|
6772
6906
|
Status: int
|
@@ -6806,6 +6940,11 @@ class FreeFormLayoutCanvasSizeOptionsTypeDef(TypedDict):
|
|
6806
6940
|
class SnapshotAnonymousUserTypeDef(TypedDict):
|
6807
6941
|
RowLevelPermissionTags: NotRequired[Sequence[SessionTagTypeDef]]
|
6808
6942
|
|
6943
|
+
class QAResultTypeDef(TypedDict):
|
6944
|
+
ResultType: NotRequired[QAResultTypeType]
|
6945
|
+
DashboardVisual: NotRequired[DashboardVisualResultTypeDef]
|
6946
|
+
GeneratedAnswer: NotRequired[GeneratedAnswerResultTypeDef]
|
6947
|
+
|
6809
6948
|
GeoSpatialColumnGroupUnionTypeDef = Union[
|
6810
6949
|
GeoSpatialColumnGroupTypeDef, GeoSpatialColumnGroupOutputTypeDef
|
6811
6950
|
]
|
@@ -6847,18 +6986,18 @@ class GradientColorTypeDef(TypedDict):
|
|
6847
6986
|
class GridLayoutCanvasSizeOptionsTypeDef(TypedDict):
|
6848
6987
|
ScreenCanvasSizeOptions: NotRequired[GridLayoutScreenCanvasSizeOptionsTypeDef]
|
6849
6988
|
|
6850
|
-
class
|
6989
|
+
class SearchGroupsRequestPaginateTypeDef(TypedDict):
|
6851
6990
|
AwsAccountId: str
|
6852
6991
|
Namespace: str
|
6853
6992
|
Filters: Sequence[GroupSearchFilterTypeDef]
|
6854
|
-
|
6855
|
-
MaxResults: NotRequired[int]
|
6993
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
6856
6994
|
|
6857
|
-
class
|
6995
|
+
class SearchGroupsRequestRequestTypeDef(TypedDict):
|
6858
6996
|
AwsAccountId: str
|
6859
6997
|
Namespace: str
|
6860
6998
|
Filters: Sequence[GroupSearchFilterTypeDef]
|
6861
|
-
|
6999
|
+
NextToken: NotRequired[str]
|
7000
|
+
MaxResults: NotRequired[int]
|
6862
7001
|
|
6863
7002
|
class ListIAMPolicyAssignmentsResponseTypeDef(TypedDict):
|
6864
7003
|
IAMPolicyAssignments: List[IAMPolicyAssignmentSummaryTypeDef]
|
@@ -7059,6 +7198,9 @@ class ParametersOutputTypeDef(TypedDict):
|
|
7059
7198
|
class VisibleRangeOptionsTypeDef(TypedDict):
|
7060
7199
|
PercentRange: NotRequired[PercentVisibleRangeTypeDef]
|
7061
7200
|
|
7201
|
+
class PerformanceConfigurationOutputTypeDef(TypedDict):
|
7202
|
+
UniqueKeys: NotRequired[List[UniqueKeyOutputTypeDef]]
|
7203
|
+
|
7062
7204
|
class PluginVisualOptionsOutputTypeDef(TypedDict):
|
7063
7205
|
VisualProperties: NotRequired[List[PluginVisualPropertyTypeDef]]
|
7064
7206
|
|
@@ -7132,16 +7274,16 @@ SameSheetTargetVisualConfigurationUnionTypeDef = Union[
|
|
7132
7274
|
SameSheetTargetVisualConfigurationTypeDef, SameSheetTargetVisualConfigurationOutputTypeDef
|
7133
7275
|
]
|
7134
7276
|
|
7135
|
-
class
|
7277
|
+
class SearchTopicsRequestPaginateTypeDef(TypedDict):
|
7136
7278
|
AwsAccountId: str
|
7137
7279
|
Filters: Sequence[TopicSearchFilterTypeDef]
|
7138
|
-
|
7139
|
-
MaxResults: NotRequired[int]
|
7280
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
7140
7281
|
|
7141
|
-
class
|
7282
|
+
class SearchTopicsRequestRequestTypeDef(TypedDict):
|
7142
7283
|
AwsAccountId: str
|
7143
7284
|
Filters: Sequence[TopicSearchFilterTypeDef]
|
7144
|
-
|
7285
|
+
NextToken: NotRequired[str]
|
7286
|
+
MaxResults: NotRequired[int]
|
7145
7287
|
|
7146
7288
|
class SectionBasedLayoutPaperCanvasSizeOptionsTypeDef(TypedDict):
|
7147
7289
|
PaperSize: NotRequired[PaperSizeType]
|
@@ -7242,6 +7384,7 @@ class TotalAggregationOptionTypeDef(TypedDict):
|
|
7242
7384
|
FieldId: str
|
7243
7385
|
TotalAggregationFunction: TotalAggregationFunctionTypeDef
|
7244
7386
|
|
7387
|
+
UniqueKeyUnionTypeDef = Union[UniqueKeyTypeDef, UniqueKeyOutputTypeDef]
|
7245
7388
|
UntagColumnOperationUnionTypeDef = Union[
|
7246
7389
|
UntagColumnOperationTypeDef, UntagColumnOperationOutputTypeDef
|
7247
7390
|
]
|
@@ -7794,6 +7937,13 @@ class DefaultFreeFormLayoutConfigurationTypeDef(TypedDict):
|
|
7794
7937
|
class SnapshotUserConfigurationTypeDef(TypedDict):
|
7795
7938
|
AnonymousUsers: NotRequired[Sequence[SnapshotAnonymousUserTypeDef]]
|
7796
7939
|
|
7940
|
+
class PredictQAResultsResponseTypeDef(TypedDict):
|
7941
|
+
PrimaryResult: QAResultTypeDef
|
7942
|
+
AdditionalResults: List[QAResultTypeDef]
|
7943
|
+
RequestId: str
|
7944
|
+
Status: int
|
7945
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
7946
|
+
|
7797
7947
|
class ColumnGroupTypeDef(TypedDict):
|
7798
7948
|
GeoSpatialColumnGroup: NotRequired[GeoSpatialColumnGroupUnionTypeDef]
|
7799
7949
|
|
@@ -8109,6 +8259,9 @@ class StringDatasetParameterTypeDef(TypedDict):
|
|
8109
8259
|
ValueType: DatasetParameterValueTypeType
|
8110
8260
|
DefaultValues: NotRequired[StringDatasetParameterDefaultValuesUnionTypeDef]
|
8111
8261
|
|
8262
|
+
class PerformanceConfigurationTypeDef(TypedDict):
|
8263
|
+
UniqueKeys: NotRequired[Sequence[UniqueKeyUnionTypeDef]]
|
8264
|
+
|
8112
8265
|
class FilterCrossSheetControlOutputTypeDef(TypedDict):
|
8113
8266
|
FilterControlId: str
|
8114
8267
|
SourceFilterId: str
|
@@ -8414,7 +8567,7 @@ class TopicCalculatedFieldTypeDef(TypedDict):
|
|
8414
8567
|
AllowedAggregations: NotRequired[Sequence[AuthorSpecifiedAggregationType]]
|
8415
8568
|
NotAllowedAggregations: NotRequired[Sequence[AuthorSpecifiedAggregationType]]
|
8416
8569
|
NeverAggregateInFilter: NotRequired[bool]
|
8417
|
-
CellValueSynonyms: NotRequired[Sequence[
|
8570
|
+
CellValueSynonyms: NotRequired[Sequence[CellValueSynonymUnionTypeDef]]
|
8418
8571
|
NonAdditive: NotRequired[bool]
|
8419
8572
|
|
8420
8573
|
class TopicColumnOutputTypeDef(TypedDict):
|
@@ -8452,7 +8605,7 @@ class TopicColumnTypeDef(TypedDict):
|
|
8452
8605
|
NotAllowedAggregations: NotRequired[Sequence[AuthorSpecifiedAggregationType]]
|
8453
8606
|
DefaultFormatting: NotRequired[DefaultFormattingTypeDef]
|
8454
8607
|
NeverAggregateInFilter: NotRequired[bool]
|
8455
|
-
CellValueSynonyms: NotRequired[Sequence[
|
8608
|
+
CellValueSynonyms: NotRequired[Sequence[CellValueSynonymTypeDef]]
|
8456
8609
|
NonAdditive: NotRequired[bool]
|
8457
8610
|
|
8458
8611
|
TopicIRMetricUnionTypeDef = Union[TopicIRMetricTypeDef, TopicIRMetricOutputTypeDef]
|
@@ -9487,6 +9640,12 @@ class GenerateEmbedUrlForRegisteredUserRequestRequestTypeDef(TypedDict):
|
|
9487
9640
|
SessionLifetimeInMinutes: NotRequired[int]
|
9488
9641
|
AllowedDomains: NotRequired[Sequence[str]]
|
9489
9642
|
|
9643
|
+
class GenerateEmbedUrlForRegisteredUserWithIdentityRequestRequestTypeDef(TypedDict):
|
9644
|
+
AwsAccountId: str
|
9645
|
+
ExperienceConfiguration: RegisteredUserEmbeddingExperienceConfigurationTypeDef
|
9646
|
+
SessionLifetimeInMinutes: NotRequired[int]
|
9647
|
+
AllowedDomains: NotRequired[Sequence[str]]
|
9648
|
+
|
9490
9649
|
class AnonymousUserSnapshotJobResultTypeDef(TypedDict):
|
9491
9650
|
FileGroups: NotRequired[List[SnapshotJobResultFileGroupTypeDef]]
|
9492
9651
|
|
@@ -9652,6 +9811,7 @@ class DataSetTypeDef(TypedDict):
|
|
9652
9811
|
ColumnLevelPermissionRules: NotRequired[List[ColumnLevelPermissionRuleOutputTypeDef]]
|
9653
9812
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
9654
9813
|
DatasetParameters: NotRequired[List[DatasetParameterOutputTypeDef]]
|
9814
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationOutputTypeDef]
|
9655
9815
|
|
9656
9816
|
class ImageCustomActionOperationOutputTypeDef(TypedDict):
|
9657
9817
|
NavigationOperation: NotRequired[CustomActionNavigationOperationTypeDef]
|
@@ -11156,6 +11316,7 @@ class UpdateDataSetRequestRequestTypeDef(TypedDict):
|
|
11156
11316
|
ColumnLevelPermissionRules: NotRequired[Sequence[ColumnLevelPermissionRuleTypeDef]]
|
11157
11317
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
11158
11318
|
DatasetParameters: NotRequired[Sequence[DatasetParameterTypeDef]]
|
11319
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationTypeDef]
|
11159
11320
|
|
11160
11321
|
ColumnHierarchyUnionTypeDef = Union[ColumnHierarchyTypeDef, ColumnHierarchyOutputTypeDef]
|
11161
11322
|
AxisDisplayOptionsUnionTypeDef = Union[AxisDisplayOptionsTypeDef, AxisDisplayOptionsOutputTypeDef]
|
@@ -11515,6 +11676,7 @@ class CreateDataSetRequestRequestTypeDef(TypedDict):
|
|
11515
11676
|
DataSetUsageConfiguration: NotRequired[DataSetUsageConfigurationTypeDef]
|
11516
11677
|
DatasetParameters: NotRequired[Sequence[DatasetParameterUnionTypeDef]]
|
11517
11678
|
FolderArns: NotRequired[Sequence[str]]
|
11679
|
+
PerformanceConfiguration: NotRequired[PerformanceConfigurationTypeDef]
|
11518
11680
|
|
11519
11681
|
class LineSeriesAxisDisplayOptionsTypeDef(TypedDict):
|
11520
11682
|
AxisOptions: NotRequired[AxisDisplayOptionsUnionTypeDef]
|
@@ -12956,38 +13118,33 @@ SectionBasedLayoutConfigurationUnionTypeDef = Union[
|
|
12956
13118
|
ImageCustomActionUnionTypeDef = Union[ImageCustomActionTypeDef, ImageCustomActionOutputTypeDef]
|
12957
13119
|
LayerCustomActionUnionTypeDef = Union[LayerCustomActionTypeDef, LayerCustomActionOutputTypeDef]
|
12958
13120
|
|
12959
|
-
class
|
13121
|
+
class BarChartVisualTypeDef(TypedDict):
|
12960
13122
|
VisualId: str
|
12961
13123
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
12962
13124
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
12963
|
-
ChartConfiguration: NotRequired[
|
13125
|
+
ChartConfiguration: NotRequired[BarChartConfigurationUnionTypeDef]
|
12964
13126
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
12965
13127
|
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
12966
13128
|
VisualContentAltText: NotRequired[str]
|
12967
13129
|
|
12968
|
-
class
|
13130
|
+
class BoxPlotVisualTypeDef(TypedDict):
|
12969
13131
|
VisualId: str
|
12970
13132
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
12971
13133
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
12972
|
-
ChartConfiguration: NotRequired[
|
13134
|
+
ChartConfiguration: NotRequired[BoxPlotChartConfigurationUnionTypeDef]
|
12973
13135
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
12974
13136
|
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
12975
13137
|
VisualContentAltText: NotRequired[str]
|
12976
13138
|
|
12977
|
-
class
|
13139
|
+
class ComboChartVisualTypeDef(TypedDict):
|
12978
13140
|
VisualId: str
|
12979
|
-
DataSetIdentifier: str
|
12980
13141
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
12981
13142
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
12982
|
-
ChartConfiguration: NotRequired[
|
13143
|
+
ChartConfiguration: NotRequired[ComboChartConfigurationUnionTypeDef]
|
12983
13144
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
13145
|
+
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
12984
13146
|
VisualContentAltText: NotRequired[str]
|
12985
13147
|
|
12986
|
-
class EmptyVisualTypeDef(TypedDict):
|
12987
|
-
VisualId: str
|
12988
|
-
DataSetIdentifier: str
|
12989
|
-
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
12990
|
-
|
12991
13148
|
class FunnelChartVisualTypeDef(TypedDict):
|
12992
13149
|
VisualId: str
|
12993
13150
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
@@ -13048,7 +13205,7 @@ class KPIVisualTypeDef(TypedDict):
|
|
13048
13205
|
ChartConfiguration: NotRequired[KPIConfigurationUnionTypeDef]
|
13049
13206
|
ConditionalFormatting: NotRequired[KPIConditionalFormattingUnionTypeDef]
|
13050
13207
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
13051
|
-
ColumnHierarchies: NotRequired[Sequence[
|
13208
|
+
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
13052
13209
|
VisualContentAltText: NotRequired[str]
|
13053
13210
|
|
13054
13211
|
class LineChartVisualTypeDef(TypedDict):
|
@@ -13066,15 +13223,6 @@ class PieChartVisualTypeDef(TypedDict):
|
|
13066
13223
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
13067
13224
|
ChartConfiguration: NotRequired[PieChartConfigurationUnionTypeDef]
|
13068
13225
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
13069
|
-
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyUnionTypeDef]]
|
13070
|
-
VisualContentAltText: NotRequired[str]
|
13071
|
-
|
13072
|
-
class RadarChartVisualTypeDef(TypedDict):
|
13073
|
-
VisualId: str
|
13074
|
-
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
13075
|
-
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
13076
|
-
ChartConfiguration: NotRequired[RadarChartConfigurationUnionTypeDef]
|
13077
|
-
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
13078
13226
|
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyTypeDef]]
|
13079
13227
|
VisualContentAltText: NotRequired[str]
|
13080
13228
|
|
@@ -13112,7 +13260,7 @@ class WaterfallVisualTypeDef(TypedDict):
|
|
13112
13260
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
13113
13261
|
ChartConfiguration: NotRequired[WaterfallChartConfigurationUnionTypeDef]
|
13114
13262
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
13115
|
-
ColumnHierarchies: NotRequired[Sequence[
|
13263
|
+
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyUnionTypeDef]]
|
13116
13264
|
VisualContentAltText: NotRequired[str]
|
13117
13265
|
|
13118
13266
|
class WordCloudVisualTypeDef(TypedDict):
|
@@ -13121,7 +13269,7 @@ class WordCloudVisualTypeDef(TypedDict):
|
|
13121
13269
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
13122
13270
|
ChartConfiguration: NotRequired[WordCloudChartConfigurationUnionTypeDef]
|
13123
13271
|
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
13124
|
-
ColumnHierarchies: NotRequired[Sequence[
|
13272
|
+
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyUnionTypeDef]]
|
13125
13273
|
VisualContentAltText: NotRequired[str]
|
13126
13274
|
|
13127
13275
|
class BatchCreateTopicReviewedAnswerRequestRequestTypeDef(TypedDict):
|
@@ -13205,12 +13353,9 @@ class GeospatialLayerItemTypeDef(TypedDict):
|
|
13205
13353
|
JoinDefinition: NotRequired[GeospatialLayerJoinDefinitionUnionTypeDef]
|
13206
13354
|
Actions: NotRequired[Sequence[LayerCustomActionUnionTypeDef]]
|
13207
13355
|
|
13356
|
+
BarChartVisualUnionTypeDef = Union[BarChartVisualTypeDef, BarChartVisualOutputTypeDef]
|
13208
13357
|
BoxPlotVisualUnionTypeDef = Union[BoxPlotVisualTypeDef, BoxPlotVisualOutputTypeDef]
|
13209
13358
|
ComboChartVisualUnionTypeDef = Union[ComboChartVisualTypeDef, ComboChartVisualOutputTypeDef]
|
13210
|
-
CustomContentVisualUnionTypeDef = Union[
|
13211
|
-
CustomContentVisualTypeDef, CustomContentVisualOutputTypeDef
|
13212
|
-
]
|
13213
|
-
EmptyVisualUnionTypeDef = Union[EmptyVisualTypeDef, EmptyVisualOutputTypeDef]
|
13214
13359
|
FunnelChartVisualUnionTypeDef = Union[FunnelChartVisualTypeDef, FunnelChartVisualOutputTypeDef]
|
13215
13360
|
GaugeChartVisualUnionTypeDef = Union[GaugeChartVisualTypeDef, GaugeChartVisualOutputTypeDef]
|
13216
13361
|
GeospatialMapVisualUnionTypeDef = Union[
|
@@ -13222,18 +13367,31 @@ InsightVisualUnionTypeDef = Union[InsightVisualTypeDef, InsightVisualOutputTypeD
|
|
13222
13367
|
KPIVisualUnionTypeDef = Union[KPIVisualTypeDef, KPIVisualOutputTypeDef]
|
13223
13368
|
LineChartVisualUnionTypeDef = Union[LineChartVisualTypeDef, LineChartVisualOutputTypeDef]
|
13224
13369
|
PieChartVisualUnionTypeDef = Union[PieChartVisualTypeDef, PieChartVisualOutputTypeDef]
|
13225
|
-
RadarChartVisualUnionTypeDef = Union[RadarChartVisualTypeDef, RadarChartVisualOutputTypeDef]
|
13226
13370
|
SankeyDiagramVisualUnionTypeDef = Union[
|
13227
13371
|
SankeyDiagramVisualTypeDef, SankeyDiagramVisualOutputTypeDef
|
13228
13372
|
]
|
13229
13373
|
ScatterPlotVisualUnionTypeDef = Union[ScatterPlotVisualTypeDef, ScatterPlotVisualOutputTypeDef]
|
13230
13374
|
TreeMapVisualUnionTypeDef = Union[TreeMapVisualTypeDef, TreeMapVisualOutputTypeDef]
|
13231
13375
|
|
13232
|
-
class
|
13376
|
+
class CustomContentVisualTypeDef(TypedDict):
|
13233
13377
|
VisualId: str
|
13378
|
+
DataSetIdentifier: str
|
13234
13379
|
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
13235
13380
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
13236
|
-
ChartConfiguration: NotRequired[
|
13381
|
+
ChartConfiguration: NotRequired[CustomContentConfigurationTypeDef]
|
13382
|
+
Actions: NotRequired[Sequence[VisualCustomActionUnionTypeDef]]
|
13383
|
+
VisualContentAltText: NotRequired[str]
|
13384
|
+
|
13385
|
+
class EmptyVisualTypeDef(TypedDict):
|
13386
|
+
VisualId: str
|
13387
|
+
DataSetIdentifier: str
|
13388
|
+
Actions: NotRequired[Sequence[VisualCustomActionUnionTypeDef]]
|
13389
|
+
|
13390
|
+
class RadarChartVisualTypeDef(TypedDict):
|
13391
|
+
VisualId: str
|
13392
|
+
Title: NotRequired[VisualTitleLabelOptionsTypeDef]
|
13393
|
+
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
13394
|
+
ChartConfiguration: NotRequired[RadarChartConfigurationUnionTypeDef]
|
13237
13395
|
Actions: NotRequired[Sequence[VisualCustomActionUnionTypeDef]]
|
13238
13396
|
ColumnHierarchies: NotRequired[Sequence[ColumnHierarchyUnionTypeDef]]
|
13239
13397
|
VisualContentAltText: NotRequired[str]
|
@@ -13258,7 +13416,7 @@ class PivotTableVisualTypeDef(TypedDict):
|
|
13258
13416
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
13259
13417
|
ChartConfiguration: NotRequired[PivotTableConfigurationUnionTypeDef]
|
13260
13418
|
ConditionalFormatting: NotRequired[PivotTableConditionalFormattingUnionTypeDef]
|
13261
|
-
Actions: NotRequired[Sequence[
|
13419
|
+
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
13262
13420
|
VisualContentAltText: NotRequired[str]
|
13263
13421
|
|
13264
13422
|
class TableVisualTypeDef(TypedDict):
|
@@ -13267,7 +13425,7 @@ class TableVisualTypeDef(TypedDict):
|
|
13267
13425
|
Subtitle: NotRequired[VisualSubtitleLabelOptionsTypeDef]
|
13268
13426
|
ChartConfiguration: NotRequired[TableConfigurationUnionTypeDef]
|
13269
13427
|
ConditionalFormatting: NotRequired[TableConditionalFormattingUnionTypeDef]
|
13270
|
-
Actions: NotRequired[Sequence[
|
13428
|
+
Actions: NotRequired[Sequence[VisualCustomActionTypeDef]]
|
13271
13429
|
VisualContentAltText: NotRequired[str]
|
13272
13430
|
|
13273
13431
|
class DescribeAnalysisDefinitionResponseTypeDef(TypedDict):
|
@@ -13311,7 +13469,11 @@ SheetImageUnionTypeDef = Union[SheetImageTypeDef, SheetImageOutputTypeDef]
|
|
13311
13469
|
GeospatialLayerItemUnionTypeDef = Union[
|
13312
13470
|
GeospatialLayerItemTypeDef, GeospatialLayerItemOutputTypeDef
|
13313
13471
|
]
|
13314
|
-
|
13472
|
+
CustomContentVisualUnionTypeDef = Union[
|
13473
|
+
CustomContentVisualTypeDef, CustomContentVisualOutputTypeDef
|
13474
|
+
]
|
13475
|
+
EmptyVisualUnionTypeDef = Union[EmptyVisualTypeDef, EmptyVisualOutputTypeDef]
|
13476
|
+
RadarChartVisualUnionTypeDef = Union[RadarChartVisualTypeDef, RadarChartVisualOutputTypeDef]
|
13315
13477
|
|
13316
13478
|
class FilterTypeDef(TypedDict):
|
13317
13479
|
CategoryFilter: NotRequired[CategoryFilterUnionTypeDef]
|