/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object representing an identity provider for authentication
* credentials.See Also:
AWS API
* Reference
The OpenID Connect identity * provider information for the cluster.
*/ inline const OIDC& GetOidc() const{ return m_oidc; } /** *The OpenID Connect identity * provider information for the cluster.
*/ inline bool OidcHasBeenSet() const { return m_oidcHasBeenSet; } /** *The OpenID Connect identity * provider information for the cluster.
*/ inline void SetOidc(const OIDC& value) { m_oidcHasBeenSet = true; m_oidc = value; } /** *The OpenID Connect identity * provider information for the cluster.
*/ inline void SetOidc(OIDC&& value) { m_oidcHasBeenSet = true; m_oidc = std::move(value); } /** *The OpenID Connect identity * provider information for the cluster.
*/ inline Identity& WithOidc(const OIDC& value) { SetOidc(value); return *this;} /** *The OpenID Connect identity * provider information for the cluster.
*/ inline Identity& WithOidc(OIDC&& value) { SetOidc(std::move(value)); return *this;} private: OIDC m_oidc; bool m_oidcHasBeenSet; }; } // namespace Model } // namespace EKS } // namespace Aws