/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure containing other metadata for a schema version belonging to the
* same metadata key.See Also:
AWS
* API Reference
The metadata key’s corresponding value for the other metadata belonging to * the same metadata key.
*/ inline const Aws::String& GetMetadataValue() const{ return m_metadataValue; } /** *The metadata key’s corresponding value for the other metadata belonging to * the same metadata key.
*/ inline bool MetadataValueHasBeenSet() const { return m_metadataValueHasBeenSet; } /** *The metadata key’s corresponding value for the other metadata belonging to * the same metadata key.
*/ inline void SetMetadataValue(const Aws::String& value) { m_metadataValueHasBeenSet = true; m_metadataValue = value; } /** *The metadata key’s corresponding value for the other metadata belonging to * the same metadata key.
*/ inline void SetMetadataValue(Aws::String&& value) { m_metadataValueHasBeenSet = true; m_metadataValue = std::move(value); } /** *The metadata key’s corresponding value for the other metadata belonging to * the same metadata key.
*/ inline void SetMetadataValue(const char* value) { m_metadataValueHasBeenSet = true; m_metadataValue.assign(value); } /** *The metadata key’s corresponding value for the other metadata belonging to * the same metadata key.
*/ inline OtherMetadataValueListItem& WithMetadataValue(const Aws::String& value) { SetMetadataValue(value); return *this;} /** *The metadata key’s corresponding value for the other metadata belonging to * the same metadata key.
*/ inline OtherMetadataValueListItem& WithMetadataValue(Aws::String&& value) { SetMetadataValue(std::move(value)); return *this;} /** *The metadata key’s corresponding value for the other metadata belonging to * the same metadata key.
*/ inline OtherMetadataValueListItem& WithMetadataValue(const char* value) { SetMetadataValue(value); return *this;} /** *The time at which the entry was created.
*/ inline const Aws::String& GetCreatedTime() const{ return m_createdTime; } /** *The time at which the entry was created.
*/ inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; } /** *The time at which the entry was created.
*/ inline void SetCreatedTime(const Aws::String& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; } /** *The time at which the entry was created.
*/ inline void SetCreatedTime(Aws::String&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); } /** *The time at which the entry was created.
*/ inline void SetCreatedTime(const char* value) { m_createdTimeHasBeenSet = true; m_createdTime.assign(value); } /** *The time at which the entry was created.
*/ inline OtherMetadataValueListItem& WithCreatedTime(const Aws::String& value) { SetCreatedTime(value); return *this;} /** *The time at which the entry was created.
*/ inline OtherMetadataValueListItem& WithCreatedTime(Aws::String&& value) { SetCreatedTime(std::move(value)); return *this;} /** *The time at which the entry was created.
*/ inline OtherMetadataValueListItem& WithCreatedTime(const char* value) { SetCreatedTime(value); return *this;} private: Aws::String m_metadataValue; bool m_metadataValueHasBeenSet = false; Aws::String m_createdTime; bool m_createdTimeHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws