@aws-sdk/client-quicksight 3.935.0 → 3.937.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 (34) hide show
  1. package/dist-cjs/index.js +96 -22
  2. package/dist-es/models/enums.js +3 -0
  3. package/dist-es/schemas/schemas_0.js +92 -22
  4. package/dist-types/commands/CreateAnalysisCommand.d.ts +47 -1
  5. package/dist-types/commands/CreateDashboardCommand.d.ts +47 -1
  6. package/dist-types/commands/CreateDataSourceCommand.d.ts +1 -2
  7. package/dist-types/commands/CreateTemplateCommand.d.ts +47 -1
  8. package/dist-types/commands/CreateThemeCommand.d.ts +84 -0
  9. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +47 -1
  10. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +47 -1
  11. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +47 -1
  12. package/dist-types/commands/DescribeThemeCommand.d.ts +84 -0
  13. package/dist-types/commands/DescribeVPCConnectionCommand.d.ts +1 -1
  14. package/dist-types/commands/UpdateAnalysisCommand.d.ts +47 -1
  15. package/dist-types/commands/UpdateDashboardCommand.d.ts +47 -1
  16. package/dist-types/commands/UpdateTemplateCommand.d.ts +47 -1
  17. package/dist-types/commands/UpdateThemeCommand.d.ts +84 -0
  18. package/dist-types/models/enums.d.ts +11 -0
  19. package/dist-types/models/models_0.d.ts +82 -33
  20. package/dist-types/models/models_1.d.ts +35 -78
  21. package/dist-types/models/models_2.d.ts +88 -104
  22. package/dist-types/models/models_3.d.ts +218 -167
  23. package/dist-types/models/models_4.d.ts +168 -4
  24. package/dist-types/schemas/schemas_0.d.ts +5 -0
  25. package/dist-types/ts3.4/commands/CreateDataSourceCommand.d.ts +4 -2
  26. package/dist-types/ts3.4/commands/DescribeVPCConnectionCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/models/enums.d.ts +4 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +18 -8
  29. package/dist-types/ts3.4/models/models_1.d.ts +9 -21
  30. package/dist-types/ts3.4/models/models_2.d.ts +22 -22
  31. package/dist-types/ts3.4/models/models_3.d.ts +49 -37
  32. package/dist-types/ts3.4/models/models_4.d.ts +39 -4
  33. package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
  34. package/package.json +12 -12
@@ -75,9 +75,14 @@ declare const CreateThemeCommand_base: {
75
75
  * },
