Class: Aws::CleanRooms::Types::PrivacyBudget

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

Overview

Note:

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

The epsilon parameter value and number of each aggregation function that you can perform.

Direct Known Subclasses

DifferentialPrivacy, Unknown

Defined Under Namespace

Classes: DifferentialPrivacy, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#differential_privacyTypes::DifferentialPrivacyPrivacyBudget

An object that specifies the epsilon parameter and the utility in terms of total aggregations, as well as the remaining aggregations available.



6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6776

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

  class DifferentialPrivacy < PrivacyBudget; end
  class Unknown < PrivacyBudget; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6776
6777
6778
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6776

def unknown
  @unknown
end