GetRouteTableFilter constructor

const GetRouteTableFilter({
  1. required Input<String> name,
  2. required Input<List<String>> values,
})

Creates a new GetRouteTableFilter. name Name of the field to filter by, as defined by the underlying AWS API. values Set of values that are accepted for the given field. A Route Table will be selected if any one of the given values matches.

Implementation

const GetRouteTableFilter({
  required this.name,
  required this.values,
});