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

The mapping between a Amazon Web Services Region and the key that's used to * encrypt the data.

See Also:

AWS * API Reference

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

The KMS key used to encrypt the data in your replication set.

*/ inline const Aws::String& GetSseKmsKeyId() const{ return m_sseKmsKeyId; } /** *

The KMS key used to encrypt the data in your replication set.

*/ inline bool SseKmsKeyIdHasBeenSet() const { return m_sseKmsKeyIdHasBeenSet; } /** *

The KMS key used to encrypt the data in your replication set.

*/ inline void SetSseKmsKeyId(const Aws::String& value) { m_sseKmsKeyIdHasBeenSet = true; m_sseKmsKeyId = value; } /** *

The KMS key used to encrypt the data in your replication set.

*/ inline void SetSseKmsKeyId(Aws::String&& value) { m_sseKmsKeyIdHasBeenSet = true; m_sseKmsKeyId = std::move(value); } /** *

The KMS key used to encrypt the data in your replication set.

*/ inline void SetSseKmsKeyId(const char* value) { m_sseKmsKeyIdHasBeenSet = true; m_sseKmsKeyId.assign(value); } /** *

The KMS key used to encrypt the data in your replication set.

*/ inline RegionMapInputValue& WithSseKmsKeyId(const Aws::String& value) { SetSseKmsKeyId(value); return *this;} /** *

The KMS key used to encrypt the data in your replication set.

*/ inline RegionMapInputValue& WithSseKmsKeyId(Aws::String&& value) { SetSseKmsKeyId(std::move(value)); return *this;} /** *

The KMS key used to encrypt the data in your replication set.

*/ inline RegionMapInputValue& WithSseKmsKeyId(const char* value) { SetSseKmsKeyId(value); return *this;} private: Aws::String m_sseKmsKeyId; bool m_sseKmsKeyIdHasBeenSet = false; }; } // namespace Model } // namespace SSMIncidents } // namespace Aws