Class: Aws::Batch::Types::Ulimit

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb

Overview

The ulimit settings to pass to the container.

This object isn't applicable to jobs that are running on Fargate resources.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hard_limitInteger

The hard limit for the ulimit type.

Returns:

  • (Integer)


6426
6427
6428
6429
6430
6431
6432
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6426

class Ulimit < Struct.new(
  :hard_limit,
  :name,
  :soft_limit)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The type of the ulimit.

Returns:

  • (String)


6426
6427
6428
6429
6430
6431
6432
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6426

class Ulimit < Struct.new(
  :hard_limit,
  :name,
  :soft_limit)
  SENSITIVE = []
  include Aws::Structure
end

#soft_limitInteger

The soft limit for the ulimit type.

Returns:

  • (Integer)


6426
6427
6428
6429
6430
6431
6432
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6426

class Ulimit < Struct.new(
  :hard_limit,
  :name,
  :soft_limit)
  SENSITIVE = []
  include Aws::Structure
end