@aws-sdk/client-quicksight 3.509.0 → 3.511.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 (28) hide show
  1. package/dist-cjs/index.js +68 -24
  2. package/dist-es/models/models_2.js +0 -19
  3. package/dist-es/models/models_3.js +20 -1
  4. package/dist-es/protocols/Aws_restJson1.js +44 -0
  5. package/dist-types/commands/CreateAnalysisCommand.d.ts +64 -0
  6. package/dist-types/commands/CreateDashboardCommand.d.ts +62 -0
  7. package/dist-types/commands/CreateTemplateCommand.d.ts +64 -0
  8. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +64 -0
  9. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +65 -3
  10. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +64 -0
  11. package/dist-types/commands/ListRefreshSchedulesCommand.d.ts +1 -1
  12. package/dist-types/commands/ListRoleMembershipsCommand.d.ts +1 -1
  13. package/dist-types/commands/UpdateAnalysisCommand.d.ts +64 -0
  14. package/dist-types/commands/UpdateDashboardCommand.d.ts +62 -0
  15. package/dist-types/commands/UpdateTemplateCommand.d.ts +64 -0
  16. package/dist-types/models/models_0.d.ts +43 -54
  17. package/dist-types/models/models_1.d.ts +197 -93
  18. package/dist-types/models/models_2.d.ts +94 -264
  19. package/dist-types/models/models_3.d.ts +249 -88
  20. package/dist-types/models/models_4.d.ts +94 -4
  21. package/dist-types/ts3.4/commands/ListRefreshSchedulesCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/ListRoleMembershipsCommand.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +11 -13
  24. package/dist-types/ts3.4/models/models_1.d.ts +47 -25
  25. package/dist-types/ts3.4/models/models_2.d.ts +24 -68
  26. package/dist-types/ts3.4/models/models_3.d.ts +67 -31
  27. package/dist-types/ts3.4/models/models_4.d.ts +24 -5
  28. package/package.json +14 -14
@@ -5391,6 +5391,44 @@ export interface BarChartFieldWells {
5391
5391
  */
5392
5392
  BarChartAggregatedFieldWells?: BarChartAggregatedFieldWells;
5393
5393
  }
5394
+ /**
5395
+ * @public
5396
+ * <p>The context menu options for a visual's interactions.</p>
5397
+ */
5398
+ export interface ContextMenuOption {
5399
+ /**
5400
+ * @public
5401
+ * <p>The availability status of the context menu options. If the value of this property is set to <code>ENABLED</code>, dashboard readers can interact with the context menu.</p>
5402
+ */
5403
+ AvailabilityStatus?: DashboardBehavior;
5404
+ }
5405
+ /**
5406
+ * @public
5407
+ * <p>The menu options for a visual.</p>
5408
+ */
5409
+ export interface VisualMenuOption {
5410
+ /**
5411
+ * @public
5412
+ * <p>The availaiblity status of a visual's menu options.</p>
5413
+ */
5414
+ AvailabilityStatus?: DashboardBehavior;
5415
+ }
5416
+ /**
5417
+ * @public
5418
+ * <p>The general visual interactions setup for visual publish options</p>
5419
+ */
5420
+ export interface VisualInteractionOptions {
5421
+ /**
5422
+ * @public
5423
+ * <p>The on-visual menu options for a visual.</p>
5424
+ */
5425
+ VisualMenuOption?: VisualMenuOption;
5426
+ /**
5427
+ * @public
5428
+ * <p>The context menu options for a visual.</p>
5429
+ */
5430
+ ContextMenuOption?: ContextMenuOption;
5431
+ }
5394
5432
  /**
5395
5433
  * @public
5396
5434
  * @enum
@@ -6470,6 +6508,11 @@ export interface BarChartConfiguration {
6470
6508
  * <p>The contribution analysis (anomaly configuration) setup of the visual.</p>
6471
6509
  */
6472
6510
  ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
6511
+ /**
6512
+ * @public
6513
+ * <p>The general visual interactions setup for a visual.</p>
6514
+ */
6515
+ Interactions?: VisualInteractionOptions;
6473
6516
  }
6474
6517
  /**
6475
6518
  * @public
@@ -6610,60 +6653,6 @@ export interface PredefinedHierarchy {
6610
6653
  */
6611
6654
  DrillDownFilters?: DrillDownFilter[];
6612
6655
  }
