Class: Aws::CodeCommit::Types::UserInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::UserInfo
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Information about the user who made a specified commit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date ⇒ String
The date when the specified commit was commited, in timestamp format with GMT offset.
-
#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 commited, in timestamp format with GMT offset.
7225 7226 7227 7228 7229 7230 7231 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7225 class UserInfo < Struct.new( :name, :email, :date) SENSITIVE = [] include Aws::Structure end |