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§
source§impl 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.
source§impl CodeDestination
impl CodeDestination
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CodeDestination
.
Trait Implementations§
source§impl Clone for CodeDestination
impl Clone for CodeDestination
source§fn clone(&self) -> CodeDestination
fn clone(&self) -> CodeDestination
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 CodeDestination
impl Debug for CodeDestination
source§impl PartialEq<CodeDestination> for CodeDestination
impl PartialEq<CodeDestination> for CodeDestination
source§fn eq(&self, other: &CodeDestination) -> bool
fn eq(&self, other: &CodeDestination) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.