GetDifferencesInput

public struct GetDifferencesInput : AWSShape
extension CodeCommit.GetDifferencesInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The branch, tag, HEAD, or other fully qualified reference used to identify a commit.

    Declaration

    Swift

    public let afterCommitSpecifier: String
  • 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 are shown for all paths.

    Declaration

    Swift

    public let afterPath: String?
  • 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 before the afterCommitSpecifier value are shown. If you do not use beforeCommitSpecifier in your request, consider limiting the results with maxResults.

    Declaration

    Swift

    public let beforeCommitSpecifier: String?
  • 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 are shown for all paths.

    Declaration

    Swift

    public let beforePath: String?
  • A non-zero, non-negative integer used to limit the number of returned results.

    Declaration

    Swift

    public let maxResults: Int?
  • An enumeration token that, when provided in a request, returns the next batch of the results.

    Declaration

    Swift

    public let nextToken: String?
  • The name of the repository where you want to get differences.

    Declaration

    Swift

    public let repositoryName: String
  • Undocumented

    Declaration

    Swift

    public init(afterCommitSpecifier: String, afterPath: String? = nil, beforeCommitSpecifier: String? = nil, beforePath: String? = nil, maxResults: Int? = nil, nextToken: String? = nil, repositoryName: String)
  • Declaration

    Swift

    public func validate(name: String) throws