/** * 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 AppRegistry { namespace Model { /** */ class DeleteAttributeGroupRequest : public AppRegistryRequest { public: AWS_APPREGISTRY_API DeleteAttributeGroupRequest(); // 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 "DeleteAttributeGroup"; } AWS_APPREGISTRY_API Aws::String SerializePayload() const override; /** *

The name, ID, or ARN of the attribute group that holds the attributes to * describe the application.

*/ inline const Aws::String& GetAttributeGroup() const{ return m_attributeGroup; } /** *

The name, ID, or ARN of the attribute group that holds the attributes to * describe the application.

*/ inline bool AttributeGroupHasBeenSet() const { return m_attributeGroupHasBeenSet; } /** *

The name, ID, or ARN of the attribute group that holds the attributes to * describe the application.

*/ inline void SetAttributeGroup(const Aws::String& value) { m_attributeGroupHasBeenSet = true; m_attributeGroup = value; } /** *

The name, ID, or ARN of the attribute group that holds the attributes to * describe the application.

*/ inline void SetAttributeGroup(Aws::String&& value) { m_attributeGroupHasBeenSet = true; m_attributeGroup = std::move(value); } /** *

The name, ID, or ARN of the attribute group that holds the attributes to * describe the application.

*/ inline void SetAttributeGroup(const char* value) { m_attributeGroupHasBeenSet = true; m_attributeGroup.assign(value); } /** *

The name, ID, or ARN of the attribute group that holds the attributes to * describe the application.

*/ inline DeleteAttributeGroupRequest& WithAttributeGroup(const Aws::String& value) { SetAttributeGroup(value); return *this;} /** *

The name, ID, or ARN of the attribute group that holds the attributes to * describe the application.

*/ inline DeleteAttributeGroupRequest& WithAttributeGroup(Aws::String&& value) { SetAttributeGroup(std::move(value)); return *this;} /** *

The name, ID, or ARN of the attribute group that holds the attributes to * describe the application.

*/ inline DeleteAttributeGroupRequest& WithAttributeGroup(const char* value) { SetAttributeGroup(value); return *this;} private: Aws::String m_attributeGroup; bool m_attributeGroupHasBeenSet = false; }; } // namespace Model } // namespace AppRegistry } // namespace Aws