Class: Aws::Redshift::Types::ServiceIntegrationsUnion

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

Overview

Note:

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

Note:

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

A list of service integrations.

Direct Known Subclasses

LakeFormation, Unknown

Defined Under Namespace

Classes: LakeFormation, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lake_formationArray<Types::LakeFormationScopeUnion>

A list of scopes set up for Lake Formation integration.

Returns:



11074
11075
11076
11077
11078
11079
11080
11081
11082
11083
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 11074

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

  class LakeFormation < ServiceIntegrationsUnion; end
  class Unknown < ServiceIntegrationsUnion; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



11074
11075
11076
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 11074

def unknown
  @unknown
end