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.
3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3075 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
3075 3076 3077 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3075 def unknown @unknown end |