[][src]Struct rusoto_amplify::CreateDomainAssociationRequest

pub struct CreateDomainAssociationRequest {
    pub app_id: String,
    pub auto_sub_domain_creation_patterns: Option<Vec<String>>,
    pub auto_sub_domain_iam_role: Option<String>,
    pub domain_name: String,
    pub enable_auto_sub_domain: Option<bool>,
    pub sub_domain_settings: Vec<SubDomainSetting>,
}

The request structure for the create domain association request.

Fields

app_id: String

The unique ID for an Amplify app.

auto_sub_domain_creation_patterns: Option<Vec<String>>

Sets the branch patterns for automatic subdomain creation.

auto_sub_domain_iam_role: Option<String>

The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for automatically creating subdomains.

domain_name: String

The domain name for the domain association.

enable_auto_sub_domain: Option<bool>

Enables the automated creation of subdomains for branches.

sub_domain_settings: Vec<SubDomainSetting>

The setting for the subdomain.

Trait Implementations

impl Clone for CreateDomainAssociationRequest[src]

impl Debug for CreateDomainAssociationRequest[src]

impl Default for CreateDomainAssociationRequest[src]

impl PartialEq<CreateDomainAssociationRequest> for CreateDomainAssociationRequest[src]

impl Serialize for CreateDomainAssociationRequest[src]

impl StructuralPartialEq for CreateDomainAssociationRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.