Struct aws_sdk_apprunner::model::CodeRepository
source · #[non_exhaustive]pub struct CodeRepository { /* private fields */ }
Expand description
Describes a source code repository.
Implementations§
source§impl 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.
source§impl CodeRepository
impl CodeRepository
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CodeRepository
.
Trait Implementations§
source§impl Clone for CodeRepository
impl Clone for CodeRepository
source§fn clone(&self) -> CodeRepository
fn clone(&self) -> CodeRepository
Returns a copy 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 CodeRepository
impl Debug for CodeRepository
source§impl PartialEq<CodeRepository> for CodeRepository
impl PartialEq<CodeRepository> for CodeRepository
source§fn eq(&self, other: &CodeRepository) -> bool
fn eq(&self, other: &CodeRepository) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.