/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ACM { namespace Model { /** *

The Extended Key Usage X.509 v3 extension defines one or more purposes for * which the public key can be used. This is in addition to or in place of the * basic purposes specified by the Key Usage extension.

See Also:

* AWS * API Reference

*/ class ExtendedKeyUsage { public: AWS_ACM_API ExtendedKeyUsage(); AWS_ACM_API ExtendedKeyUsage(Aws::Utils::Json::JsonView jsonValue); AWS_ACM_API ExtendedKeyUsage& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_ACM_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of an Extended Key Usage value.

*/ inline const ExtendedKeyUsageName& GetName() const{ return m_name; } /** *

The name of an Extended Key Usage value.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of an Extended Key Usage value.

*/ inline void SetName(const ExtendedKeyUsageName& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of an Extended Key Usage value.

*/ inline void SetName(ExtendedKeyUsageName&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of an Extended Key Usage value.

*/ inline ExtendedKeyUsage& WithName(const ExtendedKeyUsageName& value) { SetName(value); return *this;} /** *

The name of an Extended Key Usage value.

*/ inline ExtendedKeyUsage& WithName(ExtendedKeyUsageName&& value) { SetName(std::move(value)); return *this;} /** *

An object identifier (OID) for the extension value. OIDs are strings of * numbers separated by periods. The following OIDs are defined in RFC 3280 and RFC * 5280.

  • 1.3.6.1.5.5.7.3.1 * (TLS_WEB_SERVER_AUTHENTICATION)

  • * 1.3.6.1.5.5.7.3.2 (TLS_WEB_CLIENT_AUTHENTICATION)

  • *

    1.3.6.1.5.5.7.3.3 (CODE_SIGNING)

  • * 1.3.6.1.5.5.7.3.4 (EMAIL_PROTECTION)

  • * 1.3.6.1.5.5.7.3.8 (TIME_STAMPING)

  • * 1.3.6.1.5.5.7.3.9 (OCSP_SIGNING)

  • * 1.3.6.1.5.5.7.3.5 (IPSEC_END_SYSTEM)

  • * 1.3.6.1.5.5.7.3.6 (IPSEC_TUNNEL)

  • * 1.3.6.1.5.5.7.3.7 (IPSEC_USER)

*/ inline const Aws::String& GetOID() const{ return m_oID; } /** *

An object identifier (OID) for the extension value. OIDs are strings of * numbers separated by periods. The following OIDs are defined in RFC 3280 and RFC * 5280.

  • 1.3.6.1.5.5.7.3.1 * (TLS_WEB_SERVER_AUTHENTICATION)

  • * 1.3.6.1.5.5.7.3.2 (TLS_WEB_CLIENT_AUTHENTICATION)

  • *

    1.3.6.1.5.5.7.3.3 (CODE_SIGNING)

  • * 1.3.6.1.5.5.7.3.4 (EMAIL_PROTECTION)

  • * 1.3.6.1.5.5.7.3.8 (TIME_STAMPING)

  • * 1.3.6.1.5.5.7.3.9 (OCSP_SIGNING)

  • * 1.3.6.1.5.5.7.3.5 (IPSEC_END_SYSTEM)

  • * 1.3.6.1.5.5.7.3.6 (IPSEC_TUNNEL)

  • * 1.3.6.1.5.5.7.3.7 (IPSEC_USER)

*/ inline bool OIDHasBeenSet() const { return m_oIDHasBeenSet; } /** *

An object identifier (OID) for the extension value. OIDs are strings of * numbers separated by periods. The following OIDs are defined in RFC 3280 and RFC * 5280.

  • 1.3.6.1.5.5.7.3.1 * (TLS_WEB_SERVER_AUTHENTICATION)

  • * 1.3.6.1.5.5.7.3.2 (TLS_WEB_CLIENT_AUTHENTICATION)

  • *

    1.3.6.1.5.5.7.3.3 (CODE_SIGNING)

  • * 1.3.6.1.5.5.7.3.4 (EMAIL_PROTECTION)

  • * 1.3.6.1.5.5.7.3.8 (TIME_STAMPING)

  • * 1.3.6.1.5.5.7.3.9 (OCSP_SIGNING)

  • * 1.3.6.1.5.5.7.3.5 (IPSEC_END_SYSTEM)

  • * 1.3.6.1.5.5.7.3.6 (IPSEC_TUNNEL)

  • * 1.3.6.1.5.5.7.3.7 (IPSEC_USER)

*/ inline void SetOID(const Aws::String& value) { m_oIDHasBeenSet = true; m_oID = value; } /** *

An object identifier (OID) for the extension value. OIDs are strings of * numbers separated by periods. The following OIDs are defined in RFC 3280 and RFC * 5280.

  • 1.3.6.1.5.5.7.3.1 * (TLS_WEB_SERVER_AUTHENTICATION)

  • * 1.3.6.1.5.5.7.3.2 (TLS_WEB_CLIENT_AUTHENTICATION)

  • *

    1.3.6.1.5.5.7.3.3 (CODE_SIGNING)

  • * 1.3.6.1.5.5.7.3.4 (EMAIL_PROTECTION)

  • * 1.3.6.1.5.5.7.3.8 (TIME_STAMPING)

  • * 1.3.6.1.5.5.7.3.9 (OCSP_SIGNING)

  • * 1.3.6.1.5.5.7.3.5 (IPSEC_END_SYSTEM)

  • * 1.3.6.1.5.5.7.3.6 (IPSEC_TUNNEL)

  • * 1.3.6.1.5.5.7.3.7 (IPSEC_USER)

*/ inline void SetOID(Aws::String&& value) { m_oIDHasBeenSet = true; m_oID = std::move(value); } /** *

An object identifier (OID) for the extension value. OIDs are strings of * numbers separated by periods. The following OIDs are defined in RFC 3280 and RFC * 5280.

  • 1.3.6.1.5.5.7.3.1 * (TLS_WEB_SERVER_AUTHENTICATION)

  • * 1.3.6.1.5.5.7.3.2 (TLS_WEB_CLIENT_AUTHENTICATION)

  • *

    1.3.6.1.5.5.7.3.3 (CODE_SIGNING)

  • * 1.3.6.1.5.5.7.3.4 (EMAIL_PROTECTION)

  • * 1.3.6.1.5.5.7.3.8 (TIME_STAMPING)

  • * 1.3.6.1.5.5.7.3.9 (OCSP_SIGNING)

  • * 1.3.6.1.5.5.7.3.5 (IPSEC_END_SYSTEM)

  • * 1.3.6.1.5.5.7.3.6 (IPSEC_TUNNEL)

  • * 1.3.6.1.5.5.7.3.7 (IPSEC_USER)

*/ inline void SetOID(const char* value) { m_oIDHasBeenSet = true; m_oID.assign(value); } /** *

An object identifier (OID) for the extension value. OIDs are strings of * numbers separated by periods. The following OIDs are defined in RFC 3280 and RFC * 5280.

  • 1.3.6.1.5.5.7.3.1 * (TLS_WEB_SERVER_AUTHENTICATION)

  • * 1.3.6.1.5.5.7.3.2 (TLS_WEB_CLIENT_AUTHENTICATION)

  • *

    1.3.6.1.5.5.7.3.3 (CODE_SIGNING)

  • * 1.3.6.1.5.5.7.3.4 (EMAIL_PROTECTION)

  • * 1.3.6.1.5.5.7.3.8 (TIME_STAMPING)

  • * 1.3.6.1.5.5.7.3.9 (OCSP_SIGNING)

  • * 1.3.6.1.5.5.7.3.5 (IPSEC_END_SYSTEM)

  • * 1.3.6.1.5.5.7.3.6 (IPSEC_TUNNEL)

  • * 1.3.6.1.5.5.7.3.7 (IPSEC_USER)

*/ inline ExtendedKeyUsage& WithOID(const Aws::String& value) { SetOID(value); return *this;} /** *

An object identifier (OID) for the extension value. OIDs are strings of * numbers separated by periods. The following OIDs are defined in RFC 3280 and RFC * 5280.

  • 1.3.6.1.5.5.7.3.1 * (TLS_WEB_SERVER_AUTHENTICATION)

  • * 1.3.6.1.5.5.7.3.2 (TLS_WEB_CLIENT_AUTHENTICATION)

  • *

    1.3.6.1.5.5.7.3.3 (CODE_SIGNING)

  • * 1.3.6.1.5.5.7.3.4 (EMAIL_PROTECTION)

  • * 1.3.6.1.5.5.7.3.8 (TIME_STAMPING)

  • * 1.3.6.1.5.5.7.3.9 (OCSP_SIGNING)

  • * 1.3.6.1.5.5.7.3.5 (IPSEC_END_SYSTEM)

  • * 1.3.6.1.5.5.7.3.6 (IPSEC_TUNNEL)

  • * 1.3.6.1.5.5.7.3.7 (IPSEC_USER)

*/ inline ExtendedKeyUsage& WithOID(Aws::String&& value) { SetOID(std::move(value)); return *this;} /** *

An object identifier (OID) for the extension value. OIDs are strings of * numbers separated by periods. The following OIDs are defined in RFC 3280 and RFC * 5280.

  • 1.3.6.1.5.5.7.3.1 * (TLS_WEB_SERVER_AUTHENTICATION)

  • * 1.3.6.1.5.5.7.3.2 (TLS_WEB_CLIENT_AUTHENTICATION)

  • *

    1.3.6.1.5.5.7.3.3 (CODE_SIGNING)

  • * 1.3.6.1.5.5.7.3.4 (EMAIL_PROTECTION)

  • * 1.3.6.1.5.5.7.3.8 (TIME_STAMPING)

  • * 1.3.6.1.5.5.7.3.9 (OCSP_SIGNING)

  • * 1.3.6.1.5.5.7.3.5 (IPSEC_END_SYSTEM)

  • * 1.3.6.1.5.5.7.3.6 (IPSEC_TUNNEL)

  • * 1.3.6.1.5.5.7.3.7 (IPSEC_USER)

*/ inline ExtendedKeyUsage& WithOID(const char* value) { SetOID(value); return *this;} private: ExtendedKeyUsageName m_name; bool m_nameHasBeenSet = false; Aws::String m_oID; bool m_oIDHasBeenSet = false; }; } // namespace Model } // namespace ACM } // namespace Aws