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.
22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 |
# File 'lib/aws-sdk-glue/types.rb', line 22982 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
22982 22983 22984 |
# File 'lib/aws-sdk-glue/types.rb', line 22982 def unknown @unknown end |