Class: Aws::GuardDuty::Types::SecurityContext
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::GuardDuty::Types::SecurityContext
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Container security context.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #allow_privilege_escalation  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether or not a container or a Kubernetes pod is allowed to gain more privileges than its parent process. 
- 
  
    
      #privileged  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether the container is privileged. 
Instance Attribute Details
#allow_privilege_escalation ⇒ Boolean
Whether or not a container or a Kubernetes pod is allowed to gain more privileges than its parent process.
| 8022 8023 8024 8025 8026 8027 | # File 'lib/aws-sdk-guardduty/types.rb', line 8022 class SecurityContext < Struct.new( :privileged, :allow_privilege_escalation) SENSITIVE = [] include Aws::Structure end | 
#privileged ⇒ Boolean
Whether the container is privileged.
| 8022 8023 8024 8025 8026 8027 | # File 'lib/aws-sdk-guardduty/types.rb', line 8022 class SecurityContext < Struct.new( :privileged, :allow_privilege_escalation) SENSITIVE = [] include Aws::Structure end |