/** * 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 Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace S3Control { namespace Model { /** *

Configures the type of the job's ManifestGenerator.

See Also:

* AWS * API Reference

*/ class JobManifestGenerator { public: AWS_S3CONTROL_API JobManifestGenerator(); AWS_S3CONTROL_API JobManifestGenerator(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3CONTROL_API JobManifestGenerator& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

The S3 job ManifestGenerator's configuration details.

*/ inline const S3JobManifestGenerator& GetS3JobManifestGenerator() const{ return m_s3JobManifestGenerator; } /** *

The S3 job ManifestGenerator's configuration details.

*/ inline bool S3JobManifestGeneratorHasBeenSet() const { return m_s3JobManifestGeneratorHasBeenSet; } /** *

The S3 job ManifestGenerator's configuration details.

*/ inline void SetS3JobManifestGenerator(const S3JobManifestGenerator& value) { m_s3JobManifestGeneratorHasBeenSet = true; m_s3JobManifestGenerator = value; } /** *

The S3 job ManifestGenerator's configuration details.

*/ inline void SetS3JobManifestGenerator(S3JobManifestGenerator&& value) { m_s3JobManifestGeneratorHasBeenSet = true; m_s3JobManifestGenerator = std::move(value); } /** *

The S3 job ManifestGenerator's configuration details.

*/ inline JobManifestGenerator& WithS3JobManifestGenerator(const S3JobManifestGenerator& value) { SetS3JobManifestGenerator(value); return *this;} /** *

The S3 job ManifestGenerator's configuration details.

*/ inline JobManifestGenerator& WithS3JobManifestGenerator(S3JobManifestGenerator&& value) { SetS3JobManifestGenerator(std::move(value)); return *this;} private: S3JobManifestGenerator m_s3JobManifestGenerator; bool m_s3JobManifestGeneratorHasBeenSet = false; }; } // namespace Model } // namespace S3Control } // namespace Aws