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

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
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, S3AccessGrants, Unknown

Defined Under Namespace

Classes: LakeFormation, S3AccessGrants, 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:



11381
11382
11383
11384
11385
11386
11387
11388
11389
11390
11391
11392
# File 'lib/aws-sdk-redshift/types.rb', line 11381

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

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

#s3_access_grantsArray<Types::S3AccessGrantsScopeUnion>

A list of scopes set up for S3 Access Grants integration.



11381
11382
11383
11384
11385
11386
11387
11388
11389
11390
11391
11392
# File 'lib/aws-sdk-redshift/types.rb', line 11381

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



11381
11382
11383
# File 'lib/aws-sdk-redshift/types.rb', line 11381

def unknown
  @unknown
end