Class: Aws::Redshift::Types::LakeFormationScopeUnion

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb

Overview

Note:

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

Note:

LakeFormationScopeUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of LakeFormationScopeUnion corresponding to the set member.

A list of scopes set up for Lake Formation integration.

Direct Known Subclasses

LakeFormationQuery, Unknown

Defined Under Namespace

Classes: LakeFormationQuery, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lake_formation_queryTypes::LakeFormationQuery

The Lake Formation scope.



7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 7510

class LakeFormationScopeUnion < Struct.new(
  :lake_formation_query,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class LakeFormationQuery < LakeFormationScopeUnion; end
  class Unknown < LakeFormationScopeUnion; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7510
7511
7512
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 7510

def unknown
  @unknown
end