Class: Aws::Glue::Types::TableOptimizerVpcConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

TableOptimizerVpcConfiguration is a union - when making an API calls you must set exactly one of the members.

Note:

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

GlueConnectionName, Unknown

Defined Under Namespace

Classes: GlueConnectionName, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#glue_connection_nameString

The name of the Glue connection used for the VPC for the table optimizer.

Returns:

  • (String)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



22982
22983
22984
# File 'lib/aws-sdk-glue/types.rb', line 22982

def unknown
  @unknown
end