/** * 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 LookoutMetrics { namespace Model { /** */ class DescribeMetricSetRequest : public LookoutMetricsRequest { public: AWS_LOOKOUTMETRICS_API DescribeMetricSetRequest(); // 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 "DescribeMetricSet"; } AWS_LOOKOUTMETRICS_API Aws::String SerializePayload() const override; /** *

The ARN of the dataset.

*/ inline const Aws::String& GetMetricSetArn() const{ return m_metricSetArn; } /** *

The ARN of the dataset.

*/ inline bool MetricSetArnHasBeenSet() const { return m_metricSetArnHasBeenSet; } /** *

The ARN of the dataset.

*/ inline void SetMetricSetArn(const Aws::String& value) { m_metricSetArnHasBeenSet = true; m_metricSetArn = value; } /** *

The ARN of the dataset.

*/ inline void SetMetricSetArn(Aws::String&& value) { m_metricSetArnHasBeenSet = true; m_metricSetArn = std::move(value); } /** *

The ARN of the dataset.

*/ inline void SetMetricSetArn(const char* value) { m_metricSetArnHasBeenSet = true; m_metricSetArn.assign(value); } /** *

The ARN of the dataset.

*/ inline DescribeMetricSetRequest& WithMetricSetArn(const Aws::String& value) { SetMetricSetArn(value); return *this;} /** *

The ARN of the dataset.

*/ inline DescribeMetricSetRequest& WithMetricSetArn(Aws::String&& value) { SetMetricSetArn(std::move(value)); return *this;} /** *

The ARN of the dataset.

*/ inline DescribeMetricSetRequest& WithMetricSetArn(const char* value) { SetMetricSetArn(value); return *this;} private: Aws::String m_metricSetArn; bool m_metricSetArnHasBeenSet = false; }; } // namespace Model } // namespace LookoutMetrics } // namespace Aws