Class: Aws::CleanRooms::Types::DifferentialPrivacyTemplateParametersOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::DifferentialPrivacyTemplateParametersOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
The epsilon and noise parameter values that were used for the differential privacy template.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#epsilon ⇒ Integer
The epsilon value that you specified.
-
#users_noise_per_query ⇒ Integer
Noise added per query is measured in terms of the number of users whose contributions you want to obscure.
Instance Attribute Details
#epsilon ⇒ Integer
The epsilon value that you specified.
3513 3514 3515 3516 3517 3518 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 3513 class DifferentialPrivacyTemplateParametersOutput < Struct.new( :epsilon, :users_noise_per_query) SENSITIVE = [] include Aws::Structure end |
#users_noise_per_query ⇒ Integer
Noise added per query is measured in terms of the number of users whose contributions you want to obscure. This value governs the rate at which the privacy budget is depleted.
3513 3514 3515 3516 3517 3518 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 3513 class DifferentialPrivacyTemplateParametersOutput < Struct.new( :epsilon, :users_noise_per_query) SENSITIVE = [] include Aws::Structure end |