/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The value of the variable as a structure that specifies an output file
* URI.See Also:
AWS
* API Reference
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