/**
  * Sets the value of the Filters property for this object.
  *
  * <p>Returns a reference to this object so that method calls can be chained together.
  *
  * @param filters The new value for the Filters property for this object.
  */
 public DescribeNetworkInterfacesRequest withFilters(Filter... filters) {
   if (getFilters() == null) setFilters(new java.util.ArrayList<Filter>(filters.length));
   for (Filter value : filters) {
     getFilters().add(value);
   }
   return this;
 }