Class: Aws::Greengrass::Types::ResourceDownloadOwnerSetting

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

Overview

The owner setting for downloaded machine learning resources.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#group_ownerString

The group owner of the resource. This is the name of an existing Linux OS group on the system or a GID. The group's permissions are added to the Lambda process.

Returns:

  • (String)


4161
4162
4163
4164
4165
4166
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 4161

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

#group_permissionString

The permissions that the group owner has to the resource. Valid values are ''rw'' (read/write) or ''ro'' (read-only).

Returns:

  • (String)


4161
4162
4163
4164
4165
4166
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 4161

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