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

A hash of the policy that has just been set. This must be included in a * subsequent call that overwrites or updates this policy.

*/ inline const Aws::String& GetPolicyHash() const{ return m_policyHash; } /** *

A hash of the policy that has just been set. This must be included in a * subsequent call that overwrites or updates this policy.

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

A hash of the policy that has just been set. This must be included in a * subsequent call that overwrites or updates this policy.

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

A hash of the policy that has just been set. This must be included in a * subsequent call that overwrites or updates this policy.

*/ inline void SetPolicyHash(const char* value) { m_policyHash.assign(value); } /** *

A hash of the policy that has just been set. This must be included in a * subsequent call that overwrites or updates this policy.

*/ inline PutResourcePolicyResult& WithPolicyHash(const Aws::String& value) { SetPolicyHash(value); return *this;} /** *

A hash of the policy that has just been set. This must be included in a * subsequent call that overwrites or updates this policy.

*/ inline PutResourcePolicyResult& WithPolicyHash(Aws::String&& value) { SetPolicyHash(std::move(value)); return *this;} /** *

A hash of the policy that has just been set. This must be included in a * subsequent call that overwrites or updates this policy.

*/ inline PutResourcePolicyResult& WithPolicyHash(const char* value) { SetPolicyHash(value); return *this;} private: Aws::String m_policyHash; }; } // namespace Model } // namespace Glue } // namespace Aws