/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include S3 parameters.See Also:
AWS
* API Reference
Location of the Amazon S3 manifest file. This is NULL if the manifest file * was uploaded in the console.
*/ inline const ManifestFileLocation& GetManifestFileLocation() const{ return m_manifestFileLocation; } /** *Location of the Amazon S3 manifest file. This is NULL if the manifest file * was uploaded in the console.
*/ inline bool ManifestFileLocationHasBeenSet() const { return m_manifestFileLocationHasBeenSet; } /** *Location of the Amazon S3 manifest file. This is NULL if the manifest file * was uploaded in the console.
*/ inline void SetManifestFileLocation(const ManifestFileLocation& value) { m_manifestFileLocationHasBeenSet = true; m_manifestFileLocation = value; } /** *Location of the Amazon S3 manifest file. This is NULL if the manifest file * was uploaded in the console.
*/ inline void SetManifestFileLocation(ManifestFileLocation&& value) { m_manifestFileLocationHasBeenSet = true; m_manifestFileLocation = std::move(value); } /** *Location of the Amazon S3 manifest file. This is NULL if the manifest file * was uploaded in the console.
*/ inline S3Parameters& WithManifestFileLocation(const ManifestFileLocation& value) { SetManifestFileLocation(value); return *this;} /** *Location of the Amazon S3 manifest file. This is NULL if the manifest file * was uploaded in the console.
*/ inline S3Parameters& WithManifestFileLocation(ManifestFileLocation&& value) { SetManifestFileLocation(std::move(value)); return *this;} private: ManifestFileLocation m_manifestFileLocation; bool m_manifestFileLocationHasBeenSet; }; } // namespace Model } // namespace QuickSight } // namespace Aws