76
76
  * Sheet: { // SheetStyle
77
77
  * Tile: { // TileStyle
78
+ * BackgroundColor: "STRING_VALUE",
78
79
  * Border: { // BorderStyle
80
+ * Color: "STRING_VALUE",
79
81
  * Show: true || false,
82
+ * Width: "STRING_VALUE",
80
83
  * },
84
+ * BorderRadius: "STRING_VALUE",
85
+ * Padding: "STRING_VALUE",
81
86
  * },
82
87
  * TileLayout: { // TileLayoutStyle
83
88
  * Gutter: { // GutterStyle
@@ -87,6 +92,10 @@ declare const CreateThemeCommand_base: {
87
92
  * Show: true || false,
88
93
  * },
89
94
  * },
95
+ * Background: { // SheetBackgroundStyle
96
+ * Color: "STRING_VALUE",
97
+ * Gradient: "STRING_VALUE",
98
+ * },
90
99
  * },
91
100
  * Typography: { // Typography
92
101
  * FontFamilies: [ // FontList
@@ -94,6 +103,81 @@ declare const CreateThemeCommand_base: {
94
103
  * FontFamily: "STRING_VALUE",
95
104
  * },
96
105
  * ],
106
+ * AxisTitleFontConfiguration: { // FontConfiguration
107
+ * FontSize: { // FontSize
108
+ * Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
109
+ * Absolute: "STRING_VALUE",
110
+ * },
111
+ * FontDecoration: "UNDERLINE" || "NONE",
112
+ * FontColor: "STRING_VALUE",
113
+ * FontWeight: { // FontWeight
114
+ * Name: "NORMAL" || "BOLD",
115
+ * },
116
+ * FontStyle: "NORMAL" || "ITALIC",
117
+ * FontFamily: "STRING_VALUE",
118
+ * },
119
+ * AxisLabelFontConfiguration: {
120
+ * FontSize: {
121
+ * Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
122
+ * Absolute: "STRING_VALUE",
123
+ * },
124
+ * FontDecoration: "UNDERLINE" || "NONE",
125
+ * FontColor: "STRING_VALUE",
126
+ * FontWeight: {
127
+ * Name: "NORMAL" || "BOLD",
128
+ * },
129
+ * FontStyle: "NORMAL" || "ITALIC",
130
+ * FontFamily: "STRING_VALUE",
131
+ * },
132
+ * LegendTitleFontConfiguration: {
133
+ * FontSize: {
134
+ * Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
135
+ * Absolute: "STRING_VALUE",
136
+ * },
137
+ * FontDecoration: "UNDERLINE" || "NONE",
138
+ * FontColor: "STRING_VALUE",
139
+ * FontWeight: {
140
+ * Name: "NORMAL" || "BOLD",
141
+ * },
142
+ * FontStyle: "NORMAL" || "ITALIC",
143
+ * FontFamily: "STRING_VALUE",
144
+ * },
145
+ * LegendValueFontConfiguration: {
146
+ * FontSize: {
147
+ * Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
148
+ * Absolute: "STRING_VALUE",
149
+ * },
150
+ * FontDecoration: "UNDERLINE" || "NONE",
151
+ * FontColor: "STRING_VALUE",
152
+ * FontWeight: {
153
+ * Name: "NORMAL" || "BOLD",
154
+ * },
155
+ * FontStyle: "NORMAL" || "ITALIC",
156
+ * FontFamily: "STRING_VALUE",
157
+ * },
158
+ * DataLabelFontConfiguration: {
159
+ * FontSize: {
160
+ * Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
161
+ * Absolute: "STRING_VALUE",
162
+ * },
163
+ * FontDecoration: "UNDERLINE" || "NONE",
164
+ * FontColor: "STRING_VALUE",
165
+ * FontWeight: {
166
+ * Name: "NORMAL" || "BOLD",
167
+ * },
168
+ * FontStyle: "NORMAL" || "ITALIC",
169
+ * FontFamily: "STRING_VALUE",
170
+ * },
171
+ * VisualTitleFontConfiguration: { // VisualTitleFontConfiguration
172
+ * FontConfiguration: "<FontConfiguration>",
173
+ * TextAlignment: "LEFT" || "CENTER" || "RIGHT" || "AUTO",
174
+ * TextTransform: "CAPITALIZE",
175
+ * },
176
+ * VisualSubtitleFontConfiguration: { // VisualSubtitleFontConfiguration
177
+ * FontConfiguration: "<FontConfiguration>",
178
+ * TextAlignment: "LEFT" || "CENTER" || "RIGHT" || "AUTO",
179
+ * TextTransform: "CAPITALIZE",
180
+ * },
97
181
  * },
98
182
  * },
