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

A key policy document in JSON format.

*/ inline const Aws::String& GetPolicy() const{ return m_policy; } /** *

A key policy document in JSON format.

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

A key policy document in JSON format.

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

A key policy document in JSON format.

*/ inline void SetPolicy(const char* value) { m_policy.assign(value); } /** *

A key policy document in JSON format.

*/ inline GetKeyPolicyResult& WithPolicy(const Aws::String& value) { SetPolicy(value); return *this;} /** *

A key policy document in JSON format.

*/ inline GetKeyPolicyResult& WithPolicy(Aws::String&& value) { SetPolicy(std::move(value)); return *this;} /** *

A key policy document in JSON format.

*/ inline GetKeyPolicyResult& WithPolicy(const char* value) { SetPolicy(value); return *this;} private: Aws::String m_policy; }; } // namespace Model } // namespace KMS } // namespace Aws