BatchDescribeMergeConflictsOutput

public struct BatchDescribeMergeConflictsOutput : 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 conflicts for each file, including the conflict metadata and the hunks of the differences between the files.

    Declaration

    Swift

    public let conflicts: [Conflict]
  • The commit ID of the destination commit specifier that was used in the merge evaluation.

    Declaration

    Swift

    public let destinationCommitId: String
  • A list of any errors returned while describing the merge conflicts for each file.

    Declaration

    Swift

    public let errors: [BatchDescribeMergeConflictsError]?
  • 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, conflicts: [Conflict], destinationCommitId: String, errors: [BatchDescribeMergeConflictsError]? = nil, nextToken: String? = nil, sourceCommitId: String)