Class: Aws::SecurityHub::Types::VolumeMount
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::VolumeMount
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Describes the mounting of a volume in a container.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mount_path ⇒ String
The path in the container at which the volume should be mounted.
-
#name ⇒ String
The name of the volume.
Instance Attribute Details
#mount_path ⇒ String
The path in the container at which the volume should be mounted.
32012 32013 32014 32015 32016 32017 |
# File 'lib/aws-sdk-securityhub/types.rb', line 32012 class VolumeMount < Struct.new( :name, :mount_path) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the volume.
32012 32013 32014 32015 32016 32017 |
# File 'lib/aws-sdk-securityhub/types.rb', line 32012 class VolumeMount < Struct.new( :name, :mount_path) SENSITIVE = [] include Aws::Structure end |