PostCommentForComparedCommitInput

public struct PostCommentForComparedCommitInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • To establish the directionality of the comparison, the full commit ID of the after commit.

    Declaration

    Swift

    public let afterCommitId: String
  • To establish the directionality of the comparison, the full commit ID of the before commit. Required for commenting on any commit unless that commit is the initial commit.

    Declaration

    Swift

    public let beforeCommitId: String?
  • A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.

    Declaration

    Swift

    public let clientRequestToken: String?
  • The content of the comment you want to make.

    Declaration

    Swift

    public let content: String
  • The location of the comparison where you want to comment.

    Declaration

    Swift

    public let location: Location?
  • The name of the repository where you want to post a comment on the comparison between commits.

    Declaration

    Swift

    public let repositoryName: String
  • Undocumented

    Declaration

    Swift

    public init(afterCommitId: String, beforeCommitId: String? = nil, clientRequestToken: String? = PostCommentForComparedCommitInput.idempotencyToken(), content: String, location: Location? = nil, repositoryName: String)
  • Declaration

    Swift

    public func validate(name: String) throws