Class: Aws::AppTest::Types::Batch
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::Batch
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apptest/types.rb
Overview
Defines a batch.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#batch_job_name ⇒ String
The job name of the batch.
-
#batch_job_parameters ⇒ Hash<String,String>
The batch job parameters of the batch.
-
#export_data_set_names ⇒ Array<String>
The export data set names of the batch.
Instance Attribute Details
#batch_job_name ⇒ String
The job name of the batch.
43 44 45 46 47 48 49 |
# File 'lib/aws-sdk-apptest/types.rb', line 43 class Batch < Struct.new( :batch_job_name, :batch_job_parameters, :export_data_set_names) SENSITIVE = [] include Aws::Structure end |