Class: Aws::GreengrassV2::Types::LambdaDeviceMount

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb

Overview

Contains information about a device that Linux processes in a container can access.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#add_group_ownerBoolean

Whether or not to add the component's system user as an owner of the device.

Default: false

Returns:

  • (Boolean)


2084
2085
2086
2087
2088
2089
2090
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2084

class LambdaDeviceMount < Struct.new(
  :path,
  :permission,
  :add_group_owner)
  SENSITIVE = []
  include Aws::Structure
end

#pathString

The mount path for the device in the file system.

Returns:

  • (String)


2084
2085
2086
2087
2088
2089
2090
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2084

class LambdaDeviceMount < Struct.new(
  :path,
  :permission,
  :add_group_owner)
  SENSITIVE = []
  include Aws::Structure
end

#permissionString

The permission to access the device: read/only (ro) or read/write (rw).

Default: ro

Returns:

  • (String)


2084
2085
2086
2087
2088
2089
2090
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2084

class LambdaDeviceMount < Struct.new(
  :path,
  :permission,
  :add_group_owner)
  SENSITIVE = []
  include Aws::Structure
end