Class: Aws::GuardDuty::Types::ImpersonatedUser

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-guardduty/types.rb

Overview

Contains information about the impersonated user.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#groupsArray<String>

The group to which the user name belongs.

Returns:

  • (Array<String>)


6879
6880
6881
6882
6883
6884
# File 'lib/aws-sdk-guardduty/types.rb', line 6879

class ImpersonatedUser < Struct.new(
  :username,
  :groups)
  SENSITIVE = []
  include Aws::Structure
end

#usernameString

Information about the username that was being impersonated.

Returns:

  • (String)


6879
6880
6881
6882
6883
6884
# File 'lib/aws-sdk-guardduty/types.rb', line 6879

class ImpersonatedUser < Struct.new(
  :username,
  :groups)
  SENSITIVE = []
  include Aws::Structure
end