DescribeCodeCoveragesInput

public struct DescribeCodeCoveragesInput : AWSShape
extension CodeBuild.DescribeCodeCoveragesInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The maximum line coverage percentage to report.

    Declaration

    Swift

    public let maxLineCoveragePercentage: Double?
  • The maximum number of results to return.

    Declaration

    Swift

    public let maxResults: Int?
  • The minimum line coverage percentage to report.

    Declaration

    Swift

    public let minLineCoveragePercentage: Double?
  • The nextToken value returned from a previous call to DescribeCodeCoverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.

    Declaration

    Swift

    public let nextToken: String?
  • The ARN of the report for which test cases are returned.

    Declaration

    Swift

    public let reportArn: String
  • Specifies how the results are sorted. Possible values are: FILE_PATH The results are sorted by file path. LINE_COVERAGE_PERCENTAGE The results are sorted by the percentage of lines that are covered.

    Declaration

    Swift

    public let sortBy: ReportCodeCoverageSortByType?
  • Specifies if the results are sorted in ascending or descending order.

    Declaration

    Swift

    public let sortOrder: SortOrderType?
  • Undocumented

    Declaration

    Swift

    public init(maxLineCoveragePercentage: Double? = nil, maxResults: Int? = nil, minLineCoveragePercentage: Double? = nil, nextToken: String? = nil, reportArn: String, sortBy: ReportCodeCoverageSortByType? = nil, sortOrder: SortOrderType? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws