[][src]Struct rusoto_amplify::AutoBranchCreationConfig

pub struct AutoBranchCreationConfig {
    pub basic_auth_credentials: Option<String>,
    pub build_spec: Option<String>,
    pub enable_auto_build: Option<bool>,
    pub enable_basic_auth: Option<bool>,
    pub enable_pull_request_preview: Option<bool>,
    pub environment_variables: Option<HashMap<String, String>>,
    pub framework: Option<String>,
    pub pull_request_environment_name: Option<String>,
    pub stage: Option<String>,
}

Describes the automated branch creation configuration.

Fields

basic_auth_credentials: Option<String>

The basic authorization credentials for the autocreated branch.

build_spec: Option<String>

The build specification (build spec) for the autocreated branch.

enable_auto_build: Option<bool>

Enables auto building for the autocreated branch.

enable_basic_auth: Option<bool>

Enables basic authorization for the autocreated branch.

enable_pull_request_preview: Option<bool>

Enables pull request preview for the autocreated branch.

environment_variables: Option<HashMap<String, String>>

The environment variables for the autocreated branch.

framework: Option<String>

The framework for the autocreated branch.

pull_request_environment_name: Option<String>

The Amplify environment name for the pull request.

stage: Option<String>

Describes the current stage for the autocreated branch.

Trait Implementations

impl Clone for AutoBranchCreationConfig[src]

impl Debug for AutoBranchCreationConfig[src]

impl Default for AutoBranchCreationConfig[src]

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

impl PartialEq<AutoBranchCreationConfig> for AutoBranchCreationConfig[src]

impl Serialize for AutoBranchCreationConfig[src]

impl StructuralPartialEq for AutoBranchCreationConfig[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.