/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace IoTEvents { namespace Model { /** */ class DescribeDetectorModelAnalysisRequest : public IoTEventsRequest { public: AWS_IOTEVENTS_API DescribeDetectorModelAnalysisRequest(); // 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 "DescribeDetectorModelAnalysis"; } AWS_IOTEVENTS_API Aws::String SerializePayload() const override; /** *

The ID of the analysis result that you want to retrieve.

*/ inline const Aws::String& GetAnalysisId() const{ return m_analysisId; } /** *

The ID of the analysis result that you want to retrieve.

*/ inline bool AnalysisIdHasBeenSet() const { return m_analysisIdHasBeenSet; } /** *

The ID of the analysis result that you want to retrieve.

*/ inline void SetAnalysisId(const Aws::String& value) { m_analysisIdHasBeenSet = true; m_analysisId = value; } /** *

The ID of the analysis result that you want to retrieve.

*/ inline void SetAnalysisId(Aws::String&& value) { m_analysisIdHasBeenSet = true; m_analysisId = std::move(value); } /** *

The ID of the analysis result that you want to retrieve.

*/ inline void SetAnalysisId(const char* value) { m_analysisIdHasBeenSet = true; m_analysisId.assign(value); } /** *

The ID of the analysis result that you want to retrieve.

*/ inline DescribeDetectorModelAnalysisRequest& WithAnalysisId(const Aws::String& value) { SetAnalysisId(value); return *this;} /** *

The ID of the analysis result that you want to retrieve.

*/ inline DescribeDetectorModelAnalysisRequest& WithAnalysisId(Aws::String&& value) { SetAnalysisId(std::move(value)); return *this;} /** *

The ID of the analysis result that you want to retrieve.

*/ inline DescribeDetectorModelAnalysisRequest& WithAnalysisId(const char* value) { SetAnalysisId(value); return *this;} private: Aws::String m_analysisId; bool m_analysisIdHasBeenSet = false; }; } // namespace Model } // namespace IoTEvents } // namespace Aws