Class: Aws::CodeCommit::Types::UserInfo

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#dateString

The date when the specified commit was commited, in timestamp format with GMT offset.

Returns:

  • (String)


7222
7223
7224
7225
7226
7227
7228
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7222

class UserInfo < Struct.new(
  :name,
  :email,
  :date)
  SENSITIVE = []
  include Aws::Structure
end

#emailString

The email address associated with the user who made the commit, if any.

Returns:

  • (String)


7222
7223
7224
7225
7226
7227
7228
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7222

class UserInfo < Struct.new(
  :name,
  :email,
  :date)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the user who made the specified commit.

Returns:

  • (String)


7222
7223
7224
7225
7226
7227
7228
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7222

class UserInfo < Struct.new(
  :name,
  :email,
  :date)
  SENSITIVE = []
  include Aws::Structure
end