Class: Aws::CleanRoomsML::Types::AudienceSize

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cleanroomsml/types.rb

Overview

The size of the generated audience. Must match one of the sizes in the configured audience model.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

Whether the audience size is defined in absolute terms or as a percentage. You can use the ‘ABSOLUTE` AudienceSize to configure out audience sizes using the count of identifiers in the output. You can use the `Percentage` AudienceSize to configure sizes in the range 1-100 percent.

Returns:

  • (String)


280
281
282
283
284
285
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 280

class AudienceSize < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueInteger

Specify an audience size value.

Returns:

  • (Integer)


280
281
282
283
284
285
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 280

class AudienceSize < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end