6613
- /**
6614
- * @public
6615
- * <p>The option that determines the hierarchy of the fields for a visual element.</p>
6616
- */
6617
- export interface ColumnHierarchy {
6618
- /**
6619
- * @public
6620
- * <p>The option that determines the hierarchy of the fields that are built within a visual's field wells. These fields can't be duplicated to other visuals.</p>
6621
- */
6622
- ExplicitHierarchy?: ExplicitHierarchy;
6623
- /**
6624
- * @public
6625
- * <p>The option that determines the hierarchy of any <code>DateTime</code> fields.</p>
6626
- */
6627
- DateTimeHierarchy?: DateTimeHierarchy;
6628
- /**
6629
- * @public
6630
- * <p>The option that determines the hierarchy of the fields that are defined during data preparation. These fields are available to use in any analysis that uses the data source.</p>
6631
- */
6632
- PredefinedHierarchy?: PredefinedHierarchy;
6633
- }
6634
- /**
6635
- * @public
6636
- * <p>The text format for a subtitle.</p>
6637
- * <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>
6638
- */
6639
- export interface LongFormatText {
6640
- /**
6641
- * @public
6642
- * <p>Plain text format.</p>
6643
- */
6644
- PlainText?: string;
6645
- /**
6646
- * @public
6647
- * <p>Rich text. Examples of rich text include bold, underline, and italics.</p>
6648
- */
6649
- RichText?: string;
6650
- }
6651
- /**
6652
- * @public
6653
- * <p>The subtitle label options for a visual.</p>
6654
- */
6655
- export interface VisualSubtitleLabelOptions {
6656
- /**
6657
- * @public
6658
- * <p>The visibility of the subtitle label.</p>
6659
- */
6660
- Visibility?: Visibility;
6661
- /**
6662
- * @public
6663
- * <p>The long text format of the subtitle label, such as plain text or rich text.</p>
6664
- */
6665
- FormatText?: LongFormatText;
6666
- }
6667
6656
  /**
6668
6657
  * @internal
6669
6658
  */
@@ -1,4 +1,58 @@
1
- import { AnalysisDefaults, AssetOptions, AxisBinding, AxisDisplayOptions, BarChartConfiguration, BarsArrangement, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, ColumnHierarchy, ColumnIdentifier, ColumnSort, ContributionAnalysisDefault, DataLabelOptions, DataLabelPosition, DataPathValue, DataSetIdentifierDeclaration, DimensionField, FieldSort, FieldSortOptions, FilterControl, FilterGroup, FontConfiguration, FormatConfiguration, HorizontalTextAlignment, ItemsLimitConfiguration, Layout, LegendOptions, MeasureField, NumberDisplayFormatConfiguration, ParameterControl, ParameterDeclaration, PercentageDisplayFormatConfiguration, ReferenceLine, ResourceStatus, SheetContentType, SheetControlLayout, SheetTextBox, SmallMultiplesOptions, SortDirection, TimeGranularity, TooltipOptions, URLTargetConfiguration, Visibility, VisualCustomAction, VisualPalette, VisualSubtitleLabelOptions, WidgetStatus } from "./models_0";
1
+ import { AnalysisDefaults, AssetOptions, AxisBinding, AxisDisplayOptions, BarChartConfiguration, BarsArrangement, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, ColumnIdentifier, ColumnSort, ContributionAnalysisDefault, DataLabelOptions, DataLabelPosition, DataPathValue, DataSetIdentifierDeclaration, DateTimeHierarchy, DimensionField, ExplicitHierarchy, FieldSort, FieldSortOptions, FilterControl, FilterGroup, FontConfiguration, FormatConfiguration, HorizontalTextAlignment, ItemsLimitConfiguration, Layout, LegendOptions, MeasureField, NumberDisplayFormatConfiguration, ParameterControl, ParameterDeclaration, PercentageDisplayFormatConfiguration, PredefinedHierarchy, ReferenceLine, SheetContentType, SheetControlLayout, SheetTextBox, SmallMultiplesOptions, SortDirection, TimeGranularity, TooltipOptions, URLTargetConfiguration, Visibility, VisualCustomAction, VisualInteractionOptions, VisualPalette, WidgetStatus } from "./models_0";
2
+ /**
3
+ * @public
4
+ * <p>The option that determines the hierarchy of the fields for a visual element.</p>
5
+ */
6
+ export interface ColumnHierarchy {
7
+ /**
8
+ * @public
9
+ * <p>The option that determines the hierarchy of the fields that are built within a visual's field wells. These fields can't be duplicated to other visuals.</p>
10
+ */
11
+ ExplicitHierarchy?: ExplicitHierarchy;
12
+ /**
13
+ * @public
14
+ * <p>The option that determines the hierarchy of any <code>DateTime</code> fields.</p>
15
+ */
16
+ DateTimeHierarchy?: DateTimeHierarchy;
17
+ /**
18
+ * @public
19
+ * <p>The option that determines the hierarchy of the fields that are defined during data preparation. These fields are available to use in any analysis that uses the data source.</p>
20
+ */
21
+ PredefinedHierarchy?: PredefinedHierarchy;
22
+ }
23
+ /**
24
+ * @public
25
+ * <p>The text format for a subtitle.</p>
26
+ * <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>
27
+ */
28
+ export interface LongFormatText {
29
+ /**
30
+ * @public
31
+ * <p>Plain text format.</p>
32
+ */
33
+ PlainText?: string;
34
+ /**
35
+ * @public
36
+ * <p>Rich text. Examples of rich text include bold, underline, and italics.</p>
37
+ */
38
+ RichText?: string;
39
+ }
40
+ /**
41
+ * @public
42
+ * <p>The subtitle label options for a visual.</p>
43
+ */
44
+ export interface VisualSubtitleLabelOptions {
45
+ /**
46
+ * @public
47
+ * <p>The visibility of the subtitle label.</p>
48
+ */
49
+ Visibility?: Visibility;
50
+ /**
51
+ * @public
52
+ * <p>The long text format of the subtitle label, such as plain text or rich text.</p>
53
+ */
54
+ FormatText?: LongFormatText;
55
+ }
2
56
  /**
3
57
  * @public
4
58
  * <p>The text format for the title.</p>
@@ -254,6 +308,11 @@ export interface BoxPlotChartConfiguration {
254
308
  * <p>The palette (chart color) display setup of the visual.</p>
255
309
  */
