Class: Aws::CleanRooms::Types::ProtectedQueryOutputConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ProtectedQueryOutputConfiguration
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
ProtectedQueryOutputConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
ProtectedQueryOutputConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedQueryOutputConfiguration corresponding to the set member.
Contains configuration details for protected query output.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#member ⇒ Types::ProtectedQueryMemberOutputConfiguration
Required configuration for a protected query with a
member
output type. -
#s3 ⇒ Types::ProtectedQueryS3OutputConfiguration
Required configuration for a protected query with an
s3
output type. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#member ⇒ Types::ProtectedQueryMemberOutputConfiguration
Required configuration for a protected query with a member
output
type.
6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6589 class ProtectedQueryOutputConfiguration < Struct.new( :s3, :member, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < ProtectedQueryOutputConfiguration; end class Member < ProtectedQueryOutputConfiguration; end class Unknown < ProtectedQueryOutputConfiguration; end end |
#s3 ⇒ Types::ProtectedQueryS3OutputConfiguration
Required configuration for a protected query with an s3
output
type.
6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6589 class ProtectedQueryOutputConfiguration < Struct.new( :s3, :member, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < ProtectedQueryOutputConfiguration; end class Member < ProtectedQueryOutputConfiguration; end class Unknown < ProtectedQueryOutputConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6589 6590 6591 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6589 def unknown @unknown end |