Commit

public struct Commit : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Any other data associated with the specified commit.

    Declaration

    Swift

    public let additionalData: String?
  • Information about the author of the specified commit. Information includes the date in timestamp format with GMT offset, the name of the author, and the email address for the author, as configured in Git.

    Declaration

    Swift

    public let author: UserInfo?
  • The full SHA ID of the specified commit.

    Declaration

    Swift

    public let commitId: String?
  • Information about the person who committed the specified commit, also known as the committer. Information includes the date in timestamp format with GMT offset, the name of the committer, and the email address for the committer, as configured in Git. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

    Declaration

    Swift

    public let committer: UserInfo?
  • The commit message associated with the specified commit.

    Declaration

    Swift

    public let message: String?
  • A list of parent commits for the specified commit. Each parent commit ID is the full commit ID.

    Declaration

    Swift

    public let parents: [String]?
  • Tree information for the specified commit.

    Declaration

    Swift

    public let treeId: String?
  • Undocumented

    Declaration

    Swift

    public init(additionalData: String? = nil, author: UserInfo? = nil, commitId: String? = nil, committer: UserInfo? = nil, message: String? = nil, parents: [String]? = nil, treeId: String? = nil)