Class: Aws::Greengrass::Types::GroupOwnerSetting

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

Overview

Group owner related settings for local resources.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_add_group_ownerBoolean

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.

Returns:

  • (Boolean)


3123
3124
3125
3126
3127
3128
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 3123

class GroupOwnerSetting < Struct.new(
  :auto_add_group_owner,
  :group_owner)
  SENSITIVE = []
  include Aws::Structure
end

#group_ownerString

The name of the Linux OS group whose privileges will be added to the Lambda process. This field is optional.

Returns:

  • (String)


3123
3124
3125
3126
3127
3128
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 3123

class GroupOwnerSetting < Struct.new(
  :auto_add_group_owner,
  :group_owner)
  SENSITIVE = []
  include Aws::Structure
end