This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-appsync/include/aws/appsync/model/OpenIDConnectConfig.h

213 lines
8.4 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appsync/AppSync_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 AppSync
{
namespace Model
{
/**
* <p>Describes an OpenID Connect configuration.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/OpenIDConnectConfig">AWS
* API Reference</a></p>
*/
class AWS_APPSYNC_API OpenIDConnectConfig
{
public:
OpenIDConnectConfig();
OpenIDConnectConfig(Aws::Utils::Json::JsonView jsonValue);
OpenIDConnectConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The issuer for the OpenID Connect configuration. The issuer returned by
* discovery must exactly match the value of <code>iss</code> in the ID token.</p>
*/
inline const Aws::String& GetIssuer() const{ return m_issuer; }
/**
* <p>The issuer for the OpenID Connect configuration. The issuer returned by
* discovery must exactly match the value of <code>iss</code> in the ID token.</p>
*/
inline bool IssuerHasBeenSet() const { return m_issuerHasBeenSet; }
/**
* <p>The issuer for the OpenID Connect configuration. The issuer returned by
* discovery must exactly match the value of <code>iss</code> in the ID token.</p>
*/
inline void SetIssuer(const Aws::String& value) { m_issuerHasBeenSet = true; m_issuer = value; }
/**
* <p>The issuer for the OpenID Connect configuration. The issuer returned by
* discovery must exactly match the value of <code>iss</code> in the ID token.</p>
*/
inline void SetIssuer(Aws::String&& value) { m_issuerHasBeenSet = true; m_issuer = std::move(value); }
/**
* <p>The issuer for the OpenID Connect configuration. The issuer returned by
* discovery must exactly match the value of <code>iss</code> in the ID token.</p>
*/
inline void SetIssuer(const char* value) { m_issuerHasBeenSet = true; m_issuer.assign(value); }
/**
* <p>The issuer for the OpenID Connect configuration. The issuer returned by
* discovery must exactly match the value of <code>iss</code> in the ID token.</p>
*/
inline OpenIDConnectConfig& WithIssuer(const Aws::String& value) { SetIssuer(value); return *this;}
/**
* <p>The issuer for the OpenID Connect configuration. The issuer returned by
* discovery must exactly match the value of <code>iss</code> in the ID token.</p>
*/
inline OpenIDConnectConfig& WithIssuer(Aws::String&& value) { SetIssuer(std::move(value)); return *this;}
/**
* <p>The issuer for the OpenID Connect configuration. The issuer returned by
* discovery must exactly match the value of <code>iss</code> in the ID token.</p>
*/
inline OpenIDConnectConfig& WithIssuer(const char* value) { SetIssuer(value); return *this;}
/**
* <p>The client identifier of the Relying party at the OpenID identity provider.
* This identifier is typically obtained when the Relying party is registered with
* the OpenID identity provider. You can specify a regular expression so the AWS
* AppSync can validate against multiple client identifiers at a time.</p>
*/
inline const Aws::String& GetClientId() const{ return m_clientId; }
/**
* <p>The client identifier of the Relying party at the OpenID identity provider.
* This identifier is typically obtained when the Relying party is registered with
* the OpenID identity provider. You can specify a regular expression so the AWS
* AppSync can validate against multiple client identifiers at a time.</p>
*/
inline bool ClientIdHasBeenSet() const { return m_clientIdHasBeenSet; }
/**
* <p>The client identifier of the Relying party at the OpenID identity provider.
* This identifier is typically obtained when the Relying party is registered with
* the OpenID identity provider. You can specify a regular expression so the AWS
* AppSync can validate against multiple client identifiers at a time.</p>
*/
inline void SetClientId(const Aws::String& value) { m_clientIdHasBeenSet = true; m_clientId = value; }
/**
* <p>The client identifier of the Relying party at the OpenID identity provider.
* This identifier is typically obtained when the Relying party is registered with
* the OpenID identity provider. You can specify a regular expression so the AWS
* AppSync can validate against multiple client identifiers at a time.</p>
*/
inline void SetClientId(Aws::String&& value) { m_clientIdHasBeenSet = true; m_clientId = std::move(value); }
/**
* <p>The client identifier of the Relying party at the OpenID identity provider.
* This identifier is typically obtained when the Relying party is registered with
* the OpenID identity provider. You can specify a regular expression so the AWS
* AppSync can validate against multiple client identifiers at a time.</p>
*/
inline void SetClientId(const char* value) { m_clientIdHasBeenSet = true; m_clientId.assign(value); }
/**
* <p>The client identifier of the Relying party at the OpenID identity provider.
* This identifier is typically obtained when the Relying party is registered with
* the OpenID identity provider. You can specify a regular expression so the AWS
* AppSync can validate against multiple client identifiers at a time.</p>
*/
inline OpenIDConnectConfig& WithClientId(const Aws::String& value) { SetClientId(value); return *this;}
/**
* <p>The client identifier of the Relying party at the OpenID identity provider.
* This identifier is typically obtained when the Relying party is registered with
* the OpenID identity provider. You can specify a regular expression so the AWS
* AppSync can validate against multiple client identifiers at a time.</p>
*/
inline OpenIDConnectConfig& WithClientId(Aws::String&& value) { SetClientId(std::move(value)); return *this;}
/**
* <p>The client identifier of the Relying party at the OpenID identity provider.
* This identifier is typically obtained when the Relying party is registered with
* the OpenID identity provider. You can specify a regular expression so the AWS
* AppSync can validate against multiple client identifiers at a time.</p>
*/
inline OpenIDConnectConfig& WithClientId(const char* value) { SetClientId(value); return *this;}
/**
* <p>The number of milliseconds a token is valid after being issued to a user.</p>
*/
inline long long GetIatTTL() const{ return m_iatTTL; }
/**
* <p>The number of milliseconds a token is valid after being issued to a user.</p>
*/
inline bool IatTTLHasBeenSet() const { return m_iatTTLHasBeenSet; }
/**
* <p>The number of milliseconds a token is valid after being issued to a user.</p>
*/
inline void SetIatTTL(long long value) { m_iatTTLHasBeenSet = true; m_iatTTL = value; }
/**
* <p>The number of milliseconds a token is valid after being issued to a user.</p>
*/
inline OpenIDConnectConfig& WithIatTTL(long long value) { SetIatTTL(value); return *this;}
/**
* <p>The number of milliseconds a token is valid after being authenticated.</p>
*/
inline long long GetAuthTTL() const{ return m_authTTL; }
/**
* <p>The number of milliseconds a token is valid after being authenticated.</p>
*/
inline bool AuthTTLHasBeenSet() const { return m_authTTLHasBeenSet; }
/**
* <p>The number of milliseconds a token is valid after being authenticated.</p>
*/
inline void SetAuthTTL(long long value) { m_authTTLHasBeenSet = true; m_authTTL = value; }
/**
* <p>The number of milliseconds a token is valid after being authenticated.</p>
*/
inline OpenIDConnectConfig& WithAuthTTL(long long value) { SetAuthTTL(value); return *this;}
private:
Aws::String m_issuer;
bool m_issuerHasBeenSet;
Aws::String m_clientId;
bool m_clientIdHasBeenSet;
long long m_iatTTL;
bool m_iatTTLHasBeenSet;
long long m_authTTL;
bool m_authTTLHasBeenSet;
};
} // namespace Model
} // namespace AppSync
} // namespace Aws