Class: Aws::Greengrass::Types::ResourceDownloadOwnerSetting
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::ResourceDownloadOwnerSetting
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrass/types.rb
Overview
The owner setting for downloaded machine learning resources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_owner ⇒ String
The group owner of the resource.
-
#group_permission ⇒ String
The permissions that the group owner has to the resource.
Instance Attribute Details
#group_owner ⇒ String
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.
4161 4162 4163 4164 4165 4166 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4161 class ResourceDownloadOwnerSetting < Struct.new( :group_owner, :group_permission) SENSITIVE = [] include Aws::Structure end |
#group_permission ⇒ String
The permissions that the group owner has to the resource. Valid values are ”rw” (read/write) or ”ro” (read-only).
4161 4162 4163 4164 4165 4166 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4161 class ResourceDownloadOwnerSetting < Struct.new( :group_owner, :group_permission) SENSITIVE = [] include Aws::Structure end |