Module Values.CodeReviewSummarySource

Information about the summary of the code review.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the code review.

    *)
  2. codeReviewArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the CodeReview object.

    *)
  3. repositoryName : Name.t option;
    (*

    The name of the repository.

    *)
  4. owner : Owner.t option;
    (*

    The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

    *)
  5. providerType : ProviderType.t option;
    (*

    The provider type of the repository association.

    *)
  6. state : JobState.t option;
    (*

    The state of the code review. 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.

    *)
  7. createdTimeStamp : TimeStamp.t option;
    (*

    The time, in milliseconds since the epoch, when the code review was created.

    *)
  8. lastUpdatedTimeStamp : TimeStamp.t option;
    (*

    The time, in milliseconds since the epoch, when the code review was last updated.

    *)
  9. type_ : Type.t option;
    (*

    The type of the code review.

    *)
  10. pullRequestId : PullRequestId.t option;
    (*

    The pull request ID for the code review.

    *)
  11. metricsSummary : MetricsSummary.t option;
    (*

    The statistics from the code review.

    *)
  12. sourceCodeType : SourceCodeType.t option;
}
Sourceval make : ?name:??? -> ?codeReviewArn:??? -> ?repositoryName:??? -> ?owner:??? -> ?providerType:??? -> ?state:??? -> ?createdTimeStamp:??? -> ?lastUpdatedTimeStamp:??? -> ?type_:??? -> ?pullRequestId:??? -> ?metricsSummary:??? -> ?sourceCodeType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.t | `Structure of (string * [> `Long of LinesOfCodeCount.t | `Structure of (string * [> `Enum of string | `String of CommitId.t | `Structure of (string * [> `String of S3BucketName.t | `Structure of (string * [> `String of SourceCodeArtifactsObjectKey.t ]) list ]) list ]) list ]) list | `Timestamp of TimeStamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t