Class: Aws::GuardDuty::Types::Volume
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::Volume
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Volume used by the Kubernetes workload.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#host_path ⇒ Types::HostPath
Represents a pre-existing file or directory on the host machine that the volume maps to.
-
#name ⇒ String
Volume name.
Instance Attribute Details
#host_path ⇒ Types::HostPath
Represents a pre-existing file or directory on the host machine that the volume maps to.
9292 9293 9294 9295 9296 9297 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 9292 class Volume < Struct.new( :name, :host_path) SENSITIVE = [] include Aws::Structure end |