pub struct CreateCodeRepositoryInput {
pub code_repository_name: String,
pub git_config: GitConfig,
}
Fields§
§code_repository_name: String
The name of the Git repository. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
git_config: GitConfig
Specifies details about the repository, including the URL where the repository is located, the default branch, and credentials to use to access the repository.
Trait Implementations§
Source§impl Clone for CreateCodeRepositoryInput
impl Clone for CreateCodeRepositoryInput
Source§fn clone(&self) -> CreateCodeRepositoryInput
fn clone(&self) -> CreateCodeRepositoryInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateCodeRepositoryInput
impl Debug for CreateCodeRepositoryInput
Source§impl Default for CreateCodeRepositoryInput
impl Default for CreateCodeRepositoryInput
Source§fn default() -> CreateCodeRepositoryInput
fn default() -> CreateCodeRepositoryInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateCodeRepositoryInput
Auto Trait Implementations§
impl Freeze for CreateCodeRepositoryInput
impl RefUnwindSafe for CreateCodeRepositoryInput
impl Send for CreateCodeRepositoryInput
impl Sync for CreateCodeRepositoryInput
impl Unpin for CreateCodeRepositoryInput
impl UnwindSafe for CreateCodeRepositoryInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more