Class: Aws::CleanRooms::Types::ProtectedQueryDistributeOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ProtectedQueryDistributeOutput
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Contains the output information for a protected query with a distribute output configuration.
This output type allows query results to be distributed to multiple receivers, including S3 and collaboration members. It is only available for queries using the Spark analytics engine.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#member_list ⇒ Array<Types::ProtectedQuerySingleMemberOutput>
Contains the output results for each member location specified in the distribute output configuration.
-
#s3 ⇒ Types::ProtectedQueryS3Output
Contains output information for protected queries with an S3 output type.
Instance Attribute Details
#member_list ⇒ Array<Types::ProtectedQuerySingleMemberOutput>
Contains the output results for each member location specified in the distribute output configuration. Each entry provides details about the result distribution to a specific collaboration member.
7985 7986 7987 7988 7989 7990 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7985 class ProtectedQueryDistributeOutput < Struct.new( :s3, :member_list) SENSITIVE = [] include Aws::Structure end |
#s3 ⇒ Types::ProtectedQueryS3Output
Contains output information for protected queries with an S3 output type.
7985 7986 7987 7988 7989 7990 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7985 class ProtectedQueryDistributeOutput < Struct.new( :s3, :member_list) SENSITIVE = [] include Aws::Structure end |