256
310
  VisualPalette?: VisualPalette;
311
+ /**
312
+ * @public
313
+ * <p>The general visual interactions setup for a visual.</p>
314
+ */
315
+ Interactions?: VisualInteractionOptions;
257
316
  }
258
317
  /**
259
318
  * @public
@@ -496,6 +555,11 @@ export interface ComboChartConfiguration {
496
555
  * <p>The palette (chart color) display setup of the visual.</p>
497
556
  */
498
557
  VisualPalette?: VisualPalette;
558
+ /**
559
+ * @public
560
+ * <p>The general visual interactions setup for a visual.</p>
561
+ */
562
+ Interactions?: VisualInteractionOptions;
499
563
  }
500
564
  /**
501
565
  * @public
@@ -581,6 +645,11 @@ export interface CustomContentConfiguration {
581
645
  * <p>The sizing options for the size of the custom content visual. This structure is required when the <code>ContentType</code> of the visual is <code>'IMAGE'</code>.</p>
582
646
  */
583
647
  ImageScaling?: CustomContentImageScalingConfiguration;
648
+ /**
649
+ * @public
650
+ * <p>The general visual interactions setup for a visual.</p>
651
+ */
652
+ Interactions?: VisualInteractionOptions;
584
653
  }
585
654
  /**
586
655
  * @public
@@ -795,6 +864,11 @@ export interface FilledMapConfiguration {
795
864
  * <p>The map style options of the filled map visual.</p>
796
865
  */
797
866
  MapStyleOptions?: GeospatialMapStyleOptions;
867
+ /**
868
+ * @public
869
+ * <p>The general visual interactions setup for a visual.</p>
870
+ */
871
+ Interactions?: VisualInteractionOptions;
798
872
  }
799
873
  /**
800
874
  * @public
@@ -1108,6 +1182,11 @@ export interface FunnelChartConfiguration {
1108
1182
  * <p>The visual palette configuration of a <code>FunnelChartVisual</code>.</p>
1109
1183
  */
1110
1184
  VisualPalette?: VisualPalette;
1185
+ /**
1186
+ * @public
1187
+ * <p>The general visual interactions setup for a visual.</p>
1188
+ */
1189
+ Interactions?: VisualInteractionOptions;
1111
1190
  }
