Class: Aws::CleanRooms::Types::ProtectedQueryDistributeOutputConfiguration
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CleanRooms::Types::ProtectedQueryDistributeOutputConfiguration
 
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Specifies the configuration for distributing protected query results to multiple receivers, including S3 and collaboration members.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #locations  ⇒ Array<Types::ProtectedQueryDistributeOutputConfigurationLocation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of locations where you want to distribute the protected query results. 
Instance Attribute Details
#locations ⇒ Array<Types::ProtectedQueryDistributeOutputConfigurationLocation>
A list of locations where you want to distribute the protected query results. Each location must specify either an S3 destination or a collaboration member destination.
You can't specify more than one S3 location.
You can't specify the query runner's account as a member location.
You must include either an S3 or member output configuration for each location, but not both.
| 8263 8264 8265 8266 8267 | # File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8263 class ProtectedQueryDistributeOutputConfiguration < Struct.new( :locations) SENSITIVE = [] include Aws::Structure end |