Class: Aws::CleanRooms::Types::PrivacyBudgetTemplateParametersOutput

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

Overview

Note:

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

The epsilon and noise parameters that were used in the privacy budget template.

Defined Under Namespace

Classes: AccessBudget, DifferentialPrivacy, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#access_budgetTypes::AccessBudgetsPrivacyTemplateParametersOutput

Access budget configuration returned from the privacy budget template, containing the configured access budget settings.



7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7759

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

  class DifferentialPrivacy < PrivacyBudgetTemplateParametersOutput; end
  class AccessBudget < PrivacyBudgetTemplateParametersOutput; end
  class Unknown < PrivacyBudgetTemplateParametersOutput; end
end

#differential_privacyTypes::DifferentialPrivacyTemplateParametersOutput

The epsilon and noise parameters.



7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7759

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

  class DifferentialPrivacy < PrivacyBudgetTemplateParametersOutput; end
  class AccessBudget < PrivacyBudgetTemplateParametersOutput; end
  class Unknown < PrivacyBudgetTemplateParametersOutput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7759
7760
7761
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7759

def unknown
  @unknown
end