#[non_exhaustive]pub struct SourceBuildInformation {
pub source_type: Option<SourceType>,
pub source_repository: Option<SourceRepository>,
pub source_location: Option<String>,
}
Expand description
Location of the source code for an application version.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.source_type: Option<SourceType>
The type of repository.
-
Git
-
Zip
source_repository: Option<SourceRepository>
Location where the repository is stored.
-
CodeCommit
-
S3
source_location: Option<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
.
Implementations
sourceimpl SourceBuildInformation
impl SourceBuildInformation
sourcepub fn source_type(&self) -> Option<&SourceType>
pub fn source_type(&self) -> Option<&SourceType>
The type of repository.
-
Git
-
Zip
sourcepub fn source_repository(&self) -> Option<&SourceRepository>
pub fn source_repository(&self) -> Option<&SourceRepository>
Location where the repository is stored.
-
CodeCommit
-
S3
sourcepub fn source_location(&self) -> Option<&str>
pub fn source_location(&self) -> Option<&str>
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
.
sourceimpl SourceBuildInformation
impl SourceBuildInformation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SourceBuildInformation
Trait Implementations
sourceimpl Clone for SourceBuildInformation
impl Clone for SourceBuildInformation
sourcefn clone(&self) -> SourceBuildInformation
fn clone(&self) -> SourceBuildInformation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SourceBuildInformation
impl Debug for SourceBuildInformation
sourceimpl PartialEq<SourceBuildInformation> for SourceBuildInformation
impl PartialEq<SourceBuildInformation> for SourceBuildInformation
sourcefn eq(&self, other: &SourceBuildInformation) -> bool
fn eq(&self, other: &SourceBuildInformation) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SourceBuildInformation) -> bool
fn ne(&self, other: &SourceBuildInformation) -> bool
This method tests for !=
.
impl StructuralPartialEq for SourceBuildInformation
Auto Trait Implementations
impl RefUnwindSafe for SourceBuildInformation
impl Send for SourceBuildInformation
impl Sync for SourceBuildInformation
impl Unpin for SourceBuildInformation
impl UnwindSafe for SourceBuildInformation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more