﻿/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */

#pragma once
#include <aws/cognito-identity/CognitoIdentity_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>

#include <utility>

namespace Aws {
namespace Utils {
namespace Json {
class JsonValue;
class JsonView;
}  // namespace Json
}  // namespace Utils
namespace CognitoIdentity {
namespace Model {

/**
 * <p>A provider representing an Amazon Cognito user pool and its client
 * ID.</p><p><h3>See Also:</h3>   <a
 * href="http://docs.aws.amazon.com/goto/WebAPI/cognito-identity-2014-06-30/CognitoIdentityProvider">AWS
 * API Reference</a></p>
 */
class CognitoIdentityProvider {
 public:
  AWS_COGNITOIDENTITY_API CognitoIdentityProvider() = default;
  AWS_COGNITOIDENTITY_API CognitoIdentityProvider(Aws::Utils::Json::JsonView jsonValue);
  AWS_COGNITOIDENTITY_API CognitoIdentityProvider& operator=(Aws::Utils::Json::JsonView jsonValue);
  AWS_COGNITOIDENTITY_API Aws::Utils::Json::JsonValue Jsonize() const;

  ///@{
  /**
   * <p>The provider name for an Amazon Cognito user pool. For example,
   * <code>cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789</code>.</p>
   */
  inline const Aws::String& GetProviderName() const { return m_providerName; }
  inline bool ProviderNameHasBeenSet() const { return m_providerNameHasBeenSet; }
  template <typename ProviderNameT = Aws::String>
  void SetProviderName(ProviderNameT&& value) {
    m_providerNameHasBeenSet = true;
    m_providerName = std::forward<ProviderNameT>(value);
  }
  template <typename ProviderNameT = Aws::String>
  CognitoIdentityProvider& WithProviderName(ProviderNameT&& value) {
    SetProviderName(std::forward<ProviderNameT>(value));
    return *this;
  }
  ///@}

  ///@{
  /**
   * <p>The client ID for the Amazon Cognito user pool.</p>
   */
  inline const Aws::String& GetClientId() const { return m_clientId; }
  inline bool ClientIdHasBeenSet() const { return m_clientIdHasBeenSet; }
  template <typename ClientIdT = Aws::String>
  void SetClientId(ClientIdT&& value) {
    m_clientIdHasBeenSet = true;
    m_clientId = std::forward<ClientIdT>(value);
  }
  template <typename ClientIdT = Aws::String>
  CognitoIdentityProvider& WithClientId(ClientIdT&& value) {
    SetClientId(std::forward<ClientIdT>(value));
    return *this;
  }
  ///@}

  ///@{
  /**
   * <p>TRUE if server-side token validation is enabled for the identity provider’s
   * token.</p> <p>Once you set <code>ServerSideTokenCheck</code> to TRUE for an
   * identity pool, that identity pool will check with the integrated user pools to
   * make sure that the user has not been globally signed out or deleted before the
   * identity pool provides an OIDC token or Amazon Web Services credentials for the
   * user.</p> <p>If the user is signed out or deleted, the identity pool will return
   * a 400 Not Authorized error.</p>
   */
  inline bool GetServerSideTokenCheck() const { return m_serverSideTokenCheck; }
  inline bool ServerSideTokenCheckHasBeenSet() const { return m_serverSideTokenCheckHasBeenSet; }
  inline void SetServerSideTokenCheck(bool value) {
    m_serverSideTokenCheckHasBeenSet = true;
    m_serverSideTokenCheck = value;
  }
  inline CognitoIdentityProvider& WithServerSideTokenCheck(bool value) {
    SetServerSideTokenCheck(value);
    return *this;
  }
  ///@}
 private:
  Aws::String m_providerName;

  Aws::String m_clientId;

  bool m_serverSideTokenCheck{false};
  bool m_providerNameHasBeenSet = false;
  bool m_clientIdHasBeenSet = false;
  bool m_serverSideTokenCheckHasBeenSet = false;
};

}  // namespace Model
}  // namespace CognitoIdentity
}  // namespace Aws
