Class: Aws::Glue::Types::TableOptimizerVpcConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::TableOptimizerVpcConfiguration
- Defined in:
- gems/aws-sdk-glue/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.
25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 25354 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
25354 25355 25356 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 25354 def unknown @unknown end |