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>,
}
Expand description
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§
Source§impl Clone for UpdateDomainAssociationRequest
impl Clone for UpdateDomainAssociationRequest
Source§fn clone(&self) -> UpdateDomainAssociationRequest
fn clone(&self) -> UpdateDomainAssociationRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for UpdateDomainAssociationRequest
impl Default for UpdateDomainAssociationRequest
Source§fn default() -> UpdateDomainAssociationRequest
fn default() -> UpdateDomainAssociationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateDomainAssociationRequest
impl PartialEq for UpdateDomainAssociationRequest
Source§fn eq(&self, other: &UpdateDomainAssociationRequest) -> bool
fn eq(&self, other: &UpdateDomainAssociationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateDomainAssociationRequest
Auto Trait Implementations§
impl Freeze for UpdateDomainAssociationRequest
impl RefUnwindSafe for UpdateDomainAssociationRequest
impl Send for UpdateDomainAssociationRequest
impl Sync for UpdateDomainAssociationRequest
impl Unpin for UpdateDomainAssociationRequest
impl UnwindSafe for UpdateDomainAssociationRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more