/*
* 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 fsx-2018-03-01.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.FSx.Model
{
///
/// This is the response object from the CancelDataRepositoryTask operation.
///
public partial class CancelDataRepositoryTaskResponse : AmazonWebServiceResponse
{
private DataRepositoryTaskLifecycle _lifecycle;
private string _taskId;
///
/// Gets and sets the property Lifecycle.
///
/// The lifecycle status of the data repository task, as follows:
///
/// -
///
///
PENDING
- Amazon FSx has not started the task.
///
/// -
///
///
EXECUTING
- Amazon FSx is processing the task.
///
/// -
///
///
FAILED
- Amazon FSx was not able to complete the task. For example,
/// there may be files the task failed to process. The DataRepositoryTaskFailureDetails
/// property provides more information about task failures.
///
/// -
///
///
SUCCEEDED
- FSx completed the task successfully.
///
/// -
///
///
CANCELED
- Amazon FSx canceled the task and it did not complete.
///
/// -
///
///
CANCELING
- FSx is in process of canceling the task.
///
///
///
public DataRepositoryTaskLifecycle Lifecycle
{
get { return this._lifecycle; }
set { this._lifecycle = value; }
}
// Check to see if Lifecycle property is set
internal bool IsSetLifecycle()
{
return this._lifecycle != null;
}
///
/// Gets and sets the property TaskId.
///
/// The ID of the task being canceled.
///
///
[AWSProperty(Min=12, Max=128)]
public string TaskId
{
get { return this._taskId; }
set { this._taskId = value; }
}
// Check to see if TaskId property is set
internal bool IsSetTaskId()
{
return this._taskId != null;
}
}
}