Class: Aws::Batch::Types::Ulimit
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::Ulimit
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
The ulimit settings to pass to the container. For more information, see [Ulimit].
<note markdown=“1”> This object isn’t applicable to jobs that are running on Fargate resources.
</note>
[1]: docs.aws.amazon.com/AmazonECS/latest/APIReference/API_Ulimit.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hard_limit ⇒ Integer
The hard limit for the
ulimittype. -
#name ⇒ String
The
typeof theulimit. -
#soft_limit ⇒ Integer
The soft limit for the
ulimittype.
Instance Attribute Details
#hard_limit ⇒ Integer
The hard limit for the ulimit type.
10176 10177 10178 10179 10180 10181 10182 |
# File 'lib/aws-sdk-batch/types.rb', line 10176 class Ulimit < Struct.new( :hard_limit, :name, :soft_limit) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The type of the ulimit. Valid values are: core | cpu | data | fsize | locks | memlock | msgqueue | nice | nofile | nproc | rss | rtprio | rttime | sigpending | stack.
10176 10177 10178 10179 10180 10181 10182 |
# File 'lib/aws-sdk-batch/types.rb', line 10176 class Ulimit < Struct.new( :hard_limit, :name, :soft_limit) SENSITIVE = [] include Aws::Structure end |