Class: Aws::CleanRoomsML::Types::AudienceSizeConfig

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

Overview

Configure the list of audience output sizes that can be created. A request to StartAudienceGenerationJob that uses this configured audience model must have an audienceSize selected from this list. 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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#audience_size_binsArray<Integer>

An array of the different audience output sizes.

Returns:

  • (Array<Integer>)


295
296
297
298
299
300
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 295

class AudienceSizeConfig < Struct.new(
  :audience_size_bins,
  :audience_size_type)
  SENSITIVE = []
  include Aws::Structure
end

#audience_size_typeString

Whether the audience output sizes are defined as an absolute number or a percentage.

Returns:

  • (String)


295
296
297
298
299
300
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 295

class AudienceSizeConfig < Struct.new(
  :audience_size_bins,
  :audience_size_type)
  SENSITIVE = []
  include Aws::Structure
end