Class: Aws::Glue::Types::QuerySessionContext
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Glue::Types::QuerySessionContext
 
 
- Defined in:
 - gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
 
Overview
A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #additional_context  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An opaque string-string map passed by the query engine.
 - 
  
    
      #cluster_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An identifier string for the consumer cluster.
 - 
  
    
      #query_authorization_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A cryptographically generated query identifier generated by Glue or Lake Formation.
 - 
  
    
      #query_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier generated by the query engine for the query.
 - 
  
    
      #query_start_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A timestamp provided by the query engine for when the query started.
 
Instance Attribute Details
#additional_context ⇒ Hash<String,String>
An opaque string-string map passed by the query engine.
      22109 22110 22111 22112 22113 22114 22115 22116 22117  | 
    
      # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22109 class QuerySessionContext < Struct.new( :query_id, :query_start_time, :cluster_id, :query_authorization_id, :additional_context) SENSITIVE = [] include Aws::Structure end  | 
  
#cluster_id ⇒ String
An identifier string for the consumer cluster.
      22109 22110 22111 22112 22113 22114 22115 22116 22117  | 
    
      # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22109 class QuerySessionContext < Struct.new( :query_id, :query_start_time, :cluster_id, :query_authorization_id, :additional_context) SENSITIVE = [] include Aws::Structure end  | 
  
#query_authorization_id ⇒ String
A cryptographically generated query identifier generated by Glue or Lake Formation.
      22109 22110 22111 22112 22113 22114 22115 22116 22117  | 
    
      # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22109 class QuerySessionContext < Struct.new( :query_id, :query_start_time, :cluster_id, :query_authorization_id, :additional_context) SENSITIVE = [] include Aws::Structure end  | 
  
#query_id ⇒ String
A unique identifier generated by the query engine for the query.
      22109 22110 22111 22112 22113 22114 22115 22116 22117  | 
    
      # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22109 class QuerySessionContext < Struct.new( :query_id, :query_start_time, :cluster_id, :query_authorization_id, :additional_context) SENSITIVE = [] include Aws::Structure end  | 
  
#query_start_time ⇒ Time
A timestamp provided by the query engine for when the query started.
      22109 22110 22111 22112 22113 22114 22115 22116 22117  | 
    
      # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22109 class QuerySessionContext < Struct.new( :query_id, :query_start_time, :cluster_id, :query_authorization_id, :additional_context) SENSITIVE = [] include Aws::Structure end  |