Interface ListFirewallConfigsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListFirewallConfigsResponse.Builder,ListFirewallConfigsResponse>,Route53ResolverResponse.Builder,SdkBuilder<ListFirewallConfigsResponse.Builder,ListFirewallConfigsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListFirewallConfigsResponse
public static interface ListFirewallConfigsResponse.Builder extends Route53ResolverResponse.Builder, SdkPojo, CopyableBuilder<ListFirewallConfigsResponse.Builder,ListFirewallConfigsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFirewallConfigsResponse.BuilderfirewallConfigs(Collection<FirewallConfig> firewallConfigs)The configurations for the firewall behavior provided by DNS Firewall for VPCs from Amazon Virtual Private Cloud (Amazon VPC).ListFirewallConfigsResponse.BuilderfirewallConfigs(Consumer<FirewallConfig.Builder>... firewallConfigs)The configurations for the firewall behavior provided by DNS Firewall for VPCs from Amazon Virtual Private Cloud (Amazon VPC).ListFirewallConfigsResponse.BuilderfirewallConfigs(FirewallConfig... firewallConfigs)The configurations for the firewall behavior provided by DNS Firewall for VPCs from Amazon Virtual Private Cloud (Amazon VPC).ListFirewallConfigsResponse.BuildernextToken(String nextToken)If objects are still available for retrieval, Resolver returns this token in the response.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.route53resolver.model.Route53ResolverResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListFirewallConfigsResponse.Builder nextToken(String nextToken)
If objects are still available for retrieval, Resolver returns this token in the response. To retrieve the next batch of objects, provide this token in your next request.
- Parameters:
nextToken- If objects are still available for retrieval, Resolver returns this token in the response. To retrieve the next batch of objects, provide this token in your next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
firewallConfigs
ListFirewallConfigsResponse.Builder firewallConfigs(Collection<FirewallConfig> firewallConfigs)
The configurations for the firewall behavior provided by DNS Firewall for VPCs from Amazon Virtual Private Cloud (Amazon VPC).
- Parameters:
firewallConfigs- The configurations for the firewall behavior provided by DNS Firewall for VPCs from Amazon Virtual Private Cloud (Amazon VPC).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
firewallConfigs
ListFirewallConfigsResponse.Builder firewallConfigs(FirewallConfig... firewallConfigs)
The configurations for the firewall behavior provided by DNS Firewall for VPCs from Amazon Virtual Private Cloud (Amazon VPC).
- Parameters:
firewallConfigs- The configurations for the firewall behavior provided by DNS Firewall for VPCs from Amazon Virtual Private Cloud (Amazon VPC).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
firewallConfigs
ListFirewallConfigsResponse.Builder firewallConfigs(Consumer<FirewallConfig.Builder>... firewallConfigs)
The configurations for the firewall behavior provided by DNS Firewall for VPCs from Amazon Virtual Private Cloud (Amazon VPC).
This is a convenience method that creates an instance of theFirewallConfig.Builderavoiding the need to create one manually viaFirewallConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#firewallConfigs(List.) - Parameters:
firewallConfigs- a consumer that will call methods onFirewallConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#firewallConfigs(java.util.Collection)
-
-