/** * 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 Json { class JsonValue; } // namespace Json } // namespace Utils namespace GlobalAccelerator { namespace Model { class DescribeAcceleratorAttributesResult { public: AWS_GLOBALACCELERATOR_API DescribeAcceleratorAttributesResult(); AWS_GLOBALACCELERATOR_API DescribeAcceleratorAttributesResult(const Aws::AmazonWebServiceResult& result); AWS_GLOBALACCELERATOR_API DescribeAcceleratorAttributesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The attributes of the accelerator.

*/ inline const AcceleratorAttributes& GetAcceleratorAttributes() const{ return m_acceleratorAttributes; } /** *

The attributes of the accelerator.

*/ inline void SetAcceleratorAttributes(const AcceleratorAttributes& value) { m_acceleratorAttributes = value; } /** *

The attributes of the accelerator.

*/ inline void SetAcceleratorAttributes(AcceleratorAttributes&& value) { m_acceleratorAttributes = std::move(value); } /** *

The attributes of the accelerator.

*/ inline DescribeAcceleratorAttributesResult& WithAcceleratorAttributes(const AcceleratorAttributes& value) { SetAcceleratorAttributes(value); return *this;} /** *

The attributes of the accelerator.

*/ inline DescribeAcceleratorAttributesResult& WithAcceleratorAttributes(AcceleratorAttributes&& value) { SetAcceleratorAttributes(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 DescribeAcceleratorAttributesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeAcceleratorAttributesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeAcceleratorAttributesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: AcceleratorAttributes m_acceleratorAttributes; Aws::String m_requestId; }; } // namespace Model } // namespace GlobalAccelerator } // namespace Aws