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

The Amazon resource name (ARN) that specifies the application.

*/ inline const Aws::String& GetApplicationArn() const{ return m_applicationArn; } /** *

The Amazon resource name (ARN) that specifies the application.

*/ inline void SetApplicationArn(const Aws::String& value) { m_applicationArn = value; } /** *

The Amazon resource name (ARN) that specifies the application.

*/ inline void SetApplicationArn(Aws::String&& value) { m_applicationArn = std::move(value); } /** *

The Amazon resource name (ARN) that specifies the application.

*/ inline void SetApplicationArn(const char* value) { m_applicationArn.assign(value); } /** *

The Amazon resource name (ARN) that specifies the application.

*/ inline DisassociateAttributeGroupResult& WithApplicationArn(const Aws::String& value) { SetApplicationArn(value); return *this;} /** *

The Amazon resource name (ARN) that specifies the application.

*/ inline DisassociateAttributeGroupResult& WithApplicationArn(Aws::String&& value) { SetApplicationArn(std::move(value)); return *this;} /** *

The Amazon resource name (ARN) that specifies the application.

*/ inline DisassociateAttributeGroupResult& WithApplicationArn(const char* value) { SetApplicationArn(value); return *this;} /** *

The Amazon resource name (ARN) that specifies the attribute group.

*/ inline const Aws::String& GetAttributeGroupArn() const{ return m_attributeGroupArn; } /** *

The Amazon resource name (ARN) that specifies the attribute group.

*/ inline void SetAttributeGroupArn(const Aws::String& value) { m_attributeGroupArn = value; } /** *

The Amazon resource name (ARN) that specifies the attribute group.

*/ inline void SetAttributeGroupArn(Aws::String&& value) { m_attributeGroupArn = std::move(value); } /** *

The Amazon resource name (ARN) that specifies the attribute group.

*/ inline void SetAttributeGroupArn(const char* value) { m_attributeGroupArn.assign(value); } /** *

The Amazon resource name (ARN) that specifies the attribute group.

*/ inline DisassociateAttributeGroupResult& WithAttributeGroupArn(const Aws::String& value) { SetAttributeGroupArn(value); return *this;} /** *

The Amazon resource name (ARN) that specifies the attribute group.

*/ inline DisassociateAttributeGroupResult& WithAttributeGroupArn(Aws::String&& value) { SetAttributeGroupArn(std::move(value)); return *this;} /** *

The Amazon resource name (ARN) that specifies the attribute group.

*/ inline DisassociateAttributeGroupResult& WithAttributeGroupArn(const char* value) { SetAttributeGroupArn(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 DisassociateAttributeGroupResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DisassociateAttributeGroupResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DisassociateAttributeGroupResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_applicationArn; Aws::String m_attributeGroupArn; Aws::String m_requestId; }; } // namespace Model } // namespace AppRegistry } // namespace Aws