You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::ECS::Types::Ulimit
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ECS::Types::Ulimit
 
- Defined in:
- (unknown)
Overview
    Note:
    
  
When passing Ulimit as input to an Aws::Client method, you can use a vanilla Hash:
{
  name: "core", # required, accepts core, cpu, data, fsize, locks, memlock, msgqueue, nice, nofile, nproc, rss, rtprio, rttime, sigpending, stack
  soft_limit: 1, # required
  hard_limit: 1, # required
}
The ulimit settings to pass to the container.
Instance Attribute Summary collapse
- 
  
    
      #hard_limit  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The hard limit for the ulimit type. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The typeof theulimit.
- 
  
    
      #soft_limit  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The soft limit for the ulimit type. 
Instance Attribute Details
#hard_limit ⇒ Integer
The hard limit for the ulimit type.
#name ⇒ String
The type of the ulimit. 
Possible values:
- core
- cpu
- data
- fsize
- locks
- memlock
- msgqueue
- nice
- nofile
- nproc
- rss
- rtprio
- rttime
- sigpending
- stack
#soft_limit ⇒ Integer
The soft limit for the ulimit type.