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>)


3785
3786
3787
3788
3789
3790
# File 'lib/aws-sdk-guardduty/types.rb', line 3785

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

#usernameString

Information about the ‘username` that was being impersonated.

Returns:

  • (String)


3785
3786
3787
3788
3789
3790
# File 'lib/aws-sdk-guardduty/types.rb', line 3785

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