Class: Aws::ECS::Types::Tmpfs

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

Overview

Note:

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.

Instance Attribute Summary collapse

Instance Attribute Details

#container_pathString

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

Returns:

  • (String)


7186
7187
7188
7189
7190
7191
# File 'lib/aws-sdk-ecs/types.rb', line 7186

class Tmpfs < Struct.new(
  :container_path,
  :size,
  :mount_options)
  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>)


7186
7187
7188
7189
7190
7191
# File 'lib/aws-sdk-ecs/types.rb', line 7186

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

#sizeInteger

The size (in MiB) of the tmpfs volume.

Returns:

  • (Integer)


7186
7187
7188
7189
7190
7191
# File 'lib/aws-sdk-ecs/types.rb', line 7186

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