Class: Aws::CleanRooms::Types::PrivacyBudgetTemplateParametersOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::PrivacyBudgetTemplateParametersOutput
- 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
Defined Under Namespace
Classes: DifferentialPrivacy, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#differential_privacy ⇒ Types::DifferentialPrivacyTemplateParametersOutput
The epsilon and noise parameters.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#differential_privacy ⇒ Types::DifferentialPrivacyTemplateParametersOutput
The epsilon and noise parameters.
6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6965 class PrivacyBudgetTemplateParametersOutput < Struct.new( :differential_privacy, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DifferentialPrivacy < PrivacyBudgetTemplateParametersOutput; end class Unknown < PrivacyBudgetTemplateParametersOutput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6965 6966 6967 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6965 def unknown @unknown end |