Class: Aws::CleanRooms::Types::DifferentialPrivacyColumn
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::DifferentialPrivacyColumn
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Specifies the name of the column that contains the unique identifier of your users, whose privacy you want to protect.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect.
Instance Attribute Details
#name ⇒ String
The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect. If you want to turn on differential privacy for two or more tables in a collaboration, you must configure the same column as the user identifier column in both analysis rules.
3297 3298 3299 3300 3301 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 3297 class DifferentialPrivacyColumn < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |