ListCodeReviewsRequest

public struct ListCodeReviewsRequest : AWSShape
extension CodeGuruReviewer.ListCodeReviewsRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The maximum number of results that are returned per call. The default is 100.

    Declaration

    Swift

    public let maxResults: Int?
  • If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.

    Declaration

    Swift

    public let nextToken: String?
  • List of provider types for filtering that needs to be applied before displaying the result. For example, providerTypes=[GitHub] lists code reviews from GitHub.

    Declaration

    Swift

    public let providerTypes: [ProviderType]?
  • List of repository names for filtering that needs to be applied before displaying the result.

    Declaration

    Swift

    public let repositoryNames: [String]?
  • List of states for filtering that needs to be applied before displaying the result. For example, states=[Pending] lists code reviews in the Pending state. The valid code review states are: Completed: The code review is complete. Pending: The code review started and has not completed or failed. Failed: The code review failed. Deleting: The code review is being deleted.

    Declaration

    Swift

    public let states: [JobState]?
  • The type of code reviews to list in the response.

    Declaration

    Swift

    public let type: Type
  • Undocumented

    Declaration

    Swift

    public init(maxResults: Int? = nil, nextToken: String? = nil, providerTypes: [ProviderType]? = nil, repositoryNames: [String]? = nil, states: [JobState]? = nil, type: Type)
  • Declaration

    Swift

    public func validate(name: String) throws