Class: Aws::CleanRooms::Types::PrivacyBudgetTemplateUpdateParameters

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

Overview

Note:

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

The epsilon and noise parameters that you want to update in the privacy budget template.

Direct Known Subclasses

DifferentialPrivacy, Unknown

Defined Under Namespace

Classes: DifferentialPrivacy, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#differential_privacyTypes::DifferentialPrivacyTemplateUpdateParameters

An object that specifies the new values for the epsilon and noise parameters.



6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6405

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

  class DifferentialPrivacy < PrivacyBudgetTemplateUpdateParameters; end
  class Unknown < PrivacyBudgetTemplateUpdateParameters; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6405
6406
6407
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6405

def unknown
  @unknown
end