Class: Aws::Redshift::Types::LakeFormationScopeUnion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::LakeFormationScopeUnion
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-redshift/types.rb
Overview
Note:
LakeFormationScopeUnion is a union - when making an API calls you must set exactly one of the members.
Note:
LakeFormationScopeUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of LakeFormationScopeUnion corresponding to the set member.
A list of scopes set up for Lake Formation integration.
Direct Known Subclasses
Defined Under Namespace
Classes: LakeFormationQuery, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lake_formation_query ⇒ Types::LakeFormationQuery
The Lake Formation scope.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#lake_formation_query ⇒ Types::LakeFormationQuery
The Lake Formation scope.
7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 |
# File 'lib/aws-sdk-redshift/types.rb', line 7763 class LakeFormationScopeUnion < Struct.new( :lake_formation_query, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class LakeFormationQuery < LakeFormationScopeUnion; end class Unknown < LakeFormationScopeUnion; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7763 7764 7765 |
# File 'lib/aws-sdk-redshift/types.rb', line 7763 def unknown @unknown end |