Class: Aws::CleanRoomsML::Types::MembershipInferenceAttackScore
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::MembershipInferenceAttackScore
- Defined in:
- gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb
Overview
A score that measures the vulnerability of synthetic data to membership inference attacks and provides both the numerical score and the version of the attack methodology used for evaluation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attack_version ⇒ String
The version of the membership inference attack, which consists of the attack type and its version number, used to generate this privacy score.
-
#score ⇒ Float
The numerical score representing the vulnerability to membership inference attacks.
Instance Attribute Details
#attack_version ⇒ String
The version of the membership inference attack, which consists of the attack type and its version number, used to generate this privacy score.
4746 4747 4748 4749 4750 4751 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 4746 class MembershipInferenceAttackScore < Struct.new( :attack_version, :score) SENSITIVE = [] include Aws::Structure end |
#score ⇒ Float
The numerical score representing the vulnerability to membership inference attacks.
4746 4747 4748 4749 4750 4751 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 4746 class MembershipInferenceAttackScore < Struct.new( :attack_version, :score) SENSITIVE = [] include Aws::Structure end |