AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
OIDC.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/eks/EKS_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace EKS {
20namespace Model {
21
29class OIDC {
30 public:
31 AWS_EKS_API OIDC() = default;
32 AWS_EKS_API OIDC(Aws::Utils::Json::JsonView jsonValue);
33 AWS_EKS_API OIDC& operator=(Aws::Utils::Json::JsonView jsonValue);
35
37
40 inline const Aws::String& GetIssuer() const { return m_issuer; }
41 inline bool IssuerHasBeenSet() const { return m_issuerHasBeenSet; }
42 template <typename IssuerT = Aws::String>
43 void SetIssuer(IssuerT&& value) {
44 m_issuerHasBeenSet = true;
45 m_issuer = std::forward<IssuerT>(value);
46 }
47 template <typename IssuerT = Aws::String>
48 OIDC& WithIssuer(IssuerT&& value) {
49 SetIssuer(std::forward<IssuerT>(value));
50 return *this;
51 }
53 private:
54 Aws::String m_issuer;
55 bool m_issuerHasBeenSet = false;
56};
57
58} // namespace Model
59} // namespace EKS
60} // namespace Aws
AWS_EKS_API OIDC(Aws::Utils::Json::JsonView jsonValue)
OIDC & WithIssuer(IssuerT &&value)
Definition OIDC.h:48
const Aws::String & GetIssuer() const
Definition OIDC.h:40
AWS_EKS_API OIDC & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_EKS_API Aws::Utils::Json::JsonValue Jsonize() const
bool IssuerHasBeenSet() const
Definition OIDC.h:41
void SetIssuer(IssuerT &&value)
Definition OIDC.h:43
AWS_EKS_API OIDC()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue