Class: Aws::CleanRooms::Types::ProtectedJobParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ProtectedJobParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
The parameters for the protected job.
Constant Summary collapse
- SENSITIVE =
[:parameters]
Instance Attribute Summary collapse
-
#analysis_template_arn ⇒ String
The ARN of the analysis template.
-
#parameters ⇒ Hash<String,String>
Runtime configuration values passed to the PySpark analysis script.
Instance Attribute Details
#analysis_template_arn ⇒ String
The ARN of the analysis template.
8141 8142 8143 8144 8145 8146 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 8141 class ProtectedJobParameters < Struct.new( :analysis_template_arn, :parameters) SENSITIVE = [:parameters] include Aws::Structure end |
#parameters ⇒ Hash<String,String>
Runtime configuration values passed to the PySpark analysis script. Parameter names and types must match those defined in the analysis template.
8141 8142 8143 8144 8145 8146 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 8141 class ProtectedJobParameters < Struct.new( :analysis_template_arn, :parameters) SENSITIVE = [:parameters] include Aws::Structure end |