Class: Aws::SecurityHub::Types::AwsMountPoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsMountPoint
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Details for a volume mount point that’s used in a container definition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_path ⇒ String
The path on the container to mount the host volume at.
-
#source_volume ⇒ String
The name of the volume to mount.
Instance Attribute Details
#container_path ⇒ String
The path on the container to mount the host volume at.
14799 14800 14801 14802 14803 14804 |
# File 'lib/aws-sdk-securityhub/types.rb', line 14799 class AwsMountPoint < Struct.new( :source_volume, :container_path) SENSITIVE = [] include Aws::Structure end |
#source_volume ⇒ String
The name of the volume to mount. Must be a volume name referenced in the ‘name` parameter of task definition `volume`.
14799 14800 14801 14802 14803 14804 |
# File 'lib/aws-sdk-securityhub/types.rb', line 14799 class AwsMountPoint < Struct.new( :source_volume, :container_path) SENSITIVE = [] include Aws::Structure end |