Class: Aws::Redshift::Types::RedshiftScopeUnion

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

Overview

Note:

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

Note:

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

A union structure that defines the scope of Amazon Redshift service integrations. Contains configuration for different integration types such as Amazon Redshift.

Direct Known Subclasses

Connect, Unknown

Defined Under Namespace

Classes: Connect, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#connectTypes::Connect

The Amazon Redshift connect integration scope configuration. Defines authorization settings for Amazon Redshift connect service integration.

Returns:



10174
10175
10176
10177
10178
10179
10180
10181
10182
10183
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10174

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

  class Connect < RedshiftScopeUnion; end
  class Unknown < RedshiftScopeUnion; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



10174
10175
10176
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10174

def unknown
  @unknown
end