Class: Aws::Glue::Types::TableOptimizerVpcConfiguration
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::TableOptimizerVpcConfiguration
 
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
TableOptimizerVpcConfiguration is a union - when making an API calls you must set exactly one of the members.
TableOptimizerVpcConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TableOptimizerVpcConfiguration corresponding to the set member.
An object that describes the VPC configuration for a table optimizer.
This configuration is necessary to perform optimization on tables that are in a customer VPC.
Direct Known Subclasses
Defined Under Namespace
Classes: GlueConnectionName, Unknown
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #glue_connection_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the Glue connection used for the VPC for the table optimizer. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#glue_connection_name ⇒ String
The name of the Glue connection used for the VPC for the table optimizer.
| 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 | # File 'lib/aws-sdk-glue/types.rb', line 25385 class TableOptimizerVpcConfiguration < Struct.new( :glue_connection_name, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class GlueConnectionName < TableOptimizerVpcConfiguration; end class Unknown < TableOptimizerVpcConfiguration; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 25385 25386 25387 | # File 'lib/aws-sdk-glue/types.rb', line 25385 def unknown @unknown end |