Class: Aws::CodeCommit::Types::UserInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::UserInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Information about the user who made a specified commit.
Instance Attribute Summary collapse
-
#date ⇒ String
The date when the specified commit was pushed to the repository.
-
#email ⇒ String
The email address associated with the user who made the commit, if any.
-
#name ⇒ String
The name of the user who made the specified commit.
Instance Attribute Details
#date ⇒ String
The date when the specified commit was pushed to the repository.
1033 1034 1035 1036 1037 1038 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1033 class UserInfo < Struct.new( :name, :email, :date) include Aws::Structure end |
#email ⇒ String
The email address associated with the user who made the commit, if any.
1033 1034 1035 1036 1037 1038 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1033 class UserInfo < Struct.new( :name, :email, :date) include Aws::Structure end |
#name ⇒ String
The name of the user who made the specified commit.
1033 1034 1035 1036 1037 1038 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1033 class UserInfo < Struct.new( :name, :email, :date) include Aws::Structure end |