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.
6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6272 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
6272 6273 6274 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6272 def unknown @unknown end |