Class: Aws::GreengrassV2::Types::LambdaDeviceMount
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::LambdaDeviceMount
- 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
-
#add_group_owner ⇒ Boolean
Whether or not to add the component's system user as an owner of the device.
-
#path ⇒ String
The mount path for the device in the file system.
-
#permission ⇒ String
The permission to access the device: read/only (
ro
) or read/write (rw
).
Instance Attribute Details
#add_group_owner ⇒ Boolean
Whether or not to add the component's system user as an owner of the device.
Default: false
2131 2132 2133 2134 2135 2136 2137 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2131 class LambdaDeviceMount < Struct.new( :path, :permission, :add_group_owner) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The mount path for the device in the file system.
2131 2132 2133 2134 2135 2136 2137 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2131 class LambdaDeviceMount < Struct.new( :path, :permission, :add_group_owner) SENSITIVE = [] include Aws::Structure end |
#permission ⇒ String
The permission to access the device: read/only (ro
) or read/write
(rw
).
Default: ro
2131 2132 2133 2134 2135 2136 2137 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2131 class LambdaDeviceMount < Struct.new( :path, :permission, :add_group_owner) SENSITIVE = [] include Aws::Structure end |