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.
7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 |
# File 'lib/aws-sdk-redshift/types.rb', line 7509 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
7509 7510 7511 |
# File 'lib/aws-sdk-redshift/types.rb', line 7509 def unknown @unknown end |