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
Note:
When making an API call, you may pass Ulimit data as a hash:
{
hard_limit: 1, # required
name: "String", # required
soft_limit: 1, # required
}
The ulimit
settings to pass to the container.
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.
4994 4995 4996 4997 4998 4999 5000 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4994 class Ulimit < Struct.new( :hard_limit, :name, :soft_limit) SENSITIVE = [] include Aws::Structure end |