[][src]Struct rusoto_amplify::UpdateDomainAssociationRequest

pub struct UpdateDomainAssociationRequest {
    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 update 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 name of the domain.

enable_auto_sub_domain: Option<bool>

Enables the automated creation of subdomains for branches.

sub_domain_settings: Vec<SubDomainSetting>

Describes the settings for the subdomain.

Trait Implementations

impl Clone for UpdateDomainAssociationRequest[src]

impl Debug for UpdateDomainAssociationRequest[src]

impl Default for UpdateDomainAssociationRequest[src]

impl PartialEq<UpdateDomainAssociationRequest> for UpdateDomainAssociationRequest[src]

impl Serialize for UpdateDomainAssociationRequest[src]

impl StructuralPartialEq for UpdateDomainAssociationRequest[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, 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.