Struct google_appengine1::DomainMapping[][src]

pub struct DomainMapping {
    pub ssl_settings: Option<SslSettings>,
    pub id: Option<String>,
    pub resource_records: Option<Vec<ResourceRecord>>,
    pub name: Option<String>,
}

A domain serving an App Engine application.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

SSL configuration for this domain. If unconfigured, this domain will not serve with SSL.

Relative name of the domain serving the application. Example: example.com.

The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping.@OutputOnly

Full path to the DomainMapping resource in the API. Example: apps/myapp/domainMapping/example.com.@OutputOnly

Trait Implementations

impl Default for DomainMapping
[src]

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

impl Clone for DomainMapping
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DomainMapping
[src]

Formats the value using the given formatter. Read more

impl RequestValue for DomainMapping
[src]

impl ResponseResult for DomainMapping
[src]

Auto Trait Implementations