99
183
  * Permissions: [ // ResourcePermissionList
@@ -4567,6 +4567,25 @@ declare const DescribeAnalysisDefinitionCommand_base: {
4567
4567
  * // ColumnSpan: Number("int"), // required
4568
4568
  * // RowIndex: Number("int"),
4569
4569
  * // RowSpan: Number("int"), // required
4570
+ * // BorderStyle: { // GridLayoutElementBorderStyle
4571
+ * // Visibility: "HIDDEN" || "VISIBLE",
4572
+ * // Color: "STRING_VALUE",
4573
+ * // Width: "STRING_VALUE",
4574
+ * // },
4575
+ * // SelectedBorderStyle: {
4576
+ * // Visibility: "HIDDEN" || "VISIBLE",
4577
+ * // Color: "STRING_VALUE",
4578
+ * // Width: "STRING_VALUE",
4579
+ * // },
4580
+ * // BackgroundStyle: { // GridLayoutElementBackgroundStyle
4581
+ * // Visibility: "HIDDEN" || "VISIBLE",
4582
+ * // Color: "STRING_VALUE",
4583
+ * // },
4584
+ * // LoadingAnimation: { // LoadingAnimation
4585
+ * // Visibility: "HIDDEN" || "VISIBLE",
4586
+ * // },
4587
+ * // BorderRadius: "STRING_VALUE",
4588
+ * // Padding: "STRING_VALUE",
4570
4589
  * // },
4571
4590
  * // ],
4572
4591
  * // CanvasSizeOptions: { // GridLayoutCanvasSizeOptions
@@ -4597,18 +4616,22 @@ declare const DescribeAnalysisDefinitionCommand_base: {
4597
4616
  * // BorderStyle: { // FreeFormLayoutElementBorderStyle
4598
4617
  * // Visibility: "HIDDEN" || "VISIBLE",
4599
4618
  * // Color: "STRING_VALUE",
4619
+ * // Width: "STRING_VALUE",
4600
4620
  * // },
4601
4621
  * // SelectedBorderStyle: {
4602
4622
  * // Visibility: "HIDDEN" || "VISIBLE",
4603
4623
  * // Color: "STRING_VALUE",
4624
+ * // Width: "STRING_VALUE",
4604
4625
  * // },
4605
4626
  * // BackgroundStyle: { // FreeFormLayoutElementBackgroundStyle
4606
4627
  * // Visibility: "HIDDEN" || "VISIBLE",
4607
4628
  * // Color: "STRING_VALUE",
4608
4629
  * // },
4609
- * // LoadingAnimation: { // LoadingAnimation
4630
+ * // LoadingAnimation: {
4610
4631
  * // Visibility: "HIDDEN" || "VISIBLE",
4611
4632
  * // },
4633
+ * // BorderRadius: "STRING_VALUE",
4634
+ * // Padding: "STRING_VALUE",
4612
4635
  * // },
4613
4636
  * // ],
4614
4637
  * // CanvasSizeOptions: { // FreeFormLayoutCanvasSizeOptions
@@ -4643,10 +4666,12 @@ declare const DescribeAnalysisDefinitionCommand_base: {
4643
4666
  * // BorderStyle: {
4644
4667
  * // Visibility: "HIDDEN" || "VISIBLE",
4645
4668
  * // Color: "STRING_VALUE",
4669
+ * // Width: "STRING_VALUE",
4646
4670
  * // },
4647
4671
  * // SelectedBorderStyle: {
4648
4672
  * // Visibility: "HIDDEN" || "VISIBLE",
4649
4673
  * // Color: "STRING_VALUE",
4674
+ * // Width: "STRING_VALUE",
4650
4675
  * // },
4651
4676
  * // BackgroundStyle: {
4652
4677
  * // Visibility: "HIDDEN" || "VISIBLE",
@@ -4655,6 +4680,8 @@ declare const DescribeAnalysisDefinitionCommand_base: {
4655
4680
  * // LoadingAnimation: {
4656
4681
  * // Visibility: "HIDDEN" || "VISIBLE",
4657
4682
  * // },
4683
+ * // BorderRadius: "STRING_VALUE",
4684
+ * // Padding: "STRING_VALUE",
4658
4685
  * // },
4659
4686
  * // ],
4660
4687
  * // },
@@ -4771,6 +4798,25 @@ declare const DescribeAnalysisDefinitionCommand_base: {
4771
4798
  * // ColumnSpan: Number("int"), // required
4772
4799
  * // RowIndex: Number("int"),
4773
4800
  * // RowSpan: Number("int"), // required
4801
+ * // BorderStyle: {
4802
+ * // Visibility: "HIDDEN" || "VISIBLE",
4803
+ * // Color: "STRING_VALUE",
4804
+ * // Width: "STRING_VALUE",
4805
+ * // },
4806
+ * // SelectedBorderStyle: {
4807
+ * // Visibility: "HIDDEN" || "VISIBLE",
4808
+ * // Color: "STRING_VALUE",
4809
+ * // Width: "STRING_VALUE",
4810
+ * // },
4811
+ * // BackgroundStyle: {
4812
+ * // Visibility: "HIDDEN" || "VISIBLE",
4813
+ * // Color: "STRING_VALUE",
4814
+ * // },
4815
+ * // LoadingAnimation: {
4816
+ * // Visibility: "HIDDEN" || "VISIBLE",
4817
+ * // },
4818
+ * // BorderRadius: "STRING_VALUE",
4819
+ * // Padding: "STRING_VALUE",
4774
4820
  * // },
4775
4821
  * // ],
4776
4822
  * // CanvasSizeOptions: {
@@ -4568,6 +4568,25 @@ declare const DescribeDashboardDefinitionCommand_base: {
4568
4568
  * // ColumnSpan: Number("int"), // required
4569
4569
  * // RowIndex: Number("int"),
4570
4570
  * // RowSpan: Number("int"), // required
4571
+ * // BorderStyle: { // GridLayoutElementBorderStyle
4572
+ * // Visibility: "HIDDEN" || "VISIBLE",
4573
+ * // Color: "STRING_VALUE",
4574
+ * // Width: "STRING_VALUE",
4575
+ * // },
4576
+ * // SelectedBorderStyle: {
4577
+ * // Visibility: "HIDDEN" || "VISIBLE",
4578
+ * // Color: "STRING_VALUE",
4579
+ * // Width: "STRING_VALUE",
4580
+ * // },
4581
+ * // BackgroundStyle: { // GridLayoutElementBackgroundStyle
4582
+ * // Visibility: "HIDDEN" || "VISIBLE",
4583
+ * // Color: "STRING_VALUE",
4584
+ * // },
4585
+ * // LoadingAnimation: { // LoadingAnimation
4586
+ * // Visibility: "HIDDEN" || "VISIBLE",
4587
+ * // },
4588
+ * // BorderRadius: "STRING_VALUE",
4589
+ * // Padding: "STRING_VALUE",
4571
4590
  * // },
4572
4591
  * // ],
4573
4592
  * // CanvasSizeOptions: { // GridLayoutCanvasSizeOptions
@@ -4598,18 +4617,22 @@ declare const DescribeDashboardDefinitionCommand_base: {
4598
4617
  * // BorderStyle: { // FreeFormLayoutElementBorderStyle
4599
4618
  * // Visibility: "HIDDEN" || "VISIBLE",
4600
4619
  * // Color: "STRING_VALUE",
4620
+ * // Width: "STRING_VALUE",
4601
4621
  * // },
4602
4622
  * // SelectedBorderStyle: {
4603
4623
  * // Visibility: "HIDDEN" || "VISIBLE",
4604
4624
  * // Color: "STRING_VALUE",
4625
+ * // Width: "STRING_VALUE",
4605
4626
  * // },
4606
4627
  * // BackgroundStyle: { // FreeFormLayoutElementBackgroundStyle
4607
4628
  * // Visibility: "HIDDEN" || "VISIBLE",
4608
4629
  * // Color: "STRING_VALUE",
4609
4630
  * // },
4610
- * // LoadingAnimation: { // LoadingAnimation
4631
+ * // LoadingAnimation: {
4611
4632
  * // Visibility: "HIDDEN" || "VISIBLE",
4612
4633
  * // },
4634
+ * // BorderRadius: "STRING_VALUE",
4635
+ * // Padding: "STRING_VALUE",
4613
4636
  * // },
4614
4637
  * // ],
4615
4638
  * // CanvasSizeOptions: { // FreeFormLayoutCanvasSizeOptions
@@ -4644,10 +4667,12 @@ declare const DescribeDashboardDefinitionCommand_base: {
4644
4667
  * // BorderStyle: {
4645
4668
  * // Visibility: "HIDDEN" || "VISIBLE",
4646
4669
  * // Color: "STRING_VALUE",
4670
+ * // Width: "STRING_VALUE",
4647
4671
  * // },
4648
4672
  * // SelectedBorderStyle: {
4649
4673
  * // Visibility: "HIDDEN" || "VISIBLE",
4650
4674
  * // Color: "STRING_VALUE",
4675
+ * // Width: "STRING_VALUE",
4651
4676
  * // },
4652
4677
  * // BackgroundStyle: {
4653
4678
  * // Visibility: "HIDDEN" || "VISIBLE",
@@ -4656,6 +4681,8 @@ declare const DescribeDashboardDefinitionCommand_base: {
4656
4681
  * // LoadingAnimation: {
4657
4682
  * // Visibility: "HIDDEN" || "VISIBLE",
4658
4683
  * // },
4684
+ * // BorderRadius: "STRING_VALUE",
4685
+ * // Padding: "STRING_VALUE",
4659
4686
  * // },
4660
4687
  * // ],
4661
4688
  * // },
@@ -4772,6 +4799,25 @@ declare const DescribeDashboardDefinitionCommand_base: {
4772
4799
  * // ColumnSpan: Number("int"), // required
4773
4800
  * // RowIndex: Number("int"),
4774
4801
  * // RowSpan: Number("int"), // required
4802
+ * // BorderStyle: {
4803
+ * // Visibility: "HIDDEN" || "VISIBLE",
4804
+ * // Color: "STRING_VALUE",
4805
+ * // Width: "STRING_VALUE",
4806
+ * // },
4807
+ * // SelectedBorderStyle: {
4808
+ * // Visibility: "HIDDEN" || "VISIBLE",
4809
+ * // Color: "STRING_VALUE",
4810
+ * // Width: "STRING_VALUE",
4811
+ * // },
4812
+ * // BackgroundStyle: {
4813
+ * // Visibility: "HIDDEN" || "VISIBLE",
4814
+ * // Color: "STRING_VALUE",
4815
+ * // },
4816
+ * // LoadingAnimation: {
4817
+ * // Visibility: "HIDDEN" || "VISIBLE",
4818
+ * // },
4819
+ * // BorderRadius: "STRING_VALUE",
4820
+ * // Padding: "STRING_VALUE",
4775
4821
  * // },
4776
4822
  * // ],
4777
4823
  * // CanvasSizeOptions: {
@@ -4587,6 +4587,25 @@ declare const DescribeTemplateDefinitionCommand_base: {
4587
4587
  * // ColumnSpan: Number("int"), // required
4588
4588
  * // RowIndex: Number("int"),
4589
4589
  * // RowSpan: Number("int"), // required
4590
+ * // BorderStyle: { // GridLayoutElementBorderStyle
4591
+ * // Visibility: "HIDDEN" || "VISIBLE",
4592
+ * // Color: "STRING_VALUE",
4593
+ * // Width: "STRING_VALUE",
4594
+ * // },
4595
+ * // SelectedBorderStyle: {
4596
+ * // Visibility: "HIDDEN" || "VISIBLE",
4597
+ * // Color: "STRING_VALUE",
4598
+ * // Width: "STRING_VALUE",
4599
+ * // },
4600
+ * // BackgroundStyle: { // GridLayoutElementBackgroundStyle
4601
+ * // Visibility: "HIDDEN" || "VISIBLE",
4602
+ * // Color: "STRING_VALUE",
4603
+ * // },
4604
+ * // LoadingAnimation: { // LoadingAnimation
4605
+ * // Visibility: "HIDDEN" || "VISIBLE",
4606
+ * // },
4607
+ * // BorderRadius: "STRING_VALUE",
4608
+ * // Padding: "STRING_VALUE",
4590
4609
  * // },
4591
4610
  * // ],
4592
4611
  * // CanvasSizeOptions: { // GridLayoutCanvasSizeOptions
@@ -4617,18 +4636,22 @@ declare const DescribeTemplateDefinitionCommand_base: {
4617
4636
  * // BorderStyle: { // FreeFormLayoutElementBorderStyle
4618
4637
  * // Visibility: "HIDDEN" || "VISIBLE",
4619
4638
  * // Color: "STRING_VALUE",
4639
+ * // Width: "STRING_VALUE",
4620
4640
  * // },
4621
4641
  * // SelectedBorderStyle: {
4622
4642
  * // Visibility: "HIDDEN" || "VISIBLE",
4623
4643
  * // Color: "STRING_VALUE",
4644
+ * // Width: "STRING_VALUE",
4624
4645
  * // },
4625
4646
  * // BackgroundStyle: { // FreeFormLayoutElementBackgroundStyle
4626
4647
  * // Visibility: "HIDDEN" || "VISIBLE",
4627
4648
  * // Color: "STRING_VALUE",
4628
4649
  * // },
4629
- * // LoadingAnimation: { // LoadingAnimation
4650
+ * // LoadingAnimation: {
4630
4651
  * // Visibility: "HIDDEN" || "VISIBLE",
4631
4652
  * // },
4653
+ * // BorderRadius: "STRING_VALUE",
4654
+ * // Padding: "STRING_VALUE",
4632
4655
  * // },
4633
4656
  * // ],
4634
4657
  * // CanvasSizeOptions: { // FreeFormLayoutCanvasSizeOptions
@@ -4663,10 +4686,12 @@ declare const DescribeTemplateDefinitionCommand_base: {
4663
4686
  * // BorderStyle: {
4664
4687
  * // Visibility: "HIDDEN" || "VISIBLE",
4665
4688
  * // Color: "STRING_VALUE",
4689
+ * // Width: "STRING_VALUE",
4666
4690
  * // },
4667
4691
  * // SelectedBorderStyle: {
4668
4692
  * // Visibility: "HIDDEN" || "VISIBLE",
4669
4693
  * // Color: "STRING_VALUE",
4694
+ * // Width: "STRING_VALUE",
4670
4695
  * // },
4671
4696
  * // BackgroundStyle: {
4672
4697
  * // Visibility: "HIDDEN" || "VISIBLE",
@@ -4675,6 +4700,8 @@ declare const DescribeTemplateDefinitionCommand_base: {
4675
4700
  * // LoadingAnimation: {
4676
4701
  * // Visibility: "HIDDEN" || "VISIBLE",
4677
4702
  * // },
4703
+ * // BorderRadius: "STRING_VALUE",
4704
+ * // Padding: "STRING_VALUE",
4678
4705
  * // },
4679
4706
  * // ],
4680
4707
  * // },
@@ -4791,6 +4818,25 @@ declare const DescribeTemplateDefinitionCommand_base: {
4791
4818
  * // ColumnSpan: Number("int"), // required
4792
4819
  * // RowIndex: Number("int"),
4793
4820
  * // RowSpan: Number("int"), // required
4821
+ * // BorderStyle: {
4822
+ * // Visibility: "HIDDEN" || "VISIBLE",
4823
+ * // Color: "STRING_VALUE",
4824
+ * // Width: "STRING_VALUE",
4825
+ * // },
4826
+ * // SelectedBorderStyle: {
4827
+ * // Visibility: "HIDDEN" || "VISIBLE",
4828
+ * // Color: "STRING_VALUE",
4829
+ * // Width: "STRING_VALUE",
4830
+ * // },
4831
+ * // BackgroundStyle: {
4832
+ * // Visibility: "HIDDEN" || "VISIBLE",
4833
+ * // Color: "STRING_VALUE",
4834
+ * // },
4835
+ * // LoadingAnimation: {
4836
+ * // Visibility: "HIDDEN" || "VISIBLE",
4837
+ * // },
4838
+ * // BorderRadius: "STRING_VALUE",
4839
+ * // Padding: "STRING_VALUE",
4794
4840
  * // },
4795
4841
  * // ],
4796
4842
  * // CanvasSizeOptions: {
@@ -85,9 +85,14 @@ declare const DescribeThemeCommand_base: {
85
85
  * // },
86
86
  * // Sheet: { // SheetStyle
87
87
  * // Tile: { // TileStyle
88
+ * // BackgroundColor: "STRING_VALUE",
88
89
  * // Border: { // BorderStyle
90
+ * // Color: "STRING_VALUE",
89
91
  * // Show: true || false,
92
+ * // Width: "STRING_VALUE",
90
93
  * // },
94
+ * // BorderRadius: "STRING_VALUE",
95
+ * // Padding: "STRING_VALUE",
91
96
  * // },
92
97
  * // TileLayout: { // TileLayoutStyle
93
98
  * // Gutter: { // GutterStyle
@@ -97,6 +102,10 @@ declare const DescribeThemeCommand_base: {
97
102
  * // Show: true || false,
98
103
  * // },
99
104
  * // },
105
+ * // Background: { // SheetBackgroundStyle
106
+ * // Color: "STRING_VALUE",
107
+ * // Gradient: "STRING_VALUE",
108
+ * // },
100
109
  * // },
101
110
  * // Typography: { // Typography
102
111
  * // FontFamilies: [ // FontList
@@ -104,6 +113,81 @@ declare const DescribeThemeCommand_base: {
104
113
  * // FontFamily: "STRING_VALUE",
105
114
  * // },
106
115
  * // ],
116
+ * // AxisTitleFontConfiguration: { // FontConfiguration
117
+ * // FontSize: { // FontSize
118
+ * // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
119
+ * // Absolute: "STRING_VALUE",
120
+ * // },
121
+ * // FontDecoration: "UNDERLINE" || "NONE",
122
+ * // FontColor: "STRING_VALUE",
123
+ * // FontWeight: { // FontWeight
124
+ * // Name: "NORMAL" || "BOLD",
125
+ * // },
126
+ * // FontStyle: "NORMAL" || "ITALIC",
127
+ * // FontFamily: "STRING_VALUE",
128
+ * // },
129
+ * // AxisLabelFontConfiguration: {
130
+ * // FontSize: {
131
+ * // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
132
+ * // Absolute: "STRING_VALUE",
133
+ * // },
134
+ * // FontDecoration: "UNDERLINE" || "NONE",
135
+ * // FontColor: "STRING_VALUE",
136
+ * // FontWeight: {
137
+ * // Name: "NORMAL" || "BOLD",
138
+ * // },
139
+ * // FontStyle: "NORMAL" || "ITALIC",
140
+ * // FontFamily: "STRING_VALUE",
141
+ * // },
142
+ * // LegendTitleFontConfiguration: {
143
+ * // FontSize: {
144
+ * // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
145
+ * // Absolute: "STRING_VALUE",
146
+ * // },
147
+ * // FontDecoration: "UNDERLINE" || "NONE",
148
+ * // FontColor: "STRING_VALUE",
149
+ * // FontWeight: {
150
+ * // Name: "NORMAL" || "BOLD",
151
+ * // },
152
+ * // FontStyle: "NORMAL" || "ITALIC",
153
+ * // FontFamily: "STRING_VALUE",
154
+ * // },
155
+ * // LegendValueFontConfiguration: {
156
+ * // FontSize: {
157
+ * // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
158
+ * // Absolute: "STRING_VALUE",
159
+ * // },
160
+ * // FontDecoration: "UNDERLINE" || "NONE",
161
+ * // FontColor: "STRING_VALUE",
162
+ * // FontWeight: {
163
+ * // Name: "NORMAL" || "BOLD",
164
+ * // },
165
+ * // FontStyle: "NORMAL" || "ITALIC",
166
+ * // FontFamily: "STRING_VALUE",
167
+ * // },
168
+ * // DataLabelFontConfiguration: {
169
+ * // FontSize: {
170
+ * // Relative: "EXTRA_SMALL" || "SMALL" || "MEDIUM" || "LARGE" || "EXTRA_LARGE",
171
+ * // Absolute: "STRING_VALUE",
172
+ * // },
173
+ * // FontDecoration: "UNDERLINE" || "NONE",
174
+ * // FontColor: "STRING_VALUE",
175
+ * // FontWeight: {
176
+ * // Name: "NORMAL" || "BOLD",
177
+ * // },
178
+ * // FontStyle: "NORMAL" || "ITALIC",
179
+ * // FontFamily: "STRING_VALUE",
180
+ * // },
181
+ * // VisualTitleFontConfiguration: { // VisualTitleFontConfiguration
182
+ * // FontConfiguration: "<FontConfiguration>",
183
+ * // TextAlignment: "LEFT" || "CENTER" || "RIGHT" || "AUTO",
184
+ * // TextTransform: "CAPITALIZE",
185
+ * // },
186
+ * // VisualSubtitleFontConfiguration: { // VisualSubtitleFontConfiguration
187
+ * // FontConfiguration: "<FontConfiguration>",
188
+ * // TextAlignment: "LEFT" || "CENTER" || "RIGHT" || "AUTO",
189
+ * // TextTransform: "CAPITALIZE",
190
+ * // },
107
191
  * // },
108
192
  * // },
109
193
  * // Errors: [ // ThemeErrorList
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeVPCConnectionRequest, DescribeVPCConnectionResponse } from "../models/models_3";
3
+ import { DescribeVPCConnectionRequest, DescribeVPCConnectionResponse } from "../models/models_4";
4
4
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
5
  /**
6
6
  * @public
@@ -4587,6 +4587,25 @@ declare const UpdateAnalysisCommand_base: {
4587
4587
  * ColumnSpan: Number("int"), // required
4588
4588
  * RowIndex: Number("int"),
4589
4589
  * RowSpan: Number("int"), // required
4590
+ * BorderStyle: { // GridLayoutElementBorderStyle
4591
+ * Visibility: "HIDDEN" || "VISIBLE",
4592
+ * Color: "STRING_VALUE",
4593
+ * Width: "STRING_VALUE",
4594
+ * },
4595
+ * SelectedBorderStyle: {
4596
+ * Visibility: "HIDDEN" || "VISIBLE",
4597
+ * Color: "STRING_VALUE",
4598
+ * Width: "STRING_VALUE",
4599
+ * },
4600
+ * BackgroundStyle: { // GridLayoutElementBackgroundStyle
4601
+ * Visibility: "HIDDEN" || "VISIBLE",
4602
+ * Color: "STRING_VALUE",
4603
+ * },
4604
+ * LoadingAnimation: { // LoadingAnimation
4605
+ * Visibility: "HIDDEN" || "VISIBLE",
4606
+ * },
4607
+ * BorderRadius: "STRING_VALUE",
4608
+ * Padding: "STRING_VALUE",
4590
4609
  * },
4591
4610
  * ],
4592
4611
  * CanvasSizeOptions: { // GridLayoutCanvasSizeOptions
@@ -4617,18 +4636,22 @@ declare const UpdateAnalysisCommand_base: {
4617
4636
  * BorderStyle: { // FreeFormLayoutElementBorderStyle
4618
4637
  * Visibility: "HIDDEN" || "VISIBLE",
4619
4638
  * Color: "STRING_VALUE",
4639
+ * Width: "STRING_VALUE",
4620
4640
  * },
4621
4641
  * SelectedBorderStyle: {
4622
4642
  * Visibility: "HIDDEN" || "VISIBLE",
4623
4643
  * Color: "STRING_VALUE",
4644
+ * Width: "STRING_VALUE",
4624
4645
  * },
4625
4646
  * BackgroundStyle: { // FreeFormLayoutElementBackgroundStyle
4626
4647
  * Visibility: "HIDDEN" || "VISIBLE",
4627
4648
  * Color: "STRING_VALUE",
4628
4649
  * },
4629
- * LoadingAnimation: { // LoadingAnimation
4650
+ * LoadingAnimation: {
4630
4651
  * Visibility: "HIDDEN" || "VISIBLE",
4631
4652
  * },
4653
+ * BorderRadius: "STRING_VALUE",
4654
+ * Padding: "STRING_VALUE",
4632
4655
  * },
4633
4656
  * ],
4634
4657
  * CanvasSizeOptions: { // FreeFormLayoutCanvasSizeOptions
@@ -4663,10 +4686,12 @@ declare const UpdateAnalysisCommand_base: {
4663
4686
  * BorderStyle: {
4664
4687
  * Visibility: "HIDDEN" || "VISIBLE",
4665
4688
  * Color: "STRING_VALUE",
4689
+ * Width: "STRING_VALUE",
4666
4690
  * },
4667
4691
  * SelectedBorderStyle: {
4668
4692
  * Visibility: "HIDDEN" || "VISIBLE",
4669
4693
  * Color: "STRING_VALUE",
4694
+ * Width: "STRING_VALUE",
4670
4695
  * },
4671
4696
  * BackgroundStyle: {
4672
4697
  * Visibility: "HIDDEN" || "VISIBLE",
@@ -4675,6 +4700,8 @@ declare const UpdateAnalysisCommand_base: {
4675
4700
  * LoadingAnimation: {
4676
4701
  * Visibility: "HIDDEN" || "VISIBLE",
4677
4702
  * },
4703
+ * BorderRadius: "STRING_VALUE",
4704
+ * Padding: "STRING_VALUE",
4678
4705
  * },
4679
4706
  * ],
4680
4707
  * },
@@ -4791,6 +4818,25 @@ declare const UpdateAnalysisCommand_base: {
4791
4818
  * ColumnSpan: Number("int"), // required
4792
4819
  * RowIndex: Number("int"),
4793
4820
  * RowSpan: Number("int"), // required
4821
+ * BorderStyle: {
4822
+ * Visibility: "HIDDEN" || "VISIBLE",
4823
+ * Color: "STRING_VALUE",
4824
+ * Width: "STRING_VALUE",
4825
+ * },
4826
+ * SelectedBorderStyle: {
4827
+ * Visibility: "HIDDEN" || "VISIBLE",
4828
+ * Color: "STRING_VALUE",
4829
+ * Width: "STRING_VALUE",
4830
+ * },
4831
+ * BackgroundStyle: {
4832
+ * Visibility: "HIDDEN" || "VISIBLE",
4833
+ * Color: "STRING_VALUE",
4834
+ * },
4835
+ * LoadingAnimation: {
4836
+ * Visibility: "HIDDEN" || "VISIBLE",
4837
+ * },
4838
+ * BorderRadius: "STRING_VALUE",
4839
+ * Padding: "STRING_VALUE",
4794
4840
  * },
4795
4841
  * ],
4796
4842
  * CanvasSizeOptions: {