[][src]Struct rusoto_amplify::UpdateAppRequest

pub struct UpdateAppRequest {
    pub app_id: String,
    pub basic_auth_credentials: Option<String>,
    pub build_spec: Option<String>,
    pub custom_rules: Option<Vec<CustomRule>>,
    pub description: Option<String>,
    pub enable_basic_auth: Option<bool>,
    pub enable_branch_auto_build: Option<bool>,
    pub environment_variables: Option<HashMap<String, String>>,
    pub iam_service_role_arn: Option<String>,
    pub name: Option<String>,
    pub platform: Option<String>,
}

Request structure for update App request.

Fields

app_id: String

Unique Id for an Amplify App.

basic_auth_credentials: Option<String>

Basic Authorization credentials for an Amplify App.

build_spec: Option<String>

BuildSpec for an Amplify App.

custom_rules: Option<Vec<CustomRule>>

Custom redirect / rewrite rules for an Amplify App.

description: Option<String>

Description for an Amplify App.

enable_basic_auth: Option<bool>

Enables Basic Authorization for an Amplify App.

enable_branch_auto_build: Option<bool>

Enables branch auto-building for an Amplify App.

environment_variables: Option<HashMap<String, String>>

Environment Variables for an Amplify App.

iam_service_role_arn: Option<String>

IAM service role for an Amplify App.

name: Option<String>

Name for an Amplify App.

platform: Option<String>

Platform for an Amplify App.

Trait Implementations

impl PartialEq<UpdateAppRequest> for UpdateAppRequest[src]

impl Default for UpdateAppRequest[src]

impl Clone for UpdateAppRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UpdateAppRequest[src]

impl Serialize for UpdateAppRequest[src]

Auto Trait Implementations

impl Send for UpdateAppRequest

impl Sync for UpdateAppRequest

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self