/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace S3Crt { namespace Model { class GetBucketMetricsConfigurationResult { public: AWS_S3CRT_API GetBucketMetricsConfigurationResult(); AWS_S3CRT_API GetBucketMetricsConfigurationResult(const Aws::AmazonWebServiceResult& result); AWS_S3CRT_API GetBucketMetricsConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Specifies the metrics configuration.

*/ inline const MetricsConfiguration& GetMetricsConfiguration() const{ return m_metricsConfiguration; } /** *

Specifies the metrics configuration.

*/ inline void SetMetricsConfiguration(const MetricsConfiguration& value) { m_metricsConfiguration = value; } /** *

Specifies the metrics configuration.

*/ inline void SetMetricsConfiguration(MetricsConfiguration&& value) { m_metricsConfiguration = std::move(value); } /** *

Specifies the metrics configuration.

*/ inline GetBucketMetricsConfigurationResult& WithMetricsConfiguration(const MetricsConfiguration& value) { SetMetricsConfiguration(value); return *this;} /** *

Specifies the metrics configuration.

*/ inline GetBucketMetricsConfigurationResult& WithMetricsConfiguration(MetricsConfiguration&& value) { SetMetricsConfiguration(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetBucketMetricsConfigurationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetBucketMetricsConfigurationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetBucketMetricsConfigurationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: MetricsConfiguration m_metricsConfiguration; Aws::String m_requestId; }; } // namespace Model } // namespace S3Crt } // namespace Aws