Class: Aws::CleanRooms::Types::ProtectedQueryOutputConfiguration

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

S3, Unknown

Defined Under Namespace

Classes: S3, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3Types::ProtectedQueryS3OutputConfiguration

Required configuration for a protected query with an S3 output type.



4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 4811

class ProtectedQueryOutputConfiguration < Struct.new(
  :s3,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3 < ProtectedQueryOutputConfiguration; end
  class Unknown < ProtectedQueryOutputConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4811
4812
4813
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 4811

def unknown
  @unknown
end