Class: Aws::CleanRooms::Types::ProtectedQueryDistributeOutputConfigurationLocation

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb

Overview

Note:

ProtectedQueryDistributeOutputConfigurationLocation is a union - when making an API calls you must set exactly one of the members.

Note:

ProtectedQueryDistributeOutputConfigurationLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedQueryDistributeOutputConfigurationLocation corresponding to the set member.

Specifies where you'll distribute the results of your protected query. You must configure either an S3 destination or a collaboration member destination.

Direct Known Subclasses

Member, S3, Unknown

Defined Under Namespace

Classes: Member, S3, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#memberTypes::ProtectedQueryMemberOutputConfiguration

Contains configuration details for the protected query member output.



7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7591

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

  class S3 < ProtectedQueryDistributeOutputConfigurationLocation; end
  class Member < ProtectedQueryDistributeOutputConfigurationLocation; end
  class Unknown < ProtectedQueryDistributeOutputConfigurationLocation; end
end

#s3Types::ProtectedQueryS3OutputConfiguration

Contains the configuration to write the query results to S3.



7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7591

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

  class S3 < ProtectedQueryDistributeOutputConfigurationLocation; end
  class Member < ProtectedQueryDistributeOutputConfigurationLocation; end
  class Unknown < ProtectedQueryDistributeOutputConfigurationLocation; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7591
7592
7593
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7591

def unknown
  @unknown
end