/** * 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 EKS { namespace Model { /** *

The full description of your identity configuration.

See Also:

* AWS * API Reference

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

An object representing an OpenID Connect (OIDC) identity provider * configuration.

*/ inline const OidcIdentityProviderConfig& GetOidc() const{ return m_oidc; } /** *

An object representing an OpenID Connect (OIDC) identity provider * configuration.

*/ inline bool OidcHasBeenSet() const { return m_oidcHasBeenSet; } /** *

An object representing an OpenID Connect (OIDC) identity provider * configuration.

*/ inline void SetOidc(const OidcIdentityProviderConfig& value) { m_oidcHasBeenSet = true; m_oidc = value; } /** *

An object representing an OpenID Connect (OIDC) identity provider * configuration.

*/ inline void SetOidc(OidcIdentityProviderConfig&& value) { m_oidcHasBeenSet = true; m_oidc = std::move(value); } /** *

An object representing an OpenID Connect (OIDC) identity provider * configuration.

*/ inline IdentityProviderConfigResponse& WithOidc(const OidcIdentityProviderConfig& value) { SetOidc(value); return *this;} /** *

An object representing an OpenID Connect (OIDC) identity provider * configuration.

*/ inline IdentityProviderConfigResponse& WithOidc(OidcIdentityProviderConfig&& value) { SetOidc(std::move(value)); return *this;} private: OidcIdentityProviderConfig m_oidc; bool m_oidcHasBeenSet = false; }; } // namespace Model } // namespace EKS } // namespace Aws