Class: Aws::LakeFormation::Types::ServiceIntegrationUnion
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::ServiceIntegrationUnion
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-lakeformation/types.rb
Overview
Note:
ServiceIntegrationUnion is a union - when making an API calls you must set exactly one of the members.
Note:
ServiceIntegrationUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ServiceIntegrationUnion corresponding to the set member.
A union structure representing different service integration types.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#redshift ⇒ Array<Types::RedshiftScopeUnion>
Redshift service integration configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#redshift ⇒ Array<Types::RedshiftScopeUnion>
Redshift service integration configuration.
3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3501 class ServiceIntegrationUnion < Struct.new( :redshift, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Redshift < ServiceIntegrationUnion; end class Unknown < ServiceIntegrationUnion; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3501 3502 3503 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3501 def unknown @unknown end |