Class: Aws::Redshift::Types::RedshiftScopeUnion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::RedshiftScopeUnion
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/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 that defines the scope of Amazon Redshift service integrations. Contains configuration for different integration types such as Amazon Redshift.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connect ⇒ Types::Connect
The Amazon Redshift connect integration scope configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#connect ⇒ Types::Connect
The Amazon Redshift connect integration scope configuration. Defines authorization settings for Amazon Redshift connect service integration.
10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10174 class RedshiftScopeUnion < Struct.new( :connect, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Connect < RedshiftScopeUnion; end class Unknown < RedshiftScopeUnion; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
10174 10175 10176 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10174 def unknown @unknown end |