/** * 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 GlobalAccelerator { namespace Model { /** */ class DescribeAcceleratorAttributesRequest : public GlobalAcceleratorRequest { public: AWS_GLOBALACCELERATOR_API DescribeAcceleratorAttributesRequest(); // 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 "DescribeAcceleratorAttributes"; } AWS_GLOBALACCELERATOR_API Aws::String SerializePayload() const override; AWS_GLOBALACCELERATOR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the accelerator with the attributes that * you want to describe.

*/ inline const Aws::String& GetAcceleratorArn() const{ return m_acceleratorArn; } /** *

The Amazon Resource Name (ARN) of the accelerator with the attributes that * you want to describe.

*/ inline bool AcceleratorArnHasBeenSet() const { return m_acceleratorArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the accelerator with the attributes that * you want to describe.

*/ inline void SetAcceleratorArn(const Aws::String& value) { m_acceleratorArnHasBeenSet = true; m_acceleratorArn = value; } /** *

The Amazon Resource Name (ARN) of the accelerator with the attributes that * you want to describe.

*/ inline void SetAcceleratorArn(Aws::String&& value) { m_acceleratorArnHasBeenSet = true; m_acceleratorArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the accelerator with the attributes that * you want to describe.

*/ inline void SetAcceleratorArn(const char* value) { m_acceleratorArnHasBeenSet = true; m_acceleratorArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the accelerator with the attributes that * you want to describe.

*/ inline DescribeAcceleratorAttributesRequest& WithAcceleratorArn(const Aws::String& value) { SetAcceleratorArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the accelerator with the attributes that * you want to describe.

*/ inline DescribeAcceleratorAttributesRequest& WithAcceleratorArn(Aws::String&& value) { SetAcceleratorArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the accelerator with the attributes that * you want to describe.

*/ inline DescribeAcceleratorAttributesRequest& WithAcceleratorArn(const char* value) { SetAcceleratorArn(value); return *this;} private: Aws::String m_acceleratorArn; bool m_acceleratorArnHasBeenSet = false; }; } // namespace Model } // namespace GlobalAccelerator } // namespace Aws