pub struct BatchDescribeMergeConflictsInput {
pub conflict_detail_level: Option<String>,
pub conflict_resolution_strategy: Option<String>,
pub destination_commit_specifier: String,
pub file_paths: Option<Vec<String>>,
pub max_conflict_files: Option<i64>,
pub max_merge_hunks: Option<i64>,
pub merge_option: String,
pub next_token: Option<String>,
pub repository_name: String,
pub source_commit_specifier: String,
}Fields§
§conflict_detail_level: Option<String>The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.
conflict_resolution_strategy: Option<String>Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.
destination_commit_specifier: StringThe branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
file_paths: Option<Vec<String>>The path of the target files used to describe the conflicts. If not specified, the default is all conflict files.
max_conflict_files: Option<i64>The maximum number of files to include in the output.
max_merge_hunks: Option<i64>The maximum number of merge hunks to include in the output.
merge_option: StringThe merge option or strategy you want to use to merge the code.
next_token: Option<String>An enumeration token that, when provided in a request, returns the next batch of the results.
repository_name: StringThe name of the repository that contains the merge conflicts you want to review.
source_commit_specifier: StringThe branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
Trait Implementations§
Source§impl Clone for BatchDescribeMergeConflictsInput
impl Clone for BatchDescribeMergeConflictsInput
Source§fn clone(&self) -> BatchDescribeMergeConflictsInput
fn clone(&self) -> BatchDescribeMergeConflictsInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for BatchDescribeMergeConflictsInput
impl Default for BatchDescribeMergeConflictsInput
Source§fn default() -> BatchDescribeMergeConflictsInput
fn default() -> BatchDescribeMergeConflictsInput
Source§impl PartialEq for BatchDescribeMergeConflictsInput
impl PartialEq for BatchDescribeMergeConflictsInput
Source§fn eq(&self, other: &BatchDescribeMergeConflictsInput) -> bool
fn eq(&self, other: &BatchDescribeMergeConflictsInput) -> bool
self and other values to be equal, and is used by ==.