/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace IAM { namespace Model { /** *

Contains the response to a successful GetContextKeysForPrincipalPolicy * or GetContextKeysForCustomPolicy request.

See Also:

AWS * API Reference

*/ class GetContextKeysForPrincipalPolicyResult { public: AWS_IAM_API GetContextKeysForPrincipalPolicyResult(); AWS_IAM_API GetContextKeysForPrincipalPolicyResult(const Aws::AmazonWebServiceResult& result); AWS_IAM_API GetContextKeysForPrincipalPolicyResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The list of context keys that are referenced in the input policies.

*/ inline const Aws::Vector& GetContextKeyNames() const{ return m_contextKeyNames; } /** *

The list of context keys that are referenced in the input policies.

*/ inline void SetContextKeyNames(const Aws::Vector& value) { m_contextKeyNames = value; } /** *

The list of context keys that are referenced in the input policies.

*/ inline void SetContextKeyNames(Aws::Vector&& value) { m_contextKeyNames = std::move(value); } /** *

The list of context keys that are referenced in the input policies.

*/ inline GetContextKeysForPrincipalPolicyResult& WithContextKeyNames(const Aws::Vector& value) { SetContextKeyNames(value); return *this;} /** *

The list of context keys that are referenced in the input policies.

*/ inline GetContextKeysForPrincipalPolicyResult& WithContextKeyNames(Aws::Vector&& value) { SetContextKeyNames(std::move(value)); return *this;} /** *

The list of context keys that are referenced in the input policies.

*/ inline GetContextKeysForPrincipalPolicyResult& AddContextKeyNames(const Aws::String& value) { m_contextKeyNames.push_back(value); return *this; } /** *

The list of context keys that are referenced in the input policies.

*/ inline GetContextKeysForPrincipalPolicyResult& AddContextKeyNames(Aws::String&& value) { m_contextKeyNames.push_back(std::move(value)); return *this; } /** *

The list of context keys that are referenced in the input policies.

*/ inline GetContextKeysForPrincipalPolicyResult& AddContextKeyNames(const char* value) { m_contextKeyNames.push_back(value); return *this; } inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline GetContextKeysForPrincipalPolicyResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline GetContextKeysForPrincipalPolicyResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_contextKeyNames; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace IAM } // namespace Aws