[][src]Struct rusoto_elasticbeanstalk::SourceBuildInformation

pub struct SourceBuildInformation {
    pub source_location: String,
    pub source_repository: String,
    pub source_type: String,
}

Location of the source code for an application version.

Fields

source_location: String

The location of the source code, as a formatted string, depending on the value of SourceRepository

  • For CodeCommit, the format is the repository name and commit ID, separated by a forward slash. For example, my-git-repo/265cfa0cf6af46153527f55d6503ec030551f57a.

  • For S3, the format is the S3 bucket name and object key, separated by a forward slash. For example, my-s3-bucket/Folders/my-source-file.

source_repository: String

Location where the repository is stored.

  • CodeCommit

  • S3

source_type: String

The type of repository.

  • Git

  • Zip

Trait Implementations

impl Clone for SourceBuildInformation[src]

impl Debug for SourceBuildInformation[src]

impl Default for SourceBuildInformation[src]

impl PartialEq<SourceBuildInformation> for SourceBuildInformation[src]

impl StructuralPartialEq for SourceBuildInformation[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> 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.