Class: Aws::CodeCommit::Types::Commit
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::Commit
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Returns information about a specific commit.
Instance Attribute Summary collapse
-
#additional_data ⇒ String
Any additional data associated with the specified commit.
-
#author ⇒ Types::UserInfo
Information about the author of the specified commit.
-
#committer ⇒ Types::UserInfo
Information about the person who committed the specified commit, also known as the committer.
-
#message ⇒ String
The commit message associated with the specified commit.
-
#parents ⇒ Array<String>
The parent list for the specified commit.
-
#tree_id ⇒ String
Tree information for the specified commit.
Instance Attribute Details
#additional_data ⇒ String
Any additional data associated with the specified commit.
143 144 145 146 147 148 149 150 151 |
# File 'lib/aws-sdk-codecommit/types.rb', line 143 class Commit < Struct.new( :tree_id, :parents, :message, :author, :committer, :additional_data) include Aws::Structure end |
#author ⇒ Types::UserInfo
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.
143 144 145 146 147 148 149 150 151 |
# File 'lib/aws-sdk-codecommit/types.rb', line 143 class Commit < Struct.new( :tree_id, :parents, :message, :author, :committer, :additional_data) include Aws::Structure end |
#committer ⇒ Types::UserInfo
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.
143 144 145 146 147 148 149 150 151 |
# File 'lib/aws-sdk-codecommit/types.rb', line 143 class Commit < Struct.new( :tree_id, :parents, :message, :author, :committer, :additional_data) include Aws::Structure end |
#message ⇒ String
The commit message associated with the specified commit.
143 144 145 146 147 148 149 150 151 |
# File 'lib/aws-sdk-codecommit/types.rb', line 143 class Commit < Struct.new( :tree_id, :parents, :message, :author, :committer, :additional_data) include Aws::Structure end |
#parents ⇒ Array<String>
The parent list for the specified commit.
143 144 145 146 147 148 149 150 151 |
# File 'lib/aws-sdk-codecommit/types.rb', line 143 class Commit < Struct.new( :tree_id, :parents, :message, :author, :committer, :additional_data) include Aws::Structure end |
#tree_id ⇒ String
Tree information for the specified commit.
143 144 145 146 147 148 149 150 151 |
# File 'lib/aws-sdk-codecommit/types.rb', line 143 class Commit < Struct.new( :tree_id, :parents, :message, :author, :committer, :additional_data) include Aws::Structure end |