Struct aws_sdk_codestar::types::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§
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() -> GitHubCodeDestinationBuilder
pub fn builder() -> GitHubCodeDestinationBuilder
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 ==
.