/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the IAM SAML identity provider used for federated
* authentication.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the IAM SAML identity provider.
*/ inline const Aws::String& GetSamlProviderArn() const{ return m_samlProviderArn; } /** *The Amazon Resource Name (ARN) of the IAM SAML identity provider.
*/ inline bool SamlProviderArnHasBeenSet() const { return m_samlProviderArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the IAM SAML identity provider.
*/ inline void SetSamlProviderArn(const Aws::String& value) { m_samlProviderArnHasBeenSet = true; m_samlProviderArn = value; } /** *The Amazon Resource Name (ARN) of the IAM SAML identity provider.
*/ inline void SetSamlProviderArn(Aws::String&& value) { m_samlProviderArnHasBeenSet = true; m_samlProviderArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the IAM SAML identity provider.
*/ inline void SetSamlProviderArn(const char* value) { m_samlProviderArnHasBeenSet = true; m_samlProviderArn.assign(value); } /** *The Amazon Resource Name (ARN) of the IAM SAML identity provider.
*/ inline FederatedAuthentication& WithSamlProviderArn(const Aws::String& value) { SetSamlProviderArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the IAM SAML identity provider.
*/ inline FederatedAuthentication& WithSamlProviderArn(Aws::String&& value) { SetSamlProviderArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the IAM SAML identity provider.
*/ inline FederatedAuthentication& WithSamlProviderArn(const char* value) { SetSamlProviderArn(value); return *this;} private: Aws::String m_samlProviderArn; bool m_samlProviderArnHasBeenSet; }; } // namespace Model } // namespace EC2 } // namespace Aws