[][src]Struct rusoto_amplify::App

pub struct App {
    pub app_arn: String,
    pub app_id: String,
    pub basic_auth_credentials: Option<String>,
    pub build_spec: Option<String>,
    pub create_time: f64,
    pub custom_rules: Option<Vec<CustomRule>>,
    pub default_domain: String,
    pub description: String,
    pub enable_basic_auth: bool,
    pub enable_branch_auto_build: bool,
    pub environment_variables: HashMap<String, String>,
    pub iam_service_role_arn: Option<String>,
    pub name: String,
    pub platform: String,
    pub production_branch: Option<ProductionBranch>,
    pub repository: String,
    pub tags: Option<HashMap<String, String>>,
    pub update_time: f64,
}

Amplify App represents different branches of a repository for building, deploying, and hosting.

Fields

app_arn: String

ARN for the Amplify App.

app_id: String

Unique Id for the Amplify App.

basic_auth_credentials: Option<String>

Basic Authorization credentials for branches for the Amplify App.

build_spec: Option<String>

BuildSpec content for Amplify App.

create_time: f64

Create date / time for the Amplify App.

custom_rules: Option<Vec<CustomRule>>

Custom redirect / rewrite rules for the Amplify App.

default_domain: String

Default domain for the Amplify App.

description: String

Description for the Amplify App.

enable_basic_auth: bool

Enables Basic Authorization for branches for the Amplify App.

enable_branch_auto_build: bool

Enables auto-building of branches for the Amplify App.

environment_variables: HashMap<String, String>

Environment Variables for the Amplify App.

iam_service_role_arn: Option<String>

IAM service role ARN for the Amplify App.

name: String

Name for the Amplify App.

platform: String

Platform for the Amplify App.

production_branch: Option<ProductionBranch>

Structure with Production Branch information.

repository: String

Repository for the Amplify App.

tags: Option<HashMap<String, String>>

Tag for Amplify App.

update_time: f64

Update date / time for the Amplify App.

Trait Implementations

impl PartialEq<App> for App[src]

impl Default for App[src]

impl Clone for App[src]

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

Performs copy-assignment from source. Read more

impl Debug for App[src]

impl<'de> Deserialize<'de> for App[src]

Auto Trait Implementations

impl Send for App

impl Sync for App

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self