/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the m2-2021-04-28.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.MainframeModernization.Model
{
///
/// A subset of the possible batch job attributes. Used in the batch job list.
///
public partial class BatchJobExecutionSummary
{
private string _applicationId;
private BatchJobIdentifier _batchJobIdentifier;
private DateTime? _endTime;
private string _executionId;
private string _jobId;
private string _jobName;
private BatchJobType _jobType;
private string _returnCode;
private DateTime? _startTime;
private BatchJobExecutionStatus _status;
///
/// Gets and sets the property ApplicationId.
///
/// The unique identifier of the application that hosts this batch job.
///
///
[AWSProperty(Required=true)]
public string ApplicationId
{
get { return this._applicationId; }
set { this._applicationId = value; }
}
// Check to see if ApplicationId property is set
internal bool IsSetApplicationId()
{
return this._applicationId != null;
}
///
/// Gets and sets the property BatchJobIdentifier.
///
/// The unique identifier of this batch job.
///
///
public BatchJobIdentifier BatchJobIdentifier
{
get { return this._batchJobIdentifier; }
set { this._batchJobIdentifier = value; }
}
// Check to see if BatchJobIdentifier property is set
internal bool IsSetBatchJobIdentifier()
{
return this._batchJobIdentifier != null;
}
///
/// Gets and sets the property EndTime.
///
/// The timestamp when this batch job execution ended.
///
///
public DateTime EndTime
{
get { return this._endTime.GetValueOrDefault(); }
set { this._endTime = value; }
}
// Check to see if EndTime property is set
internal bool IsSetEndTime()
{
return this._endTime.HasValue;
}
///
/// Gets and sets the property ExecutionId.
///
/// The unique identifier of this execution of the batch job.
///
///
[AWSProperty(Required=true)]
public string ExecutionId
{
get { return this._executionId; }
set { this._executionId = value; }
}
// Check to see if ExecutionId property is set
internal bool IsSetExecutionId()
{
return this._executionId != null;
}
///
/// Gets and sets the property JobId.
///
/// The unique identifier of a particular batch job.
///
///
public string JobId
{
get { return this._jobId; }
set { this._jobId = value; }
}
// Check to see if JobId property is set
internal bool IsSetJobId()
{
return this._jobId != null;
}
///
/// Gets and sets the property JobName.
///
/// The name of a particular batch job.
///
///
public string JobName
{
get { return this._jobName; }
set { this._jobName = value; }
}
// Check to see if JobName property is set
internal bool IsSetJobName()
{
return this._jobName != null;
}
///
/// Gets and sets the property JobType.
///
/// The type of a particular batch job execution.
///
///
public BatchJobType JobType
{
get { return this._jobType; }
set { this._jobType = value; }
}
// Check to see if JobType property is set
internal bool IsSetJobType()
{
return this._jobType != null;
}
///
/// Gets and sets the property ReturnCode.
///
/// The batch job return code from either the Blu Age or Micro Focus runtime engines.
/// For more information, see Batch
/// return codes in the IBM WebSphere Application Server documentation.
///
///
public string ReturnCode
{
get { return this._returnCode; }
set { this._returnCode = value; }
}
// Check to see if ReturnCode property is set
internal bool IsSetReturnCode()
{
return this._returnCode != null;
}
///
/// Gets and sets the property StartTime.
///
/// The timestamp when a particular batch job execution started.
///
///
[AWSProperty(Required=true)]
public DateTime StartTime
{
get { return this._startTime.GetValueOrDefault(); }
set { this._startTime = value; }
}
// Check to see if StartTime property is set
internal bool IsSetStartTime()
{
return this._startTime.HasValue;
}
///
/// Gets and sets the property Status.
///
/// The status of a particular batch job execution.
///
///
[AWSProperty(Required=true)]
public BatchJobExecutionStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
}
}