Struct rusoto_elasticbeanstalk::SourceBuildInformation[][src]

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

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.

Location where the repository is stored.

  • CodeCommit

  • S3

The type of repository.

  • Git

  • Zip

Trait Implementations

impl Default for SourceBuildInformation
[src]

Returns the "default value" for a type. Read more

impl Debug for SourceBuildInformation
[src]

Formats the value using the given formatter. Read more

impl Clone for SourceBuildInformation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SourceBuildInformation
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations