Class: Aws::ECS::Types::Device

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 Device data as a hash:

{
  host_path: "String", # required
  container_path: "String",
  permissions: ["read"], # accepts read, write, mknod
}

An object representing a container instance host device.

Instance Attribute Summary collapse

Instance Attribute Details

#container_pathString

The path inside the container at which to expose the host device.

Returns:

  • (String)


2205
2206
2207
2208
2209
2210
# File 'lib/aws-sdk-ecs/types.rb', line 2205

class Device < Struct.new(
  :host_path,
  :container_path,
  :permissions)
  include Aws::Structure
end

#host_pathString

The path for the device on the host container instance.

Returns:

  • (String)


2205
2206
2207
2208
2209
2210
# File 'lib/aws-sdk-ecs/types.rb', line 2205

class Device < Struct.new(
  :host_path,
  :container_path,
  :permissions)
  include Aws::Structure
end

#permissionsArray<String>

The explicit permissions to provide to the container for the device. By default, the container has permissions for ‘read`, `write`, and `mknod` for the device.

Returns:

  • (Array<String>)


2205
2206
2207
2208
2209
2210
# File 'lib/aws-sdk-ecs/types.rb', line 2205

class Device < Struct.new(
  :host_path,
  :container_path,
  :permissions)
  include Aws::Structure
end