/** * 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 signer { namespace Model { class RemoveProfilePermissionResult { public: AWS_SIGNER_API RemoveProfilePermissionResult(); AWS_SIGNER_API RemoveProfilePermissionResult(const Aws::AmazonWebServiceResult& result); AWS_SIGNER_API RemoveProfilePermissionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An identifier for the current revision of the profile permissions.

*/ inline const Aws::String& GetRevisionId() const{ return m_revisionId; } /** *

An identifier for the current revision of the profile permissions.

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

An identifier for the current revision of the profile permissions.

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

An identifier for the current revision of the profile permissions.

*/ inline void SetRevisionId(const char* value) { m_revisionId.assign(value); } /** *

An identifier for the current revision of the profile permissions.

*/ inline RemoveProfilePermissionResult& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;} /** *

An identifier for the current revision of the profile permissions.

*/ inline RemoveProfilePermissionResult& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;} /** *

An identifier for the current revision of the profile permissions.

*/ inline RemoveProfilePermissionResult& WithRevisionId(const char* value) { SetRevisionId(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 RemoveProfilePermissionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline RemoveProfilePermissionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline RemoveProfilePermissionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_revisionId; Aws::String m_requestId; }; } // namespace Model } // namespace signer } // namespace Aws