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.

Defined Under Namespace

Classes: Distribute, IntermediateTable, Member, S3, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#distributeTypes::ProtectedQueryDistributeOutputConfiguration

Required configuration for a protected query with a distribute output type.



10005
10006
10007
10008
10009
10010
10011
10012
10013
10014
10015
10016
10017
10018
10019
10020
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10005

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

  class S3 < ProtectedQueryOutputConfiguration; end
  class Member < ProtectedQueryOutputConfiguration; end
  class Distribute < ProtectedQueryOutputConfiguration; end
  class IntermediateTable < ProtectedQueryOutputConfiguration; end
  class Unknown < ProtectedQueryOutputConfiguration; end
end

#intermediate_tableTypes::IntermediateTableOutputConfiguration

The intermediate table output configuration, present when the protected query was triggered by a populate operation.



10005
10006
10007
10008
10009
10010
10011
10012
10013
10014
10015
10016
10017
10018
10019
10020
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10005

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

  class S3 < ProtectedQueryOutputConfiguration; end
  class Member < ProtectedQueryOutputConfiguration; end
  class Distribute < ProtectedQueryOutputConfiguration; end
  class IntermediateTable < ProtectedQueryOutputConfiguration; end
  class Unknown < ProtectedQueryOutputConfiguration; end
end

#memberTypes::ProtectedQueryMemberOutputConfiguration

Required configuration for a protected query with a member output type.



10005
10006
10007
10008
10009
10010
10011
10012
10013
10014
10015
10016
10017
10018
10019
10020
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10005

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

  class S3 < ProtectedQueryOutputConfiguration; end
  class Member < ProtectedQueryOutputConfiguration; end
  class Distribute < ProtectedQueryOutputConfiguration; end
  class IntermediateTable < ProtectedQueryOutputConfiguration; end
  class Unknown < ProtectedQueryOutputConfiguration; end
end

#s3Types::ProtectedQueryS3OutputConfiguration

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



10005
10006
10007
10008
10009
10010
10011
10012
10013
10014
10015
10016
10017
10018
10019
10020
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10005

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

  class S3 < ProtectedQueryOutputConfiguration; end
  class Member < ProtectedQueryOutputConfiguration; end
  class Distribute < ProtectedQueryOutputConfiguration; end
  class IntermediateTable < ProtectedQueryOutputConfiguration; end
  class Unknown < ProtectedQueryOutputConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



10005
10006
10007
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10005

def unknown
  @unknown
end