GetVpcEndpointServiceFilter constructor

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

Creates a new GetVpcEndpointServiceFilter. name Name of the filter field. Valid values can be found in the EC2 DescribeVpcEndpointServices API Reference. values Set of values that are accepted for the given filter field. Results will be selected if any given value matches.

Implementation

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