Class: Aws::Glue::Types::ViewRepresentationInput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::ViewRepresentationInput
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A structure containing details of a representation to update or create a Lake Formation view.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #dialect  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A parameter that specifies the engine type of a specific representation. 
- 
  
    
      #dialect_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A parameter that specifies the version of the engine of a specific representation. 
- 
  
    
      #validation_connection  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the connection to be used to validate the specific representation of the view. 
- 
  
    
      #view_expanded_text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A string that represents the SQL query that describes the view with expanded resource ARNs. 
- 
  
    
      #view_original_text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A string that represents the original SQL query that describes the view. 
Instance Attribute Details
#dialect ⇒ String
A parameter that specifies the engine type of a specific representation.
| 28045 28046 28047 28048 28049 28050 28051 28052 28053 | # File 'lib/aws-sdk-glue/types.rb', line 28045 class ViewRepresentationInput < Struct.new( :dialect, :dialect_version, :view_original_text, :validation_connection, :view_expanded_text) SENSITIVE = [] include Aws::Structure end | 
#dialect_version ⇒ String
A parameter that specifies the version of the engine of a specific representation.
| 28045 28046 28047 28048 28049 28050 28051 28052 28053 | # File 'lib/aws-sdk-glue/types.rb', line 28045 class ViewRepresentationInput < Struct.new( :dialect, :dialect_version, :view_original_text, :validation_connection, :view_expanded_text) SENSITIVE = [] include Aws::Structure end | 
#validation_connection ⇒ String
The name of the connection to be used to validate the specific representation of the view.
| 28045 28046 28047 28048 28049 28050 28051 28052 28053 | # File 'lib/aws-sdk-glue/types.rb', line 28045 class ViewRepresentationInput < Struct.new( :dialect, :dialect_version, :view_original_text, :validation_connection, :view_expanded_text) SENSITIVE = [] include Aws::Structure end | 
#view_expanded_text ⇒ String
A string that represents the SQL query that describes the view with expanded resource ARNs
| 28045 28046 28047 28048 28049 28050 28051 28052 28053 | # File 'lib/aws-sdk-glue/types.rb', line 28045 class ViewRepresentationInput < Struct.new( :dialect, :dialect_version, :view_original_text, :validation_connection, :view_expanded_text) SENSITIVE = [] include Aws::Structure end | 
#view_original_text ⇒ String
A string that represents the original SQL query that describes the view.
| 28045 28046 28047 28048 28049 28050 28051 28052 28053 | # File 'lib/aws-sdk-glue/types.rb', line 28045 class ViewRepresentationInput < Struct.new( :dialect, :dialect_version, :view_original_text, :validation_connection, :view_expanded_text) SENSITIVE = [] include Aws::Structure end |