Class: Aws::Bedrock::Types::BatchDeleteEvaluationJobItem

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-bedrock/types.rb

Overview

An evaluation job for deletion, and it’s current status.

Constant Summary collapse

SENSITIVE =
[:job_identifier]

Instance Attribute Summary collapse

Instance Attribute Details

#job_identifierString

The Amazon Resource Name (ARN) of the evaluation job for deletion.

Returns:

  • (String)


88
89
90
91
92
93
# File 'lib/aws-sdk-bedrock/types.rb', line 88

class BatchDeleteEvaluationJobItem < Struct.new(
  :job_identifier,
  :job_status)
  SENSITIVE = [:job_identifier]
  include Aws::Structure
end

#job_statusString

The status of the evaluation job for deletion.

Returns:

  • (String)


88
89
90
91
92
93
# File 'lib/aws-sdk-bedrock/types.rb', line 88

class BatchDeleteEvaluationJobItem < Struct.new(
  :job_identifier,
  :job_status)
  SENSITIVE = [:job_identifier]
  include Aws::Structure
end