Struct aws_sdk_codebuild::model::ProjectSourceVersion
source · [−]#[non_exhaustive]pub struct ProjectSourceVersion { /* private fields */ }
Expand description
A source identifier and its corresponding version.
Implementations
sourceimpl ProjectSourceVersion
impl ProjectSourceVersion
sourcepub fn source_identifier(&self) -> Option<&str>
pub fn source_identifier(&self) -> Option<&str>
An identifier for a source in the build project. The identifier can only contain alphanumeric characters and underscores, and must be less than 128 characters in length.
sourcepub fn source_version(&self) -> Option<&str>
pub fn source_version(&self) -> Option<&str>
The source version for the corresponding source identifier. If specified, must be one of:
-
For CodeCommit: the commit ID, branch, or Git tag to use.
-
For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format
pr/pull-request-ID
(for example,pr/25
). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. -
For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.
-
For Amazon S3: the version ID of the object that represents the build input ZIP file to use.
For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
sourceimpl ProjectSourceVersion
impl ProjectSourceVersion
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ProjectSourceVersion
.
Trait Implementations
sourceimpl Clone for ProjectSourceVersion
impl Clone for ProjectSourceVersion
sourcefn clone(&self) -> ProjectSourceVersion
fn clone(&self) -> ProjectSourceVersion
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 ProjectSourceVersion
impl Debug for ProjectSourceVersion
sourceimpl PartialEq<ProjectSourceVersion> for ProjectSourceVersion
impl PartialEq<ProjectSourceVersion> for ProjectSourceVersion
sourcefn eq(&self, other: &ProjectSourceVersion) -> bool
fn eq(&self, other: &ProjectSourceVersion) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ProjectSourceVersion) -> bool
fn ne(&self, other: &ProjectSourceVersion) -> bool
This method tests for !=
.
impl StructuralPartialEq for ProjectSourceVersion
Auto Trait Implementations
impl RefUnwindSafe for ProjectSourceVersion
impl Send for ProjectSourceVersion
impl Sync for ProjectSourceVersion
impl Unpin for ProjectSourceVersion
impl UnwindSafe for ProjectSourceVersion
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