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.
31425 31426 31427 31428 31429 31430 |
# File 'lib/aws-sdk-securityhub/types.rb', line 31425 class VolumeMount < Struct.new( :name, :mount_path) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the volume.
31425 31426 31427 31428 31429 31430 |
# File 'lib/aws-sdk-securityhub/types.rb', line 31425 class VolumeMount < Struct.new( :name, :mount_path) SENSITIVE = [] include Aws::Structure end |