Class: Aws::Redshift::Types::ServiceIntegrationsUnion
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Redshift::Types::ServiceIntegrationsUnion
 
 
- Defined in:
 - gems/aws-sdk-redshift/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.
      11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554  | 
    
      # File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 11543 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.
      11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554  | 
    
      # File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 11543 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
      11543 11544 11545  | 
    
      # File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 11543 def unknown @unknown end  |