GetMergeConflictsOutput
public struct GetMergeConflictsOutput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The commit ID of the merge base.
Declaration
Swift
public let baseCommitId: String?
-
A list of metadata for any conflicting files. If the specified merge strategy is FAST_FORWARD_MERGE, this list is always empty.
Declaration
Swift
public let conflictMetadataList: [ConflictMetadata]
-
The commit ID of the destination commit specifier that was used in the merge evaluation.
Declaration
Swift
public let destinationCommitId: String
-
A Boolean value that indicates whether the code is mergeable by the specified merge option.
Declaration
Swift
public let mergeable: Bool
-
An enumeration token that can be used in a request to return the next batch of the results.
Declaration
Swift
public let nextToken: String?
-
The commit ID of the source commit specifier that was used in the merge evaluation.
Declaration
Swift
public let sourceCommitId: String
-
Undocumented
Declaration
Swift
public init(baseCommitId: String? = nil, conflictMetadataList: [ConflictMetadata], destinationCommitId: String, mergeable: Bool, nextToken: String? = nil, sourceCommitId: String)