Skip to content

Commit 244c1b6

Browse files
committed
Down to 163 total QuickSight types
1 parent e1e764a commit 244c1b6

File tree

6 files changed

+260
-10
lines changed

6 files changed

+260
-10
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package quicksight
2+
3+
import (
4+
"github.com/pulumi/pulumi-terraform-bridge/v3/pkg/tfbridge/info"
5+
)
6+
7+
func drillDownFilterSchema(st *state) *info.Schema {
8+
return st.define("DrillDownFilter", &info.Schema{
9+
Elem: &info.Schema{
10+
Fields: map[string]*info.Schema{
11+
"category_filter": {
12+
Elem: &info.Schema{
13+
Fields: map[string]*info.Schema{
14+
"column": columnSchema(st),
15+
},
16+
},
17+
},
18+
"numeric_equality_filter": {
19+
Elem: &info.Schema{
20+
Fields: map[string]*info.Schema{
21+
"column": columnSchema(st),
22+
},
23+
},
24+
},
25+
"time_range_filter": {
26+
Elem: &info.Schema{
27+
Fields: map[string]*info.Schema{
28+
"column": columnSchema(st),
29+
},
30+
},
31+
},
32+
},
33+
},
34+
})
35+
}

0 commit comments

Comments
 (0)