GetCommentsForPullRequestInput

public struct GetCommentsForPullRequestInput : AWSShape
extension CodeCommit.GetCommentsForPullRequestInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The full commit ID of the commit in the source branch that was the tip of the branch at the time the comment was made.

    Declaration

    Swift

    public let afterCommitId: String?
  • The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull request was created.

    Declaration

    Swift

    public let beforeCommitId: String?
  • A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments. You can return up to 500 comments with a single request.

    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 system-generated ID of the pull request. To get this ID, use ListPullRequests.

    Declaration

    Swift

    public let pullRequestId: String
  • The name of the repository that contains the pull request.

    Declaration

    Swift

    public let repositoryName: String?
  • Undocumented

    Declaration

    Swift

    public init(afterCommitId: String? = nil, beforeCommitId: String? = nil, maxResults: Int? = nil, nextToken: String? = nil, pullRequestId: String, repositoryName: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws