Class: Aws::Batch::Types::Tmpfs
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::Tmpfs
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
When making an API call, you may pass Tmpfs data as a hash:
{
container_path: "String", # required
size: 1, # required
mount_options: ["String"],
}
The container path, mount options, and size of the tmpfs mount.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_path ⇒ String
The absolute file path in the container where the tmpfs volume is mounted.
-
#mount_options ⇒ Array<String>
The list of tmpfs volume mount options.
-
#size ⇒ Integer
The size (in MiB) of the tmpfs volume.
Instance Attribute Details
#container_path ⇒ String
The absolute file path in the container where the tmpfs volume is mounted.
4957 4958 4959 4960 4961 4962 4963 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4957 class Tmpfs < Struct.new( :container_path, :size, :mount_options) SENSITIVE = [] include Aws::Structure end |
#mount_options ⇒ Array<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
"
4957 4958 4959 4960 4961 4962 4963 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4957 class Tmpfs < Struct.new( :container_path, :size, :mount_options) SENSITIVE = [] include Aws::Structure end |