Class: Aws::ECS::Types::DaemonLinuxParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::DaemonLinuxParameters
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The Linux-specific options that are applied to the daemon container, such as Linux kernel capabilities.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capabilities ⇒ Types::KernelCapabilities
The Linux capabilities for the container that are added to or dropped from the default configuration provided by Docker.
-
#devices ⇒ Array<Types::Device>
Any host devices to expose to the container.
-
#init_process_enabled ⇒ Boolean
Run an
initprocess inside the container that forwards signals and reaps processes. -
#tmpfs ⇒ Array<Types::Tmpfs>
The container path, mount options, and size (in MiB) of the tmpfs mount.
Instance Attribute Details
#capabilities ⇒ Types::KernelCapabilities
The Linux capabilities for the container that are added to or dropped from the default configuration provided by Docker.
4599 4600 4601 4602 4603 4604 4605 4606 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4599 class DaemonLinuxParameters < Struct.new( :capabilities, :devices, :init_process_enabled, :tmpfs) SENSITIVE = [] include Aws::Structure end |
#devices ⇒ Array<Types::Device>
Any host devices to expose to the container.
4599 4600 4601 4602 4603 4604 4605 4606 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4599 class DaemonLinuxParameters < Struct.new( :capabilities, :devices, :init_process_enabled, :tmpfs) SENSITIVE = [] include Aws::Structure end |
#init_process_enabled ⇒ Boolean
Run an init process inside the container that forwards signals and
reaps processes.
4599 4600 4601 4602 4603 4604 4605 4606 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4599 class DaemonLinuxParameters < Struct.new( :capabilities, :devices, :init_process_enabled, :tmpfs) SENSITIVE = [] include Aws::Structure end |
#tmpfs ⇒ Array<Types::Tmpfs>
The container path, mount options, and size (in MiB) of the tmpfs mount.
4599 4600 4601 4602 4603 4604 4605 4606 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4599 class DaemonLinuxParameters < Struct.new( :capabilities, :devices, :init_process_enabled, :tmpfs) SENSITIVE = [] include Aws::Structure end |