1112
1191
  /**
1113
1192
  * @public
@@ -1360,6 +1439,11 @@ export interface GaugeChartConfiguration {
1360
1439
  * <p>The visual palette configuration of a <code>GaugeChartVisual</code>.</p>
1361
1440
  */
1362
1441
  VisualPalette?: VisualPalette;
1442
+ /**
1443
+ * @public
1444
+ * <p>The general visual interactions setup for a visual.</p>
1445
+ */
1446
+ Interactions?: VisualInteractionOptions;
1363
1447
  }
1364
1448
  /**
1365
1449
  * @public
@@ -1779,6 +1863,11 @@ export interface GeospatialMapConfiguration {
1779
1863
  * <p>The visual display options for the visual palette.</p>
1780
1864
  */
1781
1865
  VisualPalette?: VisualPalette;
1866
+ /**
1867
+ * @public
1868
+ * <p>The general visual interactions setup for a visual.</p>
1869
+ */
1870
+ Interactions?: VisualInteractionOptions;
1782
1871
  }
1783
1872
  /**
1784
1873
  * @public
@@ -1970,6 +2059,11 @@ export interface HeatMapConfiguration {
1970
2059
  * <p>The tooltip display setup of the visual.</p>
1971
2060
  */
1972
2061
  Tooltip?: TooltipOptions;
2062
+ /**
2063
+ * @public
2064
+ * <p>The general visual interactions setup for a visual.</p>
2065
+ */
2066
+ Interactions?: VisualInteractionOptions;
1973
2067
  }
1974
2068
  /**
1975
2069
  * @public
@@ -2140,6 +2234,11 @@ export interface HistogramConfiguration {
2140
2234
  * <p>The visual palette configuration of a histogram.</p>
2141
2235
  */
2142
2236
  VisualPalette?: VisualPalette;
2237
+ /**
2238
+ * @public
2239
+ * <p>The general visual interactions setup for a visual.</p>
2240
+ */
2241
+ Interactions?: VisualInteractionOptions;
2143
2242
  }
2144
2243
  /**
2145
2244
  * @public
@@ -2682,6 +2781,11 @@ export interface InsightConfiguration {
2682
2781
  * <p>The custom narrative of the insight visual.</p>
2683
2782
  */
2684
2783
  CustomNarrative?: CustomNarrativeOptions;
2784
+ /**
2785
+ * @public
2786
+ * <p>The general visual interactions setup for a visual.</p>
2787
+ */
2788
+ Interactions?: VisualInteractionOptions;
2685
2789
  }
2686
2790
  /**
2687
2791
  * @public
@@ -2928,6 +3032,11 @@ export interface KPIConfiguration {
2928
3032
  * <p>The options that determine the presentation of a KPI visual.</p>
2929
3033
  */
2930
3034
  KPIOptions?: KPIOptions;
3035
+ /**
3036
+ * @public
3037
+ * <p>The general visual interactions setup for a visual.</p>
3038
+ */
3039
+ Interactions?: VisualInteractionOptions;
2931
3040
  }
2932
3041
  /**
2933
3042
  * @public
@@ -3668,6 +3777,11 @@ export interface LineChartConfiguration {
3668
3777
  * <p>The visual palette configuration of a line chart.</p>
3669
3778
  */
3670
3779
  VisualPalette?: VisualPalette;
3780
+ /**
3781
+ * @public
3782
+ * <p>The general visual interactions setup for a visual.</p>
3783
+ */
3784
+ Interactions?: VisualInteractionOptions;
3671
3785
  }
3672
3786
  /**
3673
3787
  * @public
@@ -3895,6 +4009,11 @@ export interface PieChartConfiguration {
3895
4009
  * <p>The contribution analysis (anomaly configuration) setup of the visual.</p>
3896
4010
  */
3897
4011
  ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
4012
+ /**
4013
+ * @public
4014
+ * <p>The general visual interactions setup for a visual.</p>
4015
+ */
4016
+ Interactions?: VisualInteractionOptions;
3898
4017
  }
3899
4018
  /**
3900
4019
  * @public
@@ -4739,6 +4858,11 @@ export interface PivotTableConfiguration {
4739
4858
  * <p>The paginated report options for a pivot table visual.</p>
4740
4859
  */
4741
4860
  PaginatedReportOptions?: PivotTablePaginatedReportOptions;
4861
+ /**
4862
+ * @public
4863
+ * <p>The general visual interactions setup for a visual.</p>
4864
+ */
4865
+ Interactions?: VisualInteractionOptions;
4742
4866
  }
