Class: Aws::GuardDuty::Types::SecurityContext

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

Overview

Container security context.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#allow_privilege_escalationBoolean

Whether or not a container or a Kubernetes pod is allowed to gain more privileges than its parent process.

Returns:

  • (Boolean)


7090
7091
7092
7093
7094
7095
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 7090

class SecurityContext < Struct.new(
  :privileged,
  :allow_privilege_escalation)
  SENSITIVE = []
  include Aws::Structure
end

#privilegedBoolean

Whether the container is privileged.

Returns:

  • (Boolean)


7090
7091
7092
7093
7094
7095
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 7090

class SecurityContext < Struct.new(
  :privileged,
  :allow_privilege_escalation)
  SENSITIVE = []
  include Aws::Structure
end