diff --git a/clients/client-quicksight/README.md b/clients/client-quicksight/README.md
index b4d513b0d9f4..e7156d19045f 100644
--- a/clients/client-quicksight/README.md
+++ b/clients/client-quicksight/README.md
@@ -799,6 +799,14 @@ DescribeDashboardSnapshotJobResult
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DescribeDashboardSnapshotJobResultCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeDashboardSnapshotJobResultCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeDashboardSnapshotJobResultCommandOutput/)
+
+
+
+DescribeDashboardsQAConfiguration
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DescribeDashboardsQAConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeDashboardsQAConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeDashboardsQAConfigurationCommandOutput/)
+
@@ -1423,6 +1431,14 @@ SearchGroups
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/SearchGroupsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/SearchGroupsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/SearchGroupsCommandOutput/)
+
+
+
+SearchTopics
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/SearchTopicsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/SearchTopicsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/SearchTopicsCommandOutput/)
+
@@ -1567,6 +1583,14 @@ UpdateDashboardPublishedVersion
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateDashboardPublishedVersionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateDashboardPublishedVersionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateDashboardPublishedVersionCommandOutput/)
+
+
+
+UpdateDashboardsQAConfiguration
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateDashboardsQAConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateDashboardsQAConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateDashboardsQAConfigurationCommandOutput/)
+
diff --git a/clients/client-quicksight/src/QuickSight.ts b/clients/client-quicksight/src/QuickSight.ts
index 83d2d326ccf4..c6ee37bf3b98 100644
--- a/clients/client-quicksight/src/QuickSight.ts
+++ b/clients/client-quicksight/src/QuickSight.ts
@@ -336,6 +336,11 @@ import {
DescribeDashboardSnapshotJobResultCommandInput,
DescribeDashboardSnapshotJobResultCommandOutput,
} from "./commands/DescribeDashboardSnapshotJobResultCommand";
+import {
+ DescribeDashboardsQAConfigurationCommand,
+ DescribeDashboardsQAConfigurationCommandInput,
+ DescribeDashboardsQAConfigurationCommandOutput,
+} from "./commands/DescribeDashboardsQAConfigurationCommand";
import {
DescribeDataSetCommand,
DescribeDataSetCommandInput,
@@ -702,6 +707,11 @@ import {
SearchGroupsCommandInput,
SearchGroupsCommandOutput,
} from "./commands/SearchGroupsCommand";
+import {
+ SearchTopicsCommand,
+ SearchTopicsCommandInput,
+ SearchTopicsCommandOutput,
+} from "./commands/SearchTopicsCommand";
import {
StartAssetBundleExportJobCommand,
StartAssetBundleExportJobCommandInput,
@@ -784,6 +794,11 @@ import {
UpdateDashboardPublishedVersionCommandInput,
UpdateDashboardPublishedVersionCommandOutput,
} from "./commands/UpdateDashboardPublishedVersionCommand";
+import {
+ UpdateDashboardsQAConfigurationCommand,
+ UpdateDashboardsQAConfigurationCommandInput,
+ UpdateDashboardsQAConfigurationCommandOutput,
+} from "./commands/UpdateDashboardsQAConfigurationCommand";
import {
UpdateDataSetCommand,
UpdateDataSetCommandInput,
@@ -985,6 +1000,7 @@ const commands = {
DescribeDashboardPermissionsCommand,
DescribeDashboardSnapshotJobCommand,
DescribeDashboardSnapshotJobResultCommand,
+ DescribeDashboardsQAConfigurationCommand,
DescribeDataSetCommand,
DescribeDataSetPermissionsCommand,
DescribeDataSetRefreshPropertiesCommand,
@@ -1063,6 +1079,7 @@ const commands = {
SearchDataSourcesCommand,
SearchFoldersCommand,
SearchGroupsCommand,
+ SearchTopicsCommand,
StartAssetBundleExportJobCommand,
StartAssetBundleImportJobCommand,
StartDashboardSnapshotJobCommand,
@@ -1081,6 +1098,7 @@ const commands = {
UpdateDashboardLinksCommand,
UpdateDashboardPermissionsCommand,
UpdateDashboardPublishedVersionCommand,
+ UpdateDashboardsQAConfigurationCommand,
UpdateDataSetCommand,
UpdateDataSetPermissionsCommand,
UpdateDataSourceCommand,
@@ -2256,6 +2274,23 @@ export interface QuickSight {
cb: (err: any, data?: DescribeDashboardSnapshotJobResultCommandOutput) => void
): void;
+ /**
+ * @see {@link DescribeDashboardsQAConfigurationCommand}
+ */
+ describeDashboardsQAConfiguration(
+ args: DescribeDashboardsQAConfigurationCommandInput,
+ options?: __HttpHandlerOptions
+ ): Promise;
+ describeDashboardsQAConfiguration(
+ args: DescribeDashboardsQAConfigurationCommandInput,
+ cb: (err: any, data?: DescribeDashboardsQAConfigurationCommandOutput) => void
+ ): void;
+ describeDashboardsQAConfiguration(
+ args: DescribeDashboardsQAConfigurationCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: DescribeDashboardsQAConfigurationCommandOutput) => void
+ ): void;
+
/**
* @see {@link DescribeDataSetCommand}
*/
@@ -3456,6 +3491,17 @@ export interface QuickSight {
cb: (err: any, data?: SearchGroupsCommandOutput) => void
): void;
+ /**
+ * @see {@link SearchTopicsCommand}
+ */
+ searchTopics(args: SearchTopicsCommandInput, options?: __HttpHandlerOptions): Promise;
+ searchTopics(args: SearchTopicsCommandInput, cb: (err: any, data?: SearchTopicsCommandOutput) => void): void;
+ searchTopics(
+ args: SearchTopicsCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: SearchTopicsCommandOutput) => void
+ ): void;
+
/**
* @see {@link StartAssetBundleExportJobCommand}
*/
@@ -3738,6 +3784,23 @@ export interface QuickSight {
cb: (err: any, data?: UpdateDashboardPublishedVersionCommandOutput) => void
): void;
+ /**
+ * @see {@link UpdateDashboardsQAConfigurationCommand}
+ */
+ updateDashboardsQAConfiguration(
+ args: UpdateDashboardsQAConfigurationCommandInput,
+ options?: __HttpHandlerOptions
+ ): Promise;
+ updateDashboardsQAConfiguration(
+ args: UpdateDashboardsQAConfigurationCommandInput,
+ cb: (err: any, data?: UpdateDashboardsQAConfigurationCommandOutput) => void
+ ): void;
+ updateDashboardsQAConfiguration(
+ args: UpdateDashboardsQAConfigurationCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: UpdateDashboardsQAConfigurationCommandOutput) => void
+ ): void;
+
/**
* @see {@link UpdateDataSetCommand}
*/
diff --git a/clients/client-quicksight/src/QuickSightClient.ts b/clients/client-quicksight/src/QuickSightClient.ts
index e38f9552c33c..182b459342d0 100644
--- a/clients/client-quicksight/src/QuickSightClient.ts
+++ b/clients/client-quicksight/src/QuickSightClient.ts
@@ -259,6 +259,10 @@ import {
DescribeDashboardSnapshotJobResultCommandInput,
DescribeDashboardSnapshotJobResultCommandOutput,
} from "./commands/DescribeDashboardSnapshotJobResultCommand";
+import {
+ DescribeDashboardsQAConfigurationCommandInput,
+ DescribeDashboardsQAConfigurationCommandOutput,
+} from "./commands/DescribeDashboardsQAConfigurationCommand";
import { DescribeDataSetCommandInput, DescribeDataSetCommandOutput } from "./commands/DescribeDataSetCommand";
import {
DescribeDataSetPermissionsCommandInput,
@@ -457,6 +461,7 @@ import { SearchDataSetsCommandInput, SearchDataSetsCommandOutput } from "./comma
import { SearchDataSourcesCommandInput, SearchDataSourcesCommandOutput } from "./commands/SearchDataSourcesCommand";
import { SearchFoldersCommandInput, SearchFoldersCommandOutput } from "./commands/SearchFoldersCommand";
import { SearchGroupsCommandInput, SearchGroupsCommandOutput } from "./commands/SearchGroupsCommand";
+import { SearchTopicsCommandInput, SearchTopicsCommandOutput } from "./commands/SearchTopicsCommand";
import {
StartAssetBundleExportJobCommandInput,
StartAssetBundleExportJobCommandOutput,
@@ -514,6 +519,10 @@ import {
UpdateDashboardPublishedVersionCommandInput,
UpdateDashboardPublishedVersionCommandOutput,
} from "./commands/UpdateDashboardPublishedVersionCommand";
+import {
+ UpdateDashboardsQAConfigurationCommandInput,
+ UpdateDashboardsQAConfigurationCommandOutput,
+} from "./commands/UpdateDashboardsQAConfigurationCommand";
import { UpdateDataSetCommandInput, UpdateDataSetCommandOutput } from "./commands/UpdateDataSetCommand";
import {
UpdateDataSetPermissionsCommandInput,
@@ -688,6 +697,7 @@ export type ServiceInputTypes =
| DescribeDashboardPermissionsCommandInput
| DescribeDashboardSnapshotJobCommandInput
| DescribeDashboardSnapshotJobResultCommandInput
+ | DescribeDashboardsQAConfigurationCommandInput
| DescribeDataSetCommandInput
| DescribeDataSetPermissionsCommandInput
| DescribeDataSetRefreshPropertiesCommandInput
@@ -766,6 +776,7 @@ export type ServiceInputTypes =
| SearchDataSourcesCommandInput
| SearchFoldersCommandInput
| SearchGroupsCommandInput
+ | SearchTopicsCommandInput
| StartAssetBundleExportJobCommandInput
| StartAssetBundleImportJobCommandInput
| StartDashboardSnapshotJobCommandInput
@@ -784,6 +795,7 @@ export type ServiceInputTypes =
| UpdateDashboardLinksCommandInput
| UpdateDashboardPermissionsCommandInput
| UpdateDashboardPublishedVersionCommandInput
+ | UpdateDashboardsQAConfigurationCommandInput
| UpdateDataSetCommandInput
| UpdateDataSetPermissionsCommandInput
| UpdateDataSourceCommandInput
@@ -891,6 +903,7 @@ export type ServiceOutputTypes =
| DescribeDashboardPermissionsCommandOutput
| DescribeDashboardSnapshotJobCommandOutput
| DescribeDashboardSnapshotJobResultCommandOutput
+ | DescribeDashboardsQAConfigurationCommandOutput
| DescribeDataSetCommandOutput
| DescribeDataSetPermissionsCommandOutput
| DescribeDataSetRefreshPropertiesCommandOutput
@@ -969,6 +982,7 @@ export type ServiceOutputTypes =
| SearchDataSourcesCommandOutput
| SearchFoldersCommandOutput
| SearchGroupsCommandOutput
+ | SearchTopicsCommandOutput
| StartAssetBundleExportJobCommandOutput
| StartAssetBundleImportJobCommandOutput
| StartDashboardSnapshotJobCommandOutput
@@ -987,6 +1001,7 @@ export type ServiceOutputTypes =
| UpdateDashboardLinksCommandOutput
| UpdateDashboardPermissionsCommandOutput
| UpdateDashboardPublishedVersionCommandOutput
+ | UpdateDashboardsQAConfigurationCommandOutput
| UpdateDataSetCommandOutput
| UpdateDataSetPermissionsCommandOutput
| UpdateDataSourceCommandOutput
diff --git a/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts b/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts
index 26b62e238998..24a25f4d0bd0 100644
--- a/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts
+++ b/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts
@@ -9,7 +9,7 @@ import { BatchCreateTopicReviewedAnswerResponse } from "../models/models_2";
import {
BatchCreateTopicReviewedAnswerRequest,
BatchCreateTopicReviewedAnswerRequestFilterSensitiveLog,
-} from "../models/models_4";
+} from "../models/models_5";
import {
de_BatchCreateTopicReviewedAnswerCommand,
se_BatchCreateTopicReviewedAnswerCommand,
diff --git a/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts b/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts
index 3caeee0c9178..31ce615e16b1 100644
--- a/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts
+++ b/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts
@@ -5,7 +5,7 @@ import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { commonParams } from "../endpoint/EndpointParameters";
-import { CreateAccountCustomizationRequest, CreateAccountCustomizationResponse } from "../models/models_2";
+import { CreateAccountCustomizationRequest, CreateAccountCustomizationResponse } from "../models/models_3";
import { de_CreateAccountCustomizationCommand, se_CreateAccountCustomizationCommand } from "../protocols/Aws_restJson1";
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
diff --git a/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts b/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts
index d05c40ddbbb7..53e96e5db2e4 100644
--- a/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts
+++ b/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts
@@ -5,7 +5,7 @@ import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { commonParams } from "../endpoint/EndpointParameters";
-import { CreateAccountSubscriptionRequest, CreateAccountSubscriptionResponse } from "../models/models_2";
+import { CreateAccountSubscriptionRequest, CreateAccountSubscriptionResponse } from "../models/models_3";
import { de_CreateAccountSubscriptionCommand, se_CreateAccountSubscriptionCommand } from "../protocols/Aws_restJson1";
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
diff --git a/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts b/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts
index e6b7d42f2cdc..1c1225b750ae 100644
--- a/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts
+++ b/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts
@@ -9,7 +9,7 @@ import {
CreateAnalysisRequest,
CreateAnalysisRequestFilterSensitiveLog,
CreateAnalysisResponse,
-} from "../models/models_2";
+} from "../models/models_3";
import { de_CreateAnalysisCommand, se_CreateAnalysisCommand } from "../protocols/Aws_restJson1";
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
@@ -128,6 +128,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* FontConfiguration: { // FontConfiguration
* FontSize: { // FontSize
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -135,6 +136,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -163,6 +165,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -170,6 +173,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -213,6 +217,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -220,6 +225,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -261,6 +267,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -268,6 +275,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -291,6 +299,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -298,6 +307,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -1146,6 +1156,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* ],
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* PivotTableVisual: { // PivotTableVisual
* VisualId: "STRING_VALUE", // required
@@ -1610,6 +1621,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* ],
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* BarChartVisual: { // BarChartVisual
* VisualId: "STRING_VALUE", // required
@@ -1958,6 +1970,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: { // DataLabelOptions
* Visibility: "HIDDEN" || "VISIBLE",
@@ -2217,6 +2230,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* KPIVisual: { // KPIVisual
* VisualId: "STRING_VALUE", // required
@@ -2540,6 +2554,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* PieChartVisual: { // PieChartVisual
* VisualId: "STRING_VALUE", // required
@@ -2654,6 +2669,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: {
* Visibility: "HIDDEN" || "VISIBLE",
@@ -2832,6 +2848,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* GaugeChartVisual: { // GaugeChartVisual
* VisualId: "STRING_VALUE", // required
@@ -2952,6 +2969,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* ],
* },
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* LineChartVisual: { // LineChartVisual
* VisualId: "STRING_VALUE", // required
@@ -3230,6 +3248,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: {
* Visibility: "HIDDEN" || "VISIBLE",
@@ -3366,6 +3385,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* HeatMapVisual: { // HeatMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3412,6 +3432,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: {
* Visibility: "HIDDEN" || "VISIBLE",
@@ -3496,6 +3517,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* ],
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* TreeMapVisual: { // TreeMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3541,6 +3563,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: "",
* Tooltip: "",
@@ -3548,6 +3571,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* GeospatialMapVisual: { // GeospatialMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3608,6 +3632,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* ColumnHierarchies: "",
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* FilledMapVisual: { // FilledMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3657,6 +3682,284 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* ColumnHierarchies: "",
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
+ * },
+ * LayerMapVisual: { // LayerMapVisual
+ * VisualId: "STRING_VALUE", // required
+ * Title: "",
+ * Subtitle: "",
+ * ChartConfiguration: { // GeospatialLayerMapConfiguration
+ * Legend: "",
+ * MapLayers: [ // GeospatialMapLayerList
+ * { // GeospatialLayerItem
+ * LayerId: "STRING_VALUE", // required
+ * LayerType: "POINT" || "LINE" || "POLYGON",
+ * DataSource: { // GeospatialDataSourceItem
+ * StaticFileDataSource: { // GeospatialStaticFileSource
+ * StaticFileId: "STRING_VALUE", // required
+ * },
+ * },
+ * Label: "STRING_VALUE",
+ * Visibility: "HIDDEN" || "VISIBLE",
+ * LayerDefinition: { // GeospatialLayerDefinition
+ * PointLayer: { // GeospatialPointLayer
+ * Style: { // GeospatialPointStyle
+ * CircleSymbolStyle: { // GeospatialCircleSymbolStyle
+ * FillColor: { // GeospatialColor
+ * Solid: { // GeospatialSolidColor
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: { // GeospatialGradientColor
+ * StepColors: [ // GeospatialGradientStepColorList // required
+ * { // GeospatialGradientStepColor
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: { // GeospatialNullDataSettings
+ * SymbolStyle: { // GeospatialNullSymbolStyle
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: { // GeospatialCategoricalColor
+ * CategoryDataColors: [ // GeospatialCategoricalDataColorList // required
+ * { // GeospatialCategoricalDataColor
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeWidth: { // GeospatialLineWidth
+ * LineWidth: Number("double"),
+ * },
+ * CircleRadius: { // GeospatialCircleRadius
+ * Radius: Number("double"),
+ * },
+ * },
+ * },
+ * },
+ * LineLayer: { // GeospatialLineLayer
+ * Style: { // GeospatialLineStyle
+ * LineSymbolStyle: { // GeospatialLineSymbolStyle
+ * FillColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * LineWidth: {
+ * LineWidth: Number("double"),
+ * },
+ * },
+ * },
+ * },
+ * PolygonLayer: { // GeospatialPolygonLayer
+ * Style: { // GeospatialPolygonStyle
+ * PolygonSymbolStyle: { // GeospatialPolygonSymbolStyle
+ * FillColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeWidth: {
+ * LineWidth: Number("double"),
+ * },
+ * },
+ * },
+ * },
+ * },
+ * Tooltip: "",
+ * JoinDefinition: { // GeospatialLayerJoinDefinition
+ * ShapeKeyField: "STRING_VALUE",
+ * DatasetKeyField: {
+ * FieldId: "STRING_VALUE", // required
+ * Column: "", // required
+ * FormatConfiguration: {
+ * StringFormatConfiguration: "",
+ * NumberFormatConfiguration: "",
+ * DateTimeFormatConfiguration: "",
+ * },
+ * },
+ * ColorField: { // GeospatialLayerColorField
+ * ColorDimensionsFields: [ // GeospatialLayerDimensionFieldList
+ * "",
+ * ],
+ * ColorValuesFields: [ // GeospatialLayerMeasureFieldList
+ * "",
+ * ],
+ * },
+ * },
+ * Actions: [ // LayerCustomActionList
+ * { // LayerCustomAction
+ * CustomActionId: "STRING_VALUE", // required
+ * Name: "STRING_VALUE", // required
+ * Status: "ENABLED" || "DISABLED",
+ * Trigger: "DATA_POINT_CLICK" || "DATA_POINT_MENU", // required
+ * ActionOperations: [ // LayerCustomActionOperationList // required
+ * { // LayerCustomActionOperation
+ * FilterOperation: "",
+ * NavigationOperation: "",
+ * URLOperation: "",
+ * SetParametersOperation: "",
+ * },
+ * ],
+ * },
+ * ],
+ * },
+ * ],
+ * MapState: { // GeospatialMapState
+ * Bounds: {
+ * North: Number("double"), // required
+ * South: Number("double"), // required
+ * West: Number("double"), // required
+ * East: Number("double"), // required
+ * },
+ * MapNavigation: "ENABLED" || "DISABLED",
+ * },
+ * MapStyle: { // GeospatialMapStyle
+ * BaseMapStyle: "LIGHT_GRAY" || "DARK_GRAY" || "STREET" || "IMAGERY",
+ * BackgroundColor: "STRING_VALUE",
+ * BaseMapVisibility: "HIDDEN" || "VISIBLE",
+ * },
+ * Interactions: "",
+ * },
+ * DataSetIdentifier: "STRING_VALUE", // required
+ * VisualContentAltText: "STRING_VALUE",
* },
* FunnelChartVisual: { // FunnelChartVisual
* VisualId: "STRING_VALUE", // required
@@ -3694,6 +3997,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* ScatterPlotVisual: { // ScatterPlotVisual
* VisualId: "STRING_VALUE", // required
@@ -3731,6 +4035,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* ComboChartVisual: { // ComboChartVisual
* VisualId: "STRING_VALUE", // required
@@ -3807,6 +4112,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* BoxPlotVisual: { // BoxPlotVisual
* VisualId: "STRING_VALUE", // required
@@ -3882,6 +4188,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* WaterfallVisual: { // WaterfallVisual
* VisualId: "STRING_VALUE", // required
@@ -3920,6 +4227,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* HistogramVisual: { // HistogramVisual
* VisualId: "STRING_VALUE", // required
@@ -3953,6 +4261,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Interactions: "",
* },
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* WordCloudVisual: { // WordCloudVisual
* VisualId: "STRING_VALUE", // required
@@ -3986,6 +4295,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* InsightVisual: { // InsightVisual
* VisualId: "STRING_VALUE", // required
@@ -4078,6 +4388,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* DataSetIdentifier: "STRING_VALUE", // required
+ * VisualContentAltText: "STRING_VALUE",
* },
* SankeyDiagramVisual: { // SankeyDiagramVisual
* VisualId: "STRING_VALUE", // required
@@ -4100,6 +4411,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Interactions: "",
* },
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* CustomContentVisual: { // CustomContentVisual
* VisualId: "STRING_VALUE", // required
@@ -4113,6 +4425,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* DataSetIdentifier: "STRING_VALUE", // required
+ * VisualContentAltText: "STRING_VALUE",
* },
* EmptyVisual: { // EmptyVisual
* VisualId: "STRING_VALUE", // required
@@ -4164,6 +4477,52 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
+ * },
+ * PluginVisual: { // PluginVisual
+ * VisualId: "STRING_VALUE", // required
+ * PluginArn: "STRING_VALUE", // required
+ * Title: "",
+ * Subtitle: "",
+ * ChartConfiguration: { // PluginVisualConfiguration
+ * FieldWells: [ // PluginVisualFieldWells
+ * { // PluginVisualFieldWell
+ * AxisName: "GROUP_BY" || "VALUE",
+ * Dimensions: "",
+ * Measures: "",
+ * Unaggregated: [
+ * {
+ * FieldId: "STRING_VALUE", // required
+ * Column: "", // required
+ * FormatConfiguration: {
+ * StringFormatConfiguration: "",
+ * NumberFormatConfiguration: "",
+ * DateTimeFormatConfiguration: "",
+ * },
+ * },
+ * ],
+ * },
+ * ],
+ * VisualOptions: { // PluginVisualOptions
+ * VisualProperties: [ // PluginVisualPropertiesList
+ * { // PluginVisualProperty
+ * Name: "STRING_VALUE",
+ * Value: "STRING_VALUE",
+ * },
+ * ],
+ * },
+ * SortConfiguration: { // PluginVisualSortConfiguration
+ * PluginVisualTableQuerySort: { // PluginVisualTableQuerySort
+ * RowSort: [
+ * "",
+ * ],
+ * ItemsLimitConfiguration: { // PluginVisualItemsLimitConfiguration
+ * ItemsLimit: Number("long"),
+ * },
+ * },
+ * },
+ * },
+ * VisualContentAltText: "STRING_VALUE",
* },
* },
* ],
@@ -4173,6 +4532,46 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Content: "STRING_VALUE",
* },
* ],
+ * Images: [ // SheetImageList
+ * { // SheetImage
+ * SheetImageId: "STRING_VALUE", // required
+ * Source: { // SheetImageSource
+ * SheetImageStaticFileSource: { // SheetImageStaticFileSource
+ * StaticFileId: "STRING_VALUE", // required
+ * },
+ * },
+ * Scaling: { // SheetImageScalingConfiguration
+ * ScalingType: "SCALE_TO_WIDTH" || "SCALE_TO_HEIGHT" || "SCALE_TO_CONTAINER" || "SCALE_NONE",
+ * },
+ * Tooltip: { // SheetImageTooltipConfiguration
+ * TooltipText: { // SheetImageTooltipText
+ * PlainText: "STRING_VALUE",
+ * },
+ * Visibility: "HIDDEN" || "VISIBLE",
+ * },
+ * ImageContentAltText: "STRING_VALUE",
+ * Interactions: { // ImageInteractionOptions
+ * ImageMenuOption: { // ImageMenuOption
+ * AvailabilityStatus: "ENABLED" || "DISABLED",
+ * },
+ * },
+ * Actions: [ // ImageCustomActionList
+ * { // ImageCustomAction
+ * CustomActionId: "STRING_VALUE", // required
+ * Name: "STRING_VALUE", // required
+ * Status: "ENABLED" || "DISABLED",
+ * Trigger: "CLICK" || "MENU", // required
+ * ActionOperations: [ // ImageCustomActionOperationList // required
+ * { // ImageCustomActionOperation
+ * NavigationOperation: "",
+ * URLOperation: "",
+ * SetParametersOperation: "",
+ * },
+ * ],
+ * },
+ * ],
+ * },
+ * ],
* Layouts: [ // LayoutList
* { // Layout
* Configuration: { // LayoutConfiguration
@@ -4180,7 +4579,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Elements: [ // GridLayoutElementList // required
* { // GridLayoutElement
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* ColumnIndex: Number("int"),
* ColumnSpan: Number("int"), // required
* RowIndex: Number("int"),
@@ -4198,7 +4597,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Elements: [ // FreeFromLayoutElementList // required
* { // FreeFormLayoutElement
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* XAxisLocation: "STRING_VALUE", // required
* YAxisLocation: "STRING_VALUE", // required
* Width: "STRING_VALUE", // required
@@ -4244,7 +4643,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Elements: [ // required
* {
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* XAxisLocation: "STRING_VALUE", // required
* YAxisLocation: "STRING_VALUE", // required
* Width: "STRING_VALUE", // required
@@ -4384,7 +4783,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Elements: [ // required
* {
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* ColumnIndex: Number("int"),
* ColumnSpan: Number("int"), // required
* RowIndex: Number("int"),
@@ -5052,6 +5451,36 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* QueryExecutionOptions: { // QueryExecutionOptions
* QueryExecutionMode: "AUTO" || "MANUAL",
* },
+ * StaticFiles: [ // StaticFileList
+ * { // StaticFile
+ * ImageStaticFile: { // ImageStaticFile
+ * StaticFileId: "STRING_VALUE", // required
+ * Source: { // StaticFileSource
+ * UrlOptions: { // StaticFileUrlSourceOptions
+ * Url: "STRING_VALUE", // required
+ * },
+ * S3Options: { // StaticFileS3SourceOptions
+ * BucketName: "STRING_VALUE", // required
+ * ObjectKey: "STRING_VALUE", // required
+ * Region: "STRING_VALUE", // required
+ * },
+ * },
+ * },
+ * SpatialStaticFile: { // SpatialStaticFile
+ * StaticFileId: "STRING_VALUE", // required
+ * Source: {
+ * UrlOptions: {
+ * Url: "STRING_VALUE", // required
+ * },
+ * S3Options: {
+ * BucketName: "STRING_VALUE", // required
+ * ObjectKey: "STRING_VALUE", // required
+ * Region: "STRING_VALUE", // required
+ * },
+ * },
+ * },
+ * },
+ * ],
* },
* ValidationStrategy: { // ValidationStrategy
* Mode: "STRICT" || "LENIENT", // required
diff --git a/clients/client-quicksight/src/commands/CreateBrandCommand.ts b/clients/client-quicksight/src/commands/CreateBrandCommand.ts
index 6a4a373e968a..c57818ceef07 100644
--- a/clients/client-quicksight/src/commands/CreateBrandCommand.ts
+++ b/clients/client-quicksight/src/commands/CreateBrandCommand.ts
@@ -5,7 +5,7 @@ import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { commonParams } from "../endpoint/EndpointParameters";
-import { CreateBrandRequest, CreateBrandResponse } from "../models/models_2";
+import { CreateBrandRequest, CreateBrandResponse } from "../models/models_3";
import { de_CreateBrandCommand, se_CreateBrandCommand } from "../protocols/Aws_restJson1";
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
diff --git a/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts
index 3ec166bcd2e9..36f8ea253859 100644
--- a/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts
+++ b/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts
@@ -5,7 +5,7 @@ import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { commonParams } from "../endpoint/EndpointParameters";
-import { CreateCustomPermissionsRequest, CreateCustomPermissionsResponse } from "../models/models_2";
+import { CreateCustomPermissionsRequest, CreateCustomPermissionsResponse } from "../models/models_3";
import { de_CreateCustomPermissionsCommand, se_CreateCustomPermissionsCommand } from "../protocols/Aws_restJson1";
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
diff --git a/clients/client-quicksight/src/commands/CreateDashboardCommand.ts b/clients/client-quicksight/src/commands/CreateDashboardCommand.ts
index c17e57f50f74..062dbf81e42b 100644
--- a/clients/client-quicksight/src/commands/CreateDashboardCommand.ts
+++ b/clients/client-quicksight/src/commands/CreateDashboardCommand.ts
@@ -9,7 +9,7 @@ import {
CreateDashboardRequest,
CreateDashboardRequestFilterSensitiveLog,
CreateDashboardResponse,
-} from "../models/models_2";
+} from "../models/models_3";
import { de_CreateDashboardCommand, se_CreateDashboardCommand } from "../protocols/Aws_restJson1";
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
@@ -174,6 +174,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* FontConfiguration: { // FontConfiguration
* FontSize: { // FontSize
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -181,6 +182,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -209,6 +211,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -216,6 +219,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -259,6 +263,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -266,6 +271,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -307,6 +313,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -314,6 +321,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -337,6 +345,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -344,6 +353,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -1192,6 +1202,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* ],
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* PivotTableVisual: { // PivotTableVisual
* VisualId: "STRING_VALUE", // required
@@ -1656,6 +1667,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* ],
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* BarChartVisual: { // BarChartVisual
* VisualId: "STRING_VALUE", // required
@@ -2004,6 +2016,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: { // DataLabelOptions
* Visibility: "HIDDEN" || "VISIBLE",
@@ -2263,6 +2276,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* KPIVisual: { // KPIVisual
* VisualId: "STRING_VALUE", // required
@@ -2586,6 +2600,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* PieChartVisual: { // PieChartVisual
* VisualId: "STRING_VALUE", // required
@@ -2700,6 +2715,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: {
* Visibility: "HIDDEN" || "VISIBLE",
@@ -2876,6 +2892,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* GaugeChartVisual: { // GaugeChartVisual
* VisualId: "STRING_VALUE", // required
@@ -2996,6 +3013,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* ],
* },
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* LineChartVisual: { // LineChartVisual
* VisualId: "STRING_VALUE", // required
@@ -3274,6 +3292,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: {
* Visibility: "HIDDEN" || "VISIBLE",
@@ -3410,6 +3429,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* HeatMapVisual: { // HeatMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3456,6 +3476,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: {
* Visibility: "HIDDEN" || "VISIBLE",
@@ -3540,6 +3561,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* ],
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* TreeMapVisual: { // TreeMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3585,6 +3607,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: "",
* Tooltip: "",
@@ -3592,6 +3615,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* GeospatialMapVisual: { // GeospatialMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3652,6 +3676,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* ColumnHierarchies: "",
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* FilledMapVisual: { // FilledMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3701,6 +3726,284 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* ColumnHierarchies: "",
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
+ * },
+ * LayerMapVisual: { // LayerMapVisual
+ * VisualId: "STRING_VALUE", // required
+ * Title: "",
+ * Subtitle: "",
+ * ChartConfiguration: { // GeospatialLayerMapConfiguration
+ * Legend: "",
+ * MapLayers: [ // GeospatialMapLayerList
+ * { // GeospatialLayerItem
+ * LayerId: "STRING_VALUE", // required
+ * LayerType: "POINT" || "LINE" || "POLYGON",
+ * DataSource: { // GeospatialDataSourceItem
+ * StaticFileDataSource: { // GeospatialStaticFileSource
+ * StaticFileId: "STRING_VALUE", // required
+ * },
+ * },
+ * Label: "STRING_VALUE",
+ * Visibility: "HIDDEN" || "VISIBLE",
+ * LayerDefinition: { // GeospatialLayerDefinition
+ * PointLayer: { // GeospatialPointLayer
+ * Style: { // GeospatialPointStyle
+ * CircleSymbolStyle: { // GeospatialCircleSymbolStyle
+ * FillColor: { // GeospatialColor
+ * Solid: { // GeospatialSolidColor
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: { // GeospatialGradientColor
+ * StepColors: [ // GeospatialGradientStepColorList // required
+ * { // GeospatialGradientStepColor
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: { // GeospatialNullDataSettings
+ * SymbolStyle: { // GeospatialNullSymbolStyle
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: { // GeospatialCategoricalColor
+ * CategoryDataColors: [ // GeospatialCategoricalDataColorList // required
+ * { // GeospatialCategoricalDataColor
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeWidth: { // GeospatialLineWidth
+ * LineWidth: Number("double"),
+ * },
+ * CircleRadius: { // GeospatialCircleRadius
+ * Radius: Number("double"),
+ * },
+ * },
+ * },
+ * },
+ * LineLayer: { // GeospatialLineLayer
+ * Style: { // GeospatialLineStyle
+ * LineSymbolStyle: { // GeospatialLineSymbolStyle
+ * FillColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * LineWidth: {
+ * LineWidth: Number("double"),
+ * },
+ * },
+ * },
+ * },
+ * PolygonLayer: { // GeospatialPolygonLayer
+ * Style: { // GeospatialPolygonStyle
+ * PolygonSymbolStyle: { // GeospatialPolygonSymbolStyle
+ * FillColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeWidth: {
+ * LineWidth: Number("double"),
+ * },
+ * },
+ * },
+ * },
+ * },
+ * Tooltip: "",
+ * JoinDefinition: { // GeospatialLayerJoinDefinition
+ * ShapeKeyField: "STRING_VALUE",
+ * DatasetKeyField: {
+ * FieldId: "STRING_VALUE", // required
+ * Column: "", // required
+ * FormatConfiguration: {
+ * StringFormatConfiguration: "",
+ * NumberFormatConfiguration: "",
+ * DateTimeFormatConfiguration: "",
+ * },
+ * },
+ * ColorField: { // GeospatialLayerColorField
+ * ColorDimensionsFields: [ // GeospatialLayerDimensionFieldList
+ * "",
+ * ],
+ * ColorValuesFields: [ // GeospatialLayerMeasureFieldList
+ * "",
+ * ],
+ * },
+ * },
+ * Actions: [ // LayerCustomActionList
+ * { // LayerCustomAction
+ * CustomActionId: "STRING_VALUE", // required
+ * Name: "STRING_VALUE", // required
+ * Status: "ENABLED" || "DISABLED",
+ * Trigger: "DATA_POINT_CLICK" || "DATA_POINT_MENU", // required
+ * ActionOperations: [ // LayerCustomActionOperationList // required
+ * { // LayerCustomActionOperation
+ * FilterOperation: "",
+ * NavigationOperation: "",
+ * URLOperation: "",
+ * SetParametersOperation: "",
+ * },
+ * ],
+ * },
+ * ],
+ * },
+ * ],
+ * MapState: { // GeospatialMapState
+ * Bounds: {
+ * North: Number("double"), // required
+ * South: Number("double"), // required
+ * West: Number("double"), // required
+ * East: Number("double"), // required
+ * },
+ * MapNavigation: "ENABLED" || "DISABLED",
+ * },
+ * MapStyle: { // GeospatialMapStyle
+ * BaseMapStyle: "LIGHT_GRAY" || "DARK_GRAY" || "STREET" || "IMAGERY",
+ * BackgroundColor: "STRING_VALUE",
+ * BaseMapVisibility: "HIDDEN" || "VISIBLE",
+ * },
+ * Interactions: "",
+ * },
+ * DataSetIdentifier: "STRING_VALUE", // required
+ * VisualContentAltText: "STRING_VALUE",
* },
* FunnelChartVisual: { // FunnelChartVisual
* VisualId: "STRING_VALUE", // required
@@ -3738,6 +4041,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* ScatterPlotVisual: { // ScatterPlotVisual
* VisualId: "STRING_VALUE", // required
@@ -3775,6 +4079,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* ComboChartVisual: { // ComboChartVisual
* VisualId: "STRING_VALUE", // required
@@ -3851,6 +4156,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* BoxPlotVisual: { // BoxPlotVisual
* VisualId: "STRING_VALUE", // required
@@ -3926,6 +4232,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* WaterfallVisual: { // WaterfallVisual
* VisualId: "STRING_VALUE", // required
@@ -3964,6 +4271,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* HistogramVisual: { // HistogramVisual
* VisualId: "STRING_VALUE", // required
@@ -3997,6 +4305,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Interactions: "",
* },
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* WordCloudVisual: { // WordCloudVisual
* VisualId: "STRING_VALUE", // required
@@ -4030,6 +4339,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* InsightVisual: { // InsightVisual
* VisualId: "STRING_VALUE", // required
@@ -4122,6 +4432,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* DataSetIdentifier: "STRING_VALUE", // required
+ * VisualContentAltText: "STRING_VALUE",
* },
* SankeyDiagramVisual: { // SankeyDiagramVisual
* VisualId: "STRING_VALUE", // required
@@ -4144,6 +4455,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Interactions: "",
* },
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* CustomContentVisual: { // CustomContentVisual
* VisualId: "STRING_VALUE", // required
@@ -4157,6 +4469,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* DataSetIdentifier: "STRING_VALUE", // required
+ * VisualContentAltText: "STRING_VALUE",
* },
* EmptyVisual: { // EmptyVisual
* VisualId: "STRING_VALUE", // required
@@ -4208,6 +4521,52 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
+ * },
+ * PluginVisual: { // PluginVisual
+ * VisualId: "STRING_VALUE", // required
+ * PluginArn: "STRING_VALUE", // required
+ * Title: "",
+ * Subtitle: "",
+ * ChartConfiguration: { // PluginVisualConfiguration
+ * FieldWells: [ // PluginVisualFieldWells
+ * { // PluginVisualFieldWell
+ * AxisName: "GROUP_BY" || "VALUE",
+ * Dimensions: "",
+ * Measures: "",
+ * Unaggregated: [
+ * {
+ * FieldId: "STRING_VALUE", // required
+ * Column: "", // required
+ * FormatConfiguration: {
+ * StringFormatConfiguration: "",
+ * NumberFormatConfiguration: "",
+ * DateTimeFormatConfiguration: "",
+ * },
+ * },
+ * ],
+ * },
+ * ],
+ * VisualOptions: { // PluginVisualOptions
+ * VisualProperties: [ // PluginVisualPropertiesList
+ * { // PluginVisualProperty
+ * Name: "STRING_VALUE",
+ * Value: "STRING_VALUE",
+ * },
+ * ],
+ * },
+ * SortConfiguration: { // PluginVisualSortConfiguration
+ * PluginVisualTableQuerySort: { // PluginVisualTableQuerySort
+ * RowSort: [
+ * "",
+ * ],
+ * ItemsLimitConfiguration: { // PluginVisualItemsLimitConfiguration
+ * ItemsLimit: Number("long"),
+ * },
+ * },
+ * },
+ * },
+ * VisualContentAltText: "STRING_VALUE",
* },
* },
* ],
@@ -4217,6 +4576,46 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Content: "STRING_VALUE",
* },
* ],
+ * Images: [ // SheetImageList
+ * { // SheetImage
+ * SheetImageId: "STRING_VALUE", // required
+ * Source: { // SheetImageSource
+ * SheetImageStaticFileSource: { // SheetImageStaticFileSource
+ * StaticFileId: "STRING_VALUE", // required
+ * },
+ * },
+ * Scaling: { // SheetImageScalingConfiguration
+ * ScalingType: "SCALE_TO_WIDTH" || "SCALE_TO_HEIGHT" || "SCALE_TO_CONTAINER" || "SCALE_NONE",
+ * },
+ * Tooltip: { // SheetImageTooltipConfiguration
+ * TooltipText: { // SheetImageTooltipText
+ * PlainText: "STRING_VALUE",
+ * },
+ * Visibility: "HIDDEN" || "VISIBLE",
+ * },
+ * ImageContentAltText: "STRING_VALUE",
+ * Interactions: { // ImageInteractionOptions
+ * ImageMenuOption: { // ImageMenuOption
+ * AvailabilityStatus: "ENABLED" || "DISABLED",
+ * },
+ * },
+ * Actions: [ // ImageCustomActionList
+ * { // ImageCustomAction
+ * CustomActionId: "STRING_VALUE", // required
+ * Name: "STRING_VALUE", // required
+ * Status: "ENABLED" || "DISABLED",
+ * Trigger: "CLICK" || "MENU", // required
+ * ActionOperations: [ // ImageCustomActionOperationList // required
+ * { // ImageCustomActionOperation
+ * NavigationOperation: "",
+ * URLOperation: "",
+ * SetParametersOperation: "",
+ * },
+ * ],
+ * },
+ * ],
+ * },
+ * ],
* Layouts: [ // LayoutList
* { // Layout
* Configuration: { // LayoutConfiguration
@@ -4224,7 +4623,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Elements: [ // GridLayoutElementList // required
* { // GridLayoutElement
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* ColumnIndex: Number("int"),
* ColumnSpan: Number("int"), // required
* RowIndex: Number("int"),
@@ -4242,7 +4641,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Elements: [ // FreeFromLayoutElementList // required
* { // FreeFormLayoutElement
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* XAxisLocation: "STRING_VALUE", // required
* YAxisLocation: "STRING_VALUE", // required
* Width: "STRING_VALUE", // required
@@ -4288,7 +4687,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Elements: [ // required
* {
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* XAxisLocation: "STRING_VALUE", // required
* YAxisLocation: "STRING_VALUE", // required
* Width: "STRING_VALUE", // required
@@ -4428,7 +4827,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Elements: [ // required
* {
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* ColumnIndex: Number("int"),
* ColumnSpan: Number("int"), // required
* RowIndex: Number("int"),
@@ -5093,6 +5492,36 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
* Timezone: "STRING_VALUE",
* WeekStart: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY",
* },
+ * StaticFiles: [ // StaticFileList
+ * { // StaticFile
+ * ImageStaticFile: { // ImageStaticFile
+ * StaticFileId: "STRING_VALUE", // required
+ * Source: { // StaticFileSource
+ * UrlOptions: { // StaticFileUrlSourceOptions
+ * Url: "STRING_VALUE", // required
+ * },
+ * S3Options: { // StaticFileS3SourceOptions
+ * BucketName: "STRING_VALUE", // required
+ * ObjectKey: "STRING_VALUE", // required
+ * Region: "STRING_VALUE", // required
+ * },
+ * },
+ * },
+ * SpatialStaticFile: { // SpatialStaticFile
+ * StaticFileId: "STRING_VALUE", // required
+ * Source: {
+ * UrlOptions: {
+ * Url: "STRING_VALUE", // required
+ * },
+ * S3Options: {
+ * BucketName: "STRING_VALUE", // required
+ * ObjectKey: "STRING_VALUE", // required
+ * Region: "STRING_VALUE", // required
+ * },
+ * },
+ * },
+ * },
+ * ],
* },
* ValidationStrategy: { // ValidationStrategy
* Mode: "STRICT" || "LENIENT", // required
diff --git a/clients/client-quicksight/src/commands/CreateTemplateCommand.ts b/clients/client-quicksight/src/commands/CreateTemplateCommand.ts
index cf499fea68d3..b09fcd8eb8dd 100644
--- a/clients/client-quicksight/src/commands/CreateTemplateCommand.ts
+++ b/clients/client-quicksight/src/commands/CreateTemplateCommand.ts
@@ -122,6 +122,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* FontConfiguration: { // FontConfiguration
* FontSize: { // FontSize
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -129,6 +130,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -157,6 +159,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -164,6 +167,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -207,6 +211,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -214,6 +219,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -255,6 +261,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -262,6 +269,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -285,6 +293,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* FontConfiguration: {
* FontSize: {
* Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * Absolute: "STRING_VALUE",
* },
* FontDecoration: "UNDERLINE" || "NONE",
* FontColor: "STRING_VALUE",
@@ -292,6 +301,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Name: "NORMAL" || "BOLD",
* },
* FontStyle: "NORMAL" || "ITALIC",
+ * FontFamily: "STRING_VALUE",
* },
* CustomLabel: "STRING_VALUE",
* },
@@ -1140,6 +1150,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* ],
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* PivotTableVisual: { // PivotTableVisual
* VisualId: "STRING_VALUE", // required
@@ -1604,6 +1615,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* ],
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* BarChartVisual: { // BarChartVisual
* VisualId: "STRING_VALUE", // required
@@ -1952,6 +1964,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: { // DataLabelOptions
* Visibility: "HIDDEN" || "VISIBLE",
@@ -2211,6 +2224,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* KPIVisual: { // KPIVisual
* VisualId: "STRING_VALUE", // required
@@ -2534,6 +2548,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* PieChartVisual: { // PieChartVisual
* VisualId: "STRING_VALUE", // required
@@ -2648,6 +2663,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: {
* Visibility: "HIDDEN" || "VISIBLE",
@@ -2826,6 +2842,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* GaugeChartVisual: { // GaugeChartVisual
* VisualId: "STRING_VALUE", // required
@@ -2946,6 +2963,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* ],
* },
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* LineChartVisual: { // LineChartVisual
* VisualId: "STRING_VALUE", // required
@@ -3224,6 +3242,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: {
* Visibility: "HIDDEN" || "VISIBLE",
@@ -3360,6 +3379,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* },
* ],
+ * VisualContentAltText: "STRING_VALUE",
* },
* HeatMapVisual: { // HeatMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3406,6 +3426,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: {
* Visibility: "HIDDEN" || "VISIBLE",
@@ -3490,6 +3511,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* ],
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* TreeMapVisual: { // TreeMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3535,6 +3557,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* Width: "STRING_VALUE",
* Height: "STRING_VALUE",
+ * ValueFontConfiguration: "",
* },
* DataLabels: "",
* Tooltip: "",
@@ -3542,6 +3565,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* GeospatialMapVisual: { // GeospatialMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3602,6 +3626,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* ColumnHierarchies: "",
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* FilledMapVisual: { // FilledMapVisual
* VisualId: "STRING_VALUE", // required
@@ -3651,6 +3676,284 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* ColumnHierarchies: "",
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
+ * },
+ * LayerMapVisual: { // LayerMapVisual
+ * VisualId: "STRING_VALUE", // required
+ * Title: "",
+ * Subtitle: "",
+ * ChartConfiguration: { // GeospatialLayerMapConfiguration
+ * Legend: "",
+ * MapLayers: [ // GeospatialMapLayerList
+ * { // GeospatialLayerItem
+ * LayerId: "STRING_VALUE", // required
+ * LayerType: "POINT" || "LINE" || "POLYGON",
+ * DataSource: { // GeospatialDataSourceItem
+ * StaticFileDataSource: { // GeospatialStaticFileSource
+ * StaticFileId: "STRING_VALUE", // required
+ * },
+ * },
+ * Label: "STRING_VALUE",
+ * Visibility: "HIDDEN" || "VISIBLE",
+ * LayerDefinition: { // GeospatialLayerDefinition
+ * PointLayer: { // GeospatialPointLayer
+ * Style: { // GeospatialPointStyle
+ * CircleSymbolStyle: { // GeospatialCircleSymbolStyle
+ * FillColor: { // GeospatialColor
+ * Solid: { // GeospatialSolidColor
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: { // GeospatialGradientColor
+ * StepColors: [ // GeospatialGradientStepColorList // required
+ * { // GeospatialGradientStepColor
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: { // GeospatialNullDataSettings
+ * SymbolStyle: { // GeospatialNullSymbolStyle
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: { // GeospatialCategoricalColor
+ * CategoryDataColors: [ // GeospatialCategoricalDataColorList // required
+ * { // GeospatialCategoricalDataColor
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeWidth: { // GeospatialLineWidth
+ * LineWidth: Number("double"),
+ * },
+ * CircleRadius: { // GeospatialCircleRadius
+ * Radius: Number("double"),
+ * },
+ * },
+ * },
+ * },
+ * LineLayer: { // GeospatialLineLayer
+ * Style: { // GeospatialLineStyle
+ * LineSymbolStyle: { // GeospatialLineSymbolStyle
+ * FillColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: {
+ * SymbolStyle: {
+ * FillColor: "STRING_VALUE",
+ * StrokeColor: "STRING_VALUE",
+ * StrokeWidth: Number("double"),
+ * },
+ * },
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * LineWidth: {
+ * LineWidth: Number("double"),
+ * },
+ * },
+ * },
+ * },
+ * PolygonLayer: { // GeospatialPolygonLayer
+ * Style: { // GeospatialPolygonStyle
+ * PolygonSymbolStyle: { // GeospatialPolygonSymbolStyle
+ * FillColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeColor: {
+ * Solid: {
+ * Color: "STRING_VALUE", // required
+ * State: "ENABLED" || "DISABLED",
+ * },
+ * Gradient: {
+ * StepColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: Number("double"), // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * Categorical: {
+ * CategoryDataColors: [ // required
+ * {
+ * Color: "STRING_VALUE", // required
+ * DataValue: "STRING_VALUE", // required
+ * },
+ * ],
+ * NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * NullDataSettings: "",
+ * DefaultOpacity: Number("double"),
+ * },
+ * },
+ * StrokeWidth: {
+ * LineWidth: Number("double"),
+ * },
+ * },
+ * },
+ * },
+ * },
+ * Tooltip: "",
+ * JoinDefinition: { // GeospatialLayerJoinDefinition
+ * ShapeKeyField: "STRING_VALUE",
+ * DatasetKeyField: {
+ * FieldId: "STRING_VALUE", // required
+ * Column: "", // required
+ * FormatConfiguration: {
+ * StringFormatConfiguration: "",
+ * NumberFormatConfiguration: "",
+ * DateTimeFormatConfiguration: "",
+ * },
+ * },
+ * ColorField: { // GeospatialLayerColorField
+ * ColorDimensionsFields: [ // GeospatialLayerDimensionFieldList
+ * "",
+ * ],
+ * ColorValuesFields: [ // GeospatialLayerMeasureFieldList
+ * "",
+ * ],
+ * },
+ * },
+ * Actions: [ // LayerCustomActionList
+ * { // LayerCustomAction
+ * CustomActionId: "STRING_VALUE", // required
+ * Name: "STRING_VALUE", // required
+ * Status: "ENABLED" || "DISABLED",
+ * Trigger: "DATA_POINT_CLICK" || "DATA_POINT_MENU", // required
+ * ActionOperations: [ // LayerCustomActionOperationList // required
+ * { // LayerCustomActionOperation
+ * FilterOperation: "",
+ * NavigationOperation: "",
+ * URLOperation: "",
+ * SetParametersOperation: "",
+ * },
+ * ],
+ * },
+ * ],
+ * },
+ * ],
+ * MapState: { // GeospatialMapState
+ * Bounds: {
+ * North: Number("double"), // required
+ * South: Number("double"), // required
+ * West: Number("double"), // required
+ * East: Number("double"), // required
+ * },
+ * MapNavigation: "ENABLED" || "DISABLED",
+ * },
+ * MapStyle: { // GeospatialMapStyle
+ * BaseMapStyle: "LIGHT_GRAY" || "DARK_GRAY" || "STREET" || "IMAGERY",
+ * BackgroundColor: "STRING_VALUE",
+ * BaseMapVisibility: "HIDDEN" || "VISIBLE",
+ * },
+ * Interactions: "",
+ * },
+ * DataSetIdentifier: "STRING_VALUE", // required
+ * VisualContentAltText: "STRING_VALUE",
* },
* FunnelChartVisual: { // FunnelChartVisual
* VisualId: "STRING_VALUE", // required
@@ -3688,6 +3991,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* ScatterPlotVisual: { // ScatterPlotVisual
* VisualId: "STRING_VALUE", // required
@@ -3725,6 +4029,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* ComboChartVisual: { // ComboChartVisual
* VisualId: "STRING_VALUE", // required
@@ -3801,6 +4106,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* BoxPlotVisual: { // BoxPlotVisual
* VisualId: "STRING_VALUE", // required
@@ -3876,6 +4182,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* WaterfallVisual: { // WaterfallVisual
* VisualId: "STRING_VALUE", // required
@@ -3914,6 +4221,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* HistogramVisual: { // HistogramVisual
* VisualId: "STRING_VALUE", // required
@@ -3947,6 +4255,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Interactions: "",
* },
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* WordCloudVisual: { // WordCloudVisual
* VisualId: "STRING_VALUE", // required
@@ -3980,6 +4289,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* InsightVisual: { // InsightVisual
* VisualId: "STRING_VALUE", // required
@@ -4072,6 +4382,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* DataSetIdentifier: "STRING_VALUE", // required
+ * VisualContentAltText: "STRING_VALUE",
* },
* SankeyDiagramVisual: { // SankeyDiagramVisual
* VisualId: "STRING_VALUE", // required
@@ -4094,6 +4405,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Interactions: "",
* },
* Actions: "",
+ * VisualContentAltText: "STRING_VALUE",
* },
* CustomContentVisual: { // CustomContentVisual
* VisualId: "STRING_VALUE", // required
@@ -4107,6 +4419,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* DataSetIdentifier: "STRING_VALUE", // required
+ * VisualContentAltText: "STRING_VALUE",
* },
* EmptyVisual: { // EmptyVisual
* VisualId: "STRING_VALUE", // required
@@ -4158,6 +4471,52 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* },
* Actions: "",
* ColumnHierarchies: "",
+ * VisualContentAltText: "STRING_VALUE",
+ * },
+ * PluginVisual: { // PluginVisual
+ * VisualId: "STRING_VALUE", // required
+ * PluginArn: "STRING_VALUE", // required
+ * Title: "",
+ * Subtitle: "",
+ * ChartConfiguration: { // PluginVisualConfiguration
+ * FieldWells: [ // PluginVisualFieldWells
+ * { // PluginVisualFieldWell
+ * AxisName: "GROUP_BY" || "VALUE",
+ * Dimensions: "",
+ * Measures: "",
+ * Unaggregated: [
+ * {
+ * FieldId: "STRING_VALUE", // required
+ * Column: "", // required
+ * FormatConfiguration: {
+ * StringFormatConfiguration: "",
+ * NumberFormatConfiguration: "",
+ * DateTimeFormatConfiguration: "",
+ * },
+ * },
+ * ],
+ * },
+ * ],
+ * VisualOptions: { // PluginVisualOptions
+ * VisualProperties: [ // PluginVisualPropertiesList
+ * { // PluginVisualProperty
+ * Name: "STRING_VALUE",
+ * Value: "STRING_VALUE",
+ * },
+ * ],
+ * },
+ * SortConfiguration: { // PluginVisualSortConfiguration
+ * PluginVisualTableQuerySort: { // PluginVisualTableQuerySort
+ * RowSort: [
+ * "",
+ * ],
+ * ItemsLimitConfiguration: { // PluginVisualItemsLimitConfiguration
+ * ItemsLimit: Number("long"),
+ * },
+ * },
+ * },
+ * },
+ * VisualContentAltText: "STRING_VALUE",
* },
* },
* ],
@@ -4167,6 +4526,46 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Content: "STRING_VALUE",
* },
* ],
+ * Images: [ // SheetImageList
+ * { // SheetImage
+ * SheetImageId: "STRING_VALUE", // required
+ * Source: { // SheetImageSource
+ * SheetImageStaticFileSource: { // SheetImageStaticFileSource
+ * StaticFileId: "STRING_VALUE", // required
+ * },
+ * },
+ * Scaling: { // SheetImageScalingConfiguration
+ * ScalingType: "SCALE_TO_WIDTH" || "SCALE_TO_HEIGHT" || "SCALE_TO_CONTAINER" || "SCALE_NONE",
+ * },
+ * Tooltip: { // SheetImageTooltipConfiguration
+ * TooltipText: { // SheetImageTooltipText
+ * PlainText: "STRING_VALUE",
+ * },
+ * Visibility: "HIDDEN" || "VISIBLE",
+ * },
+ * ImageContentAltText: "STRING_VALUE",
+ * Interactions: { // ImageInteractionOptions
+ * ImageMenuOption: { // ImageMenuOption
+ * AvailabilityStatus: "ENABLED" || "DISABLED",
+ * },
+ * },
+ * Actions: [ // ImageCustomActionList
+ * { // ImageCustomAction
+ * CustomActionId: "STRING_VALUE", // required
+ * Name: "STRING_VALUE", // required
+ * Status: "ENABLED" || "DISABLED",
+ * Trigger: "CLICK" || "MENU", // required
+ * ActionOperations: [ // ImageCustomActionOperationList // required
+ * { // ImageCustomActionOperation
+ * NavigationOperation: "",
+ * URLOperation: "",
+ * SetParametersOperation: "",
+ * },
+ * ],
+ * },
+ * ],
+ * },
+ * ],
* Layouts: [ // LayoutList
* { // Layout
* Configuration: { // LayoutConfiguration
@@ -4174,7 +4573,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Elements: [ // GridLayoutElementList // required
* { // GridLayoutElement
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* ColumnIndex: Number("int"),
* ColumnSpan: Number("int"), // required
* RowIndex: Number("int"),
@@ -4192,7 +4591,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Elements: [ // FreeFromLayoutElementList // required
* { // FreeFormLayoutElement
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* XAxisLocation: "STRING_VALUE", // required
* YAxisLocation: "STRING_VALUE", // required
* Width: "STRING_VALUE", // required
@@ -4238,7 +4637,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Elements: [ // required
* {
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* XAxisLocation: "STRING_VALUE", // required
* YAxisLocation: "STRING_VALUE", // required
* Width: "STRING_VALUE", // required
@@ -4378,7 +4777,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* Elements: [ // required
* {
* ElementId: "STRING_VALUE", // required
- * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX", // required
+ * ElementType: "VISUAL" || "FILTER_CONTROL" || "PARAMETER_CONTROL" || "TEXT_BOX" || "IMAGE", // required
* ColumnIndex: Number("int"),
* ColumnSpan: Number("int"), // required
* RowIndex: Number("int"),
@@ -5046,6 +5445,36 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
* QueryExecutionOptions: { // QueryExecutionOptions
* QueryExecutionMode: "AUTO" || "MANUAL",
* },
+ * StaticFiles: [ // StaticFileList
+ * { // StaticFile
+ * ImageStaticFile: { // ImageStaticFile
+ * StaticFileId: "STRING_VALUE", // required
+ * Source: { // StaticFileSource
+ * UrlOptions: { // StaticFileUrlSourceOptions
+ * Url: "STRING_VALUE", // required
+ * },
+ * S3Options: { // StaticFileS3SourceOptions
+ * BucketName: "STRING_VALUE", // required
+ * ObjectKey: "STRING_VALUE", // required
+ * Region: "STRING_VALUE", // required
+ * },
+ * },
+ * },
+ * SpatialStaticFile: { // SpatialStaticFile
+ * StaticFileId: "STRING_VALUE", // required
+ * Source: {
+ * UrlOptions: {
+ * Url: "STRING_VALUE", // required
+ * },
+ * S3Options: {
+ * BucketName: "STRING_VALUE", // required
+ * ObjectKey: "STRING_VALUE", // required
+ * Region: "STRING_VALUE", // required
+ * },
+ * },
+ * },
+ * },
+ * ],
* },
* ValidationStrategy: { // ValidationStrategy
* Mode: "STRICT" || "LENIENT", // required
diff --git a/clients/client-quicksight/src/commands/CreateTopicCommand.ts b/clients/client-quicksight/src/commands/CreateTopicCommand.ts
index f933aed55001..f664a0d4ef8a 100644
--- a/clients/client-quicksight/src/commands/CreateTopicCommand.ts
+++ b/clients/client-quicksight/src/commands/CreateTopicCommand.ts
@@ -295,6 +295,9 @@ export interface CreateTopicCommandOutput extends CreateTopicResponse, __Metadat
* Value: "STRING_VALUE", // required
* },
* ],
+ * FolderArns: [ // FolderArnList
+ * "STRING_VALUE",
+ * ],
* };
* const command = new CreateTopicCommand(input);
* const response = await client.send(command);
diff --git a/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts b/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts
index d1514621635d..fc16355dc18c 100644
--- a/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts
+++ b/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts
@@ -5,7 +5,11 @@ import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { commonParams } from "../endpoint/EndpointParameters";
-import { DescribeAnalysisRequest, DescribeAnalysisResponse } from "../models/models_3";
+import {
+ DescribeAnalysisRequest,
+ DescribeAnalysisResponse,
+ DescribeAnalysisResponseFilterSensitiveLog,
+} from "../models/models_3";
import { de_DescribeAnalysisCommand, se_DescribeAnalysisCommand } from "../protocols/Aws_restJson1";
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
@@ -68,6 +72,85 @@ export interface DescribeAnalysisCommandOutput extends DescribeAnalysisResponse,
* // { // Sheet
* // SheetId: "STRING_VALUE",
* // Name: "STRING_VALUE",
+ * // Images: [ // SheetImageList
+ * // { // SheetImage
+ * // SheetImageId: "STRING_VALUE", // required
+ * // Source: { // SheetImageSource
+ * // SheetImageStaticFileSource: { // SheetImageStaticFileSource
+ * // StaticFileId: "STRING_VALUE", // required
+ * // },
+ * // },
+ * // Scaling: { // SheetImageScalingConfiguration
+ * // ScalingType: "SCALE_TO_WIDTH" || "SCALE_TO_HEIGHT" || "SCALE_TO_CONTAINER" || "SCALE_NONE",
+ * // },
+ * // Tooltip: { // SheetImageTooltipConfiguration
+ * // TooltipText: { // SheetImageTooltipText
+ * // PlainText: "STRING_VALUE",
+ * // },
+ * // Visibility: "HIDDEN" || "VISIBLE",
+ * // },
+ * // ImageContentAltText: "STRING_VALUE",
+ * // Interactions: { // ImageInteractionOptions
+ * // ImageMenuOption: { // ImageMenuOption
+ * // AvailabilityStatus: "ENABLED" || "DISABLED",
+ * // },
+ * // },
+ * // Actions: [ // ImageCustomActionList
+ * // { // ImageCustomAction
+ * // CustomActionId: "STRING_VALUE", // required
+ * // Name: "STRING_VALUE", // required
+ * // Status: "ENABLED" || "DISABLED",
+ * // Trigger: "CLICK" || "MENU", // required
+ * // ActionOperations: [ // ImageCustomActionOperationList // required
+ * // { // ImageCustomActionOperation
+ * // NavigationOperation: { // CustomActionNavigationOperation
+ * // LocalNavigationConfiguration: { // LocalNavigationConfiguration
+ * // TargetSheetId: "STRING_VALUE", // required
+ * // },
+ * // },
+ * // URLOperation: { // CustomActionURLOperation
+ * // URLTemplate: "STRING_VALUE", // required
+ * // URLTarget: "NEW_TAB" || "NEW_WINDOW" || "SAME_TAB", // required
+ * // },
+ * // SetParametersOperation: { // CustomActionSetParametersOperation
+ * // ParameterValueConfigurations: [ // SetParameterValueConfigurationList // required
+ * // { // SetParameterValueConfiguration
+ * // DestinationParameterName: "STRING_VALUE", // required
+ * // Value: { // DestinationParameterValueConfiguration
+ * // CustomValuesConfiguration: { // CustomValuesConfiguration
+ * // IncludeNullValue: true || false,
+ * // CustomValues: { // CustomParameterValues
+ * // StringValues: [ // StringDefaultValueList
+ * // "STRING_VALUE",
+ * // ],
+ * // IntegerValues: [ // IntegerDefaultValueList
+ * // Number("long"),
+ * // ],
+ * // DecimalValues: [ // DecimalDefaultValueList
+ * // Number("double"),
+ * // ],
+ * // DateTimeValues: [ // DateTimeDefaultValueList
+ * // new Date("TIMESTAMP"),
+ * // ],
+ * // },
+ * // },
+ * // SelectAllValueOptions: "ALL_VALUES",
+ * // SourceParameterName: "STRING_VALUE",
+ * // SourceField: "STRING_VALUE",
+ * // SourceColumn: { // ColumnIdentifier
+ * // DataSetIdentifier: "STRING_VALUE", // required
+ * // ColumnName: "STRING_VALUE", // required
+ * // },
+ * // },
+ * // },
+ * // ],
+ * // },
+ * // },
+ * // ],
+ * // },
+ * // ],
+ * // },
+ * // ],
* // },
* // ],
* // },
@@ -129,7 +212,7 @@ export class DescribeAnalysisCommand extends $Command
})
.s("QuickSight_20180401", "DescribeAnalysis", {})
.n("QuickSightClient", "DescribeAnalysisCommand")
- .f(void 0, void 0)
+ .f(void 0, DescribeAnalysisResponseFilterSensitiveLog)
.ser(se_DescribeAnalysisCommand)
.de(de_DescribeAnalysisCommand)
.build() {
diff --git a/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts b/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts
index be7de865ac78..67d3bbe661d7 100644
--- a/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts
+++ b/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts
@@ -94,6 +94,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // FontConfiguration: { // FontConfiguration
* // FontSize: { // FontSize
* // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * // Absolute: "STRING_VALUE",
* // },
* // FontDecoration: "UNDERLINE" || "NONE",
* // FontColor: "STRING_VALUE",
@@ -101,6 +102,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Name: "NORMAL" || "BOLD",
* // },
* // FontStyle: "NORMAL" || "ITALIC",
+ * // FontFamily: "STRING_VALUE",
* // },
* // CustomLabel: "STRING_VALUE",
* // },
@@ -129,6 +131,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // FontConfiguration: {
* // FontSize: {
* // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * // Absolute: "STRING_VALUE",
* // },
* // FontDecoration: "UNDERLINE" || "NONE",
* // FontColor: "STRING_VALUE",
@@ -136,6 +139,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Name: "NORMAL" || "BOLD",
* // },
* // FontStyle: "NORMAL" || "ITALIC",
+ * // FontFamily: "STRING_VALUE",
* // },
* // CustomLabel: "STRING_VALUE",
* // },
@@ -179,6 +183,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // FontConfiguration: {
* // FontSize: {
* // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * // Absolute: "STRING_VALUE",
* // },
* // FontDecoration: "UNDERLINE" || "NONE",
* // FontColor: "STRING_VALUE",
@@ -186,6 +191,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Name: "NORMAL" || "BOLD",
* // },
* // FontStyle: "NORMAL" || "ITALIC",
+ * // FontFamily: "STRING_VALUE",
* // },
* // CustomLabel: "STRING_VALUE",
* // },
@@ -227,6 +233,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // FontConfiguration: {
* // FontSize: {
* // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * // Absolute: "STRING_VALUE",
* // },
* // FontDecoration: "UNDERLINE" || "NONE",
* // FontColor: "STRING_VALUE",
@@ -234,6 +241,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Name: "NORMAL" || "BOLD",
* // },
* // FontStyle: "NORMAL" || "ITALIC",
+ * // FontFamily: "STRING_VALUE",
* // },
* // CustomLabel: "STRING_VALUE",
* // },
@@ -257,6 +265,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // FontConfiguration: {
* // FontSize: {
* // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
+ * // Absolute: "STRING_VALUE",
* // },
* // FontDecoration: "UNDERLINE" || "NONE",
* // FontColor: "STRING_VALUE",
@@ -264,6 +273,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Name: "NORMAL" || "BOLD",
* // },
* // FontStyle: "NORMAL" || "ITALIC",
+ * // FontFamily: "STRING_VALUE",
* // },
* // CustomLabel: "STRING_VALUE",
* // },
@@ -1112,6 +1122,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // ],
* // },
* // ],
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // PivotTableVisual: { // PivotTableVisual
* // VisualId: "STRING_VALUE", // required
@@ -1576,6 +1587,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // ],
* // },
* // ],
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // BarChartVisual: { // BarChartVisual
* // VisualId: "STRING_VALUE", // required
@@ -1924,6 +1936,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* // Width: "STRING_VALUE",
* // Height: "STRING_VALUE",
+ * // ValueFontConfiguration: "",
* // },
* // DataLabels: { // DataLabelOptions
* // Visibility: "HIDDEN" || "VISIBLE",
@@ -2183,6 +2196,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // },
* // ],
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // KPIVisual: { // KPIVisual
* // VisualId: "STRING_VALUE", // required
@@ -2506,6 +2520,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // },
* // ],
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // PieChartVisual: { // PieChartVisual
* // VisualId: "STRING_VALUE", // required
@@ -2620,6 +2635,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* // Width: "STRING_VALUE",
* // Height: "STRING_VALUE",
+ * // ValueFontConfiguration: "",
* // },
* // DataLabels: {
* // Visibility: "HIDDEN" || "VISIBLE",
@@ -2798,6 +2814,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // },
* // ],
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // GaugeChartVisual: { // GaugeChartVisual
* // VisualId: "STRING_VALUE", // required
@@ -2918,6 +2935,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // ],
* // },
* // Actions: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // LineChartVisual: { // LineChartVisual
* // VisualId: "STRING_VALUE", // required
@@ -3196,6 +3214,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* // Width: "STRING_VALUE",
* // Height: "STRING_VALUE",
+ * // ValueFontConfiguration: "",
* // },
* // DataLabels: {
* // Visibility: "HIDDEN" || "VISIBLE",
@@ -3332,6 +3351,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // },
* // ],
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // HeatMapVisual: { // HeatMapVisual
* // VisualId: "STRING_VALUE", // required
@@ -3378,6 +3398,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* // Width: "STRING_VALUE",
* // Height: "STRING_VALUE",
+ * // ValueFontConfiguration: "",
* // },
* // DataLabels: {
* // Visibility: "HIDDEN" || "VISIBLE",
@@ -3462,6 +3483,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // ],
* // Actions: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // TreeMapVisual: { // TreeMapVisual
* // VisualId: "STRING_VALUE", // required
@@ -3507,6 +3529,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Position: "AUTO" || "RIGHT" || "BOTTOM" || "TOP",
* // Width: "STRING_VALUE",
* // Height: "STRING_VALUE",
+ * // ValueFontConfiguration: "",
* // },
* // DataLabels: "",
* // Tooltip: "",
@@ -3514,6 +3537,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // Actions: "",
* // ColumnHierarchies: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // GeospatialMapVisual: { // GeospatialMapVisual
* // VisualId: "STRING_VALUE", // required
@@ -3574,6 +3598,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // ColumnHierarchies: "",
* // Actions: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // FilledMapVisual: { // FilledMapVisual
* // VisualId: "STRING_VALUE", // required
@@ -3623,6 +3648,284 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // ColumnHierarchies: "",
* // Actions: "",
+ * // VisualContentAltText: "STRING_VALUE",
+ * // },
+ * // LayerMapVisual: { // LayerMapVisual
+ * // VisualId: "STRING_VALUE", // required
+ * // Title: "",
+ * // Subtitle: "",
+ * // ChartConfiguration: { // GeospatialLayerMapConfiguration
+ * // Legend: "",
+ * // MapLayers: [ // GeospatialMapLayerList
+ * // { // GeospatialLayerItem
+ * // LayerId: "STRING_VALUE", // required
+ * // LayerType: "POINT" || "LINE" || "POLYGON",
+ * // DataSource: { // GeospatialDataSourceItem
+ * // StaticFileDataSource: { // GeospatialStaticFileSource
+ * // StaticFileId: "STRING_VALUE", // required
+ * // },
+ * // },
+ * // Label: "STRING_VALUE",
+ * // Visibility: "HIDDEN" || "VISIBLE",
+ * // LayerDefinition: { // GeospatialLayerDefinition
+ * // PointLayer: { // GeospatialPointLayer
+ * // Style: { // GeospatialPointStyle
+ * // CircleSymbolStyle: { // GeospatialCircleSymbolStyle
+ * // FillColor: { // GeospatialColor
+ * // Solid: { // GeospatialSolidColor
+ * // Color: "STRING_VALUE", // required
+ * // State: "ENABLED" || "DISABLED",
+ * // },
+ * // Gradient: { // GeospatialGradientColor
+ * // StepColors: [ // GeospatialGradientStepColorList // required
+ * // { // GeospatialGradientStepColor
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: Number("double"), // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: { // GeospatialNullDataSettings
+ * // SymbolStyle: { // GeospatialNullSymbolStyle
+ * // FillColor: "STRING_VALUE",
+ * // StrokeColor: "STRING_VALUE",
+ * // StrokeWidth: Number("double"),
+ * // },
+ * // },
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // Categorical: { // GeospatialCategoricalColor
+ * // CategoryDataColors: [ // GeospatialCategoricalDataColorList // required
+ * // { // GeospatialCategoricalDataColor
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: "STRING_VALUE", // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: {
+ * // SymbolStyle: {
+ * // FillColor: "STRING_VALUE",
+ * // StrokeColor: "STRING_VALUE",
+ * // StrokeWidth: Number("double"),
+ * // },
+ * // },
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // },
+ * // StrokeColor: {
+ * // Solid: {
+ * // Color: "STRING_VALUE", // required
+ * // State: "ENABLED" || "DISABLED",
+ * // },
+ * // Gradient: {
+ * // StepColors: [ // required
+ * // {
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: Number("double"), // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: {
+ * // SymbolStyle: {
+ * // FillColor: "STRING_VALUE",
+ * // StrokeColor: "STRING_VALUE",
+ * // StrokeWidth: Number("double"),
+ * // },
+ * // },
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // Categorical: {
+ * // CategoryDataColors: [ // required
+ * // {
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: "STRING_VALUE", // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: {
+ * // SymbolStyle: {
+ * // FillColor: "STRING_VALUE",
+ * // StrokeColor: "STRING_VALUE",
+ * // StrokeWidth: Number("double"),
+ * // },
+ * // },
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // },
+ * // StrokeWidth: { // GeospatialLineWidth
+ * // LineWidth: Number("double"),
+ * // },
+ * // CircleRadius: { // GeospatialCircleRadius
+ * // Radius: Number("double"),
+ * // },
+ * // },
+ * // },
+ * // },
+ * // LineLayer: { // GeospatialLineLayer
+ * // Style: { // GeospatialLineStyle
+ * // LineSymbolStyle: { // GeospatialLineSymbolStyle
+ * // FillColor: {
+ * // Solid: {
+ * // Color: "STRING_VALUE", // required
+ * // State: "ENABLED" || "DISABLED",
+ * // },
+ * // Gradient: {
+ * // StepColors: [ // required
+ * // {
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: Number("double"), // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: {
+ * // SymbolStyle: {
+ * // FillColor: "STRING_VALUE",
+ * // StrokeColor: "STRING_VALUE",
+ * // StrokeWidth: Number("double"),
+ * // },
+ * // },
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // Categorical: {
+ * // CategoryDataColors: [ // required
+ * // {
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: "STRING_VALUE", // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: "",
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // },
+ * // LineWidth: {
+ * // LineWidth: Number("double"),
+ * // },
+ * // },
+ * // },
+ * // },
+ * // PolygonLayer: { // GeospatialPolygonLayer
+ * // Style: { // GeospatialPolygonStyle
+ * // PolygonSymbolStyle: { // GeospatialPolygonSymbolStyle
+ * // FillColor: {
+ * // Solid: {
+ * // Color: "STRING_VALUE", // required
+ * // State: "ENABLED" || "DISABLED",
+ * // },
+ * // Gradient: {
+ * // StepColors: [ // required
+ * // {
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: Number("double"), // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: "",
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // Categorical: {
+ * // CategoryDataColors: [ // required
+ * // {
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: "STRING_VALUE", // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: "",
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // },
+ * // StrokeColor: {
+ * // Solid: {
+ * // Color: "STRING_VALUE", // required
+ * // State: "ENABLED" || "DISABLED",
+ * // },
+ * // Gradient: {
+ * // StepColors: [ // required
+ * // {
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: Number("double"), // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: "",
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // Categorical: {
+ * // CategoryDataColors: [ // required
+ * // {
+ * // Color: "STRING_VALUE", // required
+ * // DataValue: "STRING_VALUE", // required
+ * // },
+ * // ],
+ * // NullDataVisibility: "HIDDEN" || "VISIBLE",
+ * // NullDataSettings: "",
+ * // DefaultOpacity: Number("double"),
+ * // },
+ * // },
+ * // StrokeWidth: {
+ * // LineWidth: Number("double"),
+ * // },
+ * // },
+ * // },
+ * // },
+ * // },
+ * // Tooltip: "",
+ * // JoinDefinition: { // GeospatialLayerJoinDefinition
+ * // ShapeKeyField: "STRING_VALUE",
+ * // DatasetKeyField: {
+ * // FieldId: "STRING_VALUE", // required
+ * // Column: "", // required
+ * // FormatConfiguration: {
+ * // StringFormatConfiguration: "",
+ * // NumberFormatConfiguration: "",
+ * // DateTimeFormatConfiguration: "",
+ * // },
+ * // },
+ * // ColorField: { // GeospatialLayerColorField
+ * // ColorDimensionsFields: [ // GeospatialLayerDimensionFieldList
+ * // "",
+ * // ],
+ * // ColorValuesFields: [ // GeospatialLayerMeasureFieldList
+ * // "",
+ * // ],
+ * // },
+ * // },
+ * // Actions: [ // LayerCustomActionList
+ * // { // LayerCustomAction
+ * // CustomActionId: "STRING_VALUE", // required
+ * // Name: "STRING_VALUE", // required
+ * // Status: "ENABLED" || "DISABLED",
+ * // Trigger: "DATA_POINT_CLICK" || "DATA_POINT_MENU", // required
+ * // ActionOperations: [ // LayerCustomActionOperationList // required
+ * // { // LayerCustomActionOperation
+ * // FilterOperation: "",
+ * // NavigationOperation: "",
+ * // URLOperation: "",
+ * // SetParametersOperation: "",
+ * // },
+ * // ],
+ * // },
+ * // ],
+ * // },
+ * // ],
+ * // MapState: { // GeospatialMapState
+ * // Bounds: {
+ * // North: Number("double"), // required
+ * // South: Number("double"), // required
+ * // West: Number("double"), // required
+ * // East: Number("double"), // required
+ * // },
+ * // MapNavigation: "ENABLED" || "DISABLED",
+ * // },
+ * // MapStyle: { // GeospatialMapStyle
+ * // BaseMapStyle: "LIGHT_GRAY" || "DARK_GRAY" || "STREET" || "IMAGERY",
+ * // BackgroundColor: "STRING_VALUE",
+ * // BaseMapVisibility: "HIDDEN" || "VISIBLE",
+ * // },
+ * // Interactions: "",
+ * // },
+ * // DataSetIdentifier: "STRING_VALUE", // required
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // FunnelChartVisual: { // FunnelChartVisual
* // VisualId: "STRING_VALUE", // required
@@ -3660,6 +3963,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // Actions: "",
* // ColumnHierarchies: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // ScatterPlotVisual: { // ScatterPlotVisual
* // VisualId: "STRING_VALUE", // required
@@ -3697,6 +4001,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // Actions: "",
* // ColumnHierarchies: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // ComboChartVisual: { // ComboChartVisual
* // VisualId: "STRING_VALUE", // required
@@ -3773,6 +4078,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // Actions: "",
* // ColumnHierarchies: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // BoxPlotVisual: { // BoxPlotVisual
* // VisualId: "STRING_VALUE", // required
@@ -3848,6 +4154,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // Actions: "",
* // ColumnHierarchies: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // WaterfallVisual: { // WaterfallVisual
* // VisualId: "STRING_VALUE", // required
@@ -3886,6 +4193,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // Actions: "",
* // ColumnHierarchies: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // HistogramVisual: { // HistogramVisual
* // VisualId: "STRING_VALUE", // required
@@ -3919,6 +4227,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // Interactions: "",
* // },
* // Actions: "",
+ * // VisualContentAltText: "STRING_VALUE",
* // },
* // WordCloudVisual: { // WordCloudVisual
* // VisualId: "STRING_VALUE", // required
@@ -3952,6 +4261,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
* // },
* // Actions: "",
* // ColumnHierarchies: "