[][src]Struct rusoto_codecommit::CreateCommitInput

pub struct CreateCommitInput {
    pub author_name: Option<String>,
    pub branch_name: String,
    pub commit_message: Option<String>,
    pub delete_files: Option<Vec<DeleteFileEntry>>,
    pub email: Option<String>,
    pub keep_empty_folders: Option<bool>,
    pub parent_commit_id: Option<String>,
    pub put_files: Option<Vec<PutFileEntry>>,
    pub repository_name: String,
    pub set_file_modes: Option<Vec<SetFileModeEntry>>,
}

Fields

author_name: Option<String>

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]

impl Default for CreateCommitInput[src]

impl Clone for 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

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self