Class: Aws::CleanRoomsML::Types::MembershipInferenceAttackScore

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#attack_versionString

The version of the membership inference attack, which consists of the attack type and its version number, used to generate this privacy score.

Returns:

  • (String)


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

#scoreFloat

The numerical score representing the vulnerability to membership inference attacks.

Returns:

  • (Float)


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