/* * 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 glacier-2012-06-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.Glacier.Model { /// /// Contains information about the comma-separated value (CSV) file that the job results /// are stored in. /// public partial class CSVOutput { private string _fieldDelimiter; private string _quoteCharacter; private string _quoteEscapeCharacter; private QuoteFields _quoteFields; private string _recordDelimiter; /// /// Gets and sets the property FieldDelimiter. /// /// A value used to separate individual fields from each other within a record. /// /// public string FieldDelimiter { get { return this._fieldDelimiter; } set { this._fieldDelimiter = value; } } // Check to see if FieldDelimiter property is set internal bool IsSetFieldDelimiter() { return this._fieldDelimiter != null; } /// /// Gets and sets the property QuoteCharacter. /// /// A value used as an escape character where the field delimiter is part of the value. /// /// public string QuoteCharacter { get { return this._quoteCharacter; } set { this._quoteCharacter = value; } } // Check to see if QuoteCharacter property is set internal bool IsSetQuoteCharacter() { return this._quoteCharacter != null; } /// /// Gets and sets the property QuoteEscapeCharacter. /// /// A single character used for escaping the quotation-mark character inside an already /// escaped value. /// /// public string QuoteEscapeCharacter { get { return this._quoteEscapeCharacter; } set { this._quoteEscapeCharacter = value; } } // Check to see if QuoteEscapeCharacter property is set internal bool IsSetQuoteEscapeCharacter() { return this._quoteEscapeCharacter != null; } /// /// Gets and sets the property QuoteFields. /// /// A value that indicates whether all output fields should be contained within quotation /// marks. /// /// public QuoteFields QuoteFields { get { return this._quoteFields; } set { this._quoteFields = value; } } // Check to see if QuoteFields property is set internal bool IsSetQuoteFields() { return this._quoteFields != null; } /// /// Gets and sets the property RecordDelimiter. /// /// A value used to separate individual records from each other. /// /// public string RecordDelimiter { get { return this._recordDelimiter; } set { this._recordDelimiter = value; } } // Check to see if RecordDelimiter property is set internal bool IsSetRecordDelimiter() { return this._recordDelimiter != null; } } }