@aws-sdk/client-quicksight 3.473.0 → 3.474.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/QuickSight.js +2 -0
  3. package/dist-cjs/commands/UpdateDashboardLinksCommand.js +51 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/models/models_1.js +7 -4
  6. package/dist-cjs/models/models_2.js +1 -14
  7. package/dist-cjs/models/models_3.js +16 -3
  8. package/dist-cjs/protocols/Aws_restJson1.js +91 -5
  9. package/dist-es/QuickSight.js +2 -0
  10. package/dist-es/commands/UpdateDashboardLinksCommand.js +47 -0
  11. package/dist-es/commands/index.js +1 -0
  12. package/dist-es/models/models_1.js +3 -0
  13. package/dist-es/models/models_2.js +0 -10
  14. package/dist-es/models/models_3.js +11 -1
  15. package/dist-es/protocols/Aws_restJson1.js +84 -0
  16. package/dist-types/QuickSight.d.ts +7 -0
  17. package/dist-types/QuickSightClient.d.ts +3 -2
  18. package/dist-types/commands/CreateAccountSubscriptionCommand.d.ts +1 -2
  19. package/dist-types/commands/CreateAnalysisCommand.d.ts +13 -0
  20. package/dist-types/commands/CreateDashboardCommand.d.ts +16 -0
  21. package/dist-types/commands/CreateTemplateCommand.d.ts +13 -0
  22. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +13 -0
  23. package/dist-types/commands/DescribeDashboardCommand.d.ts +3 -0
  24. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +13 -0
  25. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +13 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  27. package/dist-types/commands/ListTemplateAliasesCommand.d.ts +1 -1
  28. package/dist-types/commands/ListTemplatesCommand.d.ts +1 -2
  29. package/dist-types/commands/UpdateAnalysisCommand.d.ts +13 -0
  30. package/dist-types/commands/UpdateDashboardCommand.d.ts +13 -0
  31. package/dist-types/commands/UpdateDashboardLinksCommand.d.ts +103 -0
  32. package/dist-types/commands/UpdateTemplateCommand.d.ts +13 -0
  33. package/dist-types/commands/index.d.ts +1 -0
  34. package/dist-types/models/models_1.d.ts +60 -78
  35. package/dist-types/models/models_2.d.ts +85 -93
  36. package/dist-types/models/models_3.d.ts +92 -87
  37. package/dist-types/models/models_4.d.ts +136 -0
  38. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  39. package/dist-types/ts3.4/QuickSight.d.ts +17 -0
  40. package/dist-types/ts3.4/QuickSightClient.d.ts +6 -0
  41. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
  42. package/dist-types/ts3.4/commands/ListTemplateAliasesCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +4 -2
  44. package/dist-types/ts3.4/commands/UpdateDashboardLinksCommand.d.ts +42 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  46. package/dist-types/ts3.4/models/models_1.d.ts +17 -16
  47. package/dist-types/ts3.4/models/models_2.d.ts +19 -29
  48. package/dist-types/ts3.4/models/models_3.d.ts +34 -26
  49. package/dist-types/ts3.4/models/models_4.d.ts +33 -0
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  51. package/package.json +4 -4
@@ -0,0 +1,103 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { UpdateDashboardLinksRequest, UpdateDashboardLinksResponse } from "../models/models_4";
5
+ import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateDashboardLinksCommand}.
14
+ */
15
+ export interface UpdateDashboardLinksCommandInput extends UpdateDashboardLinksRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateDashboardLinksCommand}.
21
+ */
22
+ export interface UpdateDashboardLinksCommandOutput extends UpdateDashboardLinksResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Updates the linked analyses on a dashboard.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { QuickSightClient, UpdateDashboardLinksCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
31
+ * // const { QuickSightClient, UpdateDashboardLinksCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
32
+ * const client = new QuickSightClient(config);
33
+ * const input = { // UpdateDashboardLinksRequest
34
+ * AwsAccountId: "STRING_VALUE", // required
35
+ * DashboardId: "STRING_VALUE", // required
36
+ * LinkEntities: [ // LinkEntityArnList // required
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * };
40
+ * const command = new UpdateDashboardLinksCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // UpdateDashboardLinksResponse
43
+ * // RequestId: "STRING_VALUE",
44
+ * // Status: Number("int"),
45
+ * // DashboardArn: "STRING_VALUE",
46
+ * // LinkEntities: [ // LinkEntityArnList
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // };
50
+ *
51
+ * ```
52
+ *
53
+ * @param UpdateDashboardLinksCommandInput - {@link UpdateDashboardLinksCommandInput}
54
+ * @returns {@link UpdateDashboardLinksCommandOutput}
55
+ * @see {@link UpdateDashboardLinksCommandInput} for command's `input` shape.
56
+ * @see {@link UpdateDashboardLinksCommandOutput} for command's `response` shape.
57
+ * @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
58
+ *
59
+ * @throws {@link AccessDeniedException} (client fault)
60
+ * <p>You don't have access to this item. The provided credentials couldn't be
61
+ * validated. You might not be authorized to carry out the request. Make sure that your
62
+ * account is authorized to use the Amazon QuickSight service, that your policies have the
63
+ * correct permissions, and that you are using the correct credentials.</p>
64
+ *
65
+ * @throws {@link ConflictException} (client fault)
66
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
67
+ *
68
+ * @throws {@link InternalFailureException} (server fault)
69
+ * <p>An internal failure occurred.</p>
70
+ *
71
+ * @throws {@link InvalidParameterValueException} (client fault)
72
+ * <p>One or more parameters has a value that isn't valid.</p>
73
+ *
74
+ * @throws {@link ResourceNotFoundException} (client fault)
75
+ * <p>One or more resources can't be found.</p>
76
+ *
77
+ * @throws {@link ThrottlingException} (client fault)
78
+ * <p>Access is throttled.</p>
79
+ *
80
+ * @throws {@link QuickSightServiceException}
81
+ * <p>Base exception class for all service exceptions from QuickSight service.</p>
82
+ *
83
+ */
84
+ export declare class UpdateDashboardLinksCommand extends $Command<UpdateDashboardLinksCommandInput, UpdateDashboardLinksCommandOutput, QuickSightClientResolvedConfig> {
85
+ readonly input: UpdateDashboardLinksCommandInput;
86
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
87
+ /**
88
+ * @public
89
+ */
90
+ constructor(input: UpdateDashboardLinksCommandInput);
91
+ /**
92
+ * @internal
93
+ */
94
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: QuickSightClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDashboardLinksCommandInput, UpdateDashboardLinksCommandOutput>;
95
+ /**
96
+ * @internal
97
+ */
98
+ private serialize;
99
+ /**
100
+ * @internal
101
+ */
102
+ private deserialize;
103
+ }
@@ -3056,6 +3056,11 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M
3056
3056
  * ],
3057
3057
  * },
3058
3058
  * SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
3059
+ * SingleAxisOptions: { // SingleAxisOptions
3060
+ * YAxisOptions: { // YAxisOptions
3061
+ * YAxis: "PRIMARY_Y_AXIS", // required
3062
+ * },
3063
+ * },
3059
3064
  * DefaultSeriesSettings: { // LineChartDefaultSeriesSettings
3060
3065
  * AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
3061
3066
  * LineStyleSettings: { // LineChartLineStyleSettings
@@ -3594,6 +3599,9 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M
3594
3599
  * Label: "<DimensionFieldList>",
3595
3600
  * },
3596
3601
  * },
3602
+ * SortConfiguration: { // ScatterPlotSortConfiguration
3603
+ * ScatterPlotLimitConfiguration: "<ItemsLimitConfiguration>",
3604
+ * },
3597
3605
  * XAxisLabelOptions: "<ChartAxisLabelOptions>",
3598
3606
  * XAxisDisplayOptions: "<AxisDisplayOptions>",
3599
3607
  * YAxisLabelOptions: "<ChartAxisLabelOptions>",
@@ -3632,6 +3640,11 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M
3632
3640
  * PrimaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
3633
3641
  * SecondaryYAxisDisplayOptions: "<AxisDisplayOptions>",
3634
3642
  * SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
3643
+ * SingleAxisOptions: {
3644
+ * YAxisOptions: {
3645
+ * YAxis: "PRIMARY_Y_AXIS", // required
3646
+ * },
3647
+ * },
3635
3648
  * ColorLabelOptions: "<ChartAxisLabelOptions>",
3636
3649
  * Legend: "<LegendOptions>",
3637
3650
  * BarDataLabels: "<DataLabelOptions>",
@@ -142,6 +142,7 @@ export * from "./UpdateAccountSettingsCommand";
142
142
  export * from "./UpdateAnalysisCommand";
143
143
  export * from "./UpdateAnalysisPermissionsCommand";
144
144
  export * from "./UpdateDashboardCommand";
145
+ export * from "./UpdateDashboardLinksCommand";
145
146
  export * from "./UpdateDashboardPermissionsCommand";
146
147
  export * from "./UpdateDashboardPublishedVersionCommand";
147
148
  export * from "./UpdateDataSetCommand";
@@ -330,6 +330,40 @@ export interface ComboChartFieldWells {
330
330
  */
331
331
  ComboChartAggregatedFieldWells?: ComboChartAggregatedFieldWells;
332
332
  }
333
+ /**
334
+ * @public
335
+ * @enum
336
+ */
337
+ export declare const SingleYAxisOption: {
338
+ readonly PRIMARY_Y_AXIS: "PRIMARY_Y_AXIS";
339
+ };
340
+ /**
341
+ * @public
342
+ */
343
+ export type SingleYAxisOption = (typeof SingleYAxisOption)[keyof typeof SingleYAxisOption];
344
+ /**
345
+ * @public
346
+ * <p>The options that are available for a single Y axis in a chart.</p>
347
+ */
348
+ export interface YAxisOptions {
349
+ /**
350
+ * @public
351
+ * <p>The Y axis type to be used in the chart.</p>
352
+ * <p>If you choose <code>PRIMARY_Y_AXIS</code>, the primary Y Axis is located on the leftmost vertical axis of the chart.</p>
353
+ */
354
+ YAxis: SingleYAxisOption | undefined;
355
+ }
356
+ /**
357
+ * @public
358
+ * <p>The settings of a chart's single axis configuration.</p>
359
+ */
360
+ export interface SingleAxisOptions {
361
+ /**
362
+ * @public
363
+ * <p>The Y axis options of a single axis configuration.</p>
364
+ */
365
+ YAxisOptions?: YAxisOptions;
366
+ }
333
367
  /**
334
368
  * @public
335
369
  * <p>The sort configuration of a <code>ComboChartVisual</code>.</p>
@@ -420,6 +454,11 @@ export interface ComboChartConfiguration {
420
454
  * <p>The label options (label text, label visibility, and sort icon visibility) of a combo chart's secondary y-axis(line) field well.</p>
421
455
  */
422
456
  SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
457
+ /**
458
+ * @public
459
+ * <p>The settings of a chart's single axis configuration.</p>
460
+ */
461
+ SingleAxisOptions?: SingleAxisOptions;
423
462
  /**
424
463
  * @public
425
464
  * <p>The label options (label text, label visibility, and sort icon visibility) of a combo chart's color field well.</p>
@@ -3584,6 +3623,11 @@ export interface LineChartConfiguration {
3584
3623
  * <p>The options that determine the presentation of the secondary y-axis label.</p>
3585
3624
  */
3586
3625
  SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
3626
+ /**
3627
+ * @public
3628
+ * <p>The settings of a chart's single axis configuration.</p>
3629
+ */
3630
+ SingleAxisOptions?: SingleAxisOptions;
3587
3631
  /**
3588
3632
  * @public
3589
3633
  * <p>The options that determine the default presentation of all line series in <code>LineChartVisual</code>.</p>
@@ -5238,6 +5282,17 @@ export interface ScatterPlotFieldWells {
5238
5282
  */
5239
5283
  ScatterPlotUnaggregatedFieldWells?: ScatterPlotUnaggregatedFieldWells;
5240
5284
  }
5285
+ /**
5286
+ * @public
5287
+ * <p>The sort configuration of a scatter plot.</p>
5288
+ */
5289
+ export interface ScatterPlotSortConfiguration {
5290
+ /**
5291
+ * @public
5292
+ * <p>The limit configuration of the visual display for an axis.</p>
5293
+ */
5294
+ ScatterPlotLimitConfiguration?: ItemsLimitConfiguration;
5295
+ }
5241
5296
  /**
5242
5297
  * @public
5243
5298
  * <p>The configuration of a scatter plot.</p>
@@ -5248,6 +5303,11 @@ export interface ScatterPlotConfiguration {
5248
5303
  * <p>The field wells of the visual.</p>
5249
5304
  */
5250
5305
  FieldWells?: ScatterPlotFieldWells;
5306
+ /**
5307
+ * @public
5308
+ * <p>The sort configuration of a scatter plot.</p>
5309
+ */
5310
+ SortConfiguration?: ScatterPlotSortConfiguration;
5251
5311
  /**
5252
5312
  * @public
5253
5313
  * <p>The label options (label text, label visibility, and sort icon visibility) of the scatter plot's x-axis.</p>
@@ -6792,84 +6852,6 @@ export interface AnonymousUserDashboardEmbeddingConfiguration {
6792
6852
  */
6793
6853
  InitialDashboardId: string | undefined;
6794
6854
  }
6795
- /**
6796
- * @public
6797
- * <p>A structure that contains the following elements:</p>
6798
- * <ul>
6799
- * <li>
6800
- * <p>The <code>DashboardId</code> of the dashboard that has the visual that you want to embed.</p>
6801
- * </li>
6802
- * <li>
6803
- * <p>The <code>SheetId</code> of the sheet that has the visual that you want to embed.</p>
6804
- * </li>
6805
- * <li>
6806
- * <p>The <code>VisualId</code> of the visual that you want to embed.</p>
6807
- * </li>
6808
- * </ul>
6809
- * <p>The <code>DashboardId</code>, <code>SheetId</code>, and <code>VisualId</code> can be found in the <code>IDs for developers</code> section of the <code>Embed visual</code> pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the <code>DashboardId</code> with a <code>ListDashboards</code> API operation.</p>
6810
- */
6811
- export interface DashboardVisualId {
6812
- /**
6813
- * @public
6814
- * <p>The ID of the dashboard that has the visual that you want to embed. The <code>DashboardId</code> can be found in the <code>IDs for developers</code> section of the <code>Embed visual</code> pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the <code>DashboardId</code> with a <code>ListDashboards</code> API operation.</p>
6815
- */
6816
- DashboardId: string | undefined;
6817
- /**
6818
- * @public
6819
- * <p>The ID of the sheet that the has visual that you want to embed. The <code>SheetId</code> can be found in the <code>IDs for developers</code> section of the <code>Embed visual</code> pane of the visual's on-visual menu of the Amazon QuickSight console.</p>
6820
- */
6821
- SheetId: string | undefined;
6822
- /**
6823
- * @public
6824
- * <p>The ID of the visual that you want to embed. The <code>VisualID</code> can be found in the <code>IDs for developers</code> section of the <code>Embed visual</code> pane of the visual's on-visual menu of the Amazon QuickSight console.</p>
6825
- */
6826
- VisualId: string | undefined;
6827
- }
6828
- /**
6829
- * @public
6830
- * <p>The experience that you are embedding. You can use this object to generate a url that embeds a visual into your application.</p>
6831
- */
6832
- export interface AnonymousUserDashboardVisualEmbeddingConfiguration {
6833
- /**
6834
- * @public
6835
- * <p>The visual ID for the visual that you want the user to see. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this visual.</p>
6836
- * <p>The Amazon Resource Name (ARN) of the dashboard that the visual belongs to must be included in the <code>AuthorizedResourceArns</code> parameter. Otherwise, the request will fail with <code>InvalidParameterValueException</code>.</p>
6837
- */
6838
- InitialDashboardVisualId: DashboardVisualId | undefined;
6839
- }
6840
- /**
6841
- * @public
6842
- * <p>The settings that you want to use with the Q search bar.</p>
6843
- */
6844
- export interface AnonymousUserQSearchBarEmbeddingConfiguration {
6845
- /**
6846
- * @public
6847
- * <p>The QuickSight Q topic ID of the topic that you want the anonymous user to see first. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders the Q search bar with this topic pre-selected.</p>
6848
- * <p>The Amazon Resource Name (ARN) of this Q topic must be included in the <code>AuthorizedResourceArns</code> parameter. Otherwise, the request will fail with <code>InvalidParameterValueException</code>.</p>
6849
- */
6850
- InitialTopicId: string | undefined;
6851
- }
6852
- /**
6853
- * @public
6854
- * <p>The type of experience you want to embed. For anonymous users, you can embed Amazon QuickSight dashboards.</p>
6855
- */
6856
- export interface AnonymousUserEmbeddingExperienceConfiguration {
6857
- /**
6858
- * @public
6859
- * <p>The type of embedding experience. In this case, Amazon QuickSight dashboards.</p>
6860
- */
6861
- Dashboard?: AnonymousUserDashboardEmbeddingConfiguration;
6862
- /**
6863
- * @public
6864
- * <p>The type of embedding experience. In this case, Amazon QuickSight visuals.</p>
6865
- */
6866
- DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration;
6867
- /**
6868
- * @public
6869
- * <p>The Q search bar that you want to use for anonymous user embedding.</p>
6870
- */
6871
- QSearchBar?: AnonymousUserQSearchBarEmbeddingConfiguration;
6872
- }
6873
6855
  /**
6874
6856
  * @internal
6875
6857
  */
@@ -1,7 +1,85 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { AccountCustomization, AdHocFilteringOption, AmazonElasticsearchParameters, AmazonOpenSearchParameters, AnalysisDefaults, AssetOptions, CalculatedField, ColumnConfiguration, DashboardBehavior, DataSetIdentifierDeclaration, Edition, FilterGroup, NumberScale, ParameterDeclaration, ResourceStatus, TimeGranularity } from "./models_0";
3
- import { AnalysisDefinition, AnalysisSourceEntity, DataSetReference, SheetDefinition } from "./models_1";
3
+ import { AnalysisDefinition, AnalysisSourceEntity, AnonymousUserDashboardEmbeddingConfiguration, DataSetReference, SheetDefinition } from "./models_1";
4
4
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
5
+ /**
6
+ * @public
7
+ * <p>A structure that contains the following elements:</p>
8
+ * <ul>
9
+ * <li>
10
+ * <p>The <code>DashboardId</code> of the dashboard that has the visual that you want to embed.</p>
11
+ * </li>
12
+ * <li>
13
+ * <p>The <code>SheetId</code> of the sheet that has the visual that you want to embed.</p>
14
+ * </li>
15
+ * <li>
16
+ * <p>The <code>VisualId</code> of the visual that you want to embed.</p>
17
+ * </li>
18
+ * </ul>
19
+ * <p>The <code>DashboardId</code>, <code>SheetId</code>, and <code>VisualId</code> can be found in the <code>IDs for developers</code> section of the <code>Embed visual</code> pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the <code>DashboardId</code> with a <code>ListDashboards</code> API operation.</p>
20
+ */
21
+ export interface DashboardVisualId {
22
+ /**
23
+ * @public
24
+ * <p>The ID of the dashboard that has the visual that you want to embed. The <code>DashboardId</code> can be found in the <code>IDs for developers</code> section of the <code>Embed visual</code> pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the <code>DashboardId</code> with a <code>ListDashboards</code> API operation.</p>
25
+ */
26
+ DashboardId: string | undefined;
27
+ /**
28
+ * @public
29
+ * <p>The ID of the sheet that the has visual that you want to embed. The <code>SheetId</code> can be found in the <code>IDs for developers</code> section of the <code>Embed visual</code> pane of the visual's on-visual menu of the Amazon QuickSight console.</p>
30
+ */
31
+ SheetId: string | undefined;
32
+ /**
33
+ * @public
34
+ * <p>The ID of the visual that you want to embed. The <code>VisualID</code> can be found in the <code>IDs for developers</code> section of the <code>Embed visual</code> pane of the visual's on-visual menu of the Amazon QuickSight console.</p>
35
+ */
36
+ VisualId: string | undefined;
37
+ }
38
+ /**
39
+ * @public
40
+ * <p>The experience that you are embedding. You can use this object to generate a url that embeds a visual into your application.</p>
41
+ */
42
+ export interface AnonymousUserDashboardVisualEmbeddingConfiguration {
43
+ /**
44
+ * @public
45
+ * <p>The visual ID for the visual that you want the user to see. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this visual.</p>
46
+ * <p>The Amazon Resource Name (ARN) of the dashboard that the visual belongs to must be included in the <code>AuthorizedResourceArns</code> parameter. Otherwise, the request will fail with <code>InvalidParameterValueException</code>.</p>
47
+ */
48
+ InitialDashboardVisualId: DashboardVisualId | undefined;
49
+ }
50
+ /**
51
+ * @public
52
+ * <p>The settings that you want to use with the Q search bar.</p>
53
+ */
54
+ export interface AnonymousUserQSearchBarEmbeddingConfiguration {
55
+ /**
56
+ * @public
57
+ * <p>The QuickSight Q topic ID of the topic that you want the anonymous user to see first. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders the Q search bar with this topic pre-selected.</p>
58
+ * <p>The Amazon Resource Name (ARN) of this Q topic must be included in the <code>AuthorizedResourceArns</code> parameter. Otherwise, the request will fail with <code>InvalidParameterValueException</code>.</p>
59
+ */
60
+ InitialTopicId: string | undefined;
61
+ }
62
+ /**
63
+ * @public
64
+ * <p>The type of experience you want to embed. For anonymous users, you can embed Amazon QuickSight dashboards.</p>
65
+ */
66
+ export interface AnonymousUserEmbeddingExperienceConfiguration {
67
+ /**
68
+ * @public
69
+ * <p>The type of embedding experience. In this case, Amazon QuickSight dashboards.</p>
70
+ */
71
+ Dashboard?: AnonymousUserDashboardEmbeddingConfiguration;
72
+ /**
73
+ * @public
74
+ * <p>The type of embedding experience. In this case, Amazon QuickSight visuals.</p>
75
+ */
76
+ DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration;
77
+ /**
78
+ * @public
79
+ * <p>The Q search bar that you want to use for anonymous user embedding.</p>
80
+ */
81
+ QSearchBar?: AnonymousUserQSearchBarEmbeddingConfiguration;
82
+ }
5
83
  /**
6
84
  * @public
7
85
  * @enum
@@ -122,7 +200,7 @@ export interface SnapshotS3DestinationConfiguration {
122
200
  * @public
123
201
  * <p>A structure that contains details about the Amazon S3 bucket that the generated dashboard snapshot is saved in.</p>
124
202
  */
125
- BucketConfiguration?: S3BucketConfiguration;
203
+ BucketConfiguration: S3BucketConfiguration | undefined;
126
204
  }
127
205
  /**
128
206
  * @public
@@ -4379,6 +4457,11 @@ export interface CreateDashboardRequest {
4379
4457
  * <p>A structure that contains the permissions of a shareable link to the dashboard.</p>
4380
4458
  */
4381
4459
  LinkSharingConfiguration?: LinkSharingConfiguration;
4460
+ /**
4461
+ * @public
4462
+ * <p>A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.</p>
4463
+ */
4464
+ LinkEntities?: string[];
4382
4465
  }
4383
4466
  /**
4384
4467
  * @public
@@ -7698,85 +7781,6 @@ export interface DataAggregation {
7698
7781
  */
7699
7782
  DefaultDateColumnName?: string;
7700
7783
  }
7701
- /**
7702
- * @public
7703
- * <p>A constant used in a category filter.</p>
7704
- */
7705
- export interface TopicCategoryFilterConstant {
7706
- /**
7707
- * @public
7708
- * <p>The type of category filter constant. This element is used to specify whether a constant is a singular or collective. Valid values are <code>SINGULAR</code> and <code>COLLECTIVE</code>.</p>
7709
- */
7710
- ConstantType?: ConstantType;
7711
- /**
7712
- * @public
7713
- * <p>A singular constant used in a category filter. This element is used to specify a single value for the constant.</p>
7714
- */
7715
- SingularConstant?: string;
7716
- /**
7717
- * @public
7718
- * <p>A collective constant used in a category filter. This element is used to specify a list of values for the constant.</p>
7719
- */
7720
- CollectiveConstant?: CollectiveConstant;
7721
- }
7722
- /**
7723
- * @public
7724
- * <p>A structure that represents a category filter.</p>
7725
- */
7726
- export interface TopicCategoryFilter {
7727
- /**
7728
- * @public
7729
- * <p>The category filter function. Valid values for this structure are <code>EXACT</code> and <code>CONTAINS</code>.</p>
7730
- */
7731
- CategoryFilterFunction?: CategoryFilterFunction;
7732
- /**
7733
- * @public
7734
- * <p>The category filter type. This element is used to specify whether a filter is a simple category filter or an inverse category filter.</p>
7735
- */
7736
- CategoryFilterType?: CategoryFilterType;
7737
- /**
7738
- * @public
7739
- * <p>The constant used in a category filter.</p>
7740
- */
7741
- Constant?: TopicCategoryFilterConstant;
7742
- /**
7743
- * @public
7744
- * <p>A Boolean value that indicates if the filter is inverse.</p>
7745
- */
7746
- Inverse?: boolean;
7747
- }
7748
- /**
7749
- * @public
7750
- * <p>A structure that represents a range constant.</p>
7751
- */
7752
- export interface RangeConstant {
7753
- /**
7754
- * @public
7755
- * <p>The minimum value for a range constant.</p>
7756
- */
7757
- Minimum?: string;
7758
- /**
7759
- * @public
7760
- * <p>The maximum value for a range constant.</p>
7761
- */
7762
- Maximum?: string;
7763
- }
7764
- /**
7765
- * @public
7766
- * <p>A constant value that is used in a range filter to specify the endpoints of the range.</p>
7767
- */
7768
- export interface TopicRangeFilterConstant {
7769
- /**
7770
- * @public
7771
- * <p>The data type of the constant value that is used in a range filter. Valid values for this structure are <code>RANGE</code>.</p>
7772
- */
7773
- ConstantType?: ConstantType;
7774
- /**
7775
- * @public
7776
- * <p>The value of the constant that is used to specify the endpoints of a range filter.</p>
7777
- */
7778
- RangeConstant?: RangeConstant;
7779
- }
7780
7784
  /**
7781
7785
  * @internal
7782
7786
  */
@@ -7905,15 +7909,3 @@ export declare const TopicCalculatedFieldFilterSensitiveLog: (obj: TopicCalculat
7905
7909
  * @internal
7906
7910
  */
7907
7911
  export declare const TopicColumnFilterSensitiveLog: (obj: TopicColumn) => any;
7908
- /**
7909
- * @internal
7910
- */
7911
- export declare const TopicCategoryFilterConstantFilterSensitiveLog: (obj: TopicCategoryFilterConstant) => any;
7912
- /**
7913
- * @internal
7914
- */
7915
- export declare const TopicCategoryFilterFilterSensitiveLog: (obj: TopicCategoryFilter) => any;
7916
- /**
7917
- * @internal
7918
- */
7919
- export declare const TopicRangeFilterConstantFilterSensitiveLog: (obj: TopicRangeFilterConstant) => any;