Class: Aws::CleanRooms::Types::PrivacyImpact

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-cleanrooms/types.rb

Overview

Note:

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

Provides an estimate of the number of aggregation functions that the member who can query can run given the epsilon and noise parameters.

Direct Known Subclasses

DifferentialPrivacy, Unknown

Defined Under Namespace

Classes: DifferentialPrivacy, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#differential_privacyTypes::DifferentialPrivacyPrivacyImpact

An object that lists the number and type of aggregation functions you can perform.



6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6428

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

  class DifferentialPrivacy < PrivacyImpact; end
  class Unknown < PrivacyImpact; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6428
6429
6430
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6428

def unknown
  @unknown
end