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 for CodeDestination
impl PartialEq 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 ==
.impl StructuralPartialEq for CodeDestination
Auto Trait Implementations§
impl Freeze for CodeDestination
impl RefUnwindSafe for CodeDestination
impl Send for CodeDestination
impl Sync for CodeDestination
impl Unpin for CodeDestination
impl UnwindSafe for CodeDestination
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more