/*
* 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 ssm-2014-11-06.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.SimpleSystemsManagement.Model
{
///
/// This is the response object from the DeleteInventory operation.
///
public partial class DeleteInventoryResponse : AmazonWebServiceResponse
{
private string _deletionId;
private InventoryDeletionSummary _deletionSummary;
private string _typeName;
///
/// Gets and sets the property DeletionId.
///
/// Every DeleteInventory
operation is assigned a unique ID. This option
/// returns a unique ID. You can use this ID to query the status of a delete operation.
/// This option is useful for ensuring that a delete operation has completed before you
/// begin other operations.
///
///
public string DeletionId
{
get { return this._deletionId; }
set { this._deletionId = value; }
}
// Check to see if DeletionId property is set
internal bool IsSetDeletionId()
{
return this._deletionId != null;
}
///
/// Gets and sets the property DeletionSummary.
///
/// A summary of the delete operation. For more information about this summary, see Deleting
/// custom inventory in the Amazon Web Services Systems Manager User Guide.
///
///
public InventoryDeletionSummary DeletionSummary
{
get { return this._deletionSummary; }
set { this._deletionSummary = value; }
}
// Check to see if DeletionSummary property is set
internal bool IsSetDeletionSummary()
{
return this._deletionSummary != null;
}
///
/// Gets and sets the property TypeName.
///
/// The name of the inventory data type specified in the request.
///
///
[AWSProperty(Min=1, Max=100)]
public string TypeName
{
get { return this._typeName; }
set { this._typeName = value; }
}
// Check to see if TypeName property is set
internal bool IsSetTypeName()
{
return this._typeName != null;
}
}
}