[][src]Struct rusoto_amplify::Branch

pub struct Branch {
    pub active_job_id: String,
    pub basic_auth_credentials: Option<String>,
    pub branch_arn: String,
    pub branch_name: String,
    pub build_spec: Option<String>,
    pub create_time: f64,
    pub custom_domains: Vec<String>,
    pub description: String,
    pub display_name: Option<String>,
    pub enable_auto_build: bool,
    pub enable_basic_auth: bool,
    pub enable_notification: bool,
    pub environment_variables: HashMap<String, String>,
    pub framework: String,
    pub stage: String,
    pub tags: Option<HashMap<String, String>>,
    pub thumbnail_url: Option<String>,
    pub total_number_of_jobs: String,
    pub ttl: String,
    pub update_time: f64,
}

Branch for an Amplify App, which maps to a 3rd party repository branch.

Fields

active_job_id: String

Id of the active job for a branch, part of an Amplify App.

basic_auth_credentials: Option<String>

Basic Authorization credentials for a branch, part of an Amplify App.

branch_arn: String

ARN for a branch, part of an Amplify App.

branch_name: String

Name for a branch, part of an Amplify App.

build_spec: Option<String>

BuildSpec content for branch for Amplify App.

create_time: f64

Creation date and time for a branch, part of an Amplify App.

custom_domains: Vec<String>

Custom domains for a branch, part of an Amplify App.

description: String

Description for a branch, part of an Amplify App.

display_name: Option<String>

Display name for a branch, part of an Amplify App.

enable_auto_build: bool

Enables auto-building on push for a branch, part of an Amplify App.

enable_basic_auth: bool

Enables Basic Authorization for a branch, part of an Amplify App.

enable_notification: bool

Enables notifications for a branch, part of an Amplify App.

environment_variables: HashMap<String, String>

Environment Variables specific to a branch, part of an Amplify App.

framework: String

Framework for a branch, part of an Amplify App.

stage: String

Stage for a branch, part of an Amplify App.

tags: Option<HashMap<String, String>>

Tag for branch for Amplify App.

thumbnail_url: Option<String>

Thumbnail Url for the branch.

total_number_of_jobs: String

Total number of Jobs part of an Amplify App.

ttl: String

The content TTL for the website in seconds.

update_time: f64

Last updated date and time for a branch, part of an Amplify App.

Trait Implementations

impl PartialEq<Branch> for Branch[src]

impl Default for Branch[src]

impl Clone for Branch[src]

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

Performs copy-assignment from source. Read more

impl Debug for Branch[src]

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

Auto Trait Implementations

impl Send for Branch

impl Sync for Branch

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