Class: Aws::CleanRooms::Types::DifferentialPrivacyTemplateUpdateParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::DifferentialPrivacyTemplateUpdateParameters
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
The epsilon and noise parameter values that you want to update in the differential privacy template.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#epsilon ⇒ Integer
The updated epsilon value that you want to use.
-
#users_noise_per_query ⇒ Integer
The updated value of noise added per query.
Instance Attribute Details
#epsilon ⇒ Integer
The updated epsilon value that you want to use.
3563 3564 3565 3566 3567 3568 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 3563 class DifferentialPrivacyTemplateUpdateParameters < Struct.new( :epsilon, :users_noise_per_query) SENSITIVE = [] include Aws::Structure end |
#users_noise_per_query ⇒ Integer
The updated value of noise added per query. It 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.
3563 3564 3565 3566 3567 3568 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 3563 class DifferentialPrivacyTemplateUpdateParameters < Struct.new( :epsilon, :users_noise_per_query) SENSITIVE = [] include Aws::Structure end |