/* * 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 { /// /// This is the response object from the GetBatchJobExecution operation. /// public partial class GetBatchJobExecutionResponse : AmazonWebServiceResponse { private string _applicationId; private BatchJobIdentifier _batchJobIdentifier; private DateTime? _endTime; private string _executionId; private string _jobId; private string _jobName; private BatchJobType _jobType; private string _jobUser; private string _returnCode; private DateTime? _startTime; private BatchJobExecutionStatus _status; private string _statusReason; /// /// Gets and sets the property ApplicationId. /// /// The identifier of the application. /// /// [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 the 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 for this batch job execution. /// /// [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 for this 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 this 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 job. /// /// 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 JobUser. /// /// The user for the job. /// /// public string JobUser { get { return this._jobUser; } set { this._jobUser = value; } } // Check to see if JobUser property is set internal bool IsSetJobUser() { return this._jobUser != 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 the 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 the 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; } /// /// Gets and sets the property StatusReason. /// /// The reason for the reported status. /// /// public string StatusReason { get { return this._statusReason; } set { this._statusReason = value; } } // Check to see if StatusReason property is set internal bool IsSetStatusReason() { return this._statusReason != null; } } }