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
Name of the GitHub repository to be created in AWS CodeStar.
Description for the GitHub repository to be created in AWS CodeStar. This description displays in GitHub after the repository is created.
The type of GitHub repository to be created in AWS CodeStar. Valid values are User or Organization.
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.
Whether the GitHub repository is to be a private repository.
Whether to enable issues for the GitHub repository.
Creates a new builder-style object to manufacture GitHubCodeDestination
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more