File tree 3 files changed +38
-3
lines changed
internal/service/quicksight/schema
3 files changed +38
-3
lines changed Original file line number Diff line number Diff line change
1
+ ```release-note:bug
2
+ resource/aws_quicksight_template: Fix exception thrown when specifying `definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range`
3
+ ```
4
+
5
+ ```release-note:bug
6
+ resource/aws_quicksight_template: Fix exception thrown when specifying `definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options.visibility`
7
+ ```
8
+
9
+ ```release-note:bug
10
+ resource/aws_quicksight_template: Fix exception thrown when specifying `definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows`
11
+ ```
12
+
13
+ ```release-note:bug
14
+ resource/aws_quicksight_dashboard: Fix exception thrown when specifying `definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range`
15
+ ```
16
+
17
+ ```release-note:bug
18
+ resource/aws_quicksight_dashboard: Fix exception thrown when specifying `definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options.visibility`
19
+ ```
20
+
21
+ ```release-note:bug
22
+ resource/aws_quicksight_dashboard: Fix exception thrown when specifying `definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows`
23
+ ```
24
+
25
+ ```release-note:bug
26
+ resource/aws_quicksight_analysis: Fix exception thrown when specifying `definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range`
27
+ ```
28
+
29
+ ```release-note:bug
30
+ resource/aws_quicksight_analysis: Fix exception thrown when specifying `definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options.visibility`
31
+ ```
32
+
33
+ ```release-note:bug
34
+ resource/aws_quicksight_analysis: Fix exception thrown when specifying `definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows`
35
+ ```
Original file line number Diff line number Diff line change @@ -1368,7 +1368,7 @@ func flattenScrollBarOptions(apiObject *quicksight.ScrollBarOptions) []interface
1368
1368
tfMap ["visibility" ] = aws .StringValue (apiObject .Visibility )
1369
1369
}
1370
1370
if apiObject .VisibleRange != nil {
1371
- tfMap ["visibile_range " ] = flattenVisibleRangeOptions (apiObject .VisibleRange )
1371
+ tfMap ["visible_range " ] = flattenVisibleRangeOptions (apiObject .VisibleRange )
1372
1372
}
1373
1373
1374
1374
return []interface {}{tfMap }
Original file line number Diff line number Diff line change @@ -1295,7 +1295,7 @@ func flattenPivotTableAggregatedFieldWells(apiObject *quicksight.PivotTableAggre
1295
1295
tfMap ["columns" ] = flattenDimensionFields (apiObject .Columns )
1296
1296
}
1297
1297
if apiObject .Rows != nil {
1298
- tfMap ["row " ] = flattenDimensionFields (apiObject .Rows )
1298
+ tfMap ["rows " ] = flattenDimensionFields (apiObject .Rows )
1299
1299
}
1300
1300
if apiObject .Values != nil {
1301
1301
tfMap ["values" ] = flattenMeasureFields (apiObject .Values )
@@ -1671,7 +1671,7 @@ func flattenPivotTableFieldOption(apiObject []*quicksight.PivotTableFieldOption)
1671
1671
tfMap ["custom_label" ] = aws .StringValue (config .CustomLabel )
1672
1672
}
1673
1673
if config .Visibility != nil {
1674
- tfMap ["visbility " ] = aws .StringValue (config .Visibility )
1674
+ tfMap ["visibility " ] = aws .StringValue (config .Visibility )
1675
1675
}
1676
1676
1677
1677
tfList = append (tfList , tfMap )
You can’t perform that action at this time.
0 commit comments