[−][src]Struct rusoto_codecommit::CreateCommitInput
Fields
The name of the author who created the commit. This information will be used as both the author and committer for the commit.
branch_name: String
The name of the branch where you will create the commit.
commit_message: Option<String>
The commit message you want to include as part of creating the commit. Commit messages are limited to 256 KB. If no message is specified, a default message will be used.
delete_files: Option<Vec<DeleteFileEntry>>
The files to delete in this commit. These files will still exist in prior commits.
email: Option<String>
The email address of the person who created the commit.
keep_empty_folders: Option<bool>
If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty. If this is specified as true, a .gitkeep file will be created for empty folders.
parent_commit_id: Option<String>
The ID of the commit that is the parent of the commit you will create. If this is an empty repository, this is not required.
put_files: Option<Vec<PutFileEntry>>
The files to add or update in this commit.
repository_name: String
The name of the repository where you will create the commit.
set_file_modes: Option<Vec<SetFileModeEntry>>
The file modes to update for files in this commit.
Trait Implementations
impl PartialEq<CreateCommitInput> for CreateCommitInput
[src]
fn eq(&self, other: &CreateCommitInput) -> bool
[src]
fn ne(&self, other: &CreateCommitInput) -> bool
[src]
impl Default for CreateCommitInput
[src]
fn default() -> CreateCommitInput
[src]
impl Clone for CreateCommitInput
[src]
fn clone(&self) -> CreateCommitInput
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateCommitInput
[src]
impl Serialize for CreateCommitInput
[src]
Auto Trait Implementations
impl Send for CreateCommitInput
impl Sync for CreateCommitInput
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self