Class: Aws::SecurityHub::Types::AwsMountPoint

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#container_pathString

The path on the container to mount the host volume at.

Returns:

  • (String)


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_volumeString

The name of the volume to mount. Must be a volume name referenced in the ‘name` parameter of task definition `volume`.

Returns:

  • (String)


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