/* * 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 neptune-2014-10-31.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.Neptune.Model { /// /// Container for the parameters to the DescribeGlobalClusters operation. /// Returns information about Neptune global database clusters. This API supports pagination. /// public partial class DescribeGlobalClustersRequest : AmazonNeptuneRequest { private string _globalClusterIdentifier; private string _marker; private int? _maxRecords; /// /// Gets and sets the property GlobalClusterIdentifier. /// /// The user-supplied DB cluster identifier. If this parameter is specified, only information /// about the specified DB cluster is returned. This parameter is not case-sensitive. /// /// /// /// Constraints: If supplied, must match an existing DB cluster identifier. /// /// [AWSProperty(Min=1, Max=255)] public string GlobalClusterIdentifier { get { return this._globalClusterIdentifier; } set { this._globalClusterIdentifier = value; } } // Check to see if GlobalClusterIdentifier property is set internal bool IsSetGlobalClusterIdentifier() { return this._globalClusterIdentifier != null; } /// /// Gets and sets the property Marker. /// /// (Optional) A pagination token returned by a previous call to DescribeGlobalClusters. /// If this parameter is specified, the response will only include records beyond the /// marker, up to the number specified by MaxRecords. /// /// public string Marker { get { return this._marker; } set { this._marker = value; } } // Check to see if Marker property is set internal bool IsSetMarker() { return this._marker != null; } /// /// Gets and sets the property MaxRecords. /// /// The maximum number of records to include in the response. If more records exist than /// the specified MaxRecords value, a pagination marker token is included /// in the response that you can use to retrieve the remaining results. /// /// /// /// Default: 100 /// /// /// /// Constraints: Minimum 20, maximum 100. /// /// public int MaxRecords { get { return this._maxRecords.GetValueOrDefault(); } set { this._maxRecords = value; } } // Check to see if MaxRecords property is set internal bool IsSetMaxRecords() { return this._maxRecords.HasValue; } } }