Class: Aws::Batch::Types::Ulimit
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::Ulimit
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
The ulimit
settings to pass to the container. For more information,
see Ulimit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hard_limit ⇒ Integer
The hard limit for the
ulimit
type. -
#name ⇒ String
The
type
of theulimit
. -
#soft_limit ⇒ Integer
The soft limit for the
ulimit
type.
Instance Attribute Details
#hard_limit ⇒ Integer
The hard limit for the ulimit
type.
7946 7947 7948 7949 7950 7951 7952 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 7946 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
.
7946 7947 7948 7949 7950 7951 7952 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 7946 class Ulimit < Struct.new( :hard_limit, :name, :soft_limit) SENSITIVE = [] include Aws::Structure end |