Class: Aws::Greengrass::Types::LocalVolumeResourceData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::LocalVolumeResourceData
- Defined in:
- gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb
Overview
Note:
When making an API call, you may pass LocalVolumeResourceData data as a hash:
{
destination_path: "__string",
group_owner_setting: {
auto_add_group_owner: false,
group_owner: "__string",
},
source_path: "__string",
}
Attributes that define a local volume resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_path ⇒ String
The absolute local path of the resource inside the Lambda environment.
-
#group_owner_setting ⇒ Types::GroupOwnerSetting
Allows you to configure additional group privileges for the Lambda process.
-
#source_path ⇒ String
The local absolute path of the volume resource on the host.
Instance Attribute Details
#destination_path ⇒ String
The absolute local path of the resource inside the Lambda environment.
5142 5143 5144 5145 5146 5147 5148 |
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 5142 class LocalVolumeResourceData < Struct.new( :destination_path, :group_owner_setting, :source_path) SENSITIVE = [] include Aws::Structure end |
#group_owner_setting ⇒ Types::GroupOwnerSetting
Allows you to configure additional group privileges for the Lambda process. This field is optional.
5142 5143 5144 5145 5146 5147 5148 |
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 5142 class LocalVolumeResourceData < Struct.new( :destination_path, :group_owner_setting, :source_path) SENSITIVE = [] include Aws::Structure end |
#source_path ⇒ String
The local absolute path of the volume resource on the host. The source path for a volume resource type cannot start with ''/sys''.
5142 5143 5144 5145 5146 5147 5148 |
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 5142 class LocalVolumeResourceData < Struct.new( :destination_path, :group_owner_setting, :source_path) SENSITIVE = [] include Aws::Structure end |