/* * 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 sagemaker-geospatial-2020-05-27.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.SageMakerGeospatial.Model { /// /// The output structure contains the Raster Data Collection Query input along with some /// additional metadata. /// public partial class RasterDataCollectionQueryOutput { private AreaOfInterest _areaOfInterest; private PropertyFilters _propertyFilters; private string _rasterDataCollectionArn; private string _rasterDataCollectionName; private TimeRangeFilterOutput _timeRangeFilter; /// /// Gets and sets the property AreaOfInterest. /// /// The Area of Interest used in the search. /// /// public AreaOfInterest AreaOfInterest { get { return this._areaOfInterest; } set { this._areaOfInterest = value; } } // Check to see if AreaOfInterest property is set internal bool IsSetAreaOfInterest() { return this._areaOfInterest != null; } /// /// Gets and sets the property PropertyFilters. /// /// Property filters used in the search. /// /// public PropertyFilters PropertyFilters { get { return this._propertyFilters; } set { this._propertyFilters = value; } } // Check to see if PropertyFilters property is set internal bool IsSetPropertyFilters() { return this._propertyFilters != null; } /// /// Gets and sets the property RasterDataCollectionArn. /// /// The ARN of the Raster Data Collection against which the search is done. /// /// [AWSProperty(Required=true)] public string RasterDataCollectionArn { get { return this._rasterDataCollectionArn; } set { this._rasterDataCollectionArn = value; } } // Check to see if RasterDataCollectionArn property is set internal bool IsSetRasterDataCollectionArn() { return this._rasterDataCollectionArn != null; } /// /// Gets and sets the property RasterDataCollectionName. /// /// The name of the raster data collection. /// /// [AWSProperty(Required=true)] public string RasterDataCollectionName { get { return this._rasterDataCollectionName; } set { this._rasterDataCollectionName = value; } } // Check to see if RasterDataCollectionName property is set internal bool IsSetRasterDataCollectionName() { return this._rasterDataCollectionName != null; } /// /// Gets and sets the property TimeRangeFilter. /// /// The TimeRange filter used in the search. /// /// [AWSProperty(Required=true, Sensitive=true)] public TimeRangeFilterOutput TimeRangeFilter { get { return this._timeRangeFilter; } set { this._timeRangeFilter = value; } } // Check to see if TimeRangeFilter property is set internal bool IsSetTimeRangeFilter() { return this._timeRangeFilter != null; } } }