Struct aws_sdk_codestar::types::CodeDestination
source · #[non_exhaustive]pub struct CodeDestination {
pub code_commit: Option<CodeCommitCodeDestination>,
pub git_hub: Option<GitHubCodeDestination>,
}
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.code_commit: 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.
git_hub: 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.
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() -> CodeDestinationBuilder
pub fn builder() -> CodeDestinationBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.