4743
4867
  /**
4744
4868
  * @public
@@ -5055,6 +5179,11 @@ export interface RadarChartConfiguration {
5055
5179
  * <p>The axis behavior options of a radar chart.</p>
5056
5180
  */
5057
5181
  AxesRangeScale?: RadarChartAxesRangeScale;
5182
+ /**
5183
+ * @public
5184
+ * <p>The general visual interactions setup for a visual.</p>
5185
+ */
5186
+ Interactions?: VisualInteractionOptions;
5058
5187
  }
5059
5188
  /**
5060
5189
  * @public
@@ -5165,6 +5294,11 @@ export interface SankeyDiagramChartConfiguration {
5165
5294
  * <p>The data label configuration of a sankey diagram.</p>
5166
5295
  */
5167
5296
  DataLabels?: DataLabelOptions;
5297
+ /**
5298
+ * @public
5299
+ * <p>The general visual interactions setup for a visual.</p>
5300
+ */
5301
+ Interactions?: VisualInteractionOptions;
5168
5302
  }
5169
5303
  /**
5170
5304
  * @public
@@ -5348,6 +5482,11 @@ export interface ScatterPlotConfiguration {
5348
5482
  * <p>The palette (chart color) display setup of the visual.</p>
5349
5483
  */
5350
5484
  VisualPalette?: VisualPalette;
5485
+ /**
5486
+ * @public
5487
+ * <p>The general visual interactions setup for a visual.</p>
5488
+ */
5489
+ Interactions?: VisualInteractionOptions;
5351
5490
  }
5352
5491
  /**
5353
5492
  * @public
@@ -5813,6 +5952,11 @@ export interface TableConfiguration {
5813
5952
  * <p>A collection of inline visualizations to display within a chart.</p>
5814
5953
  */
5815
5954
  TableInlineVisualizations?: TableInlineVisualization[];
5955
+ /**
5956
+ * @public
5957
+ * <p>The general visual interactions setup for a visual.</p>
5958
+ */
5959
+ Interactions?: VisualInteractionOptions;
5816
5960
  }
5817
5961
  /**
5818
5962
  * @public
@@ -6009,6 +6153,11 @@ export interface TreeMapConfiguration {
6009
6153
  * <p>The tooltip display setup of the visual.</p>
6010
6154
  */
6011
6155
  Tooltip?: TooltipOptions;
6156
+ /**
6157
+ * @public
6158
+ * <p>The general visual interactions setup for a visual.</p>
6159
+ */
6160
+ Interactions?: VisualInteractionOptions;
6012
6161
  }
6013
6162
  /**
6014
6163
  * @public
@@ -6047,6 +6196,38 @@ export interface TreeMapVisual {
6047
6196
  */
6048
6197
  ColumnHierarchies?: ColumnHierarchy[];
6049
6198
  }
6199
+ /**
6200
+ * @public
6201
+ * <p>The color configuration for individual groups within a waterfall visual.</p>
6202
+ */
6203
+ export interface WaterfallChartGroupColorConfiguration {
6204
+ /**
6205
+ * @public
6206
+ * <p>Defines the color for the positive bars of a waterfall chart.</p>
6207
+ */
6208
+ PositiveBarColor?: string;
6209
+ /**
6210
+ * @public
6211
+ * <p>Defines the color for the negative bars of a waterfall chart.</p>
6212
+ */
6213
+ NegativeBarColor?: string;
6214
+ /**
6215
+ * @public
6216
+ * <p>Defines the color for the total bars of a waterfall chart.</p>
6217
+ */
6218
+ TotalBarColor?: string;
6219
+ }
6220
+ /**
6221
+ * @public
6222
+ * <p>The color configuration of a waterfall visual.</p>
6223
+ */
6224
+ export interface WaterfallChartColorConfiguration {
6225
+ /**
6226
+ * @public
6227
+ * <p>The color configuration for individual groups within a waterfall visual.</p>
6228
+ */
6229
+ GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
6230
+ }
6050
6231
  /**
6051
6232
  * @public
6052
6233
  * <p>The field well configuration of a waterfall visual.</p>
@@ -6161,6 +6342,16 @@ export interface WaterfallChartConfiguration {
6161
6342
  * <p>The visual palette configuration of a waterfall visual.</p>
6162
6343
  */
6163
6344
  VisualPalette?: VisualPalette;
