/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The full description of your identity configuration.See Also:
* AWS
* API Reference
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