/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace SageMakerGeospatial { namespace Model { /** */ class SearchRasterDataCollectionRequest : public SageMakerGeospatialRequest { public: AWS_SAGEMAKERGEOSPATIAL_API SearchRasterDataCollectionRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "SearchRasterDataCollection"; } AWS_SAGEMAKERGEOSPATIAL_API Aws::String SerializePayload() const override; /** *

The Amazon Resource Name (ARN) of the raster data collection.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) of the raster data collection.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the raster data collection.

*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *

The Amazon Resource Name (ARN) of the raster data collection.

*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the raster data collection.

*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) of the raster data collection.

*/ inline SearchRasterDataCollectionRequest& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the raster data collection.

*/ inline SearchRasterDataCollectionRequest& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the raster data collection.

*/ inline SearchRasterDataCollectionRequest& WithArn(const char* value) { SetArn(value); return *this;} /** *

If the previous response was truncated, you receive this token. Use it in * your next request to receive the next set of results.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

If the previous response was truncated, you receive this token. Use it in * your next request to receive the next set of results.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

If the previous response was truncated, you receive this token. Use it in * your next request to receive the next set of results.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

If the previous response was truncated, you receive this token. Use it in * your next request to receive the next set of results.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

If the previous response was truncated, you receive this token. Use it in * your next request to receive the next set of results.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

If the previous response was truncated, you receive this token. Use it in * your next request to receive the next set of results.

*/ inline SearchRasterDataCollectionRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

If the previous response was truncated, you receive this token. Use it in * your next request to receive the next set of results.

*/ inline SearchRasterDataCollectionRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

If the previous response was truncated, you receive this token. Use it in * your next request to receive the next set of results.

*/ inline SearchRasterDataCollectionRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

RasterDataCollectionQuery consisting of AreaOfInterest(AOI), * PropertyFilters * and TimeRangeFilterInput * used in SearchRasterDataCollection.

*/ inline const RasterDataCollectionQueryWithBandFilterInput& GetRasterDataCollectionQuery() const{ return m_rasterDataCollectionQuery; } /** *

RasterDataCollectionQuery consisting of AreaOfInterest(AOI), * PropertyFilters * and TimeRangeFilterInput * used in SearchRasterDataCollection.

*/ inline bool RasterDataCollectionQueryHasBeenSet() const { return m_rasterDataCollectionQueryHasBeenSet; } /** *

RasterDataCollectionQuery consisting of AreaOfInterest(AOI), * PropertyFilters * and TimeRangeFilterInput * used in SearchRasterDataCollection.

*/ inline void SetRasterDataCollectionQuery(const RasterDataCollectionQueryWithBandFilterInput& value) { m_rasterDataCollectionQueryHasBeenSet = true; m_rasterDataCollectionQuery = value; } /** *

RasterDataCollectionQuery consisting of AreaOfInterest(AOI), * PropertyFilters * and TimeRangeFilterInput * used in SearchRasterDataCollection.

*/ inline void SetRasterDataCollectionQuery(RasterDataCollectionQueryWithBandFilterInput&& value) { m_rasterDataCollectionQueryHasBeenSet = true; m_rasterDataCollectionQuery = std::move(value); } /** *

RasterDataCollectionQuery consisting of AreaOfInterest(AOI), * PropertyFilters * and TimeRangeFilterInput * used in SearchRasterDataCollection.

*/ inline SearchRasterDataCollectionRequest& WithRasterDataCollectionQuery(const RasterDataCollectionQueryWithBandFilterInput& value) { SetRasterDataCollectionQuery(value); return *this;} /** *

RasterDataCollectionQuery consisting of AreaOfInterest(AOI), * PropertyFilters * and TimeRangeFilterInput * used in SearchRasterDataCollection.

*/ inline SearchRasterDataCollectionRequest& WithRasterDataCollectionQuery(RasterDataCollectionQueryWithBandFilterInput&& value) { SetRasterDataCollectionQuery(std::move(value)); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; RasterDataCollectionQueryWithBandFilterInput m_rasterDataCollectionQuery; bool m_rasterDataCollectionQueryHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws