Class: Aws::Glue::Types::UserDefinedFunctionInput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::UserDefinedFunctionInput
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A structure used to create or update a user-defined function.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #class_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Java class that contains the function code. 
- 
  
    
      #function_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the function. 
- 
  
    
      #owner_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The owner of the function. 
- 
  
    
      #owner_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The owner type. 
- 
  
    
      #resource_uris  ⇒ Array<Types::ResourceUri> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The resource URIs for the function. 
Instance Attribute Details
#class_name ⇒ String
The Java class that contains the function code.
| 27856 27857 27858 27859 27860 27861 27862 27863 27864 | # File 'lib/aws-sdk-glue/types.rb', line 27856 class UserDefinedFunctionInput < Struct.new( :function_name, :class_name, :owner_name, :owner_type, :resource_uris) SENSITIVE = [] include Aws::Structure end | 
#function_name ⇒ String
The name of the function.
| 27856 27857 27858 27859 27860 27861 27862 27863 27864 | # File 'lib/aws-sdk-glue/types.rb', line 27856 class UserDefinedFunctionInput < Struct.new( :function_name, :class_name, :owner_name, :owner_type, :resource_uris) SENSITIVE = [] include Aws::Structure end | 
#owner_name ⇒ String
The owner of the function.
| 27856 27857 27858 27859 27860 27861 27862 27863 27864 | # File 'lib/aws-sdk-glue/types.rb', line 27856 class UserDefinedFunctionInput < Struct.new( :function_name, :class_name, :owner_name, :owner_type, :resource_uris) SENSITIVE = [] include Aws::Structure end | 
#owner_type ⇒ String
The owner type.
| 27856 27857 27858 27859 27860 27861 27862 27863 27864 | # File 'lib/aws-sdk-glue/types.rb', line 27856 class UserDefinedFunctionInput < Struct.new( :function_name, :class_name, :owner_name, :owner_type, :resource_uris) SENSITIVE = [] include Aws::Structure end | 
#resource_uris ⇒ Array<Types::ResourceUri>
The resource URIs for the function.
| 27856 27857 27858 27859 27860 27861 27862 27863 27864 | # File 'lib/aws-sdk-glue/types.rb', line 27856 class UserDefinedFunctionInput < Struct.new( :function_name, :class_name, :owner_name, :owner_type, :resource_uris) SENSITIVE = [] include Aws::Structure end |