Struct aws_sdk_codestar::model::GitHubCodeDestination
source · [−]#[non_exhaustive]pub struct GitHubCodeDestination { /* private fields */ }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.
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
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more