/*
* 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 ec2-2016-11-15.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.EC2.Model
{
///
/// This is the response object from the DescribeAggregateIdFormat operation.
///
public partial class DescribeAggregateIdFormatResponse : AmazonWebServiceResponse
{
private List _statuses = new List();
private bool? _useLongIdsAggregated;
///
/// Gets and sets the property Statuses.
///
/// Information about each resource's ID format.
///
///
public List Statuses
{
get { return this._statuses; }
set { this._statuses = value; }
}
// Check to see if Statuses property is set
internal bool IsSetStatuses()
{
return this._statuses != null && this._statuses.Count > 0;
}
///
/// Gets and sets the property UseLongIdsAggregated.
///
/// Indicates whether all resource types in the Region are configured to use longer IDs.
/// This value is only true
if all users are configured to use longer IDs
/// for all resources types in the Region.
///
///
public bool UseLongIdsAggregated
{
get { return this._useLongIdsAggregated.GetValueOrDefault(); }
set { this._useLongIdsAggregated = value; }
}
// Check to see if UseLongIdsAggregated property is set
internal bool IsSetUseLongIdsAggregated()
{
return this._useLongIdsAggregated.HasValue;
}
}
}