Class: Aws::Greengrass::Types::LocalVolumeResourceData
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Greengrass::Types::LocalVolumeResourceData
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-greengrass/types.rb
 
Overview
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.
      3942 3943 3944 3945 3946 3947 3948  | 
    
      # File 'lib/aws-sdk-greengrass/types.rb', line 3942 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.
      3942 3943 3944 3945 3946 3947 3948  | 
    
      # File 'lib/aws-sdk-greengrass/types.rb', line 3942 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”.
      3942 3943 3944 3945 3946 3947 3948  | 
    
      # File 'lib/aws-sdk-greengrass/types.rb', line 3942 class LocalVolumeResourceData < Struct.new( :destination_path, :group_owner_setting, :source_path) SENSITIVE = [] include Aws::Structure end  |