[][src]Struct rusoto_amplify::CreateAppRequest

pub struct CreateAppRequest {
    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: String,
    pub oauth_token: String,
    pub platform: String,
    pub repository: String,
    pub tags: Option<HashMap<String, String>>,
}

Request structure used to create Apps in Amplify.

Fields

basic_auth_credentials: Option<String>

Credentials for Basic Authorization for an Amplify App.

build_spec: Option<String>

BuildSpec for an Amplify App

custom_rules: Option<Vec<CustomRule>>

Custom rewrite / redirect rules for an Amplify App.

description: Option<String>

Description for an Amplify App

enable_basic_auth: Option<bool>

Enable Basic Authorization for an Amplify App, this will apply to all branches part of this App.

enable_branch_auto_build: Option<bool>

Enable the auto building of branches for an Amplify App.

environment_variables: Option<HashMap<String, String>>

Environment variables map for an Amplify App.

iam_service_role_arn: Option<String>

AWS IAM service role for an Amplify App

name: String

Name for the Amplify App

oauth_token: String

OAuth token for 3rd party source control system for an Amplify App, used to create webhook and read-only deploy key. OAuth token is not stored.

platform: String

Platform / framework for an Amplify App

repository: String

Repository for an Amplify App

tags: Option<HashMap<String, String>>

Tag for an Amplify App

Trait Implementations

impl PartialEq<CreateAppRequest> for CreateAppRequest[src]

impl Default for CreateAppRequest[src]

impl Clone for CreateAppRequest[src]

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

Performs copy-assignment from source. Read more

impl Debug for CreateAppRequest[src]

impl Serialize for CreateAppRequest[src]

Auto Trait Implementations

impl Send for CreateAppRequest

impl Sync for CreateAppRequest

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