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

The connector metadata specific to Snowflake.

See Also:

AWS * API Reference

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

Specifies the supported Amazon Web Services Regions when using Snowflake. *

*/ inline const Aws::Vector& GetSupportedRegions() const{ return m_supportedRegions; } /** *

Specifies the supported Amazon Web Services Regions when using Snowflake. *

*/ inline bool SupportedRegionsHasBeenSet() const { return m_supportedRegionsHasBeenSet; } /** *

Specifies the supported Amazon Web Services Regions when using Snowflake. *

*/ inline void SetSupportedRegions(const Aws::Vector& value) { m_supportedRegionsHasBeenSet = true; m_supportedRegions = value; } /** *

Specifies the supported Amazon Web Services Regions when using Snowflake. *

*/ inline void SetSupportedRegions(Aws::Vector&& value) { m_supportedRegionsHasBeenSet = true; m_supportedRegions = std::move(value); } /** *

Specifies the supported Amazon Web Services Regions when using Snowflake. *

*/ inline SnowflakeMetadata& WithSupportedRegions(const Aws::Vector& value) { SetSupportedRegions(value); return *this;} /** *

Specifies the supported Amazon Web Services Regions when using Snowflake. *

*/ inline SnowflakeMetadata& WithSupportedRegions(Aws::Vector&& value) { SetSupportedRegions(std::move(value)); return *this;} /** *

Specifies the supported Amazon Web Services Regions when using Snowflake. *

*/ inline SnowflakeMetadata& AddSupportedRegions(const Aws::String& value) { m_supportedRegionsHasBeenSet = true; m_supportedRegions.push_back(value); return *this; } /** *

Specifies the supported Amazon Web Services Regions when using Snowflake. *

*/ inline SnowflakeMetadata& AddSupportedRegions(Aws::String&& value) { m_supportedRegionsHasBeenSet = true; m_supportedRegions.push_back(std::move(value)); return *this; } /** *

Specifies the supported Amazon Web Services Regions when using Snowflake. *

*/ inline SnowflakeMetadata& AddSupportedRegions(const char* value) { m_supportedRegionsHasBeenSet = true; m_supportedRegions.push_back(value); return *this; } private: Aws::Vector m_supportedRegions; bool m_supportedRegionsHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws