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

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

Overview

An object representing a container instance host device.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#container_pathString

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

Returns:

  • (String)


4391
4392
4393
4394
4395
4396
4397
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4391

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

#host_pathString

The path for the device on the host container instance.

Returns:

  • (String)


4391
4392
4393
4394
4395
4396
4397
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4391

class Device < Struct.new(
  :host_path,
  :container_path,
  :permissions)
  SENSITIVE = []
  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>)


4391
4392
4393
4394
4395
4396
4397
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4391

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