Interface TestDnsAnswerResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<TestDnsAnswerResponse.Builder,TestDnsAnswerResponse>,Route53Response.Builder,SdkBuilder<TestDnsAnswerResponse.Builder,TestDnsAnswerResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- TestDnsAnswerResponse
public static interface TestDnsAnswerResponse.Builder extends Route53Response.Builder, SdkPojo, CopyableBuilder<TestDnsAnswerResponse.Builder,TestDnsAnswerResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestDnsAnswerResponse.Buildernameserver(String nameserver)The Amazon Route 53 name server used to respond to the request.TestDnsAnswerResponse.Builderprotocol(String protocol)The protocol that Amazon Route 53 used to respond to the request, eitherUDPorTCP.TestDnsAnswerResponse.BuilderrecordData(String... recordData)A list that contains values that Amazon Route 53 returned for this resource record set.TestDnsAnswerResponse.BuilderrecordData(Collection<String> recordData)A list that contains values that Amazon Route 53 returned for this resource record set.TestDnsAnswerResponse.BuilderrecordName(String recordName)The name of the resource record set that you submitted a request for.TestDnsAnswerResponse.BuilderrecordType(String recordType)The type of the resource record set that you submitted a request for.TestDnsAnswerResponse.BuilderrecordType(RRType recordType)The type of the resource record set that you submitted a request for.TestDnsAnswerResponse.BuilderresponseCode(String responseCode)A code that indicates whether the request is valid or not.-
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
-
nameserver
TestDnsAnswerResponse.Builder nameserver(String nameserver)
The Amazon Route 53 name server used to respond to the request.
- Parameters:
nameserver- The Amazon Route 53 name server used to respond to the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordName
TestDnsAnswerResponse.Builder recordName(String recordName)
The name of the resource record set that you submitted a request for.
- Parameters:
recordName- The name of the resource record set that you submitted a request for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordType
TestDnsAnswerResponse.Builder recordType(String recordType)
The type of the resource record set that you submitted a request for.
-
recordType
TestDnsAnswerResponse.Builder recordType(RRType recordType)
The type of the resource record set that you submitted a request for.
-
recordData
TestDnsAnswerResponse.Builder recordData(Collection<String> recordData)
A list that contains values that Amazon Route 53 returned for this resource record set.
- Parameters:
recordData- A list that contains values that Amazon Route 53 returned for this resource record set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordData
TestDnsAnswerResponse.Builder recordData(String... recordData)
A list that contains values that Amazon Route 53 returned for this resource record set.
- Parameters:
recordData- A list that contains values that Amazon Route 53 returned for this resource record set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
responseCode
TestDnsAnswerResponse.Builder responseCode(String responseCode)
A code that indicates whether the request is valid or not. The most common response code is
NOERROR, meaning that the request is valid. If the response is not valid, Amazon Route 53 returns a response code that describes the error. For a list of possible response codes, see DNS RCODES on the IANA website.- Parameters:
responseCode- A code that indicates whether the request is valid or not. The most common response code isNOERROR, meaning that the request is valid. If the response is not valid, Amazon Route 53 returns a response code that describes the error. For a list of possible response codes, see DNS RCODES on the IANA website.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protocol
TestDnsAnswerResponse.Builder protocol(String protocol)
The protocol that Amazon Route 53 used to respond to the request, either
UDPorTCP.- Parameters:
protocol- The protocol that Amazon Route 53 used to respond to the request, eitherUDPorTCP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-