Interface VerificationInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VerificationInfo.Builder,VerificationInfo>,SdkBuilder<VerificationInfo.Builder,VerificationInfo>,SdkPojo
- Enclosing class:
- VerificationInfo
public static interface VerificationInfo.Builder extends SdkPojo, CopyableBuilder<VerificationInfo.Builder,VerificationInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description VerificationInfo.BuildererrorType(String errorType)Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity.VerificationInfo.BuildererrorType(VerificationError errorType)Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity.VerificationInfo.BuilderlastCheckedTimestamp(Instant lastCheckedTimestamp)The last time a verification attempt was made for this identity.VerificationInfo.BuilderlastSuccessTimestamp(Instant lastSuccessTimestamp)The last time a successful verification was made for this identity.default VerificationInfo.BuildersoaRecord(Consumer<SOARecord.Builder> soaRecord)An object that contains information about the start of authority (SOA) record associated with the identity.VerificationInfo.BuildersoaRecord(SOARecord soaRecord)An object that contains information about the start of authority (SOA) record associated with the identity.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
lastCheckedTimestamp
VerificationInfo.Builder lastCheckedTimestamp(Instant lastCheckedTimestamp)
The last time a verification attempt was made for this identity.
- Parameters:
lastCheckedTimestamp- The last time a verification attempt was made for this identity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastSuccessTimestamp
VerificationInfo.Builder lastSuccessTimestamp(Instant lastSuccessTimestamp)
The last time a successful verification was made for this identity.
- Parameters:
lastSuccessTimestamp- The last time a successful verification was made for this identity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorType
VerificationInfo.Builder errorType(String errorType)
Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity. Below are the possible values:
-
INVALID_VALUE– Amazon SES was able to find the record, but the value contained within the record was invalid. Ensure you have published the correct values for the record. -
TYPE_NOT_FOUND– The queried hostname exists but does not have the requested type of DNS record. Ensure that you have published the correct type of DNS record. -
HOST_NOT_FOUND– The queried hostname does not exist or was not reachable at the time of the request. Ensure that you have published the required DNS record(s). -
SERVICE_ERROR– A temporary issue is preventing Amazon SES from determining the verification status of the domain. -
DNS_SERVER_ERROR– The DNS server encountered an issue and was unable to complete the request.
- Parameters:
errorType- Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity. Below are the possible values:-
INVALID_VALUE– Amazon SES was able to find the record, but the value contained within the record was invalid. Ensure you have published the correct values for the record. -
TYPE_NOT_FOUND– The queried hostname exists but does not have the requested type of DNS record. Ensure that you have published the correct type of DNS record. -
HOST_NOT_FOUND– The queried hostname does not exist or was not reachable at the time of the request. Ensure that you have published the required DNS record(s). -
SERVICE_ERROR– A temporary issue is preventing Amazon SES from determining the verification status of the domain. -
DNS_SERVER_ERROR– The DNS server encountered an issue and was unable to complete the request.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VerificationError,VerificationError
-
-
errorType
VerificationInfo.Builder errorType(VerificationError errorType)
Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity. Below are the possible values:
-
INVALID_VALUE– Amazon SES was able to find the record, but the value contained within the record was invalid. Ensure you have published the correct values for the record. -
TYPE_NOT_FOUND– The queried hostname exists but does not have the requested type of DNS record. Ensure that you have published the correct type of DNS record. -
HOST_NOT_FOUND– The queried hostname does not exist or was not reachable at the time of the request. Ensure that you have published the required DNS record(s). -
SERVICE_ERROR– A temporary issue is preventing Amazon SES from determining the verification status of the domain. -
DNS_SERVER_ERROR– The DNS server encountered an issue and was unable to complete the request.
- Parameters:
errorType- Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity. Below are the possible values:-
INVALID_VALUE– Amazon SES was able to find the record, but the value contained within the record was invalid. Ensure you have published the correct values for the record. -
TYPE_NOT_FOUND– The queried hostname exists but does not have the requested type of DNS record. Ensure that you have published the correct type of DNS record. -
HOST_NOT_FOUND– The queried hostname does not exist or was not reachable at the time of the request. Ensure that you have published the required DNS record(s). -
SERVICE_ERROR– A temporary issue is preventing Amazon SES from determining the verification status of the domain. -
DNS_SERVER_ERROR– The DNS server encountered an issue and was unable to complete the request.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VerificationError,VerificationError
-
-
soaRecord
VerificationInfo.Builder soaRecord(SOARecord soaRecord)
An object that contains information about the start of authority (SOA) record associated with the identity.
- Parameters:
soaRecord- An object that contains information about the start of authority (SOA) record associated with the identity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
soaRecord
default VerificationInfo.Builder soaRecord(Consumer<SOARecord.Builder> soaRecord)
An object that contains information about the start of authority (SOA) record associated with the identity.
This is a convenience method that creates an instance of theSOARecord.Builderavoiding the need to create one manually viaSOARecord.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosoaRecord(SOARecord).- Parameters:
soaRecord- a consumer that will call methods onSOARecord.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
soaRecord(SOARecord)
-
-