/*
* 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 route53resolver-2018-04-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.Route53Resolver.Model
{
///
/// This is the response object from the ListResolverQueryLogConfigs operation.
///
public partial class ListResolverQueryLogConfigsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List _resolverQueryLogConfigs = new List();
private int? _totalCount;
private int? _totalFilteredCount;
///
/// Gets and sets the property NextToken.
///
/// If there are more than MaxResults
query logging configurations, you can
/// submit another ListResolverQueryLogConfigs
request to get the next group
/// of configurations. In the next request, specify the value of NextToken
/// from the previous response.
///
///
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
///
/// Gets and sets the property ResolverQueryLogConfigs.
///
/// A list that contains one ResolverQueryLogConfig
element for each query
/// logging configuration that matches the values that you specified for Filter
.
///
///
public List ResolverQueryLogConfigs
{
get { return this._resolverQueryLogConfigs; }
set { this._resolverQueryLogConfigs = value; }
}
// Check to see if ResolverQueryLogConfigs property is set
internal bool IsSetResolverQueryLogConfigs()
{
return this._resolverQueryLogConfigs != null && this._resolverQueryLogConfigs.Count > 0;
}
///
/// Gets and sets the property TotalCount.
///
/// The total number of query logging configurations that were created by the current
/// account in the specified Region. This count can differ from the number of query logging
/// configurations that are returned in a ListResolverQueryLogConfigs
response,
/// depending on the values that you specify in the request.
///
///
public int TotalCount
{
get { return this._totalCount.GetValueOrDefault(); }
set { this._totalCount = value; }
}
// Check to see if TotalCount property is set
internal bool IsSetTotalCount()
{
return this._totalCount.HasValue;
}
///
/// Gets and sets the property TotalFilteredCount.
///
/// The total number of query logging configurations that were created by the current
/// account in the specified Region and that match the filters that were specified in
/// the ListResolverQueryLogConfigs
request. For the total number of query
/// logging configurations that were created by the current account in the specified Region,
/// see TotalCount
.
///
///
public int TotalFilteredCount
{
get { return this._totalFilteredCount.GetValueOrDefault(); }
set { this._totalFilteredCount = value; }
}
// Check to see if TotalFilteredCount property is set
internal bool IsSetTotalFilteredCount()
{
return this._totalFilteredCount.HasValue;
}
}
}