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

Reserved for future use.

See Also:

AWS * API Reference

*/ class ProvidedContext { public: AWS_STS_API ProvidedContext(); AWS_STS_API ProvidedContext(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_STS_API ProvidedContext& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_STS_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_STS_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

Reserved for future use.

*/ inline const Aws::String& GetProviderArn() const{ return m_providerArn; } /** *

Reserved for future use.

*/ inline bool ProviderArnHasBeenSet() const { return m_providerArnHasBeenSet; } /** *

Reserved for future use.

*/ inline void SetProviderArn(const Aws::String& value) { m_providerArnHasBeenSet = true; m_providerArn = value; } /** *

Reserved for future use.

*/ inline void SetProviderArn(Aws::String&& value) { m_providerArnHasBeenSet = true; m_providerArn = std::move(value); } /** *

Reserved for future use.

*/ inline void SetProviderArn(const char* value) { m_providerArnHasBeenSet = true; m_providerArn.assign(value); } /** *

Reserved for future use.

*/ inline ProvidedContext& WithProviderArn(const Aws::String& value) { SetProviderArn(value); return *this;} /** *

Reserved for future use.

*/ inline ProvidedContext& WithProviderArn(Aws::String&& value) { SetProviderArn(std::move(value)); return *this;} /** *

Reserved for future use.

*/ inline ProvidedContext& WithProviderArn(const char* value) { SetProviderArn(value); return *this;} /** *

Reserved for future use.

*/ inline const Aws::String& GetContextAssertion() const{ return m_contextAssertion; } /** *

Reserved for future use.

*/ inline bool ContextAssertionHasBeenSet() const { return m_contextAssertionHasBeenSet; } /** *

Reserved for future use.

*/ inline void SetContextAssertion(const Aws::String& value) { m_contextAssertionHasBeenSet = true; m_contextAssertion = value; } /** *

Reserved for future use.

*/ inline void SetContextAssertion(Aws::String&& value) { m_contextAssertionHasBeenSet = true; m_contextAssertion = std::move(value); } /** *

Reserved for future use.

*/ inline void SetContextAssertion(const char* value) { m_contextAssertionHasBeenSet = true; m_contextAssertion.assign(value); } /** *

Reserved for future use.

*/ inline ProvidedContext& WithContextAssertion(const Aws::String& value) { SetContextAssertion(value); return *this;} /** *

Reserved for future use.

*/ inline ProvidedContext& WithContextAssertion(Aws::String&& value) { SetContextAssertion(std::move(value)); return *this;} /** *

Reserved for future use.

*/ inline ProvidedContext& WithContextAssertion(const char* value) { SetContextAssertion(value); return *this;} private: Aws::String m_providerArn; bool m_providerArnHasBeenSet = false; Aws::String m_contextAssertion; bool m_contextAssertionHasBeenSet = false; }; } // namespace Model } // namespace STS } // namespace Aws