Class: Aws::CleanRoomsML::Types::AudienceGenerationJobDataSource
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CleanRoomsML::Types::AudienceGenerationJobDataSource
 
- Defined in:
- gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb
Overview
Defines the Amazon S3 bucket where the seed audience for the generating audience is stored.
Constant Summary collapse
- SENSITIVE =
- [:sql_parameters] 
Instance Attribute Summary collapse
- 
  
    
      #data_source  ⇒ Types::S3ConfigMap 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Defines the Amazon S3 bucket where the seed audience for the generating audience is stored. 
- 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ARN of the IAM role that can read the Amazon S3 bucket where the seed audience is stored. 
- 
  
    
      #sql_compute_configuration  ⇒ Types::ComputeConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Provides configuration information for the instances that will perform the compute work. 
- 
  
    
      #sql_parameters  ⇒ Types::ProtectedQuerySQLParameters 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The protected SQL query parameters. 
Instance Attribute Details
#data_source ⇒ Types::S3ConfigMap
Defines the Amazon S3 bucket where the seed audience for the generating audience is stored. A valid data source is a JSON line file in the following format:
{"user_id": "111111"}
{"user_id": "222222"}
...
| 198 199 200 201 202 203 204 205 | # File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 198 class AudienceGenerationJobDataSource < Struct.new( :data_source, :role_arn, :sql_parameters, :sql_compute_configuration) SENSITIVE = [:sql_parameters] include Aws::Structure end | 
#role_arn ⇒ String
The ARN of the IAM role that can read the Amazon S3 bucket where the seed audience is stored.
| 198 199 200 201 202 203 204 205 | # File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 198 class AudienceGenerationJobDataSource < Struct.new( :data_source, :role_arn, :sql_parameters, :sql_compute_configuration) SENSITIVE = [:sql_parameters] include Aws::Structure end | 
#sql_compute_configuration ⇒ Types::ComputeConfiguration
Provides configuration information for the instances that will perform the compute work.
| 198 199 200 201 202 203 204 205 | # File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 198 class AudienceGenerationJobDataSource < Struct.new( :data_source, :role_arn, :sql_parameters, :sql_compute_configuration) SENSITIVE = [:sql_parameters] include Aws::Structure end | 
#sql_parameters ⇒ Types::ProtectedQuerySQLParameters
The protected SQL query parameters.
| 198 199 200 201 202 203 204 205 | # File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 198 class AudienceGenerationJobDataSource < Struct.new( :data_source, :role_arn, :sql_parameters, :sql_compute_configuration) SENSITIVE = [:sql_parameters] include Aws::Structure end |