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:



10147
10148
10149
10150
10151
10152
10153
10154
10155
10156
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10147

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



10147
10148
10149
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10147

def unknown
  @unknown
end