/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details about a reference store.See Also:
AWS
* API Reference
The store's ARN.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The store's ARN.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The store's ARN.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The store's ARN.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The store's ARN.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The store's ARN.
*/ inline ReferenceStoreDetail& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The store's ARN.
*/ inline ReferenceStoreDetail& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The store's ARN.
*/ inline ReferenceStoreDetail& WithArn(const char* value) { SetArn(value); return *this;} /** *The store's ID.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The store's ID.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The store's ID.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The store's ID.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The store's ID.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The store's ID.
*/ inline ReferenceStoreDetail& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The store's ID.
*/ inline ReferenceStoreDetail& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The store's ID.
*/ inline ReferenceStoreDetail& WithId(const char* value) { SetId(value); return *this;} /** *The store's name.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The store's name.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The store's name.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The store's name.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The store's name.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The store's name.
*/ inline ReferenceStoreDetail& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The store's name.
*/ inline ReferenceStoreDetail& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The store's name.
*/ inline ReferenceStoreDetail& WithName(const char* value) { SetName(value); return *this;} /** *The store's description.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *The store's description.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *The store's description.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *The store's description.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *The store's description.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *The store's description.
*/ inline ReferenceStoreDetail& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *The store's description.
*/ inline ReferenceStoreDetail& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *The store's description.
*/ inline ReferenceStoreDetail& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The store's server-side encryption (SSE) settings.
*/ inline const SseConfig& GetSseConfig() const{ return m_sseConfig; } /** *The store's server-side encryption (SSE) settings.
*/ inline bool SseConfigHasBeenSet() const { return m_sseConfigHasBeenSet; } /** *The store's server-side encryption (SSE) settings.
*/ inline void SetSseConfig(const SseConfig& value) { m_sseConfigHasBeenSet = true; m_sseConfig = value; } /** *The store's server-side encryption (SSE) settings.
*/ inline void SetSseConfig(SseConfig&& value) { m_sseConfigHasBeenSet = true; m_sseConfig = std::move(value); } /** *The store's server-side encryption (SSE) settings.
*/ inline ReferenceStoreDetail& WithSseConfig(const SseConfig& value) { SetSseConfig(value); return *this;} /** *The store's server-side encryption (SSE) settings.
*/ inline ReferenceStoreDetail& WithSseConfig(SseConfig&& value) { SetSseConfig(std::move(value)); return *this;} /** *When the store was created.
*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *When the store was created.
*/ inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; } /** *When the store was created.
*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; } /** *When the store was created.
*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); } /** *When the store was created.
*/ inline ReferenceStoreDetail& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *When the store was created.
*/ inline ReferenceStoreDetail& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::String m_id; bool m_idHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; SseConfig m_sseConfig; bool m_sseConfigHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws