Class: Aws::Greengrass::Types::GroupOwnerSetting
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::GroupOwnerSetting
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrass/types.rb
Overview
Group owner related settings for local resources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_add_group_owner ⇒ Boolean
If true, AWS IoT Greengrass automatically adds the specified Linux OS group owner of the resource to the Lambda process privileges.
-
#group_owner ⇒ String
The name of the Linux OS group whose privileges will be added to the Lambda process.
Instance Attribute Details
#auto_add_group_owner ⇒ Boolean
If true, AWS IoT Greengrass automatically adds the specified Linux OS group owner of the resource to the Lambda process privileges. Thus the Lambda process will have the file access permissions of the added Linux group.
3123 3124 3125 3126 3127 3128 |
# File 'lib/aws-sdk-greengrass/types.rb', line 3123 class GroupOwnerSetting < Struct.new( :auto_add_group_owner, :group_owner) SENSITIVE = [] include Aws::Structure end |
#group_owner ⇒ String
The name of the Linux OS group whose privileges will be added to the Lambda process. This field is optional.
3123 3124 3125 3126 3127 3128 |
# File 'lib/aws-sdk-greengrass/types.rb', line 3123 class GroupOwnerSetting < Struct.new( :auto_add_group_owner, :group_owner) SENSITIVE = [] include Aws::Structure end |