pub struct SourceBuildInformation {
pub source_location: String,
pub source_repository: String,
pub source_type: String,
}
Expand description
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§
Source§impl Clone for SourceBuildInformation
impl Clone for SourceBuildInformation
Source§fn clone(&self) -> SourceBuildInformation
fn clone(&self) -> SourceBuildInformation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SourceBuildInformation
impl Debug for SourceBuildInformation
Source§impl Default for SourceBuildInformation
impl Default for SourceBuildInformation
Source§fn default() -> SourceBuildInformation
fn default() -> SourceBuildInformation
Returns the “default value” for a type. Read more
Source§impl PartialEq for SourceBuildInformation
impl PartialEq for SourceBuildInformation
impl StructuralPartialEq for SourceBuildInformation
Auto Trait Implementations§
impl Freeze for SourceBuildInformation
impl RefUnwindSafe for SourceBuildInformation
impl Send for SourceBuildInformation
impl Sync for SourceBuildInformation
impl Unpin for SourceBuildInformation
impl UnwindSafe for SourceBuildInformation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more