Class: Aws::CleanRooms::Types::PreviewPrivacyImpactParametersInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::PreviewPrivacyImpactParametersInput
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
PreviewPrivacyImpactParametersInput is a union - when making an API calls you must set exactly one of the members.
Specifies the updated epsilon and noise parameters to preview. The preview allows you to see how the maximum number of each type of aggregation function would change with the new parameters.
Direct Known Subclasses
Defined Under Namespace
Classes: DifferentialPrivacy, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#differential_privacy ⇒ Types::DifferentialPrivacyPreviewParametersInput
An array that specifies the epsilon and noise parameters.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#differential_privacy ⇒ Types::DifferentialPrivacyPreviewParametersInput
An array that specifies the epsilon and noise parameters.
6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6081 class PreviewPrivacyImpactParametersInput < Struct.new( :differential_privacy, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DifferentialPrivacy < PreviewPrivacyImpactParametersInput; end class Unknown < PreviewPrivacyImpactParametersInput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6081 6082 6083 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6081 def unknown @unknown end |