Class: Aws::CleanRooms::Types::PrivacyBudgetTemplateParametersInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::PrivacyBudgetTemplateParametersInput
- Defined in:
- gems/aws-sdk-cleanrooms/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.
7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7265 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
7265 7266 7267 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7265 def unknown @unknown end |