Class: Aws::CleanRooms::Types::ProtectedQueryDistributeOutputConfigurationLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ProtectedQueryDistributeOutputConfigurationLocation
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
ProtectedQueryDistributeOutputConfigurationLocation is a union - when making an API calls you must set exactly one of the members.
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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#member ⇒ Types::ProtectedQueryMemberOutputConfiguration
Contains configuration details for the protected query member output.
-
#s3 ⇒ Types::ProtectedQueryS3OutputConfiguration
Contains the configuration to write the query results to S3.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#member ⇒ Types::ProtectedQueryMemberOutputConfiguration
Contains configuration details for the protected query member output.
8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8012 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 |
#s3 ⇒ Types::ProtectedQueryS3OutputConfiguration
Contains the configuration to write the query results to S3.
8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8012 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
8012 8013 8014 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8012 def unknown @unknown end |