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

Describes a key pair.

See Also:

AWS API * Reference

*/ class AWS_EC2_API KeyPairInfo { public: KeyPairInfo(); KeyPairInfo(const Aws::Utils::Xml::XmlNode& xmlNode); KeyPairInfo& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The ID of the key pair.

*/ inline const Aws::String& GetKeyPairId() const{ return m_keyPairId; } /** *

The ID of the key pair.

*/ inline bool KeyPairIdHasBeenSet() const { return m_keyPairIdHasBeenSet; } /** *

The ID of the key pair.

*/ inline void SetKeyPairId(const Aws::String& value) { m_keyPairIdHasBeenSet = true; m_keyPairId = value; } /** *

The ID of the key pair.

*/ inline void SetKeyPairId(Aws::String&& value) { m_keyPairIdHasBeenSet = true; m_keyPairId = std::move(value); } /** *

The ID of the key pair.

*/ inline void SetKeyPairId(const char* value) { m_keyPairIdHasBeenSet = true; m_keyPairId.assign(value); } /** *

The ID of the key pair.

*/ inline KeyPairInfo& WithKeyPairId(const Aws::String& value) { SetKeyPairId(value); return *this;} /** *

The ID of the key pair.

*/ inline KeyPairInfo& WithKeyPairId(Aws::String&& value) { SetKeyPairId(std::move(value)); return *this;} /** *

The ID of the key pair.

*/ inline KeyPairInfo& WithKeyPairId(const char* value) { SetKeyPairId(value); return *this;} /** *

If you used CreateKeyPair to create the key pair, this is the SHA-1 * digest of the DER encoded private key. If you used ImportKeyPair to * provide AWS the public key, this is the MD5 public key fingerprint as specified * in section 4 of RFC4716.

*/ inline const Aws::String& GetKeyFingerprint() const{ return m_keyFingerprint; } /** *

If you used CreateKeyPair to create the key pair, this is the SHA-1 * digest of the DER encoded private key. If you used ImportKeyPair to * provide AWS the public key, this is the MD5 public key fingerprint as specified * in section 4 of RFC4716.

*/ inline bool KeyFingerprintHasBeenSet() const { return m_keyFingerprintHasBeenSet; } /** *

If you used CreateKeyPair to create the key pair, this is the SHA-1 * digest of the DER encoded private key. If you used ImportKeyPair to * provide AWS the public key, this is the MD5 public key fingerprint as specified * in section 4 of RFC4716.

*/ inline void SetKeyFingerprint(const Aws::String& value) { m_keyFingerprintHasBeenSet = true; m_keyFingerprint = value; } /** *

If you used CreateKeyPair to create the key pair, this is the SHA-1 * digest of the DER encoded private key. If you used ImportKeyPair to * provide AWS the public key, this is the MD5 public key fingerprint as specified * in section 4 of RFC4716.

*/ inline void SetKeyFingerprint(Aws::String&& value) { m_keyFingerprintHasBeenSet = true; m_keyFingerprint = std::move(value); } /** *

If you used CreateKeyPair to create the key pair, this is the SHA-1 * digest of the DER encoded private key. If you used ImportKeyPair to * provide AWS the public key, this is the MD5 public key fingerprint as specified * in section 4 of RFC4716.

*/ inline void SetKeyFingerprint(const char* value) { m_keyFingerprintHasBeenSet = true; m_keyFingerprint.assign(value); } /** *

If you used CreateKeyPair to create the key pair, this is the SHA-1 * digest of the DER encoded private key. If you used ImportKeyPair to * provide AWS the public key, this is the MD5 public key fingerprint as specified * in section 4 of RFC4716.

*/ inline KeyPairInfo& WithKeyFingerprint(const Aws::String& value) { SetKeyFingerprint(value); return *this;} /** *

If you used CreateKeyPair to create the key pair, this is the SHA-1 * digest of the DER encoded private key. If you used ImportKeyPair to * provide AWS the public key, this is the MD5 public key fingerprint as specified * in section 4 of RFC4716.

*/ inline KeyPairInfo& WithKeyFingerprint(Aws::String&& value) { SetKeyFingerprint(std::move(value)); return *this;} /** *

If you used CreateKeyPair to create the key pair, this is the SHA-1 * digest of the DER encoded private key. If you used ImportKeyPair to * provide AWS the public key, this is the MD5 public key fingerprint as specified * in section 4 of RFC4716.

*/ inline KeyPairInfo& WithKeyFingerprint(const char* value) { SetKeyFingerprint(value); return *this;} /** *

The name of the key pair.

*/ inline const Aws::String& GetKeyName() const{ return m_keyName; } /** *

The name of the key pair.

*/ inline bool KeyNameHasBeenSet() const { return m_keyNameHasBeenSet; } /** *

The name of the key pair.

*/ inline void SetKeyName(const Aws::String& value) { m_keyNameHasBeenSet = true; m_keyName = value; } /** *

The name of the key pair.

*/ inline void SetKeyName(Aws::String&& value) { m_keyNameHasBeenSet = true; m_keyName = std::move(value); } /** *

The name of the key pair.

*/ inline void SetKeyName(const char* value) { m_keyNameHasBeenSet = true; m_keyName.assign(value); } /** *

The name of the key pair.

*/ inline KeyPairInfo& WithKeyName(const Aws::String& value) { SetKeyName(value); return *this;} /** *

The name of the key pair.

*/ inline KeyPairInfo& WithKeyName(Aws::String&& value) { SetKeyName(std::move(value)); return *this;} /** *

The name of the key pair.

*/ inline KeyPairInfo& WithKeyName(const char* value) { SetKeyName(value); return *this;} /** *

Any tags applied to the key pair.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

Any tags applied to the key pair.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

Any tags applied to the key pair.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

Any tags applied to the key pair.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

Any tags applied to the key pair.

*/ inline KeyPairInfo& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

Any tags applied to the key pair.

*/ inline KeyPairInfo& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

Any tags applied to the key pair.

*/ inline KeyPairInfo& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

Any tags applied to the key pair.

*/ inline KeyPairInfo& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_keyPairId; bool m_keyPairIdHasBeenSet; Aws::String m_keyFingerprint; bool m_keyFingerprintHasBeenSet; Aws::String m_keyName; bool m_keyNameHasBeenSet; Aws::Vector m_tags; bool m_tagsHasBeenSet; }; } // namespace Model } // namespace EC2 } // namespace Aws