Struct aws_sdk_codestar::model::GitHubCodeDestination
source · [−]#[non_exhaustive]pub struct GitHubCodeDestination {
pub name: Option<String>,
pub description: Option<String>,
pub type: Option<String>,
pub owner: Option<String>,
pub private_repository: bool,
pub issues_enabled: bool,
pub token: Option<String>,
}
Expand description
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.
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.name: Option<String>
Name of the GitHub repository to be created in AWS CodeStar.
description: Option<String>
Description for the GitHub repository to be created in AWS CodeStar. This description displays in GitHub after the repository is created.
type: Option<String>
The type of GitHub repository to be created in AWS CodeStar. Valid values are User or Organization.
owner: Option<String>
The GitHub username for the owner of the GitHub repository to be created in AWS CodeStar. If this repository should be owned by a GitHub organization, provide its name.
private_repository: bool
Whether the GitHub repository is to be a private repository.
issues_enabled: bool
Whether to enable issues for the GitHub repository.
token: Option<String>
The GitHub user's personal access token for the GitHub repository.
Implementations
sourceimpl GitHubCodeDestination
impl GitHubCodeDestination
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Name of the GitHub repository to be created in AWS CodeStar.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description for the GitHub repository to be created in AWS CodeStar. This description displays in GitHub after the repository is created.
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
The type of GitHub repository to be created in AWS CodeStar. Valid values are User or Organization.
sourcepub fn owner(&self) -> Option<&str>
pub fn owner(&self) -> Option<&str>
The GitHub username for the owner of the GitHub repository to be created in AWS CodeStar. If this repository should be owned by a GitHub organization, provide its name.
sourcepub fn private_repository(&self) -> bool
pub fn private_repository(&self) -> bool
Whether the GitHub repository is to be a private repository.
sourcepub fn issues_enabled(&self) -> bool
pub fn issues_enabled(&self) -> bool
Whether to enable issues for the GitHub repository.
sourceimpl GitHubCodeDestination
impl GitHubCodeDestination
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GitHubCodeDestination
.
Trait Implementations
sourceimpl Clone for GitHubCodeDestination
impl Clone for GitHubCodeDestination
sourcefn clone(&self) -> GitHubCodeDestination
fn clone(&self) -> GitHubCodeDestination
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 more
sourceimpl Debug for GitHubCodeDestination
impl Debug for GitHubCodeDestination
sourceimpl PartialEq<GitHubCodeDestination> for GitHubCodeDestination
impl PartialEq<GitHubCodeDestination> for GitHubCodeDestination
sourcefn eq(&self, other: &GitHubCodeDestination) -> bool
fn eq(&self, other: &GitHubCodeDestination) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GitHubCodeDestination) -> bool
fn ne(&self, other: &GitHubCodeDestination) -> bool
This method tests for !=
.
impl StructuralPartialEq for GitHubCodeDestination
Auto Trait Implementations
impl RefUnwindSafe for GitHubCodeDestination
impl Send for GitHubCodeDestination
impl Sync for GitHubCodeDestination
impl Unpin for GitHubCodeDestination
impl UnwindSafe for GitHubCodeDestination
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more