Class: Aws::CleanRooms::Types::ProtectedQueryOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ProtectedQueryOutput
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
ProtectedQueryOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedQueryOutput corresponding to the set member.
Contains details about the protected query output.
Direct Known Subclasses
Defined Under Namespace
Classes: MemberList, S3, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#member_list ⇒ Array<Types::ProtectedQuerySingleMemberOutput>
The list of member Amazon Web Services account(s) that received the results of the query.
-
#s3 ⇒ Types::ProtectedQueryS3Output
If present, the output for a protected query with an ‘S3` output type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#member_list ⇒ Array<Types::ProtectedQuerySingleMemberOutput>
The list of member Amazon Web Services account(s) that received the results of the query.
6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6204 class ProtectedQueryOutput < Struct.new( :s3, :member_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < ProtectedQueryOutput; end class MemberList < ProtectedQueryOutput; end class Unknown < ProtectedQueryOutput; end end |
#s3 ⇒ Types::ProtectedQueryS3Output
If present, the output for a protected query with an ‘S3` output type.
6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6204 class ProtectedQueryOutput < Struct.new( :s3, :member_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < ProtectedQueryOutput; end class MemberList < ProtectedQueryOutput; end class Unknown < ProtectedQueryOutput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6204 6205 6206 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6204 def unknown @unknown end |