6345
+ /**
6346
+ * @public
6347
+ * <p>The color configuration of a waterfall visual.</p>
6348
+ */
6349
+ ColorConfiguration?: WaterfallChartColorConfiguration;
6350
+ /**
6351
+ * @public
6352
+ * <p>The general visual interactions setup for a visual.</p>
6353
+ */
6354
+ Interactions?: VisualInteractionOptions;
6164
6355
  }
6165
6356
  /**
6166
6357
  * @public
@@ -6366,6 +6557,11 @@ export interface WordCloudChartConfiguration {
6366
6557
  * <p>The options for a word cloud visual.</p>
6367
6558
  */
6368
6559
  WordCloudOptions?: WordCloudOptions;
6560
+ /**
6561
+ * @public
6562
+ * <p>The general visual interactions setup for a visual.</p>
6563
+ */
6564
+ Interactions?: VisualInteractionOptions;
6369
6565
  }
6370
6566
  /**
6371
6567
  * @public
@@ -6760,98 +6956,6 @@ export interface AnalysisSearchFilter {
6760
6956
  */
6761
6957
  Value?: string;
6762
6958
  }
6763
- /**
6764
- * @public
6765
- * <p>Dataset reference.</p>
6766
- */
6767
- export interface DataSetReference {
6768
- /**
6769
- * @public
6770
- * <p>Dataset placeholder.</p>
6771
- */
6772
- DataSetPlaceholder: string | undefined;
6773
- /**
6774
- * @public
6775
- * <p>Dataset Amazon Resource Name (ARN).</p>
6776
- */
6777
- DataSetArn: string | undefined;
6778
- }
6779
- /**
6780
- * @public
6781
- * <p>The source template of an analysis.</p>
6782
- */
6783
- export interface AnalysisSourceTemplate {
6784
- /**
6785
- * @public
6786
- * <p>The dataset references of the source template of an analysis.</p>
6787
- */
6788
- DataSetReferences: DataSetReference[] | undefined;
6789
- /**
6790
- * @public
6791
- * <p>The Amazon Resource Name (ARN) of the source template of an analysis.</p>
6792
- */
6793
- Arn: string | undefined;
6794
- }
6795
- /**
6796
- * @public
6797
- * <p>The source entity of an analysis.</p>
6798
- */
6799
- export interface AnalysisSourceEntity {
6800
- /**
6801
- * @public
6802
- * <p>The source template for the source entity of the analysis.</p>
6803
- */
6804
- SourceTemplate?: AnalysisSourceTemplate;
6805
- }
6806
- /**
6807
- * @public
6808
- * <p>The summary metadata that describes an analysis.</p>
6809
- */
6810
- export interface AnalysisSummary {
6811
- /**
6812
- * @public
6813
- * <p>The Amazon Resource Name (ARN) for the analysis.</p>
6814
- */
6815
- Arn?: string;
6816
- /**
6817
- * @public
6818
- * <p>The ID of the analysis. This ID displays in the URL.</p>
6819
- */
6820
- AnalysisId?: string;
6821
- /**
6822
- * @public
6823
- * <p>The name of the analysis. This name is displayed in the Amazon QuickSight console.
6824
- * </p>
6825
- */
6826
- Name?: string;
6827
- /**
6828
- * @public
6829
- * <p>The last known status for the analysis.</p>
6830
- */
6831
- Status?: ResourceStatus;
6832
- /**
6833
- * @public
6834
- * <p>The time that the analysis was created.</p>
6835
- */
6836
- CreatedTime?: Date;
6837
- /**
6838
- * @public
6839
- * <p>The time that the analysis was last updated.</p>
6840
- */
6841
- LastUpdatedTime?: Date;
6842
- }
6843
- /**
6844
- * @public
6845
- * <p>Information about the dashboard that you want to embed.</p>
6846
- */
6847
- export interface AnonymousUserDashboardEmbeddingConfiguration {
6848
- /**
6849
- * @public
6850
- * <p>The dashboard ID for the dashboard that you want the user to see first. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this dashboard.</p>
6851
- * <p>The Amazon Resource Name (ARN) of this dashboard must be included in the <code>AuthorizedResourceArns</code> parameter. Otherwise, the request will fail with <code>InvalidParameterValueException</code>.</p>
6852
- */
6853
- InitialDashboardId: string | undefined;
6854
- }
6855
6959
  /**
6856
6960
  * @internal
6857
6961
  */