/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details associated with the issuer of a license.See Also:
* AWS
* API Reference
Issuer name.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *Issuer name.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *Issuer name.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *Issuer name.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *Issuer name.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *Issuer name.
*/ inline IssuerDetails& WithName(const Aws::String& value) { SetName(value); return *this;} /** *Issuer name.
*/ inline IssuerDetails& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *Issuer name.
*/ inline IssuerDetails& WithName(const char* value) { SetName(value); return *this;} /** *Asymmetric KMS key from Key Management Service. The KMS key must have a key * usage of sign and verify, and support the RSASSA-PSS SHA-256 signing * algorithm.
*/ inline const Aws::String& GetSignKey() const{ return m_signKey; } /** *Asymmetric KMS key from Key Management Service. The KMS key must have a key * usage of sign and verify, and support the RSASSA-PSS SHA-256 signing * algorithm.
*/ inline bool SignKeyHasBeenSet() const { return m_signKeyHasBeenSet; } /** *Asymmetric KMS key from Key Management Service. The KMS key must have a key * usage of sign and verify, and support the RSASSA-PSS SHA-256 signing * algorithm.
*/ inline void SetSignKey(const Aws::String& value) { m_signKeyHasBeenSet = true; m_signKey = value; } /** *Asymmetric KMS key from Key Management Service. The KMS key must have a key * usage of sign and verify, and support the RSASSA-PSS SHA-256 signing * algorithm.
*/ inline void SetSignKey(Aws::String&& value) { m_signKeyHasBeenSet = true; m_signKey = std::move(value); } /** *Asymmetric KMS key from Key Management Service. The KMS key must have a key * usage of sign and verify, and support the RSASSA-PSS SHA-256 signing * algorithm.
*/ inline void SetSignKey(const char* value) { m_signKeyHasBeenSet = true; m_signKey.assign(value); } /** *Asymmetric KMS key from Key Management Service. The KMS key must have a key * usage of sign and verify, and support the RSASSA-PSS SHA-256 signing * algorithm.
*/ inline IssuerDetails& WithSignKey(const Aws::String& value) { SetSignKey(value); return *this;} /** *Asymmetric KMS key from Key Management Service. The KMS key must have a key * usage of sign and verify, and support the RSASSA-PSS SHA-256 signing * algorithm.
*/ inline IssuerDetails& WithSignKey(Aws::String&& value) { SetSignKey(std::move(value)); return *this;} /** *Asymmetric KMS key from Key Management Service. The KMS key must have a key * usage of sign and verify, and support the RSASSA-PSS SHA-256 signing * algorithm.
*/ inline IssuerDetails& WithSignKey(const char* value) { SetSignKey(value); return *this;} /** *Issuer key fingerprint.
*/ inline const Aws::String& GetKeyFingerprint() const{ return m_keyFingerprint; } /** *Issuer key fingerprint.
*/ inline bool KeyFingerprintHasBeenSet() const { return m_keyFingerprintHasBeenSet; } /** *Issuer key fingerprint.
*/ inline void SetKeyFingerprint(const Aws::String& value) { m_keyFingerprintHasBeenSet = true; m_keyFingerprint = value; } /** *Issuer key fingerprint.
*/ inline void SetKeyFingerprint(Aws::String&& value) { m_keyFingerprintHasBeenSet = true; m_keyFingerprint = std::move(value); } /** *Issuer key fingerprint.
*/ inline void SetKeyFingerprint(const char* value) { m_keyFingerprintHasBeenSet = true; m_keyFingerprint.assign(value); } /** *Issuer key fingerprint.
*/ inline IssuerDetails& WithKeyFingerprint(const Aws::String& value) { SetKeyFingerprint(value); return *this;} /** *Issuer key fingerprint.
*/ inline IssuerDetails& WithKeyFingerprint(Aws::String&& value) { SetKeyFingerprint(std::move(value)); return *this;} /** *Issuer key fingerprint.
*/ inline IssuerDetails& WithKeyFingerprint(const char* value) { SetKeyFingerprint(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_signKey; bool m_signKeyHasBeenSet = false; Aws::String m_keyFingerprint; bool m_keyFingerprintHasBeenSet = false; }; } // namespace Model } // namespace LicenseManager } // namespace Aws