/* * 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 snowball-2016-06-30.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.Snowball.Model { /// /// Contains a key range. For export jobs, a S3Resource object can have an /// optional KeyRange value. The length of the range is defined at job creation, /// and has either an inclusive BeginMarker, an inclusive EndMarker, /// or both. Ranges are UTF-8 binary sorted. /// public partial class KeyRange { private string _beginMarker; private string _endMarker; /// /// Gets and sets the property BeginMarker. /// /// The key that starts an optional key range for an export job. Ranges are inclusive /// and UTF-8 binary sorted. /// /// [AWSProperty(Min=1, Max=1024)] public string BeginMarker { get { return this._beginMarker; } set { this._beginMarker = value; } } // Check to see if BeginMarker property is set internal bool IsSetBeginMarker() { return this._beginMarker != null; } /// /// Gets and sets the property EndMarker. /// /// The key that ends an optional key range for an export job. Ranges are inclusive and /// UTF-8 binary sorted. /// /// [AWSProperty(Min=1, Max=1024)] public string EndMarker { get { return this._endMarker; } set { this._endMarker = value; } } // Check to see if EndMarker property is set internal bool IsSetEndMarker() { return this._endMarker != null; } } }