@Generated(value="jsii-pacmak/1.29.0 (build 41df200)", date="2021-06-02T09:55:32.076Z") @Stability(value=Experimental) public enum RecordType extends Enum<RecordType>
| Enum Constant and Description |
|---|
A
(experimental) route traffic to a resource, such as a web server, using an IPv4 address in dotted decimal notation.
|
AAAA
(experimental) route traffic to a resource, such as a web server, using an IPv6 address in colon-separated hexadecimal format.
|
CAA
(experimental) A CAA record specifies which certificate authorities (CAs) are allowed to issue certificates for a domain or subdomain.
|
CNAME
(experimental) A CNAME record maps DNS queries for the name of the current record, such as acme.example.com, to another domain (example.com or example.net) or subdomain (acme.example.com or zenith.example.org).
|
MX
(experimental) An MX record specifies the names of your mail servers and, if you have two or more mail servers, the priority order.
|
NAPTR
(experimental) A Name Authority Pointer (NAPTR) is a type of record that is used by Dynamic Delegation Discovery System (DDDS) applications to convert one value to another or to replace one value with another.
|
NS
(experimental) An NS record identifies the name servers for the hosted zone.
|
PTR
(experimental) A PTR record maps an IP address to the corresponding domain name.
|
SOA
(experimental) A start of authority (SOA) record provides information about a domain and the corresponding Amazon Route 53 hosted zone.
|
SPF
(experimental) SPF records were formerly used to verify the identity of the sender of email messages.
|
SRV
(experimental) An SRV record Value element consists of four space-separated values.
|
TXT
(experimental) A TXT record contains one or more strings that are enclosed in double quotation marks (").
|
| Modifier and Type | Method and Description |
|---|---|
static RecordType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final RecordType A
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#AFormat@Stability(value=Experimental) public static final RecordType AAAA
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#AAAAFormat@Stability(value=Experimental) public static final RecordType CAA
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#CAAFormat@Stability(value=Experimental) public static final RecordType CNAME
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#CNAMEFormat@Stability(value=Experimental) public static final RecordType MX
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#MXFormat@Stability(value=Experimental) public static final RecordType NAPTR
For example, one common use is to convert phone numbers into SIP URIs.
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#NAPTRFormat@Stability(value=Experimental) public static final RecordType NS
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#NSFormat@Stability(value=Experimental) public static final RecordType PTR
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#PTRFormat@Stability(value=Experimental) public static final RecordType SOA
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#SOAFormat@Stability(value=Experimental) public static final RecordType SPF
Instead of an SPF record, we recommend that you create a TXT record that contains the applicable value.
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#SPFFormat@Stability(value=Experimental) public static final RecordType SRV
The first three values are decimal numbers representing priority, weight, and port. The fourth value is a domain name.
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#SRVFormat@Stability(value=Experimental) public static final RecordType TXT
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#TXTFormatpublic static RecordType[] values()
for (RecordType c : RecordType.values()) System.out.println(c);
public static RecordType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.