Struct rusoto_codecommit::GetDifferencesInput [] [src]

pub struct GetDifferencesInput {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub after_commit_specifier: String,
    pub after_path: Option<String>,
    pub before_commit_specifier: Option<String>,
    pub before_path: Option<String>,
    pub repository_name: String,
}

Fields

A non-negative integer used to limit the number of returned results.

An enumeration token that when provided in a request, returns the next batch of the results.

The branch, tag, HEAD, or other fully qualified reference used to identify a commit.

The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences will be shown for all paths.

The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, the full commit ID. Optional. If not specified, all changes prior to the afterCommitSpecifier value will be shown. If you do not use beforeCommitSpecifier in your request, consider limiting the results with maxResults.

The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. If beforePath and afterPath are not specified, differences will be shown for all paths.

The name of the repository where you want to get differences.

Trait Implementations

impl Default for GetDifferencesInput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for GetDifferencesInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetDifferencesInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations