Struct aws_sdk_codestar::model::CodeDestination
source · [−]#[non_exhaustive]pub struct CodeDestination { /* private fields */ }Expand description
The repository to be created in AWS CodeStar. Valid values are AWS CodeCommit or GitHub. After AWS CodeStar provisions the new repository, the source code files provided with the project request are placed in the repository.
Implementations
sourceimpl CodeDestination
impl CodeDestination
sourcepub fn code_commit(&self) -> Option<&CodeCommitCodeDestination>
pub fn code_commit(&self) -> Option<&CodeCommitCodeDestination>
Information about the AWS CodeCommit repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.
sourcepub fn git_hub(&self) -> Option<&GitHubCodeDestination>
pub fn git_hub(&self) -> Option<&GitHubCodeDestination>
Information about the GitHub repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.
sourceimpl CodeDestination
impl CodeDestination
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CodeDestination.
Trait Implementations
sourceimpl Clone for CodeDestination
impl Clone for CodeDestination
sourcefn clone(&self) -> CodeDestination
fn clone(&self) -> CodeDestination
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 CodeDestination
impl Debug for CodeDestination
sourceimpl PartialEq<CodeDestination> for CodeDestination
impl PartialEq<CodeDestination> for CodeDestination
sourcefn eq(&self, other: &CodeDestination) -> bool
fn eq(&self, other: &CodeDestination) -> bool
impl StructuralPartialEq for CodeDestination
Auto Trait Implementations
impl RefUnwindSafe for CodeDestination
impl Send for CodeDestination
impl Sync for CodeDestination
impl Unpin for CodeDestination
impl UnwindSafe for CodeDestination
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