/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Reserved for future use.See Also:
AWS
* API Reference
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