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