Type annotations for boto3.QuickSight 1.28.12 service generated with mypy-boto3-builder 7.15.2
Project description
mypy-boto3-quicksight
Type annotations for boto3.QuickSight 1.28.12 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.
Generated by mypy-boto3-builder 7.15.2.
More information can be found on boto3-stubs page and in mypy-boto3-quicksight docs.
See how it helps to find and fix potential bugs:
- mypy-boto3-quicksight
How to install
VSCode extension
Add
AWS Boto3
extension to your VSCode and run AWS boto3: Quick Start
command.
Click Modify
and select boto3 common
and QuickSight
.
From PyPI with pip
Install boto3-stubs
for QuickSight
service.
# install with boto3 type annotations
python -m pip install 'boto3-stubs[quicksight]'
# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'boto3-stubs-lite[quicksight]'
# standalone installation
python -m pip install mypy-boto3-quicksight
How to uninstall
python -m pip uninstall -y mypy-boto3-quicksight
Usage
VSCode
- Install Python extension
- Install Pylance extension
- Set
Pylance
as your Python Language Server - Install
boto3-stubs[quicksight]
in your environment:
python -m pip install 'boto3-stubs[quicksight]'
Both type checking and code completion should now work. No explicit type
annotations required, write your boto3
code as usual.
PyCharm
Install boto3-stubs-lite[quicksight]
in your environment:
python -m pip install 'boto3-stubs-lite[quicksight]'`
Both type checking and code completion should now work. Explicit type annotations are required.
Use boto3-stubs
package instead for implicit type discovery.
Emacs
- Install
boto3-stubs
with services you use in your environment:
python -m pip install 'boto3-stubs[quicksight]'
- Install use-package, lsp, company and flycheck packages
- Install lsp-pyright package
(use-package lsp-pyright
:ensure t
:hook (python-mode . (lambda ()
(require 'lsp-pyright)
(lsp))) ; or lsp-deferred
:init (when (executable-find "python3")
(setq lsp-pyright-python-executable-cmd "python3"))
)
- Make sure emacs uses the environment where you have installed
boto3-stubs
Type checking should now work. No explicit type annotations required, write
your boto3
code as usual.
Sublime Text
- Install
boto3-stubs[quicksight]
with services you use in your environment:
python -m pip install 'boto3-stubs[quicksight]'
- Install LSP-pyright package
Type checking should now work. No explicit type annotations required, write
your boto3
code as usual.
Other IDEs
Not tested, but as long as your IDE supports mypy
or pyright
, everything
should work.
mypy
- Install
mypy
:python -m pip install mypy
- Install
boto3-stubs[quicksight]
in your environment:
python -m pip install 'boto3-stubs[quicksight]'`
Type checking should now work. No explicit type annotations required, write
your boto3
code as usual.
pyright
- Install
pyright
:npm i -g pyright
- Install
boto3-stubs[quicksight]
in your environment:
python -m pip install 'boto3-stubs[quicksight]'
Optionally, you can install boto3-stubs
to typings
folder.
Type checking should now work. No explicit type annotations required, write
your boto3
code as usual.
Explicit type annotations
Client annotations
QuickSightClient
provides annotations for boto3.client("quicksight")
.
from boto3.session import Session
from mypy_boto3_quicksight import QuickSightClient
client: QuickSightClient = Session().client("quicksight")
# now client usage is checked by mypy and IDE should provide code completion
Paginators annotations
mypy_boto3_quicksight.paginator
module contains type annotations for all
paginators.
from boto3.session import Session
from mypy_boto3_quicksight import QuickSightClient
from mypy_boto3_quicksight.paginator import (
ListAnalysesPaginator,
ListAssetBundleExportJobsPaginator,
ListAssetBundleImportJobsPaginator,
ListDashboardVersionsPaginator,
ListDashboardsPaginator,
ListDataSetsPaginator,
ListDataSourcesPaginator,
ListGroupMembershipsPaginator,
ListGroupsPaginator,
ListIAMPolicyAssignmentsPaginator,
ListIAMPolicyAssignmentsForUserPaginator,
ListIngestionsPaginator,
ListNamespacesPaginator,
ListTemplateAliasesPaginator,
ListTemplateVersionsPaginator,
ListTemplatesPaginator,
ListThemeVersionsPaginator,
ListThemesPaginator,
ListUserGroupsPaginator,
ListUsersPaginator,
SearchAnalysesPaginator,
SearchDashboardsPaginator,
SearchDataSetsPaginator,
SearchDataSourcesPaginator,
SearchGroupsPaginator,
)
client: QuickSightClient = Session().client("quicksight")
# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
list_analyses_paginator: ListAnalysesPaginator = client.get_paginator("list_analyses")
list_asset_bundle_export_jobs_paginator: ListAssetBundleExportJobsPaginator = client.get_paginator(
"list_asset_bundle_export_jobs"
)
list_asset_bundle_import_jobs_paginator: ListAssetBundleImportJobsPaginator = client.get_paginator(
"list_asset_bundle_import_jobs"
)
list_dashboard_versions_paginator: ListDashboardVersionsPaginator = client.get_paginator(
"list_dashboard_versions"
)
list_dashboards_paginator: ListDashboardsPaginator = client.get_paginator("list_dashboards")
list_data_sets_paginator: ListDataSetsPaginator = client.get_paginator("list_data_sets")
list_data_sources_paginator: ListDataSourcesPaginator = client.get_paginator("list_data_sources")
list_group_memberships_paginator: ListGroupMembershipsPaginator = client.get_paginator(
"list_group_memberships"
)
list_groups_paginator: ListGroupsPaginator = client.get_paginator("list_groups")
list_iam_policy_assignments_paginator: ListIAMPolicyAssignmentsPaginator = client.get_paginator(
"list_iam_policy_assignments"
)
list_iam_policy_assignments_for_user_paginator: ListIAMPolicyAssignmentsForUserPaginator = (
client.get_paginator("list_iam_policy_assignments_for_user")
)
list_ingestions_paginator: ListIngestionsPaginator = client.get_paginator("list_ingestions")
list_namespaces_paginator: ListNamespacesPaginator = client.get_paginator("list_namespaces")
list_template_aliases_paginator: ListTemplateAliasesPaginator = client.get_paginator(
"list_template_aliases"
)
list_template_versions_paginator: ListTemplateVersionsPaginator = client.get_paginator(
"list_template_versions"
)
list_templates_paginator: ListTemplatesPaginator = client.get_paginator("list_templates")
list_theme_versions_paginator: ListThemeVersionsPaginator = client.get_paginator(
"list_theme_versions"
)
list_themes_paginator: ListThemesPaginator = client.get_paginator("list_themes")
list_user_groups_paginator: ListUserGroupsPaginator = client.get_paginator("list_user_groups")
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
search_analyses_paginator: SearchAnalysesPaginator = client.get_paginator("search_analyses")
search_dashboards_paginator: SearchDashboardsPaginator = client.get_paginator("search_dashboards")
search_data_sets_paginator: SearchDataSetsPaginator = client.get_paginator("search_data_sets")
search_data_sources_paginator: SearchDataSourcesPaginator = client.get_paginator(
"search_data_sources"
)
search_groups_paginator: SearchGroupsPaginator = client.get_paginator("search_groups")
Literals
mypy_boto3_quicksight.literals
module contains literals extracted from shapes
that can be used in user code for type checking.
from mypy_boto3_quicksight.literals import (
AnalysisErrorTypeType,
AnalysisFilterAttributeType,
AnchorOptionType,
ArcThicknessOptionsType,
ArcThicknessType,
AssetBundleExportFormatType,
AssetBundleExportJobAnalysisPropertyToOverrideType,
AssetBundleExportJobDashboardPropertyToOverrideType,
AssetBundleExportJobDataSetPropertyToOverrideType,
AssetBundleExportJobDataSourcePropertyToOverrideType,
AssetBundleExportJobRefreshSchedulePropertyToOverrideType,
AssetBundleExportJobStatusType,
AssetBundleExportJobThemePropertyToOverrideType,
AssetBundleExportJobVPCConnectionPropertyToOverrideType,
AssetBundleImportFailureActionType,
AssetBundleImportJobStatusType,
AssignmentStatusType,
AuthenticationMethodOptionType,
AuthorSpecifiedAggregationType,
AxisBindingType,
BarChartOrientationType,
BarsArrangementType,
BaseMapStyleTypeType,
BoxPlotFillStyleType,
CategoricalAggregationFunctionType,
CategoryFilterFunctionType,
CategoryFilterMatchOperatorType,
CategoryFilterSelectAllOptionsType,
CategoryFilterTypeType,
ColorFillTypeType,
ColumnDataRoleType,
ColumnDataTypeType,
ColumnOrderingTypeType,
ColumnRoleType,
ColumnTagNameType,
ComparisonMethodType,
ConditionalFormattingIconDisplayOptionType,
ConditionalFormattingIconSetTypeType,
ConstantTypeType,
CrossDatasetTypesType,
CustomContentImageScalingConfigurationType,
CustomContentTypeType,
DashboardBehaviorType,
DashboardErrorTypeType,
DashboardFilterAttributeType,
DashboardUIStateType,
DataLabelContentType,
DataLabelOverlapType,
DataLabelPositionType,
DataSetFilterAttributeType,
DataSetImportModeType,
DataSourceErrorInfoTypeType,
DataSourceFilterAttributeType,
DataSourceTypeType,
DatasetParameterValueTypeType,
DateAggregationFunctionType,
DayOfWeekType,
DefaultAggregationType,
DisplayFormatType,
EditionType,
EmbeddingIdentityTypeType,
FileFormatType,
FilterClassType,
FilterNullOptionType,
FilterOperatorType,
FilterVisualScopeType,
FolderFilterAttributeType,
FolderTypeType,
FontDecorationType,
FontStyleType,
FontWeightNameType,
ForecastComputationSeasonalityType,
FunnelChartMeasureDataLabelStyleType,
GeoSpatialCountryCodeType,
GeoSpatialDataRoleType,
GeospatialSelectedPointStyleType,
GroupFilterAttributeType,
GroupFilterOperatorType,
HistogramBinTypeType,
HorizontalTextAlignmentType,
IconType,
IdentityStoreType,
IdentityTypeType,
IngestionErrorTypeType,
IngestionRequestSourceType,
IngestionRequestTypeType,
IngestionStatusType,
IngestionTypeType,
InputColumnDataTypeType,
JoinTypeType,
LayoutElementTypeType,
LegendPositionType,
LineChartLineStyleType,
LineChartMarkerShapeType,
LineChartTypeType,
LineInterpolationType,
ListAnalysesPaginatorName,
ListAssetBundleExportJobsPaginatorName,
ListAssetBundleImportJobsPaginatorName,
ListDashboardVersionsPaginatorName,
ListDashboardsPaginatorName,
ListDataSetsPaginatorName,
ListDataSourcesPaginatorName,
ListGroupMembershipsPaginatorName,
ListGroupsPaginatorName,
ListIAMPolicyAssignmentsForUserPaginatorName,
ListIAMPolicyAssignmentsPaginatorName,
ListIngestionsPaginatorName,
ListNamespacesPaginatorName,
ListTemplateAliasesPaginatorName,
ListTemplateVersionsPaginatorName,
ListTemplatesPaginatorName,
ListThemeVersionsPaginatorName,
ListThemesPaginatorName,
ListUserGroupsPaginatorName,
ListUsersPaginatorName,
LookbackWindowSizeUnitType,
MapZoomModeType,
MaximumMinimumComputationTypeType,
MemberTypeType,
MissingDataTreatmentOptionType,
NamedEntityAggTypeType,
NamedFilterAggTypeType,
NamedFilterTypeType,
NamespaceErrorTypeType,
NamespaceStatusType,
NegativeValueDisplayModeType,
NetworkInterfaceStatusType,
NumberScaleType,
NumericEqualityMatchOperatorType,
NumericFilterSelectAllOptionsType,
NumericSeparatorSymbolType,
OtherCategoriesType,
PanelBorderStyleType,
PaperOrientationType,
PaperSizeType,
ParameterValueTypeType,
PivotTableConditionalFormattingScopeRoleType,
PivotTableFieldCollapseStateType,
PivotTableMetricPlacementType,
PivotTableSubtotalLevelType,
PrimaryValueDisplayTypeType,
PropertyRoleType,
PropertyUsageType,
RadarChartAxesRangeScaleType,
RadarChartShapeType,
ReferenceLineLabelHorizontalPositionType,
ReferenceLineLabelVerticalPositionType,
ReferenceLinePatternTypeType,
ReferenceLineValueLabelRelativePositionType,
RefreshIntervalType,
RelativeDateTypeType,
RelativeFontSizeType,
ResizeOptionType,
ResourceStatusType,
RowLevelPermissionFormatVersionType,
RowLevelPermissionPolicyType,
SearchAnalysesPaginatorName,
SearchDashboardsPaginatorName,
SearchDataSetsPaginatorName,
SearchDataSourcesPaginatorName,
SearchGroupsPaginatorName,
SectionPageBreakStatusType,
SelectAllValueOptionsType,
SelectedFieldOptionsType,
SelectedTooltipTypeType,
SheetContentTypeType,
SheetControlDateTimePickerTypeType,
SheetControlListTypeType,
SheetControlSliderTypeType,
SimpleAttributeAggregationFunctionType,
SimpleNumericalAggregationFunctionType,
SmallMultiplesAxisPlacementType,
SmallMultiplesAxisScaleType,
SnapshotFileFormatTypeType,
SnapshotFileSheetSelectionScopeType,
SnapshotJobStatusType,
SortDirectionType,
SpecialValueType,
StatusType,
TableBorderStyleType,
TableCellImageScalingConfigurationType,
TableFieldIconSetTypeType,
TableOrientationType,
TableTotalsPlacementType,
TableTotalsScrollStatusType,
TargetVisualOptionsType,
TemplateErrorTypeType,
TextQualifierType,
TextWrapType,
ThemeErrorTypeType,
ThemeTypeType,
TimeGranularityType,
TooltipTitleTypeType,
TopBottomComputationTypeType,
TopBottomSortOrderType,
TopicNumericSeparatorSymbolType,
TopicRefreshStatusType,
TopicRelativeDateFilterFunctionType,
TopicScheduleTypeType,
TopicTimeGranularityType,
URLTargetConfigurationType,
UndefinedSpecifiedValueTypeType,
UserRoleType,
VPCConnectionAvailabilityStatusType,
VPCConnectionResourceStatusType,
ValueWhenUnsetOptionType,
VerticalTextAlignmentType,
VisibilityType,
VisualCustomActionTriggerType,
WidgetStatusType,
WordCloudCloudLayoutType,
WordCloudWordCasingType,
WordCloudWordOrientationType,
WordCloudWordPaddingType,
WordCloudWordScalingType,
QuickSightServiceName,
ServiceName,
ResourceServiceName,
PaginatorName,
RegionName,
)
def check_value(value: AnalysisErrorTypeType) -> bool:
...
Typed dictionaries
mypy_boto3_quicksight.type_defs
module contains structures and shapes
assembled to typed dictionaries for additional type checking.
from mypy_boto3_quicksight.type_defs import (
AccountCustomizationOutputTypeDef,
AccountCustomizationTypeDef,
AccountInfoTypeDef,
AccountSettingsTypeDef,
ActiveIAMPolicyAssignmentTypeDef,
AdHocFilteringOptionOutputTypeDef,
AdHocFilteringOptionTypeDef,
AttributeAggregationFunctionOutputTypeDef,
AttributeAggregationFunctionTypeDef,
ColumnIdentifierOutputTypeDef,
ColumnIdentifierTypeDef,
AmazonElasticsearchParametersOutputTypeDef,
AmazonElasticsearchParametersTypeDef,
AmazonOpenSearchParametersOutputTypeDef,
AmazonOpenSearchParametersTypeDef,
CalculatedFieldOutputTypeDef,
DataSetIdentifierDeclarationOutputTypeDef,
CalculatedFieldTypeDef,
DataSetIdentifierDeclarationTypeDef,
EntityTypeDef,
AnalysisSearchFilterTypeDef,
DataSetReferenceTypeDef,
AnalysisSummaryTypeDef,
SheetTypeDef,
AnchorDateConfigurationOutputTypeDef,
AnchorDateConfigurationTypeDef,
AnonymousUserDashboardEmbeddingConfigurationTypeDef,
DashboardVisualIdTypeDef,
AnonymousUserQSearchBarEmbeddingConfigurationTypeDef,
ArcAxisDisplayRangeOutputTypeDef,
ArcAxisDisplayRangeTypeDef,
ArcConfigurationOutputTypeDef,
ArcConfigurationTypeDef,
ArcOptionsOutputTypeDef,
ArcOptionsTypeDef,
AssetBundleExportJobAnalysisOverridePropertiesOutputTypeDef,
AssetBundleExportJobDashboardOverridePropertiesOutputTypeDef,
AssetBundleExportJobDataSetOverridePropertiesOutputTypeDef,
AssetBundleExportJobDataSourceOverridePropertiesOutputTypeDef,
AssetBundleExportJobRefreshScheduleOverridePropertiesOutputTypeDef,
AssetBundleExportJobResourceIdOverrideConfigurationOutputTypeDef,
AssetBundleExportJobThemeOverridePropertiesOutputTypeDef,
AssetBundleExportJobVPCConnectionOverridePropertiesOutputTypeDef,
AssetBundleExportJobAnalysisOverridePropertiesTypeDef,
AssetBundleExportJobDashboardOverridePropertiesTypeDef,
AssetBundleExportJobDataSetOverridePropertiesTypeDef,
AssetBundleExportJobDataSourceOverridePropertiesTypeDef,
AssetBundleExportJobRefreshScheduleOverridePropertiesTypeDef,
AssetBundleExportJobResourceIdOverrideConfigurationTypeDef,
AssetBundleExportJobThemeOverridePropertiesTypeDef,
AssetBundleExportJobVPCConnectionOverridePropertiesTypeDef,
AssetBundleExportJobErrorTypeDef,
AssetBundleExportJobSummaryTypeDef,
AssetBundleImportJobAnalysisOverrideParametersOutputTypeDef,
AssetBundleImportJobAnalysisOverrideParametersTypeDef,
AssetBundleImportJobDashboardOverrideParametersOutputTypeDef,
AssetBundleImportJobDashboardOverrideParametersTypeDef,
AssetBundleImportJobDataSetOverrideParametersOutputTypeDef,
AssetBundleImportJobDataSetOverrideParametersTypeDef,
AssetBundleImportJobDataSourceCredentialPairOutputTypeDef,
AssetBundleImportJobDataSourceCredentialPairTypeDef,
SslPropertiesOutputTypeDef,
VpcConnectionPropertiesOutputTypeDef,
SslPropertiesTypeDef,
VpcConnectionPropertiesTypeDef,
AssetBundleImportJobErrorTypeDef,
AssetBundleImportJobRefreshScheduleOverrideParametersOutputTypeDef,
AssetBundleImportJobResourceIdOverrideConfigurationOutputTypeDef,
AssetBundleImportJobThemeOverrideParametersOutputTypeDef,
AssetBundleImportJobVPCConnectionOverrideParametersOutputTypeDef,
AssetBundleImportJobRefreshScheduleOverrideParametersTypeDef,
AssetBundleImportJobResourceIdOverrideConfigurationTypeDef,
AssetBundleImportJobThemeOverrideParametersTypeDef,
AssetBundleImportJobVPCConnectionOverrideParametersTypeDef,
AssetBundleImportJobSummaryTypeDef,
AssetBundleImportSourceDescriptionTypeDef,
AssetBundleImportSourceTypeDef,
AthenaParametersOutputTypeDef,
AthenaParametersTypeDef,
AuroraParametersOutputTypeDef,
AuroraParametersTypeDef,
AuroraPostgreSqlParametersOutputTypeDef,
AuroraPostgreSqlParametersTypeDef,
AwsIotAnalyticsParametersOutputTypeDef,
AwsIotAnalyticsParametersTypeDef,
DateAxisOptionsOutputTypeDef,
DateAxisOptionsTypeDef,
AxisDisplayMinMaxRangeOutputTypeDef,
AxisDisplayMinMaxRangeTypeDef,
AxisLinearScaleOutputTypeDef,
AxisLinearScaleTypeDef,
AxisLogarithmicScaleOutputTypeDef,
AxisLogarithmicScaleTypeDef,
ItemsLimitConfigurationOutputTypeDef,
ItemsLimitConfigurationTypeDef,
BinCountOptionsOutputTypeDef,
BinCountOptionsTypeDef,
BinWidthOptionsOutputTypeDef,
BinWidthOptionsTypeDef,
BookmarksConfigurationsTypeDef,
BorderStyleOutputTypeDef,
BorderStyleTypeDef,
BoxPlotStyleOptionsOutputTypeDef,
BoxPlotStyleOptionsTypeDef,
PaginationConfigurationOutputTypeDef,
PaginationConfigurationTypeDef,
CalculatedColumnOutputTypeDef,
CalculatedColumnTypeDef,
CalculatedMeasureFieldOutputTypeDef,
CalculatedMeasureFieldTypeDef,
CancelIngestionRequestRequestTypeDef,
ResponseMetadataTypeDef,
CastColumnTypeOperationOutputTypeDef,
CastColumnTypeOperationTypeDef,
CustomFilterConfigurationOutputTypeDef,
CustomFilterListConfigurationOutputTypeDef,
FilterListConfigurationOutputTypeDef,
CustomFilterConfigurationTypeDef,
CustomFilterListConfigurationTypeDef,
FilterListConfigurationTypeDef,
CellValueSynonymOutputTypeDef,
CellValueSynonymTypeDef,
SimpleClusterMarkerOutputTypeDef,
SimpleClusterMarkerTypeDef,
CollectiveConstantOutputTypeDef,
CollectiveConstantTypeDef,
DataColorOutputTypeDef,
DataColorTypeDef,
CustomColorOutputTypeDef,
CustomColorTypeDef,
ColumnDescriptionOutputTypeDef,
ColumnDescriptionTypeDef,
ColumnGroupColumnSchemaOutputTypeDef,
ColumnGroupColumnSchemaTypeDef,
GeoSpatialColumnGroupOutputTypeDef,
GeoSpatialColumnGroupTypeDef,
ColumnLevelPermissionRuleOutputTypeDef,
ColumnLevelPermissionRuleTypeDef,
ColumnSchemaOutputTypeDef,
ColumnSchemaTypeDef,
ComparativeOrderOutputTypeDef,
ComparativeOrderTypeDef,
ConditionalFormattingSolidColorOutputTypeDef,
ConditionalFormattingSolidColorTypeDef,
ConditionalFormattingCustomIconOptionsOutputTypeDef,
ConditionalFormattingIconDisplayConfigurationOutputTypeDef,
ConditionalFormattingCustomIconOptionsTypeDef,
ConditionalFormattingIconDisplayConfigurationTypeDef,
ConditionalFormattingIconSetOutputTypeDef,
ConditionalFormattingIconSetTypeDef,
TagTypeDef,
CreateAccountSubscriptionRequestRequestTypeDef,
SignupResponseTypeDef,
ResourcePermissionTypeDef,
DataSetUsageConfigurationTypeDef,
FieldFolderTypeDef,
RowLevelPermissionDataSetTypeDef,
CreateFolderMembershipRequestRequestTypeDef,
FolderMemberTypeDef,
CreateGroupMembershipRequestRequestTypeDef,
GroupMemberTypeDef,
CreateGroupRequestRequestTypeDef,
GroupTypeDef,
CreateIAMPolicyAssignmentRequestRequestTypeDef,
CreateIngestionRequestRequestTypeDef,
CreateTemplateAliasRequestRequestTypeDef,
TemplateAliasTypeDef,
CreateThemeAliasRequestRequestTypeDef,
ThemeAliasTypeDef,
TopicRefreshScheduleTypeDef,
DecimalPlacesConfigurationOutputTypeDef,
NegativeValueConfigurationOutputTypeDef,
NullValueFormatConfigurationOutputTypeDef,
DecimalPlacesConfigurationTypeDef,
NegativeValueConfigurationTypeDef,
NullValueFormatConfigurationTypeDef,
LocalNavigationConfigurationOutputTypeDef,
LocalNavigationConfigurationTypeDef,
CustomActionURLOperationOutputTypeDef,
CustomActionURLOperationTypeDef,
CustomContentConfigurationOutputTypeDef,
CustomContentConfigurationTypeDef,
CustomNarrativeOptionsOutputTypeDef,
CustomNarrativeOptionsTypeDef,
CustomParameterValuesOutputTypeDef,
CustomParameterValuesTypeDef,
InputColumnOutputTypeDef,
InputColumnTypeDef,
DataPointDrillUpDownOptionOutputTypeDef,
DataPointMenuLabelOptionOutputTypeDef,
DataPointTooltipOptionOutputTypeDef,
ExportToCSVOptionOutputTypeDef,
ExportWithHiddenFieldsOptionOutputTypeDef,
SheetControlsOptionOutputTypeDef,
SheetLayoutElementMaximizationOptionOutputTypeDef,
VisualAxisSortOptionOutputTypeDef,
VisualMenuOptionOutputTypeDef,
DataPointDrillUpDownOptionTypeDef,
DataPointMenuLabelOptionTypeDef,
DataPointTooltipOptionTypeDef,
ExportToCSVOptionTypeDef,
ExportWithHiddenFieldsOptionTypeDef,
SheetControlsOptionTypeDef,
SheetLayoutElementMaximizationOptionTypeDef,
VisualAxisSortOptionTypeDef,
VisualMenuOptionTypeDef,
DashboardSearchFilterTypeDef,
DashboardSummaryTypeDef,
DashboardVersionSummaryTypeDef,
ExportHiddenFieldsOptionOutputTypeDef,
ExportHiddenFieldsOptionTypeDef,
DataAggregationOutputTypeDef,
DataAggregationTypeDef,
DataBarsOptionsOutputTypeDef,
DataBarsOptionsTypeDef,
DataColorPaletteOutputTypeDef,
DataColorPaletteTypeDef,
DataPathLabelTypeOutputTypeDef,
FieldLabelTypeOutputTypeDef,
MaximumLabelTypeOutputTypeDef,
MinimumLabelTypeOutputTypeDef,
RangeEndsLabelTypeOutputTypeDef,
DataPathLabelTypeTypeDef,
FieldLabelTypeTypeDef,
MaximumLabelTypeTypeDef,
MinimumLabelTypeTypeDef,
RangeEndsLabelTypeTypeDef,
DataPathValueOutputTypeDef,
DataPathValueTypeDef,
DataSetSearchFilterTypeDef,
RowLevelPermissionDataSetOutputTypeDef,
DataSetUsageConfigurationOutputTypeDef,
FieldFolderOutputTypeDef,
OutputColumnTypeDef,
DataSourceErrorInfoTypeDef,
DatabricksParametersOutputTypeDef,
ExasolParametersOutputTypeDef,
JiraParametersOutputTypeDef,
MariaDbParametersOutputTypeDef,
MySqlParametersOutputTypeDef,
OracleParametersOutputTypeDef,
PostgreSqlParametersOutputTypeDef,
PrestoParametersOutputTypeDef,
RdsParametersOutputTypeDef,
RedshiftParametersOutputTypeDef,
ServiceNowParametersOutputTypeDef,
SnowflakeParametersOutputTypeDef,
SparkParametersOutputTypeDef,
SqlServerParametersOutputTypeDef,
TeradataParametersOutputTypeDef,
TwitterParametersOutputTypeDef,
DatabricksParametersTypeDef,
ExasolParametersTypeDef,
JiraParametersTypeDef,
MariaDbParametersTypeDef,
MySqlParametersTypeDef,
OracleParametersTypeDef,
PostgreSqlParametersTypeDef,
PrestoParametersTypeDef,
RdsParametersTypeDef,
RedshiftParametersTypeDef,
ServiceNowParametersTypeDef,
SnowflakeParametersTypeDef,
SparkParametersTypeDef,
SqlServerParametersTypeDef,
TeradataParametersTypeDef,
TwitterParametersTypeDef,
DataSourceSearchFilterTypeDef,
DataSourceSummaryTypeDef,
DateTimeDatasetParameterDefaultValuesOutputTypeDef,
DateTimeDatasetParameterDefaultValuesTypeDef,
RollingDateConfigurationOutputTypeDef,
RollingDateConfigurationTypeDef,
DateTimeValueWhenUnsetConfigurationOutputTypeDef,
MappedDataSetParameterOutputTypeDef,
DateTimeValueWhenUnsetConfigurationTypeDef,
MappedDataSetParameterTypeDef,
DateTimeParameterOutputTypeDef,
DateTimeParameterTypeDef,
SheetControlInfoIconLabelOptionsOutputTypeDef,
SheetControlInfoIconLabelOptionsTypeDef,
DecimalDatasetParameterDefaultValuesOutputTypeDef,
DecimalDatasetParameterDefaultValuesTypeDef,
DecimalValueWhenUnsetConfigurationOutputTypeDef,
DecimalValueWhenUnsetConfigurationTypeDef,
DecimalParameterOutputTypeDef,
DecimalParameterTypeDef,
DeleteAccountCustomizationRequestRequestTypeDef,
DeleteAccountSubscriptionRequestRequestTypeDef,
DeleteAnalysisRequestRequestTypeDef,
DeleteDashboardRequestRequestTypeDef,
DeleteDataSetRefreshPropertiesRequestRequestTypeDef,
DeleteDataSetRequestRequestTypeDef,
DeleteDataSourceRequestRequestTypeDef,
DeleteFolderMembershipRequestRequestTypeDef,
DeleteFolderRequestRequestTypeDef,
DeleteGroupMembershipRequestRequestTypeDef,
DeleteGroupRequestRequestTypeDef,
DeleteIAMPolicyAssignmentRequestRequestTypeDef,
DeleteNamespaceRequestRequestTypeDef,
DeleteRefreshScheduleRequestRequestTypeDef,
DeleteTemplateAliasRequestRequestTypeDef,
DeleteTemplateRequestRequestTypeDef,
DeleteThemeAliasRequestRequestTypeDef,
DeleteThemeRequestRequestTypeDef,
DeleteTopicRefreshScheduleRequestRequestTypeDef,
DeleteTopicRequestRequestTypeDef,
DeleteUserByPrincipalIdRequestRequestTypeDef,
DeleteUserRequestRequestTypeDef,
DeleteVPCConnectionRequestRequestTypeDef,
DescribeAccountCustomizationRequestRequestTypeDef,
DescribeAccountSettingsRequestRequestTypeDef,
DescribeAccountSubscriptionRequestRequestTypeDef,
DescribeAnalysisDefinitionRequestRequestTypeDef,
DescribeAnalysisPermissionsRequestRequestTypeDef,
ResourcePermissionOutputTypeDef,
DescribeAnalysisRequestRequestTypeDef,
DescribeAssetBundleExportJobRequestRequestTypeDef,
DescribeAssetBundleImportJobRequestRequestTypeDef,
DescribeDashboardDefinitionRequestRequestTypeDef,
DescribeDashboardPermissionsRequestRequestTypeDef,
DescribeDashboardRequestRequestTypeDef,
DescribeDashboardSnapshotJobRequestRequestTypeDef,
DescribeDashboardSnapshotJobResultRequestRequestTypeDef,
SnapshotJobErrorInfoTypeDef,
DescribeDataSetPermissionsRequestRequestTypeDef,
DescribeDataSetRefreshPropertiesRequestRequestTypeDef,
DescribeDataSetRequestRequestTypeDef,
DescribeDataSourcePermissionsRequestRequestTypeDef,
DescribeDataSourceRequestRequestTypeDef,
DescribeFolderPermissionsRequestRequestTypeDef,
DescribeFolderRequestRequestTypeDef,
DescribeFolderResolvedPermissionsRequestRequestTypeDef,
FolderTypeDef,
DescribeGroupMembershipRequestRequestTypeDef,
DescribeGroupRequestRequestTypeDef,
DescribeIAMPolicyAssignmentRequestRequestTypeDef,
IAMPolicyAssignmentTypeDef,
DescribeIngestionRequestRequestTypeDef,
DescribeIpRestrictionRequestRequestTypeDef,
DescribeNamespaceRequestRequestTypeDef,
DescribeRefreshScheduleRequestRequestTypeDef,
DescribeTemplateAliasRequestRequestTypeDef,
DescribeTemplateDefinitionRequestRequestTypeDef,
DescribeTemplatePermissionsRequestRequestTypeDef,
DescribeTemplateRequestRequestTypeDef,
DescribeThemeAliasRequestRequestTypeDef,
DescribeThemePermissionsRequestRequestTypeDef,
DescribeThemeRequestRequestTypeDef,
DescribeTopicPermissionsRequestRequestTypeDef,
DescribeTopicRefreshRequestRequestTypeDef,
TopicRefreshDetailsTypeDef,
DescribeTopicRefreshScheduleRequestRequestTypeDef,
TopicRefreshScheduleOutputTypeDef,
DescribeTopicRequestRequestTypeDef,
DescribeUserRequestRequestTypeDef,
UserTypeDef,
DescribeVPCConnectionRequestRequestTypeDef,
NegativeFormatOutputTypeDef,
NegativeFormatTypeDef,
DonutCenterOptionsOutputTypeDef,
DonutCenterOptionsTypeDef,
ListControlSelectAllOptionsOutputTypeDef,
ListControlSelectAllOptionsTypeDef,
ErrorInfoTypeDef,
ExcludePeriodConfigurationOutputTypeDef,
ExcludePeriodConfigurationTypeDef,
FieldSortOutputTypeDef,
FieldSortTypeDef,
FieldTooltipItemOutputTypeDef,
FieldTooltipItemTypeDef,
GeospatialMapStyleOptionsOutputTypeDef,
GeospatialMapStyleOptionsTypeDef,
FilterSelectableValuesOutputTypeDef,
FilterSelectableValuesTypeDef,
FilterOperationOutputTypeDef,
SameSheetTargetVisualConfigurationOutputTypeDef,
SameSheetTargetVisualConfigurationTypeDef,
FilterOperationTypeDef,
FolderSearchFilterTypeDef,
FolderSummaryTypeDef,
FontSizeOutputTypeDef,
FontWeightOutputTypeDef,
FontSizeTypeDef,
FontWeightTypeDef,
FontOutputTypeDef,
FontTypeDef,
TimeBasedForecastPropertiesOutputTypeDef,
TimeBasedForecastPropertiesTypeDef,
WhatIfPointScenarioOutputTypeDef,
WhatIfRangeScenarioOutputTypeDef,
WhatIfPointScenarioTypeDef,
WhatIfRangeScenarioTypeDef,
FreeFormLayoutScreenCanvasSizeOptionsOutputTypeDef,
FreeFormLayoutScreenCanvasSizeOptionsTypeDef,
FreeFormLayoutElementBackgroundStyleOutputTypeDef,
FreeFormLayoutElementBackgroundStyleTypeDef,
FreeFormLayoutElementBorderStyleOutputTypeDef,
FreeFormLayoutElementBorderStyleTypeDef,
LoadingAnimationOutputTypeDef,
LoadingAnimationTypeDef,
SessionTagTypeDef,
GeospatialCoordinateBoundsOutputTypeDef,
GeospatialCoordinateBoundsTypeDef,
GeospatialHeatmapDataColorOutputTypeDef,
GeospatialHeatmapDataColorTypeDef,
GetDashboardEmbedUrlRequestRequestTypeDef,
GetSessionEmbedUrlRequestRequestTypeDef,
TableBorderOptionsOutputTypeDef,
TableBorderOptionsTypeDef,
GradientStopOutputTypeDef,
GradientStopTypeDef,
GridLayoutScreenCanvasSizeOptionsOutputTypeDef,
GridLayoutScreenCanvasSizeOptionsTypeDef,
GridLayoutElementOutputTypeDef,
GridLayoutElementTypeDef,
GroupSearchFilterTypeDef,
GutterStyleOutputTypeDef,
GutterStyleTypeDef,
IAMPolicyAssignmentSummaryTypeDef,
LookbackWindowOutputTypeDef,
LookbackWindowTypeDef,
QueueInfoTypeDef,
RowInfoTypeDef,
IntegerDatasetParameterDefaultValuesOutputTypeDef,
IntegerDatasetParameterDefaultValuesTypeDef,
IntegerValueWhenUnsetConfigurationOutputTypeDef,
IntegerValueWhenUnsetConfigurationTypeDef,
IntegerParameterOutputTypeDef,
IntegerParameterTypeDef,
JoinKeyPropertiesOutputTypeDef,
JoinKeyPropertiesTypeDef,
ProgressBarOptionsOutputTypeDef,
SecondaryValueOptionsOutputTypeDef,
TrendArrowOptionsOutputTypeDef,
ProgressBarOptionsTypeDef,
SecondaryValueOptionsTypeDef,
TrendArrowOptionsTypeDef,
LineChartLineStyleSettingsOutputTypeDef,
LineChartMarkerStyleSettingsOutputTypeDef,
LineChartLineStyleSettingsTypeDef,
LineChartMarkerStyleSettingsTypeDef,
MissingDataConfigurationOutputTypeDef,
MissingDataConfigurationTypeDef,
PaginatorConfigTypeDef,
ListAnalysesRequestRequestTypeDef,
ListAssetBundleExportJobsRequestRequestTypeDef,
ListAssetBundleImportJobsRequestRequestTypeDef,
ListControlSearchOptionsOutputTypeDef,
ListControlSearchOptionsTypeDef,
ListDashboardVersionsRequestRequestTypeDef,
ListDashboardsRequestRequestTypeDef,
ListDataSetsRequestRequestTypeDef,
ListDataSourcesRequestRequestTypeDef,
ListFolderMembersRequestRequestTypeDef,
MemberIdArnPairTypeDef,
ListFoldersRequestRequestTypeDef,
ListGroupMembershipsRequestRequestTypeDef,
ListGroupsRequestRequestTypeDef,
ListIAMPolicyAssignmentsForUserRequestRequestTypeDef,
ListIAMPolicyAssignmentsRequestRequestTypeDef,
ListIngestionsRequestRequestTypeDef,
ListNamespacesRequestRequestTypeDef,
ListRefreshSchedulesRequestRequestTypeDef,
ListTagsForResourceRequestRequestTypeDef,
TagOutputTypeDef,
ListTemplateAliasesRequestRequestTypeDef,
ListTemplateVersionsRequestRequestTypeDef,
TemplateVersionSummaryTypeDef,
ListTemplatesRequestRequestTypeDef,
TemplateSummaryTypeDef,
ListThemeAliasesRequestRequestTypeDef,
ListThemeVersionsRequestRequestTypeDef,
ThemeVersionSummaryTypeDef,
ListThemesRequestRequestTypeDef,
ThemeSummaryTypeDef,
ListTopicRefreshSchedulesRequestRequestTypeDef,
ListTopicsRequestRequestTypeDef,
TopicSummaryTypeDef,
ListUserGroupsRequestRequestTypeDef,
ListUsersRequestRequestTypeDef,
ListVPCConnectionsRequestRequestTypeDef,
LongFormatTextOutputTypeDef,
LongFormatTextTypeDef,
ManifestFileLocationOutputTypeDef,
ManifestFileLocationTypeDef,
MarginStyleOutputTypeDef,
MarginStyleTypeDef,
NamedEntityDefinitionMetricOutputTypeDef,
NamedEntityDefinitionMetricTypeDef,
NamespaceErrorTypeDef,
NetworkInterfaceTypeDef,
NewDefaultValuesOutputTypeDef,
NewDefaultValuesTypeDef,
NumericRangeFilterValueOutputTypeDef,
NumericRangeFilterValueTypeDef,
ThousandSeparatorOptionsOutputTypeDef,
ThousandSeparatorOptionsTypeDef,
PercentileAggregationOutputTypeDef,
PercentileAggregationTypeDef,
StringParameterOutputTypeDef,
StringParameterTypeDef,
PercentVisibleRangeOutputTypeDef,
PercentVisibleRangeTypeDef,
PivotTableConditionalFormattingScopeOutputTypeDef,
PivotTableConditionalFormattingScopeTypeDef,
PivotTablePaginatedReportOptionsOutputTypeDef,
PivotTablePaginatedReportOptionsTypeDef,
PivotTableFieldOptionOutputTypeDef,
PivotTableFieldOptionTypeDef,
PivotTableFieldSubtotalOptionsOutputTypeDef,
PivotTableFieldSubtotalOptionsTypeDef,
RowAlternateColorOptionsOutputTypeDef,
RowAlternateColorOptionsTypeDef,
ProjectOperationOutputTypeDef,
ProjectOperationTypeDef,
RadarChartAreaStyleSettingsOutputTypeDef,
RadarChartAreaStyleSettingsTypeDef,
RangeConstantOutputTypeDef,
RangeConstantTypeDef,
ReferenceLineCustomLabelConfigurationOutputTypeDef,
ReferenceLineCustomLabelConfigurationTypeDef,
ReferenceLineStaticDataConfigurationOutputTypeDef,
ReferenceLineStaticDataConfigurationTypeDef,
ReferenceLineStyleConfigurationOutputTypeDef,
ReferenceLineStyleConfigurationTypeDef,
ScheduleRefreshOnEntityOutputTypeDef,
ScheduleRefreshOnEntityTypeDef,
RegisterUserRequestRequestTypeDef,
StatePersistenceConfigurationsTypeDef,
RegisteredUserQSearchBarEmbeddingConfigurationTypeDef,
RenameColumnOperationOutputTypeDef,
RenameColumnOperationTypeDef,
RestoreAnalysisRequestRequestTypeDef,
RowLevelPermissionTagRuleOutputTypeDef,
RowLevelPermissionTagRuleTypeDef,
S3BucketConfigurationOutputTypeDef,
S3BucketConfigurationTypeDef,
UploadSettingsOutputTypeDef,
UploadSettingsTypeDef,
SectionAfterPageBreakOutputTypeDef,
SectionAfterPageBreakTypeDef,
SpacingOutputTypeDef,
SpacingTypeDef,
SheetVisualScopingConfigurationOutputTypeDef,
SheetVisualScopingConfigurationTypeDef,
SemanticEntityTypeOutputTypeDef,
SemanticEntityTypeTypeDef,
SemanticTypeOutputTypeDef,
SemanticTypeTypeDef,
SheetTextBoxOutputTypeDef,
SheetTextBoxTypeDef,
SheetElementConfigurationOverridesOutputTypeDef,
SheetElementConfigurationOverridesTypeDef,
ShortFormatTextOutputTypeDef,
ShortFormatTextTypeDef,
SmallMultiplesAxisPropertiesOutputTypeDef,
SmallMultiplesAxisPropertiesTypeDef,
SnapshotAnonymousUserRedactedTypeDef,
SnapshotFileSheetSelectionOutputTypeDef,
SnapshotFileSheetSelectionTypeDef,
SnapshotJobResultErrorInfoTypeDef,
StringDatasetParameterDefaultValuesOutputTypeDef,
StringDatasetParameterDefaultValuesTypeDef,
StringValueWhenUnsetConfigurationOutputTypeDef,
StringValueWhenUnsetConfigurationTypeDef,
TableCellImageSizingConfigurationOutputTypeDef,
TableCellImageSizingConfigurationTypeDef,
TablePaginatedReportOptionsOutputTypeDef,
TablePaginatedReportOptionsTypeDef,
TableFieldCustomIconContentOutputTypeDef,
TableFieldCustomIconContentTypeDef,
TemplateSourceTemplateTypeDef,
TextControlPlaceholderOptionsOutputTypeDef,
TextControlPlaceholderOptionsTypeDef,
UIColorPaletteOutputTypeDef,
UIColorPaletteTypeDef,
ThemeErrorTypeDef,
TopicSingularFilterConstantOutputTypeDef,
TopicSingularFilterConstantTypeDef,
UntagColumnOperationOutputTypeDef,
UntagColumnOperationTypeDef,
UntagResourceRequestRequestTypeDef,
UpdateAccountSettingsRequestRequestTypeDef,
UpdateDashboardPublishedVersionRequestRequestTypeDef,
UpdateFolderRequestRequestTypeDef,
UpdateGroupRequestRequestTypeDef,
UpdateIAMPolicyAssignmentRequestRequestTypeDef,
UpdateIpRestrictionRequestRequestTypeDef,
UpdatePublicSharingSettingsRequestRequestTypeDef,
UpdateTemplateAliasRequestRequestTypeDef,
UpdateThemeAliasRequestRequestTypeDef,
UpdateUserRequestRequestTypeDef,
UpdateVPCConnectionRequestRequestTypeDef,
WaterfallChartOptionsOutputTypeDef,
WaterfallChartOptionsTypeDef,
WordCloudOptionsOutputTypeDef,
WordCloudOptionsTypeDef,
UpdateAccountCustomizationRequestRequestTypeDef,
AxisLabelReferenceOptionsOutputTypeDef,
CascadingControlSourceOutputTypeDef,
CategoryDrillDownFilterOutputTypeDef,
ContributionAnalysisDefaultOutputTypeDef,
DynamicDefaultValueOutputTypeDef,
FilterOperationSelectedFieldsConfigurationOutputTypeDef,
NumericEqualityDrillDownFilterOutputTypeDef,
ParameterSelectableValuesOutputTypeDef,
TimeEqualityFilterOutputTypeDef,
TimeRangeDrillDownFilterOutputTypeDef,
AxisLabelReferenceOptionsTypeDef,
CascadingControlSourceTypeDef,
CategoryDrillDownFilterTypeDef,
ContributionAnalysisDefaultTypeDef,
DynamicDefaultValueTypeDef,
FilterOperationSelectedFieldsConfigurationTypeDef,
NumericEqualityDrillDownFilterTypeDef,
ParameterSelectableValuesTypeDef,
TimeEqualityFilterTypeDef,
TimeRangeDrillDownFilterTypeDef,
AnalysisErrorTypeDef,
DashboardErrorTypeDef,
TemplateErrorTypeDef,
SearchAnalysesRequestRequestTypeDef,
AnalysisSourceTemplateTypeDef,
DashboardSourceTemplateTypeDef,
TemplateSourceAnalysisTypeDef,
AnonymousUserDashboardVisualEmbeddingConfigurationTypeDef,
RegisteredUserDashboardVisualEmbeddingConfigurationTypeDef,
ArcAxisConfigurationOutputTypeDef,
ArcAxisConfigurationTypeDef,
AssetBundleCloudFormationOverridePropertyConfigurationOutputTypeDef,
AssetBundleCloudFormationOverridePropertyConfigurationTypeDef,
AssetBundleImportJobDataSourceCredentialsOutputTypeDef,
AssetBundleImportJobDataSourceCredentialsTypeDef,
AxisDisplayRangeOutputTypeDef,
AxisDisplayRangeTypeDef,
AxisScaleOutputTypeDef,
AxisScaleTypeDef,
HistogramBinOptionsOutputTypeDef,
HistogramBinOptionsTypeDef,
TileStyleOutputTypeDef,
TileStyleTypeDef,
BoxPlotOptionsOutputTypeDef,
BoxPlotOptionsTypeDef,
CreateColumnsOperationOutputTypeDef,
CreateColumnsOperationTypeDef,
CancelIngestionResponseTypeDef,
CreateAccountCustomizationResponseTypeDef,
CreateAnalysisResponseTypeDef,
CreateDashboardResponseTypeDef,
CreateDataSetResponseTypeDef,
CreateDataSourceResponseTypeDef,
CreateFolderResponseTypeDef,
CreateIAMPolicyAssignmentResponseTypeDef,
CreateIngestionResponseTypeDef,
CreateNamespaceResponseTypeDef,
CreateRefreshScheduleResponseTypeDef,
CreateTemplateResponseTypeDef,
CreateThemeResponseTypeDef,
CreateTopicRefreshScheduleResponseTypeDef,
CreateTopicResponseTypeDef,
CreateVPCConnectionResponseTypeDef,
DeleteAccountCustomizationResponseTypeDef,
DeleteAccountSubscriptionResponseTypeDef,
DeleteAnalysisResponseTypeDef,
DeleteDashboardResponseTypeDef,
DeleteDataSetRefreshPropertiesResponseTypeDef,
DeleteDataSetResponseTypeDef,
DeleteDataSourceResponseTypeDef,
DeleteFolderMembershipResponseTypeDef,
DeleteFolderResponseTypeDef,
DeleteGroupMembershipResponseTypeDef,
DeleteGroupResponseTypeDef,
DeleteIAMPolicyAssignmentResponseTypeDef,
DeleteNamespaceResponseTypeDef,
DeleteRefreshScheduleResponseTypeDef,
DeleteTemplateAliasResponseTypeDef,
DeleteTemplateResponseTypeDef,
DeleteThemeAliasResponseTypeDef,
DeleteThemeResponseTypeDef,
DeleteTopicRefreshScheduleResponseTypeDef,
DeleteTopicResponseTypeDef,
DeleteUserByPrincipalIdResponseTypeDef,
DeleteUserResponseTypeDef,
DeleteVPCConnectionResponseTypeDef,
DescribeAccountCustomizationResponseTypeDef,
DescribeAccountSettingsResponseTypeDef,
DescribeAccountSubscriptionResponseTypeDef,
DescribeIpRestrictionResponseTypeDef,
GenerateEmbedUrlForAnonymousUserResponseTypeDef,
GenerateEmbedUrlForRegisteredUserResponseTypeDef,
GetDashboardEmbedUrlResponseTypeDef,
GetSessionEmbedUrlResponseTypeDef,
ListAnalysesResponseTypeDef,
ListAssetBundleExportJobsResponseTypeDef,
ListAssetBundleImportJobsResponseTypeDef,
ListIAMPolicyAssignmentsForUserResponseTypeDef,
PutDataSetRefreshPropertiesResponseTypeDef,
RestoreAnalysisResponseTypeDef,
SearchAnalysesResponseTypeDef,
StartAssetBundleExportJobResponseTypeDef,
StartAssetBundleImportJobResponseTypeDef,
StartDashboardSnapshotJobResponseTypeDef,
TagResourceResponseTypeDef,
UntagResourceResponseTypeDef,
UpdateAccountCustomizationResponseTypeDef,
UpdateAccountSettingsResponseTypeDef,
UpdateAnalysisResponseTypeDef,
UpdateDashboardPublishedVersionResponseTypeDef,
UpdateDashboardResponseTypeDef,
UpdateDataSetPermissionsResponseTypeDef,
UpdateDataSetResponseTypeDef,
UpdateDataSourcePermissionsResponseTypeDef,
UpdateDataSourceResponseTypeDef,
UpdateFolderResponseTypeDef,
UpdateIAMPolicyAssignmentResponseTypeDef,
UpdateIpRestrictionResponseTypeDef,
UpdatePublicSharingSettingsResponseTypeDef,
UpdateRefreshScheduleResponseTypeDef,
UpdateTemplateResponseTypeDef,
UpdateThemeResponseTypeDef,
UpdateTopicRefreshScheduleResponseTypeDef,
UpdateTopicResponseTypeDef,
UpdateVPCConnectionResponseTypeDef,
CategoryFilterConfigurationOutputTypeDef,
CategoryFilterConfigurationTypeDef,
ClusterMarkerOutputTypeDef,
ClusterMarkerTypeDef,
TopicCategoryFilterConstantOutputTypeDef,
TopicCategoryFilterConstantTypeDef,
ColorScaleOutputTypeDef,
ColorScaleTypeDef,
ColorsConfigurationOutputTypeDef,
ColorsConfigurationTypeDef,
ColumnTagOutputTypeDef,
ColumnTagTypeDef,
ColumnGroupSchemaOutputTypeDef,
ColumnGroupSchemaTypeDef,
ColumnGroupOutputTypeDef,
ColumnGroupTypeDef,
DataSetSchemaOutputTypeDef,
DataSetSchemaTypeDef,
ConditionalFormattingCustomIconConditionOutputTypeDef,
ConditionalFormattingCustomIconConditionTypeDef,
CreateAccountCustomizationRequestRequestTypeDef,
CreateNamespaceRequestRequestTypeDef,
CreateVPCConnectionRequestRequestTypeDef,
TagResourceRequestRequestTypeDef,
CreateAccountSubscriptionResponseTypeDef,
CreateFolderRequestRequestTypeDef,
UpdateAnalysisPermissionsRequestRequestTypeDef,
UpdateDashboardPermissionsRequestRequestTypeDef,
UpdateDataSetPermissionsRequestRequestTypeDef,
UpdateDataSourcePermissionsRequestRequestTypeDef,
UpdateFolderPermissionsRequestRequestTypeDef,
UpdateTemplatePermissionsRequestRequestTypeDef,
UpdateThemePermissionsRequestRequestTypeDef,
UpdateTopicPermissionsRequestRequestTypeDef,
CreateFolderMembershipResponseTypeDef,
CreateGroupMembershipResponseTypeDef,
DescribeGroupMembershipResponseTypeDef,
ListGroupMembershipsResponseTypeDef,
CreateGroupResponseTypeDef,
DescribeGroupResponseTypeDef,
ListGroupsResponseTypeDef,
ListUserGroupsResponseTypeDef,
SearchGroupsResponseTypeDef,
UpdateGroupResponseTypeDef,
CreateTemplateAliasResponseTypeDef,
DescribeTemplateAliasResponseTypeDef,
ListTemplateAliasesResponseTypeDef,
UpdateTemplateAliasResponseTypeDef,
CreateThemeAliasResponseTypeDef,
DescribeThemeAliasResponseTypeDef,
ListThemeAliasesResponseTypeDef,
UpdateThemeAliasResponseTypeDef,
CreateTopicRefreshScheduleRequestRequestTypeDef,
UpdateTopicRefreshScheduleRequestRequestTypeDef,
CustomActionNavigationOperationOutputTypeDef,
CustomActionNavigationOperationTypeDef,
CustomValuesConfigurationOutputTypeDef,
CustomValuesConfigurationTypeDef,
CustomSqlOutputTypeDef,
RelationalTableOutputTypeDef,
CustomSqlTypeDef,
RelationalTableTypeDef,
SearchDashboardsRequestRequestTypeDef,
ListDashboardsResponseTypeDef,
SearchDashboardsResponseTypeDef,
ListDashboardVersionsResponseTypeDef,
DashboardVisualPublishOptionsOutputTypeDef,
DashboardVisualPublishOptionsTypeDef,
TableInlineVisualizationOutputTypeDef,
TableInlineVisualizationTypeDef,
DataLabelTypeOutputTypeDef,
DataLabelTypeTypeDef,
DataPathColorOutputTypeDef,
DataPathSortOutputTypeDef,
PivotTableDataPathOptionOutputTypeDef,
PivotTableFieldCollapseStateTargetOutputTypeDef,
DataPathColorTypeDef,
DataPathSortTypeDef,
PivotTableDataPathOptionTypeDef,
PivotTableFieldCollapseStateTargetTypeDef,
SearchDataSetsRequestRequestTypeDef,
DataSetSummaryTypeDef,
SearchDataSourcesRequestRequestTypeDef,
SearchDataSourcesResponseTypeDef,
DateTimeDatasetParameterOutputTypeDef,
DateTimeDatasetParameterTypeDef,
TimeRangeFilterValueOutputTypeDef,
TimeRangeFilterValueTypeDef,
DecimalDatasetParameterOutputTypeDef,
DecimalDatasetParameterTypeDef,
DescribeAnalysisPermissionsResponseTypeDef,
DescribeDataSetPermissionsResponseTypeDef,
DescribeDataSourcePermissionsResponseTypeDef,
DescribeFolderPermissionsResponseTypeDef,
DescribeFolderResolvedPermissionsResponseTypeDef,
DescribeTemplatePermissionsResponseTypeDef,
DescribeThemePermissionsResponseTypeDef,
DescribeTopicPermissionsResponseTypeDef,
LinkSharingConfigurationTypeDef,
UpdateAnalysisPermissionsResponseTypeDef,
UpdateFolderPermissionsResponseTypeDef,
UpdateTemplatePermissionsResponseTypeDef,
UpdateThemePermissionsResponseTypeDef,
UpdateTopicPermissionsResponseTypeDef,
DescribeFolderResponseTypeDef,
DescribeIAMPolicyAssignmentResponseTypeDef,
DescribeTopicRefreshResponseTypeDef,
DescribeTopicRefreshScheduleResponseTypeDef,
TopicRefreshScheduleSummaryTypeDef,
DescribeUserResponseTypeDef,
ListUsersResponseTypeDef,
RegisterUserResponseTypeDef,
UpdateUserResponseTypeDef,
DisplayFormatOptionsOutputTypeDef,
DisplayFormatOptionsTypeDef,
DonutOptionsOutputTypeDef,
DonutOptionsTypeDef,
RelativeDatesFilterOutputTypeDef,
RelativeDatesFilterTypeDef,
FilterOperationTargetVisualsConfigurationOutputTypeDef,
FilterOperationTargetVisualsConfigurationTypeDef,
SearchFoldersRequestRequestTypeDef,
ListFoldersResponseTypeDef,
SearchFoldersResponseTypeDef,
FontConfigurationOutputTypeDef,
FontConfigurationTypeDef,
TypographyOutputTypeDef,
TypographyTypeDef,
ForecastScenarioOutputTypeDef,
ForecastScenarioTypeDef,
FreeFormLayoutCanvasSizeOptionsOutputTypeDef,
FreeFormLayoutCanvasSizeOptionsTypeDef,
SnapshotAnonymousUserTypeDef,
GeospatialWindowOptionsOutputTypeDef,
GeospatialWindowOptionsTypeDef,
GeospatialHeatmapColorScaleOutputTypeDef,
GeospatialHeatmapColorScaleTypeDef,
TableSideBorderOptionsOutputTypeDef,
TableSideBorderOptionsTypeDef,
GradientColorOutputTypeDef,
GradientColorTypeDef,
GridLayoutCanvasSizeOptionsOutputTypeDef,
GridLayoutCanvasSizeOptionsTypeDef,
SearchGroupsRequestRequestTypeDef,
ListIAMPolicyAssignmentsResponseTypeDef,
IncrementalRefreshOutputTypeDef,
IncrementalRefreshTypeDef,
IngestionTypeDef,
IntegerDatasetParameterOutputTypeDef,
IntegerDatasetParameterTypeDef,
JoinInstructionOutputTypeDef,
JoinInstructionTypeDef,
LineChartDefaultSeriesSettingsOutputTypeDef,
LineChartSeriesSettingsOutputTypeDef,
LineChartDefaultSeriesSettingsTypeDef,
LineChartSeriesSettingsTypeDef,
ListAnalysesRequestListAnalysesPaginateTypeDef,
ListAssetBundleExportJobsRequestListAssetBundleExportJobsPaginateTypeDef,
ListAssetBundleImportJobsRequestListAssetBundleImportJobsPaginateTypeDef,
ListDashboardVersionsRequestListDashboardVersionsPaginateTypeDef,
ListDashboardsRequestListDashboardsPaginateTypeDef,
ListDataSetsRequestListDataSetsPaginateTypeDef,
ListDataSourcesRequestListDataSourcesPaginateTypeDef,
ListGroupMembershipsRequestListGroupMembershipsPaginateTypeDef,
ListGroupsRequestListGroupsPaginateTypeDef,
ListIAMPolicyAssignmentsForUserRequestListIAMPolicyAssignmentsForUserPaginateTypeDef,
ListIAMPolicyAssignmentsRequestListIAMPolicyAssignmentsPaginateTypeDef,
ListIngestionsRequestListIngestionsPaginateTypeDef,
ListNamespacesRequestListNamespacesPaginateTypeDef,
ListTemplateAliasesRequestListTemplateAliasesPaginateTypeDef,
ListTemplateVersionsRequestListTemplateVersionsPaginateTypeDef,
ListTemplatesRequestListTemplatesPaginateTypeDef,
ListThemeVersionsRequestListThemeVersionsPaginateTypeDef,
ListThemesRequestListThemesPaginateTypeDef,
ListUserGroupsRequestListUserGroupsPaginateTypeDef,
ListUsersRequestListUsersPaginateTypeDef,
SearchAnalysesRequestSearchAnalysesPaginateTypeDef,
SearchDashboardsRequestSearchDashboardsPaginateTypeDef,
SearchDataSetsRequestSearchDataSetsPaginateTypeDef,
SearchDataSourcesRequestSearchDataSourcesPaginateTypeDef,
SearchGroupsRequestSearchGroupsPaginateTypeDef,
ListFolderMembersResponseTypeDef,
ListTagsForResourceResponseTypeDef,
ListTemplateVersionsResponseTypeDef,
ListTemplatesResponseTypeDef,
ListThemeVersionsResponseTypeDef,
ListThemesResponseTypeDef,
ListTopicsResponseTypeDef,
VisualSubtitleLabelOptionsOutputTypeDef,
VisualSubtitleLabelOptionsTypeDef,
S3ParametersOutputTypeDef,
S3ParametersTypeDef,
TileLayoutStyleOutputTypeDef,
TileLayoutStyleTypeDef,
NamedEntityDefinitionOutputTypeDef,
NamedEntityDefinitionTypeDef,
NamespaceInfoV2TypeDef,
VPCConnectionSummaryTypeDef,
VPCConnectionTypeDef,
OverrideDatasetParameterOperationOutputTypeDef,
OverrideDatasetParameterOperationTypeDef,
NumericSeparatorConfigurationOutputTypeDef,
NumericSeparatorConfigurationTypeDef,
NumericalAggregationFunctionOutputTypeDef,
NumericalAggregationFunctionTypeDef,
ParametersOutputTypeDef,
ParametersTypeDef,
VisibleRangeOptionsOutputTypeDef,
VisibleRangeOptionsTypeDef,
RadarChartSeriesSettingsOutputTypeDef,
RadarChartSeriesSettingsTypeDef,
TopicRangeFilterConstantOutputTypeDef,
TopicRangeFilterConstantTypeDef,
RefreshFrequencyOutputTypeDef,
RefreshFrequencyTypeDef,
RegisteredUserConsoleFeatureConfigurationsTypeDef,
RegisteredUserDashboardFeatureConfigurationsTypeDef,
RowLevelPermissionTagConfigurationOutputTypeDef,
RowLevelPermissionTagConfigurationTypeDef,
SnapshotS3DestinationConfigurationOutputTypeDef,
SnapshotS3DestinationConfigurationTypeDef,
S3SourceOutputTypeDef,
S3SourceTypeDef,
SectionPageBreakConfigurationOutputTypeDef,
SectionPageBreakConfigurationTypeDef,
SectionBasedLayoutPaperCanvasSizeOptionsOutputTypeDef,
SectionStyleOutputTypeDef,
SectionBasedLayoutPaperCanvasSizeOptionsTypeDef,
SectionStyleTypeDef,
SelectedSheetsFilterScopeConfigurationOutputTypeDef,
SelectedSheetsFilterScopeConfigurationTypeDef,
SheetElementRenderingRuleOutputTypeDef,
SheetElementRenderingRuleTypeDef,
VisualTitleLabelOptionsOutputTypeDef,
VisualTitleLabelOptionsTypeDef,
SnapshotUserConfigurationRedactedTypeDef,
SnapshotFileOutputTypeDef,
SnapshotFileTypeDef,
StringDatasetParameterOutputTypeDef,
StringDatasetParameterTypeDef,
TableFieldImageConfigurationOutputTypeDef,
TableFieldImageConfigurationTypeDef,
TopicNumericEqualityFilterOutputTypeDef,
TopicRelativeDateFilterOutputTypeDef,
TopicNumericEqualityFilterTypeDef,
TopicRelativeDateFilterTypeDef,
CascadingControlConfigurationOutputTypeDef,
DateTimeDefaultValuesOutputTypeDef,
DecimalDefaultValuesOutputTypeDef,
IntegerDefaultValuesOutputTypeDef,
StringDefaultValuesOutputTypeDef,
DrillDownFilterOutputTypeDef,
CascadingControlConfigurationTypeDef,
DateTimeDefaultValuesTypeDef,
DecimalDefaultValuesTypeDef,
IntegerDefaultValuesTypeDef,
StringDefaultValuesTypeDef,
DrillDownFilterTypeDef,
AnalysisTypeDef,
DashboardVersionTypeDef,
AnalysisSourceEntityTypeDef,
DashboardSourceEntityTypeDef,
TemplateSourceEntityTypeDef,
AnonymousUserEmbeddingExperienceConfigurationTypeDef,
DescribeAssetBundleExportJobResponseTypeDef,
StartAssetBundleExportJobRequestRequestTypeDef,
NumericAxisOptionsOutputTypeDef,
NumericAxisOptionsTypeDef,
CategoryFilterOutputTypeDef,
CategoryFilterTypeDef,
ClusterMarkerConfigurationOutputTypeDef,
ClusterMarkerConfigurationTypeDef,
TopicCategoryFilterOutputTypeDef,
TopicCategoryFilterTypeDef,
TagColumnOperationOutputTypeDef,
TagColumnOperationTypeDef,
DataSetConfigurationOutputTypeDef,
DataSetConfigurationTypeDef,
ConditionalFormattingIconOutputTypeDef,
ConditionalFormattingIconTypeDef,
DestinationParameterValueConfigurationOutputTypeDef,
DestinationParameterValueConfigurationTypeDef,
DashboardPublishOptionsOutputTypeDef,
DashboardPublishOptionsTypeDef,
VisualPaletteOutputTypeDef,
PivotTableFieldCollapseStateOptionOutputTypeDef,
VisualPaletteTypeDef,
PivotTableFieldCollapseStateOptionTypeDef,
ListDataSetsResponseTypeDef,
SearchDataSetsResponseTypeDef,
TimeRangeFilterOutputTypeDef,
TimeRangeFilterTypeDef,
DescribeDashboardPermissionsResponseTypeDef,
UpdateDashboardPermissionsResponseTypeDef,
ListTopicRefreshSchedulesResponseTypeDef,
DefaultFormattingOutputTypeDef,
DefaultFormattingTypeDef,
CustomActionFilterOperationOutputTypeDef,
CustomActionFilterOperationTypeDef,
AxisLabelOptionsOutputTypeDef,
DataLabelOptionsOutputTypeDef,
FunnelChartDataLabelOptionsOutputTypeDef,
LabelOptionsOutputTypeDef,
PanelTitleOptionsOutputTypeDef,
TableFieldCustomTextContentOutputTypeDef,
AxisLabelOptionsTypeDef,
DataLabelOptionsTypeDef,
FunnelChartDataLabelOptionsTypeDef,
LabelOptionsTypeDef,
PanelTitleOptionsTypeDef,
TableFieldCustomTextContentTypeDef,
ForecastConfigurationOutputTypeDef,
ForecastConfigurationTypeDef,
DefaultFreeFormLayoutConfigurationOutputTypeDef,
DefaultFreeFormLayoutConfigurationTypeDef,
SnapshotUserConfigurationTypeDef,
GeospatialHeatmapConfigurationOutputTypeDef,
GeospatialHeatmapConfigurationTypeDef,
GlobalTableBorderOptionsOutputTypeDef,
GlobalTableBorderOptionsTypeDef,
ConditionalFormattingGradientColorOutputTypeDef,
ConditionalFormattingGradientColorTypeDef,
DefaultGridLayoutConfigurationOutputTypeDef,
GridLayoutConfigurationOutputTypeDef,
DefaultGridLayoutConfigurationTypeDef,
GridLayoutConfigurationTypeDef,
RefreshConfigurationOutputTypeDef,
RefreshConfigurationTypeDef,
DescribeIngestionResponseTypeDef,
ListIngestionsResponseTypeDef,
LogicalTableSourceOutputTypeDef,
LogicalTableSourceTypeDef,
DataFieldSeriesItemOutputTypeDef,
FieldSeriesItemOutputTypeDef,
DataFieldSeriesItemTypeDef,
FieldSeriesItemTypeDef,
DataSourceParametersOutputTypeDef,
DataSourceParametersTypeDef,
SheetStyleOutputTypeDef,
SheetStyleTypeDef,
TopicNamedEntityOutputTypeDef,
TopicNamedEntityTypeDef,
DescribeNamespaceResponseTypeDef,
ListNamespacesResponseTypeDef,
ListVPCConnectionsResponseTypeDef,
DescribeVPCConnectionResponseTypeDef,
CurrencyDisplayFormatConfigurationOutputTypeDef,
NumberDisplayFormatConfigurationOutputTypeDef,
PercentageDisplayFormatConfigurationOutputTypeDef,
CurrencyDisplayFormatConfigurationTypeDef,
NumberDisplayFormatConfigurationTypeDef,
PercentageDisplayFormatConfigurationTypeDef,
AggregationFunctionOutputTypeDef,
AggregationFunctionTypeDef,
ScrollBarOptionsOutputTypeDef,
ScrollBarOptionsTypeDef,
TopicDateRangeFilterOutputTypeDef,
TopicNumericRangeFilterOutputTypeDef,
TopicDateRangeFilterTypeDef,
TopicNumericRangeFilterTypeDef,
RefreshScheduleOutputTypeDef,
RefreshScheduleTypeDef,
RegisteredUserQuickSightConsoleEmbeddingConfigurationTypeDef,
RegisteredUserDashboardEmbeddingConfigurationTypeDef,
SnapshotDestinationConfigurationOutputTypeDef,
SnapshotJobS3ResultTypeDef,
SnapshotDestinationConfigurationTypeDef,
PhysicalTableOutputTypeDef,
PhysicalTableTypeDef,
SectionBasedLayoutCanvasSizeOptionsOutputTypeDef,
SectionBasedLayoutCanvasSizeOptionsTypeDef,
FilterScopeConfigurationOutputTypeDef,
FilterScopeConfigurationTypeDef,
FreeFormLayoutElementOutputTypeDef,
FreeFormLayoutElementTypeDef,
SnapshotFileGroupOutputTypeDef,
SnapshotFileGroupTypeDef,
DatasetParameterOutputTypeDef,
DatasetParameterTypeDef,
DateTimeParameterDeclarationOutputTypeDef,
DecimalParameterDeclarationOutputTypeDef,
IntegerParameterDeclarationOutputTypeDef,
StringParameterDeclarationOutputTypeDef,
DateTimeHierarchyOutputTypeDef,
ExplicitHierarchyOutputTypeDef,
PredefinedHierarchyOutputTypeDef,
DateTimeParameterDeclarationTypeDef,
DecimalParameterDeclarationTypeDef,
IntegerParameterDeclarationTypeDef,
StringParameterDeclarationTypeDef,
DateTimeHierarchyTypeDef,
ExplicitHierarchyTypeDef,
PredefinedHierarchyTypeDef,
DescribeAnalysisResponseTypeDef,
DashboardTypeDef,
GenerateEmbedUrlForAnonymousUserRequestRequestTypeDef,
AxisDataOptionsOutputTypeDef,
AxisDataOptionsTypeDef,
TransformOperationOutputTypeDef,
TransformOperationTypeDef,
TemplateVersionTypeDef,
SetParameterValueConfigurationOutputTypeDef,
SetParameterValueConfigurationTypeDef,
PivotTableFieldOptionsOutputTypeDef,
PivotTableFieldOptionsTypeDef,
TopicCalculatedFieldOutputTypeDef,
TopicColumnOutputTypeDef,
TopicCalculatedFieldTypeDef,
TopicColumnTypeDef,
ChartAxisLabelOptionsOutputTypeDef,
AxisTickLabelOptionsOutputTypeDef,
DateTimePickerControlDisplayOptionsOutputTypeDef,
DropDownControlDisplayOptionsOutputTypeDef,
LegendOptionsOutputTypeDef,
ListControlDisplayOptionsOutputTypeDef,
RelativeDateTimeControlDisplayOptionsOutputTypeDef,
SliderControlDisplayOptionsOutputTypeDef,
TextAreaControlDisplayOptionsOutputTypeDef,
TextFieldControlDisplayOptionsOutputTypeDef,
PanelConfigurationOutputTypeDef,
TableFieldLinkContentConfigurationOutputTypeDef,
ChartAxisLabelOptionsTypeDef,
AxisTickLabelOptionsTypeDef,
DateTimePickerControlDisplayOptionsTypeDef,
DropDownControlDisplayOptionsTypeDef,
LegendOptionsTypeDef,
ListControlDisplayOptionsTypeDef,
RelativeDateTimeControlDisplayOptionsTypeDef,
SliderControlDisplayOptionsTypeDef,
TextAreaControlDisplayOptionsTypeDef,
TextFieldControlDisplayOptionsTypeDef,
PanelConfigurationTypeDef,
TableFieldLinkContentConfigurationTypeDef,
GeospatialPointStyleOptionsOutputTypeDef,
GeospatialPointStyleOptionsTypeDef,
TableCellStyleOutputTypeDef,
TableCellStyleTypeDef,
ConditionalFormattingColorOutputTypeDef,
ConditionalFormattingColorTypeDef,
DefaultInteractiveLayoutConfigurationOutputTypeDef,
SheetControlLayoutConfigurationOutputTypeDef,
DefaultInteractiveLayoutConfigurationTypeDef,
SheetControlLayoutConfigurationTypeDef,
DataSetRefreshPropertiesOutputTypeDef,
DataSetRefreshPropertiesTypeDef,
SeriesItemOutputTypeDef,
SeriesItemTypeDef,
AssetBundleImportJobDataSourceOverrideParametersOutputTypeDef,
DataSourceTypeDef,
AssetBundleImportJobDataSourceOverrideParametersTypeDef,
CredentialPairTypeDef,
ThemeConfigurationOutputTypeDef,
ThemeConfigurationTypeDef,
ComparisonFormatConfigurationOutputTypeDef,
NumericFormatConfigurationOutputTypeDef,
ComparisonFormatConfigurationTypeDef,
NumericFormatConfigurationTypeDef,
AggregationSortConfigurationOutputTypeDef,
ColumnSortOutputTypeDef,
ColumnTooltipItemOutputTypeDef,
NumericEqualityFilterOutputTypeDef,
NumericRangeFilterOutputTypeDef,
ReferenceLineDynamicDataConfigurationOutputTypeDef,
AggregationSortConfigurationTypeDef,
ColumnSortTypeDef,
ColumnTooltipItemTypeDef,
NumericEqualityFilterTypeDef,
NumericRangeFilterTypeDef,
ReferenceLineDynamicDataConfigurationTypeDef,
TopicFilterOutputTypeDef,
TopicFilterTypeDef,
DescribeRefreshScheduleResponseTypeDef,
ListRefreshSchedulesResponseTypeDef,
CreateRefreshScheduleRequestRequestTypeDef,
UpdateRefreshScheduleRequestRequestTypeDef,
RegisteredUserEmbeddingExperienceConfigurationTypeDef,
SnapshotJobResultFileGroupTypeDef,
DefaultSectionBasedLayoutConfigurationOutputTypeDef,
DefaultSectionBasedLayoutConfigurationTypeDef,
FreeFormLayoutConfigurationOutputTypeDef,
FreeFormSectionLayoutConfigurationOutputTypeDef,
FreeFormLayoutConfigurationTypeDef,
FreeFormSectionLayoutConfigurationTypeDef,
SnapshotConfigurationOutputTypeDef,
SnapshotConfigurationTypeDef,
ParameterDeclarationOutputTypeDef,
ColumnHierarchyOutputTypeDef,
ParameterDeclarationTypeDef,
ColumnHierarchyTypeDef,
DescribeDashboardResponseTypeDef,
LogicalTableOutputTypeDef,
LogicalTableTypeDef,
TemplateTypeDef,
CustomActionSetParametersOperationOutputTypeDef,
CustomActionSetParametersOperationTypeDef,
AxisDisplayOptionsOutputTypeDef,
FilterDateTimePickerControlOutputTypeDef,
ParameterDateTimePickerControlOutputTypeDef,
FilterDropDownControlOutputTypeDef,
ParameterDropDownControlOutputTypeDef,
FilterListControlOutputTypeDef,
ParameterListControlOutputTypeDef,
FilterRelativeDateTimeControlOutputTypeDef,
FilterSliderControlOutputTypeDef,
ParameterSliderControlOutputTypeDef,
FilterTextAreaControlOutputTypeDef,
ParameterTextAreaControlOutputTypeDef,
FilterTextFieldControlOutputTypeDef,
ParameterTextFieldControlOutputTypeDef,
SmallMultiplesOptionsOutputTypeDef,
TableFieldLinkConfigurationOutputTypeDef,
AxisDisplayOptionsTypeDef,
FilterDateTimePickerControlTypeDef,
ParameterDateTimePickerControlTypeDef,
FilterDropDownControlTypeDef,
ParameterDropDownControlTypeDef,
FilterListControlTypeDef,
ParameterListControlTypeDef,
FilterRelativeDateTimeControlTypeDef,
FilterSliderControlTypeDef,
ParameterSliderControlTypeDef,
FilterTextAreaControlTypeDef,
ParameterTextAreaControlTypeDef,
FilterTextFieldControlTypeDef,
ParameterTextFieldControlTypeDef,
SmallMultiplesOptionsTypeDef,
TableFieldLinkConfigurationTypeDef,
PivotTableOptionsOutputTypeDef,
PivotTotalOptionsOutputTypeDef,
SubtotalOptionsOutputTypeDef,
TableOptionsOutputTypeDef,
TotalOptionsOutputTypeDef,
PivotTableOptionsTypeDef,
PivotTotalOptionsTypeDef,
SubtotalOptionsTypeDef,
TableOptionsTypeDef,
TotalOptionsTypeDef,
GaugeChartArcConditionalFormattingOutputTypeDef,
GaugeChartPrimaryValueConditionalFormattingOutputTypeDef,
KPIPrimaryValueConditionalFormattingOutputTypeDef,
KPIProgressBarConditionalFormattingOutputTypeDef,
ShapeConditionalFormatOutputTypeDef,
TableRowConditionalFormattingOutputTypeDef,
TextConditionalFormatOutputTypeDef,
GaugeChartArcConditionalFormattingTypeDef,
GaugeChartPrimaryValueConditionalFormattingTypeDef,
KPIPrimaryValueConditionalFormattingTypeDef,
KPIProgressBarConditionalFormattingTypeDef,
ShapeConditionalFormatTypeDef,
TableRowConditionalFormattingTypeDef,
TextConditionalFormatTypeDef,
SheetControlLayoutOutputTypeDef,
SheetControlLayoutTypeDef,
DescribeDataSetRefreshPropertiesResponseTypeDef,
PutDataSetRefreshPropertiesRequestRequestTypeDef,
AssetBundleImportJobOverrideParametersOutputTypeDef,
DescribeDataSourceResponseTypeDef,
ListDataSourcesResponseTypeDef,
AssetBundleImportJobOverrideParametersTypeDef,
DataSourceCredentialsTypeDef,
ThemeVersionTypeDef,
CreateThemeRequestRequestTypeDef,
UpdateThemeRequestRequestTypeDef,
ComparisonConfigurationOutputTypeDef,
DateTimeFormatConfigurationOutputTypeDef,
NumberFormatConfigurationOutputTypeDef,
ReferenceLineValueLabelConfigurationOutputTypeDef,
StringFormatConfigurationOutputTypeDef,
ComparisonConfigurationTypeDef,
DateTimeFormatConfigurationTypeDef,
NumberFormatConfigurationTypeDef,
ReferenceLineValueLabelConfigurationTypeDef,
StringFormatConfigurationTypeDef,
TopBottomFilterOutputTypeDef,
FieldSortOptionsOutputTypeDef,
PivotTableSortByOutputTypeDef,
TooltipItemOutputTypeDef,
ReferenceLineDataConfigurationOutputTypeDef,
TopBottomFilterTypeDef,
FieldSortOptionsTypeDef,
PivotTableSortByTypeDef,
TooltipItemTypeDef,
ReferenceLineDataConfigurationTypeDef,
DatasetMetadataOutputTypeDef,
DatasetMetadataTypeDef,
GenerateEmbedUrlForRegisteredUserRequestRequestTypeDef,
AnonymousUserSnapshotJobResultTypeDef,
DefaultPaginatedLayoutConfigurationOutputTypeDef,
DefaultPaginatedLayoutConfigurationTypeDef,
SectionLayoutConfigurationOutputTypeDef,
SectionLayoutConfigurationTypeDef,
DescribeDashboardSnapshotJobResponseTypeDef,
StartDashboardSnapshotJobRequestRequestTypeDef,
DataSetTypeDef,
CreateDataSetRequestRequestTypeDef,
UpdateDataSetRequestRequestTypeDef,
DescribeTemplateResponseTypeDef,
VisualCustomActionOperationOutputTypeDef,
VisualCustomActionOperationTypeDef,
LineSeriesAxisDisplayOptionsOutputTypeDef,
FilterControlOutputTypeDef,
ParameterControlOutputTypeDef,
TableFieldURLConfigurationOutputTypeDef,
LineSeriesAxisDisplayOptionsTypeDef,
FilterControlTypeDef,
ParameterControlTypeDef,
TableFieldURLConfigurationTypeDef,
PivotTableTotalOptionsOutputTypeDef,
PivotTableTotalOptionsTypeDef,
GaugeChartConditionalFormattingOptionOutputTypeDef,
KPIConditionalFormattingOptionOutputTypeDef,
FilledMapShapeConditionalFormattingOutputTypeDef,
PivotTableCellConditionalFormattingOutputTypeDef,
TableCellConditionalFormattingOutputTypeDef,
GaugeChartConditionalFormattingOptionTypeDef,
KPIConditionalFormattingOptionTypeDef,
FilledMapShapeConditionalFormattingTypeDef,
PivotTableCellConditionalFormattingTypeDef,
TableCellConditionalFormattingTypeDef,
DescribeAssetBundleImportJobResponseTypeDef,
StartAssetBundleImportJobRequestRequestTypeDef,
CreateDataSourceRequestRequestTypeDef,
UpdateDataSourceRequestRequestTypeDef,
ThemeTypeDef,
GaugeChartOptionsOutputTypeDef,
KPIOptionsOutputTypeDef,
DateDimensionFieldOutputTypeDef,
DateMeasureFieldOutputTypeDef,
NumericalDimensionFieldOutputTypeDef,
NumericalMeasureFieldOutputTypeDef,
ReferenceLineLabelConfigurationOutputTypeDef,
CategoricalDimensionFieldOutputTypeDef,
CategoricalMeasureFieldOutputTypeDef,
FormatConfigurationOutputTypeDef,
GaugeChartOptionsTypeDef,
KPIOptionsTypeDef,
DateDimensionFieldTypeDef,
DateMeasureFieldTypeDef,
NumericalDimensionFieldTypeDef,
NumericalMeasureFieldTypeDef,
ReferenceLineLabelConfigurationTypeDef,
CategoricalDimensionFieldTypeDef,
CategoricalMeasureFieldTypeDef,
FormatConfigurationTypeDef,
FilterOutputTypeDef,
BarChartSortConfigurationOutputTypeDef,
BoxPlotSortConfigurationOutputTypeDef,
ComboChartSortConfigurationOutputTypeDef,
FilledMapSortConfigurationOutputTypeDef,
FunnelChartSortConfigurationOutputTypeDef,
HeatMapSortConfigurationOutputTypeDef,
KPISortConfigurationOutputTypeDef,
LineChartSortConfigurationOutputTypeDef,
PieChartSortConfigurationOutputTypeDef,
RadarChartSortConfigurationOutputTypeDef,
SankeyDiagramSortConfigurationOutputTypeDef,
TableSortConfigurationOutputTypeDef,
TreeMapSortConfigurationOutputTypeDef,
WaterfallChartSortConfigurationOutputTypeDef,
WordCloudSortConfigurationOutputTypeDef,
PivotFieldSortOptionsOutputTypeDef,
FieldBasedTooltipOutputTypeDef,
FilterTypeDef,
BarChartSortConfigurationTypeDef,
BoxPlotSortConfigurationTypeDef,
ComboChartSortConfigurationTypeDef,
FilledMapSortConfigurationTypeDef,
FunnelChartSortConfigurationTypeDef,
HeatMapSortConfigurationTypeDef,
KPISortConfigurationTypeDef,
LineChartSortConfigurationTypeDef,
PieChartSortConfigurationTypeDef,
RadarChartSortConfigurationTypeDef,
SankeyDiagramSortConfigurationTypeDef,
TableSortConfigurationTypeDef,
TreeMapSortConfigurationTypeDef,
WaterfallChartSortConfigurationTypeDef,
WordCloudSortConfigurationTypeDef,
PivotFieldSortOptionsTypeDef,
FieldBasedTooltipTypeDef,
TopicDetailsOutputTypeDef,
TopicDetailsTypeDef,
SnapshotJobResultTypeDef,
DefaultNewSheetConfigurationOutputTypeDef,
DefaultNewSheetConfigurationTypeDef,
BodySectionContentOutputTypeDef,
HeaderFooterSectionConfigurationOutputTypeDef,
BodySectionContentTypeDef,
HeaderFooterSectionConfigurationTypeDef,
DescribeDataSetResponseTypeDef,
VisualCustomActionOutputTypeDef,
VisualCustomActionTypeDef,
TableFieldOptionOutputTypeDef,
TableFieldOptionTypeDef,
GaugeChartConditionalFormattingOutputTypeDef,
KPIConditionalFormattingOutputTypeDef,
FilledMapConditionalFormattingOptionOutputTypeDef,
PivotTableConditionalFormattingOptionOutputTypeDef,
TableConditionalFormattingOptionOutputTypeDef,
GaugeChartConditionalFormattingTypeDef,
KPIConditionalFormattingTypeDef,
FilledMapConditionalFormattingOptionTypeDef,
PivotTableConditionalFormattingOptionTypeDef,
TableConditionalFormattingOptionTypeDef,
DescribeThemeResponseTypeDef,
ReferenceLineOutputTypeDef,
DimensionFieldOutputTypeDef,
MeasureFieldOutputTypeDef,
ColumnConfigurationOutputTypeDef,
UnaggregatedFieldOutputTypeDef,
ReferenceLineTypeDef,
DimensionFieldTypeDef,
MeasureFieldTypeDef,
ColumnConfigurationTypeDef,
UnaggregatedFieldTypeDef,
FilterGroupOutputTypeDef,
PivotTableSortConfigurationOutputTypeDef,
TooltipOptionsOutputTypeDef,
FilterGroupTypeDef,
PivotTableSortConfigurationTypeDef,
TooltipOptionsTypeDef,
DescribeTopicResponseTypeDef,
CreateTopicRequestRequestTypeDef,
UpdateTopicRequestRequestTypeDef,
DescribeDashboardSnapshotJobResultResponseTypeDef,
AnalysisDefaultsOutputTypeDef,
AnalysisDefaultsTypeDef,
BodySectionConfigurationOutputTypeDef,
BodySectionConfigurationTypeDef,
CustomContentVisualOutputTypeDef,
EmptyVisualOutputTypeDef,
CustomContentVisualTypeDef,
EmptyVisualTypeDef,
TableFieldOptionsOutputTypeDef,
TableFieldOptionsTypeDef,
FilledMapConditionalFormattingOutputTypeDef,
PivotTableConditionalFormattingOutputTypeDef,
TableConditionalFormattingOutputTypeDef,
FilledMapConditionalFormattingTypeDef,
PivotTableConditionalFormattingTypeDef,
TableConditionalFormattingTypeDef,
UniqueValuesComputationOutputTypeDef,
BarChartAggregatedFieldWellsOutputTypeDef,
BoxPlotAggregatedFieldWellsOutputTypeDef,
ComboChartAggregatedFieldWellsOutputTypeDef,
FilledMapAggregatedFieldWellsOutputTypeDef,
ForecastComputationOutputTypeDef,
FunnelChartAggregatedFieldWellsOutputTypeDef,
GaugeChartFieldWellsOutputTypeDef,
GeospatialMapAggregatedFieldWellsOutputTypeDef,
GrowthRateComputationOutputTypeDef,
HeatMapAggregatedFieldWellsOutputTypeDef,
HistogramAggregatedFieldWellsOutputTypeDef,
KPIFieldWellsOutputTypeDef,
LineChartAggregatedFieldWellsOutputTypeDef,
MaximumMinimumComputationOutputTypeDef,
MetricComparisonComputationOutputTypeDef,
PeriodOverPeriodComputationOutputTypeDef,
PeriodToDateComputationOutputTypeDef,
PieChartAggregatedFieldWellsOutputTypeDef,
PivotTableAggregatedFieldWellsOutputTypeDef,
RadarChartAggregatedFieldWellsOutputTypeDef,
SankeyDiagramAggregatedFieldWellsOutputTypeDef,
ScatterPlotCategoricallyAggregatedFieldWellsOutputTypeDef,
ScatterPlotUnaggregatedFieldWellsOutputTypeDef,
TableAggregatedFieldWellsOutputTypeDef,
TopBottomMoversComputationOutputTypeDef,
TopBottomRankedComputationOutputTypeDef,
TotalAggregationComputationOutputTypeDef,
TreeMapAggregatedFieldWellsOutputTypeDef,
WaterfallChartAggregatedFieldWellsOutputTypeDef,
WordCloudAggregatedFieldWellsOutputTypeDef,
TableUnaggregatedFieldWellsOutputTypeDef,
UniqueValuesComputationTypeDef,
BarChartAggregatedFieldWellsTypeDef,
BoxPlotAggregatedFieldWellsTypeDef,
ComboChartAggregatedFieldWellsTypeDef,
FilledMapAggregatedFieldWellsTypeDef,
ForecastComputationTypeDef,
FunnelChartAggregatedFieldWellsTypeDef,
GaugeChartFieldWellsTypeDef,
GeospatialMapAggregatedFieldWellsTypeDef,
GrowthRateComputationTypeDef,
HeatMapAggregatedFieldWellsTypeDef,
HistogramAggregatedFieldWellsTypeDef,
KPIFieldWellsTypeDef,
LineChartAggregatedFieldWellsTypeDef,
MaximumMinimumComputationTypeDef,
MetricComparisonComputationTypeDef,
PeriodOverPeriodComputationTypeDef,
PeriodToDateComputationTypeDef,
PieChartAggregatedFieldWellsTypeDef,
PivotTableAggregatedFieldWellsTypeDef,
RadarChartAggregatedFieldWellsTypeDef,
SankeyDiagramAggregatedFieldWellsTypeDef,
ScatterPlotCategoricallyAggregatedFieldWellsTypeDef,
ScatterPlotUnaggregatedFieldWellsTypeDef,
TableAggregatedFieldWellsTypeDef,
TopBottomMoversComputationTypeDef,
TopBottomRankedComputationTypeDef,
TotalAggregationComputationTypeDef,
TreeMapAggregatedFieldWellsTypeDef,
WaterfallChartAggregatedFieldWellsTypeDef,
WordCloudAggregatedFieldWellsTypeDef,
TableUnaggregatedFieldWellsTypeDef,
SectionBasedLayoutConfigurationOutputTypeDef,
SectionBasedLayoutConfigurationTypeDef,
BarChartFieldWellsOutputTypeDef,
BoxPlotFieldWellsOutputTypeDef,
ComboChartFieldWellsOutputTypeDef,
FilledMapFieldWellsOutputTypeDef,
FunnelChartFieldWellsOutputTypeDef,
GaugeChartConfigurationOutputTypeDef,
GeospatialMapFieldWellsOutputTypeDef,
HeatMapFieldWellsOutputTypeDef,
HistogramFieldWellsOutputTypeDef,
KPIConfigurationOutputTypeDef,
LineChartFieldWellsOutputTypeDef,
PieChartFieldWellsOutputTypeDef,
PivotTableFieldWellsOutputTypeDef,
RadarChartFieldWellsOutputTypeDef,
SankeyDiagramFieldWellsOutputTypeDef,
ScatterPlotFieldWellsOutputTypeDef,
ComputationOutputTypeDef,
TreeMapFieldWellsOutputTypeDef,
WaterfallChartFieldWellsOutputTypeDef,
WordCloudFieldWellsOutputTypeDef,
TableFieldWellsOutputTypeDef,
BarChartFieldWellsTypeDef,
BoxPlotFieldWellsTypeDef,
ComboChartFieldWellsTypeDef,
FilledMapFieldWellsTypeDef,
FunnelChartFieldWellsTypeDef,
GaugeChartConfigurationTypeDef,
GeospatialMapFieldWellsTypeDef,
HeatMapFieldWellsTypeDef,
HistogramFieldWellsTypeDef,
KPIConfigurationTypeDef,
LineChartFieldWellsTypeDef,
PieChartFieldWellsTypeDef,
PivotTableFieldWellsTypeDef,
RadarChartFieldWellsTypeDef,
SankeyDiagramFieldWellsTypeDef,
ScatterPlotFieldWellsTypeDef,
ComputationTypeDef,
TreeMapFieldWellsTypeDef,
WaterfallChartFieldWellsTypeDef,
WordCloudFieldWellsTypeDef,
TableFieldWellsTypeDef,
LayoutConfigurationOutputTypeDef,
LayoutConfigurationTypeDef,
BarChartConfigurationOutputTypeDef,
BoxPlotChartConfigurationOutputTypeDef,
ComboChartConfigurationOutputTypeDef,
FilledMapConfigurationOutputTypeDef,
FunnelChartConfigurationOutputTypeDef,
GaugeChartVisualOutputTypeDef,
GeospatialMapConfigurationOutputTypeDef,
HeatMapConfigurationOutputTypeDef,
HistogramConfigurationOutputTypeDef,
KPIVisualOutputTypeDef,
LineChartConfigurationOutputTypeDef,
PieChartConfigurationOutputTypeDef,
PivotTableConfigurationOutputTypeDef,
RadarChartConfigurationOutputTypeDef,
SankeyDiagramChartConfigurationOutputTypeDef,
ScatterPlotConfigurationOutputTypeDef,
InsightConfigurationOutputTypeDef,
TreeMapConfigurationOutputTypeDef,
WaterfallChartConfigurationOutputTypeDef,
WordCloudChartConfigurationOutputTypeDef,
TableConfigurationOutputTypeDef,
BarChartConfigurationTypeDef,
BoxPlotChartConfigurationTypeDef,
ComboChartConfigurationTypeDef,
FilledMapConfigurationTypeDef,
FunnelChartConfigurationTypeDef,
GaugeChartVisualTypeDef,
GeospatialMapConfigurationTypeDef,
HeatMapConfigurationTypeDef,
HistogramConfigurationTypeDef,
KPIVisualTypeDef,
LineChartConfigurationTypeDef,
PieChartConfigurationTypeDef,
PivotTableConfigurationTypeDef,
RadarChartConfigurationTypeDef,
SankeyDiagramChartConfigurationTypeDef,
ScatterPlotConfigurationTypeDef,
InsightConfigurationTypeDef,
TreeMapConfigurationTypeDef,
WaterfallChartConfigurationTypeDef,
WordCloudChartConfigurationTypeDef,
TableConfigurationTypeDef,
LayoutOutputTypeDef,
LayoutTypeDef,
BarChartVisualOutputTypeDef,
BoxPlotVisualOutputTypeDef,
ComboChartVisualOutputTypeDef,
FilledMapVisualOutputTypeDef,
FunnelChartVisualOutputTypeDef,
GeospatialMapVisualOutputTypeDef,
HeatMapVisualOutputTypeDef,
HistogramVisualOutputTypeDef,
LineChartVisualOutputTypeDef,
PieChartVisualOutputTypeDef,
PivotTableVisualOutputTypeDef,
RadarChartVisualOutputTypeDef,
SankeyDiagramVisualOutputTypeDef,
ScatterPlotVisualOutputTypeDef,
InsightVisualOutputTypeDef,
TreeMapVisualOutputTypeDef,
WaterfallVisualOutputTypeDef,
WordCloudVisualOutputTypeDef,
TableVisualOutputTypeDef,
BarChartVisualTypeDef,
BoxPlotVisualTypeDef,
ComboChartVisualTypeDef,
FilledMapVisualTypeDef,
FunnelChartVisualTypeDef,
GeospatialMapVisualTypeDef,
HeatMapVisualTypeDef,
HistogramVisualTypeDef,
LineChartVisualTypeDef,
PieChartVisualTypeDef,
PivotTableVisualTypeDef,
RadarChartVisualTypeDef,
SankeyDiagramVisualTypeDef,
ScatterPlotVisualTypeDef,
InsightVisualTypeDef,
TreeMapVisualTypeDef,
WaterfallVisualTypeDef,
WordCloudVisualTypeDef,
TableVisualTypeDef,
VisualOutputTypeDef,
VisualTypeDef,
SheetDefinitionOutputTypeDef,
SheetDefinitionTypeDef,
AnalysisDefinitionOutputTypeDef,
DashboardVersionDefinitionOutputTypeDef,
TemplateVersionDefinitionOutputTypeDef,
AnalysisDefinitionTypeDef,
DashboardVersionDefinitionTypeDef,
TemplateVersionDefinitionTypeDef,
DescribeAnalysisDefinitionResponseTypeDef,
DescribeDashboardDefinitionResponseTypeDef,
DescribeTemplateDefinitionResponseTypeDef,
CreateAnalysisRequestRequestTypeDef,
UpdateAnalysisRequestRequestTypeDef,
CreateDashboardRequestRequestTypeDef,
UpdateDashboardRequestRequestTypeDef,
CreateTemplateRequestRequestTypeDef,
UpdateTemplateRequestRequestTypeDef,
)
def get_structure() -> AccountCustomizationOutputTypeDef:
return {...}
How it works
Fully automated
mypy-boto3-builder carefully
generates type annotations for each service, patiently waiting for boto3
updates. It delivers drop-in type annotations for you and makes sure that:
- All available
boto3
services are covered. - Each public class and method of every
boto3
service gets valid type annotations extracted frombotocore
schemas. - Type annotations include up-to-date documentation.
- Link to documentation is provided for every method.
- Code is processed by black and isort for readability.
What's new
Implemented features
- Fully type annotated
boto3
,botocore
,aiobotocore
andaioboto3
libraries mypy
,pyright
,VSCode
,PyCharm
,Sublime Text
andEmacs
compatibilityClient
,ServiceResource
,Resource
,Waiter
Paginator
type annotations for each service- Generated
TypeDefs
for each service - Generated
Literals
for each service - Auto discovery of types for
boto3.client
andboto3.resource
calls - Auto discovery of types for
session.client
andsession.resource
calls - Auto discovery of types for
client.get_waiter
andclient.get_paginator
calls - Auto discovery of types for
ServiceResource
andResource
collections - Auto discovery of types for
aiobotocore.Session.create_client
calls
Latest changes
Builder changelog can be found in Releases.
Versioning
mypy-boto3-quicksight
version is the same as related boto3
version and
follows PEP 440 format.
Thank you
- Allie Fitter for boto3-type-annotations, this package is based on top of his work
- black developers for an awesome formatting tool
- Timothy Edmund Crosley for isort and how flexible it is
- mypy developers for doing all dirty work for us
- pyright team for the new era of typed Python
Documentation
All services type annotations can be found in boto3 docs
Support and contributing
This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for mypy-boto3-quicksight-1.28.12.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c914235e1fa79d1ea9a25edf4e536cdc87d24389f136f3a2c2e3d5529879d8b0 |
|
MD5 | ecf62aeab186851ed55befe8e8906fb7 |
|
BLAKE2b-256 | 836535504badfd0316ad580959c9fe0892297a691fee58c66ba94f797c5241d2 |
Hashes for mypy_boto3_quicksight-1.28.12-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 610aaccc16f61c845ae5ce9b64cacc3ed7bacf7616e6e5f27fd582f0156d71e7 |
|
MD5 | 4239d15d1efe753571f493b203dc7e82 |
|
BLAKE2b-256 | 4a86481b0cd32100d89e0ee46df4133781c7b42bf9e56221c18633164aa5f7e0 |