/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure containing information about how this workspace works with IAM
* Identity Center. See Also:
AWS
* API Reference
The ID of the IAM Identity Center-managed application that is created by * Amazon Managed Grafana.
*/ inline const Aws::String& GetSsoClientId() const{ return m_ssoClientId; } /** *The ID of the IAM Identity Center-managed application that is created by * Amazon Managed Grafana.
*/ inline bool SsoClientIdHasBeenSet() const { return m_ssoClientIdHasBeenSet; } /** *The ID of the IAM Identity Center-managed application that is created by * Amazon Managed Grafana.
*/ inline void SetSsoClientId(const Aws::String& value) { m_ssoClientIdHasBeenSet = true; m_ssoClientId = value; } /** *The ID of the IAM Identity Center-managed application that is created by * Amazon Managed Grafana.
*/ inline void SetSsoClientId(Aws::String&& value) { m_ssoClientIdHasBeenSet = true; m_ssoClientId = std::move(value); } /** *The ID of the IAM Identity Center-managed application that is created by * Amazon Managed Grafana.
*/ inline void SetSsoClientId(const char* value) { m_ssoClientIdHasBeenSet = true; m_ssoClientId.assign(value); } /** *The ID of the IAM Identity Center-managed application that is created by * Amazon Managed Grafana.
*/ inline AwsSsoAuthentication& WithSsoClientId(const Aws::String& value) { SetSsoClientId(value); return *this;} /** *The ID of the IAM Identity Center-managed application that is created by * Amazon Managed Grafana.
*/ inline AwsSsoAuthentication& WithSsoClientId(Aws::String&& value) { SetSsoClientId(std::move(value)); return *this;} /** *The ID of the IAM Identity Center-managed application that is created by * Amazon Managed Grafana.
*/ inline AwsSsoAuthentication& WithSsoClientId(const char* value) { SetSsoClientId(value); return *this;} private: Aws::String m_ssoClientId; bool m_ssoClientIdHasBeenSet = false; }; } // namespace Model } // namespace ManagedGrafana } // namespace Aws