/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** *

Contains the parameters for DescribeImageAttribute.

See Also:

* AWS * API Reference

*/ class AWS_EC2_API DescribeImageAttributeRequest : public EC2Request { public: DescribeImageAttributeRequest(); // 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 "DescribeImageAttribute"; } Aws::String SerializePayload() const override; protected: void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The AMI attribute.

Note: Depending on your account privileges, * the blockDeviceMapping attribute may return a * Client.AuthFailure error. If this happens, use * DescribeImages to get information about the block device mapping for the * AMI.

*/ inline const ImageAttributeName& GetAttribute() const{ return m_attribute; } /** *

The AMI attribute.

Note: Depending on your account privileges, * the blockDeviceMapping attribute may return a * Client.AuthFailure error. If this happens, use * DescribeImages to get information about the block device mapping for the * AMI.

*/ inline bool AttributeHasBeenSet() const { return m_attributeHasBeenSet; } /** *

The AMI attribute.

Note: Depending on your account privileges, * the blockDeviceMapping attribute may return a * Client.AuthFailure error. If this happens, use * DescribeImages to get information about the block device mapping for the * AMI.

*/ inline void SetAttribute(const ImageAttributeName& value) { m_attributeHasBeenSet = true; m_attribute = value; } /** *

The AMI attribute.

Note: Depending on your account privileges, * the blockDeviceMapping attribute may return a * Client.AuthFailure error. If this happens, use * DescribeImages to get information about the block device mapping for the * AMI.

*/ inline void SetAttribute(ImageAttributeName&& value) { m_attributeHasBeenSet = true; m_attribute = std::move(value); } /** *

The AMI attribute.

Note: Depending on your account privileges, * the blockDeviceMapping attribute may return a * Client.AuthFailure error. If this happens, use * DescribeImages to get information about the block device mapping for the * AMI.

*/ inline DescribeImageAttributeRequest& WithAttribute(const ImageAttributeName& value) { SetAttribute(value); return *this;} /** *

The AMI attribute.

Note: Depending on your account privileges, * the blockDeviceMapping attribute may return a * Client.AuthFailure error. If this happens, use * DescribeImages to get information about the block device mapping for the * AMI.

*/ inline DescribeImageAttributeRequest& WithAttribute(ImageAttributeName&& value) { SetAttribute(std::move(value)); return *this;} /** *

The ID of the AMI.

*/ inline const Aws::String& GetImageId() const{ return m_imageId; } /** *

The ID of the AMI.

*/ inline bool ImageIdHasBeenSet() const { return m_imageIdHasBeenSet; } /** *

The ID of the AMI.

*/ inline void SetImageId(const Aws::String& value) { m_imageIdHasBeenSet = true; m_imageId = value; } /** *

The ID of the AMI.

*/ inline void SetImageId(Aws::String&& value) { m_imageIdHasBeenSet = true; m_imageId = std::move(value); } /** *

The ID of the AMI.

*/ inline void SetImageId(const char* value) { m_imageIdHasBeenSet = true; m_imageId.assign(value); } /** *

The ID of the AMI.

*/ inline DescribeImageAttributeRequest& WithImageId(const Aws::String& value) { SetImageId(value); return *this;} /** *

The ID of the AMI.

*/ inline DescribeImageAttributeRequest& WithImageId(Aws::String&& value) { SetImageId(std::move(value)); return *this;} /** *

The ID of the AMI.

*/ inline DescribeImageAttributeRequest& WithImageId(const char* value) { SetImageId(value); return *this;} /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline DescribeImageAttributeRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} private: ImageAttributeName m_attribute; bool m_attributeHasBeenSet; Aws::String m_imageId; bool m_imageIdHasBeenSet; bool m_dryRun; bool m_dryRunHasBeenSet; }; } // namespace Model } // namespace EC2 } // namespace Aws