/** * 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 IoTAnalytics { namespace Model { /** *

The value of the variable as a structure that specifies an output file * URI.

See Also:

AWS * API Reference

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

The URI of the location where dataset contents are stored, usually the URI of * a file in an S3 bucket.

*/ inline const Aws::String& GetFileName() const{ return m_fileName; } /** *

The URI of the location where dataset contents are stored, usually the URI of * a file in an S3 bucket.

*/ inline bool FileNameHasBeenSet() const { return m_fileNameHasBeenSet; } /** *

The URI of the location where dataset contents are stored, usually the URI of * a file in an S3 bucket.

*/ inline void SetFileName(const Aws::String& value) { m_fileNameHasBeenSet = true; m_fileName = value; } /** *

The URI of the location where dataset contents are stored, usually the URI of * a file in an S3 bucket.

*/ inline void SetFileName(Aws::String&& value) { m_fileNameHasBeenSet = true; m_fileName = std::move(value); } /** *

The URI of the location where dataset contents are stored, usually the URI of * a file in an S3 bucket.

*/ inline void SetFileName(const char* value) { m_fileNameHasBeenSet = true; m_fileName.assign(value); } /** *

The URI of the location where dataset contents are stored, usually the URI of * a file in an S3 bucket.

*/ inline OutputFileUriValue& WithFileName(const Aws::String& value) { SetFileName(value); return *this;} /** *

The URI of the location where dataset contents are stored, usually the URI of * a file in an S3 bucket.

*/ inline OutputFileUriValue& WithFileName(Aws::String&& value) { SetFileName(std::move(value)); return *this;} /** *

The URI of the location where dataset contents are stored, usually the URI of * a file in an S3 bucket.

*/ inline OutputFileUriValue& WithFileName(const char* value) { SetFileName(value); return *this;} private: Aws::String m_fileName; bool m_fileNameHasBeenSet = false; }; } // namespace Model } // namespace IoTAnalytics } // namespace Aws