Interface ListResolverQueryLogConfigsResponse.Builder

  • Method Details

    • nextToken

      If there are more than MaxResults query logging configurations, you can submit another ListResolverQueryLogConfigs request to get the next group of configurations. In the next request, specify the value of NextToken from the previous response.

      Parameters:
      nextToken - If there are more than MaxResults query logging configurations, you can submit another ListResolverQueryLogConfigs request to get the next group of configurations. In the next request, specify the value of NextToken from the previous response.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • totalCount

      The total number of query logging configurations that were created by the current account in the specified Region. This count can differ from the number of query logging configurations that are returned in a ListResolverQueryLogConfigs response, depending on the values that you specify in the request.

      Parameters:
      totalCount - The total number of query logging configurations that were created by the current account in the specified Region. This count can differ from the number of query logging configurations that are returned in a ListResolverQueryLogConfigs response, depending on the values that you specify in the request.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • totalFilteredCount

      ListResolverQueryLogConfigsResponse.Builder totalFilteredCount(Integer totalFilteredCount)

      The total number of query logging configurations that were created by the current account in the specified Region and that match the filters that were specified in the ListResolverQueryLogConfigs request. For the total number of query logging configurations that were created by the current account in the specified Region, see TotalCount.

      Parameters:
      totalFilteredCount - The total number of query logging configurations that were created by the current account in the specified Region and that match the filters that were specified in the ListResolverQueryLogConfigs request. For the total number of query logging configurations that were created by the current account in the specified Region, see TotalCount.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • resolverQueryLogConfigs

      ListResolverQueryLogConfigsResponse.Builder resolverQueryLogConfigs(Collection<ResolverQueryLogConfig> resolverQueryLogConfigs)

      A list that contains one ResolverQueryLogConfig element for each query logging configuration that matches the values that you specified for Filter.

      Parameters:
      resolverQueryLogConfigs - A list that contains one ResolverQueryLogConfig element for each query logging configuration that matches the values that you specified for Filter.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • resolverQueryLogConfigs

      ListResolverQueryLogConfigsResponse.Builder resolverQueryLogConfigs(ResolverQueryLogConfig... resolverQueryLogConfigs)

      A list that contains one ResolverQueryLogConfig element for each query logging configuration that matches the values that you specified for Filter.

      Parameters:
      resolverQueryLogConfigs - A list that contains one ResolverQueryLogConfig element for each query logging configuration that matches the values that you specified for Filter.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • resolverQueryLogConfigs

      ListResolverQueryLogConfigsResponse.Builder resolverQueryLogConfigs(Consumer<ResolverQueryLogConfig.Builder>... resolverQueryLogConfigs)

      A list that contains one ResolverQueryLogConfig element for each query logging configuration that matches the values that you specified for Filter.

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

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to resolverQueryLogConfigs(List<ResolverQueryLogConfig>).

      Parameters:
      resolverQueryLogConfigs - a consumer that will call methods on ResolverQueryLogConfig.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: