Class: Aws::CleanRooms::Types::ProtectedJobParameters

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#analysis_template_arnString

The ARN of the analysis template.

Returns:

  • (String)


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

#parametersHash<String,String>

Runtime configuration values passed to the PySpark analysis script. Parameter names and types must match those defined in the analysis template.

Returns:

  • (Hash<String,String>)


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