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

A structure containing information about how this workspace works with IAM * Identity Center.

See Also:

AWS * API Reference

*/ class AwsSsoAuthentication { public: AWS_MANAGEDGRAFANA_API AwsSsoAuthentication(); AWS_MANAGEDGRAFANA_API AwsSsoAuthentication(Aws::Utils::Json::JsonView jsonValue); AWS_MANAGEDGRAFANA_API AwsSsoAuthentication& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MANAGEDGRAFANA_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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