Class: Aws::CleanRoomsML::Types::AudienceSize
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::AudienceSize
- 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
-
#type ⇒ String
Whether the audience size is defined in absolute terms or as a percentage.
-
#value ⇒ Integer
Specify an audience size value.
Instance Attribute Details
#type ⇒ String
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.
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 |
#value ⇒ Integer
Specify an audience size value.
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 |