Class: Aws::Redshift::Types::ServiceIntegrationsUnion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::ServiceIntegrationsUnion
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-redshift/types.rb
Overview
Note:
ServiceIntegrationsUnion is a union - when making an API calls you must set exactly one of the members.
Note:
ServiceIntegrationsUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ServiceIntegrationsUnion corresponding to the set member.
A list of service integrations.
Direct Known Subclasses
Defined Under Namespace
Classes: LakeFormation, S3AccessGrants, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lake_formation ⇒ Array<Types::LakeFormationScopeUnion>
A list of scopes set up for Lake Formation integration.
-
#s3_access_grants ⇒ Array<Types::S3AccessGrantsScopeUnion>
A list of scopes set up for S3 Access Grants integration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#lake_formation ⇒ Array<Types::LakeFormationScopeUnion>
A list of scopes set up for Lake Formation integration.
11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 |
# File 'lib/aws-sdk-redshift/types.rb', line 11381 class ServiceIntegrationsUnion < Struct.new( :lake_formation, :s3_access_grants, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class LakeFormation < ServiceIntegrationsUnion; end class S3AccessGrants < ServiceIntegrationsUnion; end class Unknown < ServiceIntegrationsUnion; end end |
#s3_access_grants ⇒ Array<Types::S3AccessGrantsScopeUnion>
A list of scopes set up for S3 Access Grants integration.
11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 |
# File 'lib/aws-sdk-redshift/types.rb', line 11381 class ServiceIntegrationsUnion < Struct.new( :lake_formation, :s3_access_grants, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class LakeFormation < ServiceIntegrationsUnion; end class S3AccessGrants < ServiceIntegrationsUnion; end class Unknown < ServiceIntegrationsUnion; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
11381 11382 11383 |
# File 'lib/aws-sdk-redshift/types.rb', line 11381 def unknown @unknown end |