Class: Aws::GuardDuty::Types::KubernetesUserDetails

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

Overview

Details about the Kubernetes user involved in a Kubernetes finding.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#groupsArray<String>

The groups that include the user who called the Kubernetes API.

Returns:

  • (Array<String>)


3790
3791
3792
3793
3794
3795
3796
3797
# File 'lib/aws-sdk-guardduty/types.rb', line 3790

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

#session_nameArray<String>

Entity that assumes the IAM role when Kubernetes RBAC permissions are assigned to that role.

Returns:

  • (Array<String>)


3790
3791
3792
3793
3794
3795
3796
3797
# File 'lib/aws-sdk-guardduty/types.rb', line 3790

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

#uidString

The user ID of the user who called the Kubernetes API.

Returns:

  • (String)


3790
3791
3792
3793
3794
3795
3796
3797
# File 'lib/aws-sdk-guardduty/types.rb', line 3790

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

#usernameString

The username of the user who called the Kubernetes API.

Returns:

  • (String)


3790
3791
3792
3793
3794
3795
3796
3797
# File 'lib/aws-sdk-guardduty/types.rb', line 3790

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