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

AccessBudget, DifferentialPrivacy, Unknown

Defined Under Namespace

Classes: AccessBudget, DifferentialPrivacy, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#access_budgetTypes::AccessBudgetsPrivacyTemplateUpdateParameters

The new access budget configuration that completely replaces the existing access budget settings in the privacy budget template.



7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7751

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

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

#differential_privacyTypes::DifferentialPrivacyTemplateUpdateParameters

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



7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7751

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7751
7752
7753
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7751

def unknown
  @unknown
end