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

An object containing information about the output file.

See * Also:

AWS * API Reference

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

The Amazon Resource Name (ARN) of the list of the Vector Enrichment jobs.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) of the list of the Vector Enrichment jobs.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the list of the Vector Enrichment jobs.

*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *

The Amazon Resource Name (ARN) of the list of the Vector Enrichment jobs.

*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the list of the Vector Enrichment jobs.

*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) of the list of the Vector Enrichment jobs.

*/ inline ListVectorEnrichmentJobOutputConfig& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the list of the Vector Enrichment jobs.

*/ inline ListVectorEnrichmentJobOutputConfig& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the list of the Vector Enrichment jobs.

*/ inline ListVectorEnrichmentJobOutputConfig& WithArn(const char* value) { SetArn(value); return *this;} /** *

The creation time.

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

The creation time.

*/ inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; } /** *

The creation time.

*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; } /** *

The creation time.

*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); } /** *

The creation time.

*/ inline ListVectorEnrichmentJobOutputConfig& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The creation time.

*/ inline ListVectorEnrichmentJobOutputConfig& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *

The duration of the session, in seconds.

*/ inline int GetDurationInSeconds() const{ return m_durationInSeconds; } /** *

The duration of the session, in seconds.

*/ inline bool DurationInSecondsHasBeenSet() const { return m_durationInSecondsHasBeenSet; } /** *

The duration of the session, in seconds.

*/ inline void SetDurationInSeconds(int value) { m_durationInSecondsHasBeenSet = true; m_durationInSeconds = value; } /** *

The duration of the session, in seconds.

*/ inline ListVectorEnrichmentJobOutputConfig& WithDurationInSeconds(int value) { SetDurationInSeconds(value); return *this;} /** *

The names of the Vector Enrichment jobs in the list.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The names of the Vector Enrichment jobs in the list.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The names of the Vector Enrichment jobs in the list.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The names of the Vector Enrichment jobs in the list.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The names of the Vector Enrichment jobs in the list.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The names of the Vector Enrichment jobs in the list.

*/ inline ListVectorEnrichmentJobOutputConfig& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The names of the Vector Enrichment jobs in the list.

*/ inline ListVectorEnrichmentJobOutputConfig& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The names of the Vector Enrichment jobs in the list.

*/ inline ListVectorEnrichmentJobOutputConfig& WithName(const char* value) { SetName(value); return *this;} /** *

The status of the Vector Enrichment jobs list.

*/ inline const VectorEnrichmentJobStatus& GetStatus() const{ return m_status; } /** *

The status of the Vector Enrichment jobs list.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The status of the Vector Enrichment jobs list.

*/ inline void SetStatus(const VectorEnrichmentJobStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The status of the Vector Enrichment jobs list.

*/ inline void SetStatus(VectorEnrichmentJobStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The status of the Vector Enrichment jobs list.

*/ inline ListVectorEnrichmentJobOutputConfig& WithStatus(const VectorEnrichmentJobStatus& value) { SetStatus(value); return *this;} /** *

The status of the Vector Enrichment jobs list.

*/ inline ListVectorEnrichmentJobOutputConfig& WithStatus(VectorEnrichmentJobStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

Each tag consists of a key and a value.

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

Each tag consists of a key and a value.

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

Each tag consists of a key and a value.

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

Each tag consists of a key and a value.

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

Each tag consists of a key and a value.

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

Each tag consists of a key and a value.

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

Each tag consists of a key and a value.

*/ inline ListVectorEnrichmentJobOutputConfig& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

Each tag consists of a key and a value.

*/ inline ListVectorEnrichmentJobOutputConfig& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

Each tag consists of a key and a value.

*/ inline ListVectorEnrichmentJobOutputConfig& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

Each tag consists of a key and a value.

*/ inline ListVectorEnrichmentJobOutputConfig& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

Each tag consists of a key and a value.

*/ inline ListVectorEnrichmentJobOutputConfig& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

Each tag consists of a key and a value.

*/ inline ListVectorEnrichmentJobOutputConfig& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

Each tag consists of a key and a value.

*/ inline ListVectorEnrichmentJobOutputConfig& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

The type of the list of Vector Enrichment jobs.

*/ inline const VectorEnrichmentJobType& GetType() const{ return m_type; } /** *

The type of the list of Vector Enrichment jobs.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

The type of the list of Vector Enrichment jobs.

*/ inline void SetType(const VectorEnrichmentJobType& value) { m_typeHasBeenSet = true; m_type = value; } /** *

The type of the list of Vector Enrichment jobs.

*/ inline void SetType(VectorEnrichmentJobType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

The type of the list of Vector Enrichment jobs.

*/ inline ListVectorEnrichmentJobOutputConfig& WithType(const VectorEnrichmentJobType& value) { SetType(value); return *this;} /** *

The type of the list of Vector Enrichment jobs.

*/ inline ListVectorEnrichmentJobOutputConfig& WithType(VectorEnrichmentJobType&& value) { SetType(std::move(value)); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; int m_durationInSeconds; bool m_durationInSecondsHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; VectorEnrichmentJobStatus m_status; bool m_statusHasBeenSet = false; Aws::Map m_tags; bool m_tagsHasBeenSet = false; VectorEnrichmentJobType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws