Class: Aws::Batch::Types::Tmpfs

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

Overview

The container path, mount options, and size of the ‘tmpfs` mount.

<note markdown=“1”> This object isn’t applicable to jobs that are running on Fargate resources.

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#container_pathString

The absolute file path in the container where the ‘tmpfs` volume is mounted.

Returns:

  • (String)


7799
7800
7801
7802
7803
7804
7805
# File 'lib/aws-sdk-batch/types.rb', line 7799

class Tmpfs < Struct.new(
  :container_path,
  :size,
  :mount_options)
  SENSITIVE = []
  include Aws::Structure
end

#mount_optionsArray<String>

The list of ‘tmpfs` volume mount options.

Valid values: “‘defaults`” | “`ro`” | “`rw`” | “`suid`” | “`nosuid`” | “`dev`” | “`nodev`” | “`exec`” | “`noexec`” | “`sync`” | “`async`” | “`dirsync`” | “`remount`” | “`mand`” | “`nomand`” | “`atime`” | “`noatime`” | “`diratime`” | “`nodiratime`” | “`bind`” | “`rbind” | “unbindable” | “runbindable” | “private” | “rprivate” | “shared” | “rshared” | “slave” | “rslave” | “relatime`” | “`norelatime`” | “`strictatime`” | “`nostrictatime`” | “`mode`” | “`uid`” | “`gid`” | “`nr_inodes`” | “`nr_blocks`” | “`mpol`”

Returns:

  • (Array<String>)


7799
7800
7801
7802
7803
7804
7805
# File 'lib/aws-sdk-batch/types.rb', line 7799

class Tmpfs < Struct.new(
  :container_path,
  :size,
  :mount_options)
  SENSITIVE = []
  include Aws::Structure
end

#sizeInteger

The size (in MiB) of the ‘tmpfs` volume.

Returns:

  • (Integer)


7799
7800
7801
7802
7803
7804
7805
# File 'lib/aws-sdk-batch/types.rb', line 7799

class Tmpfs < Struct.new(
  :container_path,
  :size,
  :mount_options)
  SENSITIVE = []
  include Aws::Structure
end