Class: Aws::LakeFormation::Types::RedshiftScopeUnion
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::RedshiftScopeUnion
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-lakeformation/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 representing different Redshift integration scopes.
Direct Known Subclasses
Defined Under Namespace
Classes: RedshiftConnect, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#redshift_connect ⇒ Types::RedshiftConnect
Configuration for Redshift Connect integration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#redshift_connect ⇒ Types::RedshiftConnect
Configuration for Redshift Connect integration.
3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3161 class RedshiftScopeUnion < Struct.new( :redshift_connect, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RedshiftConnect < RedshiftScopeUnion; end class Unknown < RedshiftScopeUnion; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3161 3162 3163 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3161 def unknown @unknown end |