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.

Direct Known Subclasses

DifferentialPrivacy, Unknown

Defined Under Namespace

Classes: DifferentialPrivacy, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#differential_privacyTypes::DifferentialPrivacyTemplateParametersOutput

The epsilon and noise parameters.



5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 5973

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5973
5974
5975
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 5973

def unknown
  @unknown
end