/* * 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 rds-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.RDS.Model { /// /// Container for the parameters to the DownloadDBLogFilePortion operation. /// Downloads all or a portion of the specified log file, up to 1 MB in size. /// /// /// /// This command doesn't apply to RDS Custom. /// /// public partial class DownloadDBLogFilePortionRequest : AmazonRDSRequest { private string _dbInstanceIdentifier; private string _logFileName; private string _marker; private int? _numberOfLines; /// /// Gets and sets the property DBInstanceIdentifier. /// /// The customer-assigned name of the DB instance that contains the log files you want /// to list. /// /// /// /// Constraints: /// /// /// [AWSProperty(Required=true)] public string DBInstanceIdentifier { get { return this._dbInstanceIdentifier; } set { this._dbInstanceIdentifier = value; } } // Check to see if DBInstanceIdentifier property is set internal bool IsSetDBInstanceIdentifier() { return this._dbInstanceIdentifier != null; } /// /// Gets and sets the property LogFileName. /// /// The name of the log file to be downloaded. /// /// [AWSProperty(Required=true)] public string LogFileName { get { return this._logFileName; } set { this._logFileName = value; } } // Check to see if LogFileName property is set internal bool IsSetLogFileName() { return this._logFileName != null; } /// /// Gets and sets the property Marker. /// /// The pagination token provided in the previous request or "0". If the Marker parameter /// is specified the response includes only records beyond the marker until the end of /// the file or up to NumberOfLines. /// /// 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 NumberOfLines. /// /// The number of lines to download. If the number of lines specified results in a file /// over 1 MB in size, the file is truncated at 1 MB in size. /// /// /// /// If the NumberOfLines parameter is specified, then the block of lines returned can /// be from the beginning or the end of the log file, depending on the value of the Marker /// parameter. /// /// /// public int NumberOfLines { get { return this._numberOfLines.GetValueOrDefault(); } set { this._numberOfLines = value; } } // Check to see if NumberOfLines property is set internal bool IsSetNumberOfLines() { return this._numberOfLines.HasValue; } } }