Interface CertificateValidationRecord.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CertificateValidationRecord.Builder,CertificateValidationRecord>,SdkBuilder<CertificateValidationRecord.Builder,CertificateValidationRecord>,SdkPojo
- Enclosing class:
- CertificateValidationRecord
public static interface CertificateValidationRecord.Builder extends SdkPojo, CopyableBuilder<CertificateValidationRecord.Builder,CertificateValidationRecord>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CertificateValidationRecord.Buildername(String name)The certificate CNAME record name.CertificateValidationRecord.Builderstatus(String status)The current state of the certificate CNAME record validation.CertificateValidationRecord.Builderstatus(CertificateValidationRecordStatus status)The current state of the certificate CNAME record validation.CertificateValidationRecord.Buildertype(String type)The record type, alwaysCNAME.CertificateValidationRecord.Buildervalue(String value)The certificate CNAME record value.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
CertificateValidationRecord.Builder name(String name)
The certificate CNAME record name.
- Parameters:
name- The certificate CNAME record name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
CertificateValidationRecord.Builder type(String type)
The record type, always
CNAME.- Parameters:
type- The record type, alwaysCNAME.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
CertificateValidationRecord.Builder value(String value)
The certificate CNAME record value.
- Parameters:
value- The certificate CNAME record value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
CertificateValidationRecord.Builder status(String status)
The current state of the certificate CNAME record validation. It should change to
SUCCESSafter App Runner completes validation with your DNS.- Parameters:
status- The current state of the certificate CNAME record validation. It should change toSUCCESSafter App Runner completes validation with your DNS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CertificateValidationRecordStatus,CertificateValidationRecordStatus
-
status
CertificateValidationRecord.Builder status(CertificateValidationRecordStatus status)
The current state of the certificate CNAME record validation. It should change to
SUCCESSafter App Runner completes validation with your DNS.- Parameters:
status- The current state of the certificate CNAME record validation. It should change toSUCCESSafter App Runner completes validation with your DNS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CertificateValidationRecordStatus,CertificateValidationRecordStatus
-
-