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.
6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6891 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
6891 6892 6893 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6891 def unknown @unknown end |