Struct rusoto_lightsail::DomainEntry[][src]

pub struct DomainEntry {
    pub id: Option<String>,
    pub is_alias: Option<bool>,
    pub name: Option<String>,
    pub target: Option<String>,
    pub type_: Option<String>,
}

Describes a domain recordset entry.

Fields

The ID of the domain recordset entry.

When true, specifies whether the domain entry is an alias used by the Lightsail load balancer. You can include an alias (A type) record in your request, which points to a load balancer DNS name and routes traffic to your load balancer

The name of the domain.

The target AWS name server (e.g., ns-111.awsdns-22.com.).

For Lightsail load balancers, the value looks like ab1234c56789c6b86aba6fb203d443bc-123456789.us-east-2.elb.amazonaws.com. Be sure to also set isAlias to true when setting up an A record for a load balancer.

The type of domain entry (e.g., SOA or NS).

Trait Implementations

impl Default for DomainEntry
[src]

Returns the "default value" for a type. Read more

impl Debug for DomainEntry
[src]

Formats the value using the given formatter. Read more

impl Clone for DomainEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DomainEntry
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for DomainEntry

impl Sync for DomainEntry