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

S3 parameters.

See Also:

AWS * API Reference

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

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