/**
* 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.See Also:
AWS API
* Reference
An object representing the OpenID * Connect identity provider information.
*/ inline const OIDC& GetOidc() const{ return m_oidc; } /** *An object representing the OpenID * Connect identity provider information.
*/ inline bool OidcHasBeenSet() const { return m_oidcHasBeenSet; } /** *An object representing the OpenID * Connect identity provider information.
*/ inline void SetOidc(const OIDC& value) { m_oidcHasBeenSet = true; m_oidc = value; } /** *An object representing the OpenID * Connect identity provider information.
*/ inline void SetOidc(OIDC&& value) { m_oidcHasBeenSet = true; m_oidc = std::move(value); } /** *An object representing the OpenID * Connect identity provider information.
*/ inline Identity& WithOidc(const OIDC& value) { SetOidc(value); return *this;} /** *An object representing the OpenID * Connect identity provider information.
*/ inline Identity& WithOidc(OIDC&& value) { SetOidc(std::move(value)); return *this;} private: OIDC m_oidc; bool m_oidcHasBeenSet = false; }; } // namespace Model } // namespace EKS } // namespace Aws