Class: Aws::LakeFormation::Types::ServiceIntegrationUnion

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

Overview

Note:

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

Note:

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

A union structure representing different service integration types.

Direct Known Subclasses

Redshift, Unknown

Defined Under Namespace

Classes: Redshift, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#redshiftArray<Types::RedshiftScopeUnion>

Redshift service integration configuration.

Returns:



3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
# File 'lib/aws-sdk-lakeformation/types.rb', line 3501

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

  class Redshift < ServiceIntegrationUnion; end
  class Unknown < ServiceIntegrationUnion; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3501
3502
3503
# File 'lib/aws-sdk-lakeformation/types.rb', line 3501

def unknown
  @unknown
end