Class: Aws::ECS::Types::Device
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::Device
- 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
-
#container_path ⇒ String
The path inside the container at which to expose the host device.
-
#host_path ⇒ String
The path for the device on the host container instance.
-
#permissions ⇒ Array<String>
The explicit permissions to provide to the container for the device.
Instance Attribute Details
#container_path ⇒ String
The path inside the container at which to expose the host device.
5360 5361 5362 5363 5364 5365 5366 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5360 class Device < Struct.new( :host_path, :container_path, :permissions) SENSITIVE = [] include Aws::Structure end |
#host_path ⇒ String
The path for the device on the host container instance.
5360 5361 5362 5363 5364 5365 5366 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5360 class Device < Struct.new( :host_path, :container_path, :permissions) SENSITIVE = [] include Aws::Structure end |
#permissions ⇒ Array<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.
5360 5361 5362 5363 5364 5365 5366 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5360 class Device < Struct.new( :host_path, :container_path, :permissions) SENSITIVE = [] include Aws::Structure end |