Interface ListResolverEndpointIpAddressesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListResolverEndpointIpAddressesResponse.Builder,ListResolverEndpointIpAddressesResponse>,Route53ResolverResponse.Builder,SdkBuilder<ListResolverEndpointIpAddressesResponse.Builder,ListResolverEndpointIpAddressesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListResolverEndpointIpAddressesResponse
public static interface ListResolverEndpointIpAddressesResponse.Builder extends Route53ResolverResponse.Builder, SdkPojo, CopyableBuilder<ListResolverEndpointIpAddressesResponse.Builder,ListResolverEndpointIpAddressesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListResolverEndpointIpAddressesResponse.BuilderipAddresses(Collection<IpAddressResponse> ipAddresses)Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).ListResolverEndpointIpAddressesResponse.BuilderipAddresses(Consumer<IpAddressResponse.Builder>... ipAddresses)Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).ListResolverEndpointIpAddressesResponse.BuilderipAddresses(IpAddressResponse... ipAddresses)Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).ListResolverEndpointIpAddressesResponse.BuildermaxResults(Integer maxResults)The value that you specified forMaxResultsin the request.ListResolverEndpointIpAddressesResponse.BuildernextToken(String nextToken)If the specified endpoint has more thanMaxResultsIP addresses, you can submit anotherListResolverEndpointIpAddressesrequest to get the next group of IP addresses.-
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
ListResolverEndpointIpAddressesResponse.Builder nextToken(String nextToken)
If the specified endpoint has more than
MaxResultsIP addresses, you can submit anotherListResolverEndpointIpAddressesrequest to get the next group of IP addresses. In the next request, specify the value ofNextTokenfrom the previous response.- Parameters:
nextToken- If the specified endpoint has more thanMaxResultsIP addresses, you can submit anotherListResolverEndpointIpAddressesrequest to get the next group of IP addresses. In the next request, specify the value ofNextTokenfrom the previous response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListResolverEndpointIpAddressesResponse.Builder maxResults(Integer maxResults)
The value that you specified for
MaxResultsin the request.- Parameters:
maxResults- The value that you specified forMaxResultsin the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipAddresses
ListResolverEndpointIpAddressesResponse.Builder ipAddresses(Collection<IpAddressResponse> ipAddresses)
Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).
- Parameters:
ipAddresses- Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipAddresses
ListResolverEndpointIpAddressesResponse.Builder ipAddresses(IpAddressResponse... ipAddresses)
Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).
- Parameters:
ipAddresses- Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipAddresses
ListResolverEndpointIpAddressesResponse.Builder ipAddresses(Consumer<IpAddressResponse.Builder>... ipAddresses)
Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).
This is a convenience method that creates an instance of theIpAddressResponse.Builderavoiding the need to create one manually viaIpAddressResponse.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#ipAddresses(List.) - Parameters:
ipAddresses- a consumer that will call methods onIpAddressResponse.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#ipAddresses(java.util.Collection)
-
-