/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a key pair.See Also:
AWS API
* Reference
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::VectorAny 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::VectorAny tags applied to the key pair.
*/ inline void SetTags(Aws::VectorAny tags applied to the key pair.
*/ inline KeyPairInfo& WithTags(const Aws::VectorAny tags applied to the key pair.
*/ inline KeyPairInfo& WithTags(Aws::VectorAny 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