Class: Aws::CleanRooms::Types::PrivacyBudgetTemplateParametersInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::PrivacyBudgetTemplateParametersInput
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
PrivacyBudgetTemplateParametersInput 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 use for the privacy budget template.
Direct Known Subclasses
Defined Under Namespace
Classes: DifferentialPrivacy, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#differential_privacy ⇒ Types::DifferentialPrivacyTemplateParametersInput
An object that specifies the epsilon and noise parameters.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#differential_privacy ⇒ Types::DifferentialPrivacyTemplateParametersInput
An object that specifies the epsilon and noise parameters.
6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6300 class PrivacyBudgetTemplateParametersInput < Struct.new( :differential_privacy, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DifferentialPrivacy < PrivacyBudgetTemplateParametersInput; end class Unknown < PrivacyBudgetTemplateParametersInput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6300 6301 6302 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6300 def unknown @unknown end |