Interface ListQueryLoggingConfigsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListQueryLoggingConfigsResponse.Builder,ListQueryLoggingConfigsResponse>,Route53Response.Builder,SdkBuilder<ListQueryLoggingConfigsResponse.Builder,ListQueryLoggingConfigsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListQueryLoggingConfigsResponse
public static interface ListQueryLoggingConfigsResponse.Builder extends Route53Response.Builder, SdkPojo, CopyableBuilder<ListQueryLoggingConfigsResponse.Builder,ListQueryLoggingConfigsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListQueryLoggingConfigsResponse.BuildernextToken(String nextToken)If a response includes the last of the query logging configurations that are associated with the current Amazon Web Services account,NextTokendoesn't appear in the response.ListQueryLoggingConfigsResponse.BuilderqueryLoggingConfigs(Collection<QueryLoggingConfig> queryLoggingConfigs)An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.ListQueryLoggingConfigsResponse.BuilderqueryLoggingConfigs(Consumer<QueryLoggingConfig.Builder>... queryLoggingConfigs)An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.ListQueryLoggingConfigsResponse.BuilderqueryLoggingConfigs(QueryLoggingConfig... queryLoggingConfigs)An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.route53.model.Route53Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
queryLoggingConfigs
ListQueryLoggingConfigsResponse.Builder queryLoggingConfigs(Collection<QueryLoggingConfig> queryLoggingConfigs)
An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.
- Parameters:
queryLoggingConfigs- An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryLoggingConfigs
ListQueryLoggingConfigsResponse.Builder queryLoggingConfigs(QueryLoggingConfig... queryLoggingConfigs)
An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.
- Parameters:
queryLoggingConfigs- An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryLoggingConfigs
ListQueryLoggingConfigsResponse.Builder queryLoggingConfigs(Consumer<QueryLoggingConfig.Builder>... queryLoggingConfigs)
An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.
This is a convenience method that creates an instance of theQueryLoggingConfig.Builderavoiding the need to create one manually viaQueryLoggingConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#queryLoggingConfigs(List.) - Parameters:
queryLoggingConfigs- a consumer that will call methods onQueryLoggingConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#queryLoggingConfigs(java.util.Collection)
-
nextToken
ListQueryLoggingConfigsResponse.Builder nextToken(String nextToken)
If a response includes the last of the query logging configurations that are associated with the current Amazon Web Services account,
NextTokendoesn't appear in the response.If a response doesn't include the last of the configurations, you can get more configurations by submitting another ListQueryLoggingConfigs request. Get the value of
NextTokenthat Amazon Route 53 returned in the previous response and include it inNextTokenin the next request.- Parameters:
nextToken- If a response includes the last of the query logging configurations that are associated with the current Amazon Web Services account,NextTokendoesn't appear in the response.If a response doesn't include the last of the configurations, you can get more configurations by submitting another ListQueryLoggingConfigs request. Get the value of
NextTokenthat Amazon Route 53 returned in the previous response and include it inNextTokenin the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-