Interface NestedFilters.Builder

    • Method Detail

      • nestedPropertyName

        NestedFilters.Builder nestedPropertyName​(String nestedPropertyName)

        The name of the property to use in the nested filters. The value must match a listed property name, such as InputDataConfig.

        Parameters:
        nestedPropertyName - The name of the property to use in the nested filters. The value must match a listed property name, such as InputDataConfig.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • filters

        NestedFilters.Builder filters​(Collection<Filter> filters)

        A list of filters. Each filter acts on a property. Filters must contain at least one Filters value. For example, a NestedFilters call might include a filter on the PropertyName parameter of the InputDataConfig property: InputDataConfig.DataSource.S3DataSource.S3Uri.

        Parameters:
        filters - A list of filters. Each filter acts on a property. Filters must contain at least one Filters value. For example, a NestedFilters call might include a filter on the PropertyName parameter of the InputDataConfig property: InputDataConfig.DataSource.S3DataSource.S3Uri.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • filters

        NestedFilters.Builder filters​(Filter... filters)

        A list of filters. Each filter acts on a property. Filters must contain at least one Filters value. For example, a NestedFilters call might include a filter on the PropertyName parameter of the InputDataConfig property: InputDataConfig.DataSource.S3DataSource.S3Uri.

        Parameters:
        filters - A list of filters. Each filter acts on a property. Filters must contain at least one Filters value. For example, a NestedFilters call might include a filter on the PropertyName parameter of the InputDataConfig property: InputDataConfig.DataSource.S3DataSource.S3Uri.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • filters

        NestedFilters.Builder filters​(Consumer<Filter.Builder>... filters)

        A list of filters. Each filter acts on a property. Filters must contain at least one Filters value. For example, a NestedFilters call might include a filter on the PropertyName parameter of the InputDataConfig property: InputDataConfig.DataSource.S3DataSource.S3Uri.

        This is a convenience method that creates an instance of the Filter.Builder avoiding the need to create one manually via Filter.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #filters(List).

        Parameters:
        filters - a consumer that will call methods on Filter.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #filters(java.util.Collection)