Class: Aws::ECS::Types::DaemonVolume
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::DaemonVolume
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
A data volume definition for a daemon task.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#host ⇒ Types::HostVolumeProperties
The contents of the
hostparameter determine whether your bind mount host volume persists on the host container instance and where it's stored. -
#name ⇒ String
The name of the volume.
Instance Attribute Details
#host ⇒ Types::HostVolumeProperties
The contents of the host parameter determine whether your bind
mount host volume persists on the host container instance and where
it's stored.
4933 4934 4935 4936 4937 4938 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4933 class DaemonVolume < Struct.new( :name, :host) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed.
4933 4934 4935 4936 4937 4938 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4933 class DaemonVolume < Struct.new( :name, :host) SENSITIVE = [] include Aws::Structure end |