Struct aws_sdk_apprunner::model::CodeRepository
source · [−]#[non_exhaustive]pub struct CodeRepository { /* private fields */ }
Expand description
Describes a source code repository.
Implementations
sourceimpl CodeRepository
impl CodeRepository
sourcepub fn repository_url(&self) -> Option<&str>
pub fn repository_url(&self) -> Option<&str>
The location of the repository that contains the source code.
sourcepub fn source_code_version(&self) -> Option<&SourceCodeVersion>
pub fn source_code_version(&self) -> Option<&SourceCodeVersion>
The version that should be used within the source code repository.
sourcepub fn code_configuration(&self) -> Option<&CodeConfiguration>
pub fn code_configuration(&self) -> Option<&CodeConfiguration>
Configuration for building and running the service from a source code repository.
CodeConfiguration
is required only for CreateService
request.
sourceimpl CodeRepository
impl CodeRepository
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CodeRepository
.
Trait Implementations
sourceimpl Clone for CodeRepository
impl Clone for CodeRepository
sourcefn clone(&self) -> CodeRepository
fn clone(&self) -> CodeRepository
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 moresourceimpl Debug for CodeRepository
impl Debug for CodeRepository
sourceimpl PartialEq<CodeRepository> for CodeRepository
impl PartialEq<CodeRepository> for CodeRepository
sourcefn eq(&self, other: &CodeRepository) -> bool
fn eq(&self, other: &CodeRepository) -> bool
impl StructuralPartialEq for CodeRepository
Auto Trait Implementations
impl RefUnwindSafe for CodeRepository
impl Send for CodeRepository
impl Sync for CodeRepository
impl Unpin for CodeRepository
impl UnwindSafe for CodeRepository
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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