You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Tmpfs as input to an Aws::Client method, you can use a vanilla Hash:

{
  container_path: "String", # required
  size: 1, # required
  mount_options: ["String"],
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#container_pathString

The absolute file path in the container where the tmpfs volume is to be mounted.

Returns:

  • (String)

    The absolute file path in the container where the tmpfs volume is to be mounted.

#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>)

    The list of tmpfs volume mount options.

#sizeInteger

The size (in MiB) of the tmpfs volume.

Returns:

  • (Integer)

    The size (in MiB) of the tmpfs volume.