Struct aws_sdk_codecommit::operation::get_merge_conflicts::builders::GetMergeConflictsOutputBuilder
source · #[non_exhaustive]pub struct GetMergeConflictsOutputBuilder { /* private fields */ }Expand description
A builder for GetMergeConflictsOutput.
Implementations§
source§impl GetMergeConflictsOutputBuilder
impl GetMergeConflictsOutputBuilder
sourcepub fn mergeable(self, input: bool) -> Self
pub fn mergeable(self, input: bool) -> Self
A Boolean value that indicates whether the code is mergeable by the specified merge option.
sourcepub fn set_mergeable(self, input: Option<bool>) -> Self
pub fn set_mergeable(self, input: Option<bool>) -> Self
A Boolean value that indicates whether the code is mergeable by the specified merge option.
sourcepub fn get_mergeable(&self) -> &Option<bool>
pub fn get_mergeable(&self) -> &Option<bool>
A Boolean value that indicates whether the code is mergeable by the specified merge option.
sourcepub fn destination_commit_id(self, input: impl Into<String>) -> Self
pub fn destination_commit_id(self, input: impl Into<String>) -> Self
The commit ID of the destination commit specifier that was used in the merge evaluation.
sourcepub fn set_destination_commit_id(self, input: Option<String>) -> Self
pub fn set_destination_commit_id(self, input: Option<String>) -> Self
The commit ID of the destination commit specifier that was used in the merge evaluation.
sourcepub fn get_destination_commit_id(&self) -> &Option<String>
pub fn get_destination_commit_id(&self) -> &Option<String>
The commit ID of the destination commit specifier that was used in the merge evaluation.
sourcepub fn source_commit_id(self, input: impl Into<String>) -> Self
pub fn source_commit_id(self, input: impl Into<String>) -> Self
The commit ID of the source commit specifier that was used in the merge evaluation.
sourcepub fn set_source_commit_id(self, input: Option<String>) -> Self
pub fn set_source_commit_id(self, input: Option<String>) -> Self
The commit ID of the source commit specifier that was used in the merge evaluation.
sourcepub fn get_source_commit_id(&self) -> &Option<String>
pub fn get_source_commit_id(&self) -> &Option<String>
The commit ID of the source commit specifier that was used in the merge evaluation.
sourcepub fn base_commit_id(self, input: impl Into<String>) -> Self
pub fn base_commit_id(self, input: impl Into<String>) -> Self
The commit ID of the merge base.
sourcepub fn set_base_commit_id(self, input: Option<String>) -> Self
pub fn set_base_commit_id(self, input: Option<String>) -> Self
The commit ID of the merge base.
sourcepub fn get_base_commit_id(&self) -> &Option<String>
pub fn get_base_commit_id(&self) -> &Option<String>
The commit ID of the merge base.
sourcepub fn conflict_metadata_list(self, input: ConflictMetadata) -> Self
pub fn conflict_metadata_list(self, input: ConflictMetadata) -> Self
Appends an item to conflict_metadata_list.
To override the contents of this collection use set_conflict_metadata_list.
A list of metadata for any conflicting files. If the specified merge strategy is FAST_FORWARD_MERGE, this list is always empty.
sourcepub fn set_conflict_metadata_list(
self,
input: Option<Vec<ConflictMetadata>>
) -> Self
pub fn set_conflict_metadata_list( self, input: Option<Vec<ConflictMetadata>> ) -> Self
A list of metadata for any conflicting files. If the specified merge strategy is FAST_FORWARD_MERGE, this list is always empty.
sourcepub fn get_conflict_metadata_list(&self) -> &Option<Vec<ConflictMetadata>>
pub fn get_conflict_metadata_list(&self) -> &Option<Vec<ConflictMetadata>>
A list of metadata for any conflicting files. If the specified merge strategy is FAST_FORWARD_MERGE, this list is always empty.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
An enumeration token that can be used in a request to return the next batch of the results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
An enumeration token that can be used in a request to return the next batch of the results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
An enumeration token that can be used in a request to return the next batch of the results.
sourcepub fn build(self) -> GetMergeConflictsOutput
pub fn build(self) -> GetMergeConflictsOutput
Consumes the builder and constructs a GetMergeConflictsOutput.
Trait Implementations§
source§impl Clone for GetMergeConflictsOutputBuilder
impl Clone for GetMergeConflictsOutputBuilder
source§fn clone(&self) -> GetMergeConflictsOutputBuilder
fn clone(&self) -> GetMergeConflictsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for GetMergeConflictsOutputBuilder
impl Default for GetMergeConflictsOutputBuilder
source§fn default() -> GetMergeConflictsOutputBuilder
fn default() -> GetMergeConflictsOutputBuilder
source§impl PartialEq<GetMergeConflictsOutputBuilder> for GetMergeConflictsOutputBuilder
impl PartialEq<GetMergeConflictsOutputBuilder> for GetMergeConflictsOutputBuilder
source§fn eq(&self, other: &GetMergeConflictsOutputBuilder) -> bool
fn eq(&self, other: &GetMergeConflictsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.